From 250585b5fd994adb91f565d7df01ac9717af9784 Mon Sep 17 00:00:00 2001 From: MrOtherGuy Date: Wed, 14 Feb 2024 06:20:54 +0200 Subject: [PATCH] vertical tabs: make tabbrowser-tabs have important position:absolute tabbrowser-tabs have position:relative on linux and mac, so we need to override it with !important tag --- chrome/vertical_tabs.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/vertical_tabs.css b/chrome/vertical_tabs.css index 95121b9..ed66d11 100644 --- a/chrome/vertical_tabs.css +++ b/chrome/vertical_tabs.css @@ -26,7 +26,7 @@ See the above repository for updates as well as full license text. */ min-width: 0.1px !important; /* This is to prevent Firefox from thinking that tabs would overflow. Still, if such a situation ever occurs it will prevent the ability to scroll tabs with mouse */ } :root:not([customizing]) #tabbrowser-tabs{ - position: absolute; + position: absolute !important; height: 100vh; left: 0; padding-top: var(--uc-navbar-height);