reduce selector specificity when setting tab height

This commit is contained in:
MrOtherGuy 2022-04-17 15:26:22 +03:00
parent cd53cad31c
commit c5eb21c3dd

View file

@ -29,9 +29,11 @@ See the above repository for updates as well as full license text. */
} }
.accessibility-indicator > hbox{ padding-block: 0 !important } .accessibility-indicator > hbox{ padding-block: 0 !important }
#tabbrowser-tabs .tabbrowser-tab{ height: calc(var(--tab-min-height) + 2 * var(--tab-block-margin,0px)) } .tabbrowser-tab{
height: calc(var(--tab-min-height) + 2 * var(--tab-block-margin,0px));
}
#tabbrowser-tabs .tabbrowser-tab[first-visible-tab="true"][last-visible-tab="true"]{ .tabbrowser-tab[first-visible-tab="true"][last-visible-tab="true"]{
visibility: collapse !important; visibility: collapse !important;
} }
@ -61,4 +63,4 @@ See the above repository for updates as well as full license text. */
} }
:where(#nav-bar){ :where(#nav-bar){
border-inline: var(--uc-window-drag-space-width,0) solid var(--toolbar-bgcolor); border-inline: var(--uc-window-drag-space-width,0) solid var(--toolbar-bgcolor);
} }