From 820e96c67bff5fe4ec0a0c3deced71cd8be60ae0 Mon Sep 17 00:00:00 2001 From: Alx Sa Date: Thu, 14 Dec 2023 19:39:54 +0000 Subject: [PATCH] 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. --- themes/Default/common-dark.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/themes/Default/common-dark.css b/themes/Default/common-dark.css index a66b641b4a..4b3ea24f61 100644 --- a/themes/Default/common-dark.css +++ b/themes/Default/common-dark.css @@ -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; +}