Created
February 25, 2025 06:33
-
-
Save buvanenko/2f83a2692eb4a5dae57c51995c1a635e to your computer and use it in GitHub Desktop.
userChrome.css
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
| :root { | |
| --bg: #00000066; | |
| --tabpanel-background-color: #00000000 !important; | |
| --in-content-page-background: #00000000 !important; | |
| --in-content-box-background: #00000088 !important; | |
| --tabs-navbar-separator-color: rgba(0, 0, 0, 0) !important; | |
| } | |
| tab.tabbrowser-tab[selected="true"] stack.tab-stack vbox.tab-background { | |
| background: #FFFFFF28 !important; | |
| } | |
| toolbar { | |
| background: transparent !important; | |
| } | |
| /* window transparencies */ | |
| #main-window { | |
| background: var(--bg) !important; | |
| } | |
| /* navbar / tabbar / titlebar */ | |
| #nav-bar { | |
| background: transparent !important; | |
| } | |
| #navigator-toolbox { | |
| background: transparent !important; | |
| } | |
| hbox#urlbar[open="true"] hbox#urlbar-background { | |
| background: #0000000e !important; | |
| } | |
| #browser:not(.browser-toolbox-background) { | |
| background-color: transparent !important; | |
| } | |
| #navigator-toolbox > toolbar:not(#toolbar-menubar):not(#TabsToolbar):not(:-moz-lwtheme) { | |
| margin-bottom: -1px !important; | |
| } | |
| /* Black line */ | |
| #navigator-toolbox { | |
| border-bottom: none !important; | |
| } | |
| #urlbar-background { | |
| background: #FFFFFF28 !important; | |
| } | |
| #urlbar[open] { | |
| background: #2e2e2e !important; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment