[ACA-2604] Search result/input color update (#1380)

This commit is contained in:
Baptiste Mahé
2020-03-26 19:07:49 +01:00
committed by GitHub
parent 1558d9411b
commit 69c92cf275
3 changed files with 32 additions and 18 deletions

View File

@@ -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 {

View File

@@ -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;
}
}