From 404e564d84d6a32af27fdb82ea3c9981c134f3b2 Mon Sep 17 00:00:00 2001 From: Cameron Redmore Date: Wed, 8 Jan 2025 12:39:32 +0000 Subject: [PATCH] Fixed issues with Firefox 135 --- sidebar-hover-reveal.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/sidebar-hover-reveal.css b/sidebar-hover-reveal.css index bc01974..dec943a 100644 --- a/sidebar-hover-reveal.css +++ b/sidebar-hover-reveal.css @@ -12,11 +12,19 @@ width: var(--sidebar-not-hovered-width) !important; transition: var(--sidebar-transition-duration) !important; z-index: 5 !important; + + background: var(--toolbox-bgcolor); + + &:-moz-window-inactive { + background: var(--toolbox-bgcolor-inactive); + } } #sidebar-main:hover, #sidebar-main:active, #sidebar-main:focus, #sidebar-main:focus-within { margin-right: calc(-1 * (var(--sidebar-hovered-width) - 50px)) !important; width: var(--sidebar-hovered-width) !important; + + box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5); } #tabbrowser-tabs[orient="vertical"] {