From cc120f1bd93e125e4e28198d4f2e1555e4fdae02 Mon Sep 17 00:00:00 2001 From: Alx Sa Date: Wed, 3 Apr 2024 13:38:01 +0000 Subject: [PATCH] themes: Define box-shadow for tooltips Resolves #9795 (Solution provided by Andreas G, @uriesk) Some system themes provide errant values for tooltip box-shadows which cause flickering effects. This patch defines the tooltip box-shadow to 0px to prevent the issue. --- themes/Default/common.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/themes/Default/common.css b/themes/Default/common.css index ddd0a33085..848d4adb6d 100644 --- a/themes/Default/common.css +++ b/themes/Default/common.css @@ -473,6 +473,11 @@ tooltip box border: 0px solid @transparent; } +/* Prevents flickering effect on some desktops */ +tooltip decoration { + box-shadow: 0px 0px; +} + /* The border around a tooltip */ .background { background-color: @bg-color;