UI: Fixed table style specificity

This commit is contained in:
Artem Dzhereleiko 2023-09-20 14:39:08 +03:00
parent 24fd3a1327
commit b9d7dcc16c

View File

@ -738,16 +738,21 @@ mat-label {
} }
} }
.mat-mdc-row { .mat-mdc-table {
transition: background-color .2s; .mat-mdc-row {
&:hover:not(.tb-current-entity) { transition: background-color .2s;
background-color: #f4f4f4;
} &:hover:not(.tb-current-entity) {
&.tb-current-entity { background-color: #f4f4f4;
background-color: #e9e9e9; }
}
&.tb-pointer { &.tb-current-entity {
cursor: pointer; background-color: #e9e9e9;
}
&.tb-pointer {
cursor: pointer;
}
} }
} }