mirror of
https://codeberg.org/claui/mobile-config-firefox.git
synced 2024-11-10 03:40:14 +00:00
11 lines
417 B
CSS
11 lines
417 B
CSS
|
/* Hide tabs unless cursor is on top of toolbar */
|
||
|
/* This does not support multi-row tabs */
|
||
|
|
||
|
:root:not([customizing]) #titlebar{
|
||
|
margin-bottom: calc(0px - var(--tab-min-height));
|
||
|
transition: margin-bottom 48ms ease-out;
|
||
|
}
|
||
|
#TabsToolbar:not([customizing]){ visibility: hidden; }
|
||
|
#navigator-toolbox:hover > #titlebar{ margin-bottom: 0; }
|
||
|
#navigator-toolbox:hover > #titlebar > #TabsToolbar{ visibility: visible; }
|