reduce selector specificity when setting tab height
This commit is contained in:
parent
cd53cad31c
commit
c5eb21c3dd
1 changed files with 5 additions and 3 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue