Last active
February 21, 2024 20:03
-
-
Save ecornell/5558721 to your computer and use it in GitHub Desktop.
Firefox - Auto-hide Bookmark Bar | Works with Stylish
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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