Created
August 24, 2016 14:08
-
-
Save superbiche/c0fa7eb3c912ac2430c78fad4e798718 to your computer and use it in GitHub Desktop.
Disable sound indicator in Firefox tabs Useful if video is muted but the indicator is still visible (PLEASE keep this indicator if you play sound)
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
// Only pinned tabs | |
.tabbrowser-tab[pinned] :-moz-any(.tab-icon-overlay[soundplaying]) { | |
display: none; | |
} | |
// Any tab | |
.tabbrowser-tab :-moz-any(.tab-icon-sound,.tab-icon-overlay[muted]) { | |
display: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This page is high up in Google search results so I'm going to hijack it to post a complete userstyle to do this job:
You can paste the above into a blank style created with the extension "Stylish".Edit: now that Mozilla have downgraded extension support, you'll need to paste it into your UserChrome.css file.