Last active
March 2, 2020 10:17
-
-
Save andrewiankidd/52279d60bb1235a472244ecc95a1bdf2 to your computer and use it in GitHub Desktop.
Firefox Quantum UserChrome.css (LessChrome HD)
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
/* | |
* Do not remove the @namespace line -- it's required for correct functioning | |
*/ | |
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */ | |
#nav-bar{ | |
margin-top: -32px; | |
visibility: hidden; | |
transition:0s all 2s; | |
} | |
#TabsToolbar:active ~ #nav-bar, #nav-bar:hover{ | |
margin-top: 0px; | |
visibility: visible; | |
transition:0s all 0s; | |
} | |
.tabbrowser-tabs { | |
display: inline-block; | |
text-align: center; | |
width:auto; | |
} | |
/* | |
.tabbrowser-tab { | |
display: contents; | |
}*/ | |
/*.tab-label-container,*/ .titlebar-placeholder{ | |
display:none !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment