Created
March 12, 2025 20:08
-
-
Save dogancelik/64c8a7cd8560fe522b98f89b7f75b4b2 to your computer and use it in GitHub Desktop.
Better muted tab indicators for Firefox
This file contains 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
/* after Firefox v136 */ | |
.tabbrowser-tab[pinned], | |
.tab-audio-button { | |
border-radius: var(--button-border-radius); | |
&:not([crashed]) { | |
&:is([muted]) { | |
background-color: light-dark(#ff000055, #80000055) !important; | |
} | |
&:not([muted]) { | |
background-color: light-dark(#00ff0055, #00800055) !important; | |
} | |
} | |
} | |
/* before Firefox v136 */ | |
.tab-icon-overlay { | |
&:not([crashed]) { | |
&:is([muted]) { | |
background-color: darkred !important; | |
} | |
&:not([muted]) { | |
background-color: darkgreen !important; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How to install
muted.css
inchrome
folder inside Firefox profile directoryabout:config
toolkit.legacyUserProfileCustomizations.stylesheets
totrue
Preview (v136)