From bc3dc53cef26b0a66cca729fc1d48b4c78aa8c6e Mon Sep 17 00:00:00 2001 From: Chris Toph Date: Sat, 10 May 2025 14:31:38 -0400 Subject: [PATCH] Initial commit with hide-appcontent-navbar theme --- hide-appcontent-navbar/userChrome.css | 19 +++++++++++++++++++ userChrome.css | 3 +++ 2 files changed, 22 insertions(+) create mode 100644 hide-appcontent-navbar/userChrome.css create mode 100644 userChrome.css diff --git a/hide-appcontent-navbar/userChrome.css b/hide-appcontent-navbar/userChrome.css new file mode 100644 index 0000000..aaa31ae --- /dev/null +++ b/hide-appcontent-navbar/userChrome.css @@ -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; + } +} \ No newline at end of file diff --git a/userChrome.css b/userChrome.css new file mode 100644 index 0000000..454d32a --- /dev/null +++ b/userChrome.css @@ -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 :) \ No newline at end of file