Initial commit with hide-appcontent-navbar theme

This commit is contained in:
Chris Toph 2025-05-10 14:31:38 -04:00
commit bc3dc53cef
2 changed files with 22 additions and 0 deletions

View file

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

3
userChrome.css Normal file
View file

@ -0,0 +1,3 @@
# This file is symbolic linked to the userChrome.css file in the profile directory
# I edit this file to test changes to the user interface of Firefox
# Then I apply the changes to whichever theme im developing at the time :)