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
pull/260/head
MrOtherGuy 2 years ago
parent 73f72d8c37
commit 5facc2e8c9

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

Loading…
Cancel
Save