From 0936153495d1787e06b1748f2ae79a56c18f17ae Mon Sep 17 00:00:00 2001 From: MrOtherGuy Date: Fri, 22 Mar 2024 07:38:53 +0200 Subject: [PATCH] Make multi-row-tabs patch handle translucent toolbar a bit better --- chrome/multi-row_tabs_window_control_patch.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/chrome/multi-row_tabs_window_control_patch.css b/chrome/multi-row_tabs_window_control_patch.css index b6dd397..f873bb4 100644 --- a/chrome/multi-row_tabs_window_control_patch.css +++ b/chrome/multi-row_tabs_window_control_patch.css @@ -10,11 +10,13 @@ See the above repository for updates as well as full license text. */ #titlebar{ flex-direction: column-reverse; + will-change: unset !important; + opacity: 1 !important; } #toolbar-menubar{ height: 40px; margin-bottom: -40px; - background-color: var(--toolbar-bgcolor) + background-color: var(--toolbar-bgcolor); } :root[uidensity="compact"] #toolbar-menubar{ height: 32px; margin-bottom: -32px } :root[tabsintitlebar] #nav-bar{ padding-right: 138px; margin-left: 30px; } @@ -24,6 +26,9 @@ See the above repository for updates as well as full license text. */ background-image: linear-gradient( to left,transparent,var(--toolbar-bgcolor) 35px); color: var(--toolbar-color); } +#main-menubar:not(:has(>[_moz-menuactive])){ + opacity: 0; +} #main-menubar:last-child{ padding-inline-end: 40px }