mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-31 17:38:28 +00:00
[ACA-2604] Search result/input color update (#1380)
This commit is contained in:
@@ -10,7 +10,7 @@ $top-margin: 12px;
|
||||
$border: 1px solid mat-color($foreground, divider, 0.07);
|
||||
|
||||
.app-search-container {
|
||||
color: mat-color($foreground, text, 0.54);
|
||||
color: mat-color($foreground, text, 0.72);
|
||||
|
||||
.app-input-form-field {
|
||||
.mat-input-element {
|
||||
|
@@ -1,24 +1,36 @@
|
||||
@import 'mixins';
|
||||
|
||||
.aca-search-results-row {
|
||||
@include flex-column;
|
||||
}
|
||||
@mixin aca-result-row-theme($theme) {
|
||||
$primary: map-get($theme, primary);
|
||||
$foreground: map-get($theme, foreground);
|
||||
|
||||
.line {
|
||||
margin: 5px;
|
||||
}
|
||||
.aca-search-results-row {
|
||||
@include flex-column;
|
||||
}
|
||||
|
||||
.bold {
|
||||
font-weight: 400;
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
}
|
||||
.line {
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
.link {
|
||||
text-decoration: none;
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
}
|
||||
.bold {
|
||||
font-weight: 400;
|
||||
color: mat-color($foreground, text, 0.87);
|
||||
}
|
||||
|
||||
.link:hover {
|
||||
color: #2196f3;
|
||||
text-decoration: underline;
|
||||
.link {
|
||||
text-decoration: none;
|
||||
color: mat-color($foreground, text, 0.87);
|
||||
}
|
||||
|
||||
.link:hover,
|
||||
.aca-location-link .adf-datatable-cell-value:hover {
|
||||
color: mat-color($primary) !important;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.adf-is-selected .link:not(:hover),
|
||||
.adf-is-selected .aca-location-link .adf-datatable-cell-value:not(:hover) {
|
||||
text-decoration: none;
|
||||
color: mat-color($primary, A400) !important;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user