Last active
November 19, 2017 10:53
-
-
Save KevCui/79cd8a8291c7a55159e78f283406bcfe to your computer and use it in GitHub Desktop.
Firefox UI customization
This file contains hidden or 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
/* 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