Skip to content

Instantly share code, notes, and snippets.

@ecornell
Last active February 21, 2024 20:03
Show Gist options
  • Save ecornell/5558721 to your computer and use it in GitHub Desktop.
Save ecornell/5558721 to your computer and use it in GitHub Desktop.
Firefox - Auto-hide Bookmark Bar | Works with Stylish
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
#PersonalToolbar {
visibility: collapse !important;
opacity: 0.01;
-moz-transition: visibility 0.5s, opacity 0.5s ease !important;
position: fixed !important;
width: 100% !important;
padding: 3px 3px 3px 3px !important;
z-index: 10;
top: 59px !important; /* 59px OSX / 71px Windows 8 - Default Theme */
}
#navigator-toolbox:hover #PersonalToolbar {
visibility: visible !important;
opacity: 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment