Skip to content

Instantly share code, notes, and snippets.

@BlackSkorpio
Forked from ecornell/firefox-bm-ah.css
Created June 17, 2018 12:24
Show Gist options
  • Save BlackSkorpio/9f698f03b8f31272dda3c5ba62649a92 to your computer and use it in GitHub Desktop.
Save BlackSkorpio/9f698f03b8f31272dda3c5ba62649a92 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