mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
[ACS-7631] Fix broken filters (#3735)
This commit is contained in:
@@ -8,7 +8,7 @@
|
|||||||
>
|
>
|
||||||
<mat-icon class="app-search-input-control-icon app-search-button-icon" [attr.aria-label]="'SEARCH.BUTTON.ARIA-LABEL' | translate">search</mat-icon>
|
<mat-icon class="app-search-input-control-icon app-search-button-icon" [attr.aria-label]="'SEARCH.BUTTON.ARIA-LABEL' | translate">search</mat-icon>
|
||||||
</button>
|
</button>
|
||||||
<mat-form-field class="app-input-form-field" [floatLabel]="'auto'">
|
<mat-form-field class="app-input-form-field" floatLabel="auto">
|
||||||
<input
|
<input
|
||||||
matInput
|
matInput
|
||||||
#searchInput
|
#searchInput
|
||||||
|
@@ -48,8 +48,20 @@ $top-margin: 12px;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mat-mdc-form-field-flex {
|
||||||
|
background: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
.mat-mdc-text-field-wrapper {
|
.mat-mdc-text-field-wrapper {
|
||||||
background-color: var(--theme-search-background-color);
|
height: 44px;
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.app-input-form-field-readonly {
|
||||||
|
.mat-mdc-text-field-wrapper,
|
||||||
|
.mat-mdc-form-field-flex {
|
||||||
|
background-color: var(--theme-search-background-color);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.app-search-button {
|
.app-search-button {
|
||||||
|
@@ -7,13 +7,13 @@
|
|||||||
<button mat-icon-button class="app-search-button" (click)="searchByOption()" [title]="'SEARCH.BUTTON.TOOLTIP' | translate">
|
<button mat-icon-button class="app-search-button" (click)="searchByOption()" [title]="'SEARCH.BUTTON.TOOLTIP' | translate">
|
||||||
<mat-icon [attr.aria-label]="'SEARCH.BUTTON.ARIA-LABEL' | translate">search</mat-icon>
|
<mat-icon [attr.aria-label]="'SEARCH.BUTTON.ARIA-LABEL' | translate">search</mat-icon>
|
||||||
</button>
|
</button>
|
||||||
<mat-form-field class="app-input-form-field" [floatLabel]="'auto'">
|
<mat-form-field class="app-input-form-field app-input-form-field-readonly" [floatLabel]="'auto'">
|
||||||
<input
|
<input
|
||||||
matInput
|
matInput
|
||||||
[attr.aria-label]="'SEARCH.INPUT.ARIA-LABEL' | translate"
|
[attr.aria-label]="'SEARCH.INPUT.ARIA-LABEL' | translate"
|
||||||
class="app-input-form-field-input"
|
class="app-input-form-field-input"
|
||||||
[type]="'text'"
|
[type]="'text'"
|
||||||
[disabled]="true"
|
[readonly]="true"
|
||||||
[value]="searchedWord"
|
[value]="searchedWord"
|
||||||
[placeholder]="'SEARCH.INPUT.PLACEHOLDER' | translate"
|
[placeholder]="'SEARCH.INPUT.PLACEHOLDER' | translate"
|
||||||
/>
|
/>
|
||||||
|
@@ -30,10 +30,6 @@ $top-margin: 12px;
|
|||||||
|
|
||||||
&-input {
|
&-input {
|
||||||
caret-color: var(--theme-text-color);
|
caret-color: var(--theme-text-color);
|
||||||
|
|
||||||
&:disabled {
|
|
||||||
color: var(--theme-text-color);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,7 +40,8 @@ $top-margin: 12px;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.app-search-options-menu {
|
/* stylelint-disable-next-line */
|
||||||
|
.app-search-options-menu.mat-mdc-menu-panel {
|
||||||
background-color: var(--theme-dialog-background-color);
|
background-color: var(--theme-dialog-background-color);
|
||||||
width: $search-width;
|
width: $search-width;
|
||||||
max-width: unset;
|
max-width: unset;
|
||||||
|
Reference in New Issue
Block a user