Skip to content

Instantly share code, notes, and snippets.

@KevCui
Last active November 19, 2017 10:53
Show Gist options
  • Save KevCui/79cd8a8291c7a55159e78f283406bcfe to your computer and use it in GitHub Desktop.
Save KevCui/79cd8a8291c7a55159e78f283406bcfe to your computer and use it in GitHub Desktop.
Firefox UI customization
/* How/Where to edit userChrome.css https://i.redd.it/v7lkiqannojz.png */
@-moz-document url("chrome://browser/content/browser.xul") {
/* hide navigation bar */
#nav-bar {
display: none;
}
/* hover the bottom of tab bar to show navigation bar */
#navigator-toolbox:hover > #nav-bar{
display: -moz-box;
}
/* disable tab flash */
.tab-loading-burst[bursting]::before {
animation: none !important;
}
/* remove 'dragging tab' margin/padding nonsense */
#TabsToolbar[movingtab] {
padding-bottom: unset !important;
}
#TabsToolbar[movingtab] > .tabbrowser-tabs {
padding-bottom: unset !important;
margin-bottom: unset !important;
}
#TabsToolbar[movingtab] + #nav-bar {
margin-top: unset !important;
}
/* hide scroll bar */
#content browser {
margin-right: -12px !important;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment