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:
parent
73f72d8c37
commit
5facc2e8c9
1 changed files with 6 additions and 0 deletions
|
@ -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…
Reference in a new issue