Skip to content

Instantly share code, notes, and snippets.

@zendbit
Created June 28, 2023 12:25
Show Gist options
  • Save zendbit/0fae6e3d03a6fe791851b828b82c3da5 to your computer and use it in GitHub Desktop.
Save zendbit/0fae6e3d03a6fe791851b828b82c3da5 to your computer and use it in GitHub Desktop.
Hide Firefox Panel Using userChrome.css
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
#navigator-toolbox {
height: 0px !important;
min-height: 0px !important;
overflow: hidden !important;
}
#navigator-toolbox:focus,
#navigator-toolbox:focus-within,
#navigator-toolbox:active {
height: auto !important;
overflow: visible !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment