mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
Fix search panel scroll in content node selector (#6227)
This commit is contained in:
parent
19572c3e9a
commit
d236ed40a2
@ -1,4 +1,6 @@
|
||||
<adf-search-filter *ngIf="contentNodeSelectorSearchPanelService?.customModels?.length > 0"
|
||||
class="app-search-settings" #searchFilter
|
||||
[showContextFacets]="false"
|
||||
></adf-search-filter>
|
||||
<div class="adf-search-panel-scrollable">
|
||||
<adf-search-filter *ngIf="contentNodeSelectorSearchPanelService?.customModels?.length > 0"
|
||||
class="app-search-settings"
|
||||
[showContextFacets]="false">
|
||||
</adf-search-filter>
|
||||
</div>
|
||||
|
@ -0,0 +1,4 @@
|
||||
.adf-search-panel-scrollable {
|
||||
overflow: scroll;
|
||||
max-height: 200px;
|
||||
}
|
@ -23,6 +23,7 @@ import { SEARCH_QUERY_SERVICE_TOKEN } from '../../search-query-service.token';
|
||||
@Component({
|
||||
selector: 'adf-search-panel',
|
||||
templateUrl: './search-panel.component.html',
|
||||
styleUrls: ['./search-panel.component.scss'],
|
||||
encapsulation: ViewEncapsulation.None,
|
||||
host: { class: 'adf-search-panel' }
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user