Last active
August 16, 2021 02:57
-
-
Save Riari/e19d75fa67f4073d14e50c05e2e99a68 to your computer and use it in GitHub Desktop.
Firefox 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
@media (-moz-proton) { | |
#tabbrowser-tabs { | |
--proton-tab-block-margin: 0; | |
--tab-border-radius: 0; | |
} | |
.tab-background { | |
box-shadow: none !important; | |
margin: 0 !important; | |
} | |
#tabbrowser-tabs .tab-background > .tab-context-line { | |
margin: 0 !important; | |
} | |
.tabbrowser-tab[usercontextid] > .tab-stack > .tab-background > .tab-context-line { | |
height: 1px !important; | |
} | |
.tabbrowser-tab[usercontextid] > .tab-stack > .tab-background > .tab-context-line + .tab-loading-burst.proton { | |
background-color: var(--identity-icon-color); | |
opacity: 0.1; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nice - gonna use that as well. Thanks for sharing!