From d361538ce2c43c81bc322a3ac66ab38ec000263f Mon Sep 17 00:00:00 2001 From: Nicolas Agustin Guevara Pihen <42900763+Tostti@users.noreply.github.com> Date: Thu, 14 Nov 2024 08:56:32 -0300 Subject: [PATCH] Fix wrong color of buttons in dark mode (#7153) * Fix styles issue * Restore styles to original location --- .../main/public/styles/theme/dark/index.dark.scss | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/plugins/main/public/styles/theme/dark/index.dark.scss b/plugins/main/public/styles/theme/dark/index.dark.scss index 4a0734970c..48b2612403 100644 --- a/plugins/main/public/styles/theme/dark/index.dark.scss +++ b/plugins/main/public/styles/theme/dark/index.dark.scss @@ -452,3 +452,15 @@ svg .legend text { 0 3px 2px -2px rgba(0, 0, 0, 0.2), inset 0 0 0 1px #424752 !important; } } + +/* wzDocViewer buttons */ + +tr:hover { + .wzDocViewer__buttons::before { + background-image: linear-gradient( + to right, + transparent 0, + #1d1e24 4px + ) !important; + } +}