non-floating-tabs: Make selected tab have position: relative again

Firefox 110 made selected tab static, but we need it to be relative so
that it gets drawn over the navbar top box-shadow
This commit is contained in:
MrOtherGuy 2023-02-15 05:09:44 +02:00
parent 73f72d8c37
commit 5facc2e8c9

View file

@ -68,6 +68,12 @@ See the above repository for updates as well as full license text. */
--uc-scrollbox-base-margin: -22px !important;
}
/* Selected tab needs to be relative so it gets drawn over nav-bar top "border" */
.tabbrowser-tab:not([pinned])[selected]{
position: relative;
z-index: 1;
}
/* tab shaping */
.tabbrowser-tab{ padding-inline: 0 !important; }