mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
[ACS-6641] fix advanced search filters not displaying, fix libraries search option unchecking (#3633)
This commit is contained in:
committed by
GitHub
parent
1400545c2d
commit
8e567cd483
@@ -92,7 +92,7 @@ export class SearchInputComponent implements OnInit, OnDestroy {
|
|||||||
{
|
{
|
||||||
id: SearchOptionIds.Libraries,
|
id: SearchOptionIds.Libraries,
|
||||||
key: 'SEARCH.INPUT.LIBRARIES',
|
key: 'SEARCH.INPUT.LIBRARIES',
|
||||||
value: false,
|
value: this.onLibrariesSearchResults,
|
||||||
shouldDisable: this.isContentChecked.bind(this)
|
shouldDisable: this.isContentChecked.bind(this)
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
@@ -10,7 +10,7 @@
|
|||||||
<div class="adf-search-results">
|
<div class="adf-search-results">
|
||||||
<div class="adf-search-results__content">
|
<div class="adf-search-results__content">
|
||||||
<mat-progress-bar *ngIf="isLoading" color="primary" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="isLoading" color="primary" mode="indeterminate"></mat-progress-bar>
|
||||||
<div class="adf-search-results__content-header aca-content" *ngIf="data?.list.entries.length">
|
<div class="adf-search-results__content-header aca-content-lib" *ngIf="data?.list.entries.length">
|
||||||
<div class="aca-content__side--left">
|
<div class="aca-content__side--left">
|
||||||
<div class="adf-search-results--info-text" *ngIf="totalResults !== 1">
|
<div class="adf-search-results--info-text" *ngIf="totalResults !== 1">
|
||||||
{{ 'APP.BROWSE.SEARCH_LIBRARIES.FOUND_RESULTS' | translate: { number: totalResults } }}
|
{{ 'APP.BROWSE.SEARCH_LIBRARIES.FOUND_RESULTS' | translate: { number: totalResults } }}
|
||||||
|
@@ -11,7 +11,7 @@ aca-search-results {
|
|||||||
&__content {
|
&__content {
|
||||||
@include flex-column;
|
@include flex-column;
|
||||||
|
|
||||||
border-left: 1px solid #eee;
|
border-left: 1px solid var(--theme-border-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
&__content-header {
|
&__content-header {
|
||||||
@@ -19,7 +19,8 @@ aca-search-results {
|
|||||||
padding: 0 25px;
|
padding: 0 25px;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
border-bottom: 1px solid #eee;
|
border-bottom: 1px solid var(--theme-border-color);
|
||||||
|
border-top: 1px solid var(--theme-border-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
&--info-text {
|
&--info-text {
|
||||||
@@ -28,7 +29,7 @@ aca-search-results {
|
|||||||
color: rgba(0, 0, 0, 0.54);
|
color: rgba(0, 0, 0, 0.54);
|
||||||
}
|
}
|
||||||
|
|
||||||
.aca-content {
|
.aca-content-lib {
|
||||||
@include flex-row;
|
@include flex-row;
|
||||||
|
|
||||||
flex: unset;
|
flex: unset;
|
||||||
@@ -36,6 +37,7 @@ aca-search-results {
|
|||||||
padding-top: 8px;
|
padding-top: 8px;
|
||||||
padding-bottom: 8px;
|
padding-bottom: 8px;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
|
background-color: var(--theme-card-background-color);
|
||||||
|
|
||||||
&__side--left {
|
&__side--left {
|
||||||
@include flex-column;
|
@include flex-column;
|
||||||
|
@@ -4,7 +4,6 @@ aca-search-results {
|
|||||||
.aca-search-toolbar-spacer {
|
.aca-search-toolbar-spacer {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
.adf-search-results {
|
.adf-search-results {
|
||||||
@include flex-row;
|
@include flex-row;
|
||||||
@@ -155,3 +154,4 @@ aca-search-results {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
Reference in New Issue
Block a user