zen-themes/hide-appcontent-navbar/userChrome.css

19 lines
No EOL
616 B
CSS

/* Disable hover effect for zen-appcontent-navbar-container */
#zen-appcontent-navbar-container {
height: 1px !important;
overflow: none !important;
transition: none !important;
}
#zen-appcontent-navbar-container>* {
height: 1px !important;
pointer-events: auto !important;
transition: none !important;
}
/* Hide the zen-appcontent-navbar-container */
@media -moz-pref('zen.view.hide-window-controls') {
#zen-appcontent-navbar-container:not([zen-has-hover='true']):not([has-popup-menu]):not(:focus-within):not(:has(*:is([panelopen='true'], [open='true']))) {
scale: 0.0;
}
}