mirror of
https://codeberg.org/claui/mobile-config-firefox.git
synced 2024-11-09 19:30:15 +00:00
add few multi-row_tabs compatibility rules
Empty tabs toolbar won't collapse otherwise because of how flexbox treats visibility:collapse
This commit is contained in:
parent
c5eb21c3dd
commit
4a263d029a
1 changed files with 6 additions and 1 deletions
|
@ -9,7 +9,9 @@ See the above repository for updates as well as full license text. */
|
|||
#titlebar{ -moz-appearance: none !important; }
|
||||
#TabsToolbar{ min-height: 0px !important }
|
||||
|
||||
#tabbrowser-tabs, #tabbrowser-tabs > .tabbrowser-arrowscrollbox, #tabbrowser-arrowscrollbox{ min-height: 0 !important; }
|
||||
#tabbrowser-tabs,
|
||||
#tabbrowser-tabs > .tabbrowser-arrowscrollbox,
|
||||
#tabbrowser-arrowscrollbox{ min-height: 0 !important; }
|
||||
|
||||
:root:not([customizing]) #tabbrowser-tabs .tabs-newtab-button,
|
||||
:root:not([customizing]) #tabs-newtab-button,
|
||||
|
@ -35,6 +37,9 @@ See the above repository for updates as well as full license text. */
|
|||
|
||||
.tabbrowser-tab[first-visible-tab="true"][last-visible-tab="true"]{
|
||||
visibility: collapse !important;
|
||||
/* These seem unnecessary, but they achieve compatibility with hide_tabs_with_one_tab.css */
|
||||
min-height: 0 !important;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
/* Button re-styling */
|
||||
|
|
Loading…
Reference in a new issue