Fix wrong color on active icons with counters in web UI (#26767)

lolsob-rspec
Eugen Rochko 2023-09-02 14:46:26 +02:00 committed by GitHub
parent 1b7b338d0a
commit 70c734d65a
1 changed files with 11 additions and 11 deletions

View File

@ -228,20 +228,20 @@
color: lighten($lighter-text-color, 7%);
background-color: transparent;
}
}
&.active {
&.active {
color: $highlight-text-color;
&:hover,
&:active,
&:focus {
color: $highlight-text-color;
background-color: transparent;
}
&:hover,
&:active,
&:focus {
color: $highlight-text-color;
background-color: transparent;
}
&.disabled {
color: lighten($highlight-text-color, 13%);
}
&.disabled {
color: lighten($highlight-text-color, 13%);
}
}