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
@Artfunkel Thanks so much. Finally a solution that really works.