[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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;
}
}
}

View File

@ -8,6 +8,7 @@
@import '../components/current-user/current-user.component.theme';
@import '../components/permissions/permission-manager/permission-manager.component.theme';
@import '../components/context-menu/context-menu.component.theme';
@import '../components/dl-custom-components/name-column/name-column.component.scss';
@import '../dialogs/node-versions/node-versions.dialog.theme';
@import '../components/create-menu/create-menu.component.scss';
@import '../components/layout/layout.theme.scss';
@ -42,6 +43,7 @@ $warn: map-get($custom-theme, warn);
@include sidenav-component-theme($theme);
@include aca-current-user-theme($theme);
@include aca-context-menu-theme($theme);
@include aca-custom-name-column-theme($theme);
@include app-create-from-template-theme($theme);
@include app-create-menu-theme($theme);
@include adf-style-fixes($theme);