Fix buttons hovering background color in tables

pull/5067/head
Chocobozzz 2022-06-10 14:13:57 +02:00
parent 1fef6bccd9
commit 221489caab
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 11 additions and 8 deletions

View File

@ -272,14 +272,17 @@ my-input-toggle-hidden ::ng-deep input {
// In tables, don't have a hover different background // In tables, don't have a hover different background
table { table {
.action-button-edit, my-edit-button,
.action-button-delete { my-delete-button {
.action-button {
&:hover, &:hover,
&:active, &:active,
&:focus, &:focus,
&[disabled], &[disabled],
&.disabled { &.disabled {
background-color: $grey-background-color !important; background-color: pvar(--greyBackgroundColor) !important;
opacity: 0.8;
}
} }
} }
} }