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
This commit is contained in:
MrOtherGuy
2024-02-14 06:20:54 +02:00
parent 8c7efbcdd4
commit 250585b5fd

View File

@@ -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);