Skip to content

Instantly share code, notes, and snippets.

@k0ta0uchi
Created December 7, 2017 08:11
Show Gist options
  • Save k0ta0uchi/ce5ab358d998ced787e4094b43425934 to your computer and use it in GitHub Desktop.
Save k0ta0uchi/ce5ab358d998ced787e4094b43425934 to your computer and use it in GitHub Desktop.
autohide bookmarkbar
#PersonalToolbar {
visibility: collapse !important;
opacity: 0.1;
-moz-transition: visibility 30s, opacity 30s ease !important;
}
#navigator-toolbox:hover #PersonalToolbar {
visibility: visible !important;
opacity: 9;
-moz-transition: visibility !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment