Created
April 8, 2020 15:54
-
-
Save xypnox/62e6817a9410c16f12c74756cea41ba4 to your computer and use it in GitHub Desktop.
UserChrome autohide ff75
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
#navigator-toolbox { | |
-moz-appearance: none; | |
background-color: #0f111a00 !important; | |
border-top: none; | |
} | |
.browser-toolbar:not(.titlebar-color), | |
#tabbrowser-tabs:not([movingtab]) | |
> .tabbrowser-arrowscrollbox | |
> .tabbrowser-tab | |
> .tab-stack | |
> .tab-background[multiselected='true']:-moz-lwtheme, | |
#tabbrowser-tabs:not([movingtab]) | |
> .tabbrowser-arrowscrollbox | |
> .tabbrowser-tab | |
> .tab-stack | |
> .tab-background[selected='true']:-moz-lwtheme, | |
box { | |
background-color: #0f111a !important; | |
background-image: none !important; | |
} | |
* { | |
--tab-line-color: #ff5370; | |
--tab-min-width: 76px; | |
} | |
#urlbar:not(.megabar):not([focused='true']):-moz-lwtheme, | |
#urlbar.megabar:not([focused='true']):-moz-lwtheme > #urlbar-background, | |
#navigator-toolbox #searchbar:not(:focus-within):-moz-lwtheme, | |
#navigator-toolbox { | |
border: none !important; | |
} | |
#urlbar:not(.megabar):-moz-lwtheme, | |
#urlbar.megabar:-moz-lwtheme > #urlbar-background, | |
#navigator-toolbox #searchbar:-moz-lwtheme { | |
background-color: #0f111a !important; | |
} | |
#navigator-toolbox { | |
--tabs-border-color: #0f111a !important; | |
} | |
toolbox { | |
z-index: 10; | |
margin-top: 0px !important; | |
margin-bottom: -30px !important; | |
height: 0 !important; | |
} | |
#nav-bar { | |
opacity: 0; | |
transition: opacity 0.2s ease-in-out !important; | |
} | |
:hover > toolbox, | |
toolbox:focus-within { | |
opacity: 1; | |
transition: opacity 0.2s ease-in-out !important ; | |
} | |
:hover > #nav-bar, | |
toolbox:focus-within > #nav-bar { | |
opacity: 1; | |
background-color: #0f111a !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment