Themes: Fix button shadow on dark theme hover

Resolves #10477.

The dark theme box-shadow for buttons does not blend well
when hovering over it, compared to the light & gray themes.
This patch adds an additional CSS rule to make the box-shadow
no longer clash in dark theme.
This commit is contained in:
Alx Sa 2023-12-14 19:39:54 +00:00
parent d9a2b7c272
commit 820e96c67b
1 changed files with 3 additions and 0 deletions

View File

@ -32,3 +32,6 @@ paned.vertical > separator {
button:not(.flat) {
box-shadow: 0 1px @extreme-selected-color inset;
}
button:not(.flat):hover {
box-shadow: none;
}