This commit is contained in:
MrOtherGuy 2019-10-29 14:15:36 +02:00
parent 5a3115fd1a
commit 20d31ff46b

View file

@ -0,0 +1,10 @@
/* 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; }