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
table {
.action-button-edit,
.action-button-delete {
&:hover,
&:active,
&:focus,
&[disabled],
&.disabled {
background-color: $grey-background-color !important;
my-edit-button,
my-delete-button {
.action-button {
&:hover,
&:active,
&:focus,
&[disabled],
&.disabled {
background-color: pvar(--greyBackgroundColor) !important;
opacity: 0.8;
}
}
}
}