Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ParoTheParrot/7b2902916aa4333ecdef0428800d97cd to your computer and use it in GitHub Desktop.
Save ParoTheParrot/7b2902916aa4333ecdef0428800d97cd to your computer and use it in GitHub Desktop.
Hide address-bar AND Tabs unless mouse over #firefox
/* Hide address-bar AND Tabs unless mouse over https://www.reddit.com/r/FirefoxCSS/comments/hyqj5y/hide_addressbar_and_tabs_unless_mouse_over/ */
#nav-bar {
/* customize this value. */
--navbar-margin: -32px;
margin-top: 0;
margin-bottom: var(--navbar-margin);
z-index: -100;
}
#navigator-toolbox:focus-within > #nav-bar,
#navigator-toolbox:hover > #nav-bar
{
margin-top: 0;
margin-bottom: var(--navbar-margin);
z-index: 100;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment