[ACA-2496] Change hover color on custom name color (#1414)

This commit is contained in:
Baptiste Mahé
2020-04-16 11:26:34 +02:00
committed by GitHub
parent 053da10e26
commit 986593c45d
2 changed files with 15 additions and 5 deletions

View File

@@ -13,11 +13,19 @@
}
}
.aca-custom-name-column {
display: block;
align-items: center;
@mixin aca-custom-name-column-theme($theme) {
$primary: map-get($theme, primary);
.adf-datatable-cell-value {
margin: 0 4px;
.aca-custom-name-column {
display: block;
align-items: center;
&:hover {
color: mat-color($primary, A200);
}
.adf-datatable-cell-value {
margin: 0 4px;
}
}
}