1
0
Fork 1
mirror of https://github.com/zen-browser/desktop.git synced 2025-07-15 08:43:52 +02:00
zen-desktop/src/browser/base/content/zen-styles/zen-tabs/vertical-tabs-topbar.inc.css
2025-03-27 00:22:43 +01:00

35 lines
840 B
CSS

height: var(--zen-toolbar-height);
@media -moz-pref('zen.view.hide-window-controls') {
& {
transition:
height 0.15s ease,
opacity 0.1s ease-out;
transition-delay: 0.2s;
& > * {
transition: opacity 0.2s ease-out;
transition-delay: 0.2s;
}
}
&:not([zen-has-hover='true']):not([has-popup-menu]):not(:focus-within):not(:has(*:is([panelopen='true'], [open='true']))) {
transition-delay: 0.2s;
height: var(--zen-element-separation);
overflow: hidden;
opacity: 0;
& > * {
opacity: 0;
pointer-events: none;
}
}
@media -moz-pref('zen.view.experimental-no-window-controls') {
&:has(#PersonalToolbar[collapsed='true']) {
max-height: 0 !important;
overflow: hidden;
opacity: 0 !important;
pointer-events: none !important;
}
}
}