Forked from superbiche/remove-firefox-sound-tab.scss
Last active
December 3, 2020 15:49
-
-
Save aesophor/2e282e6b65b5f1863616d372aad3f885 to your computer and use it in GitHub Desktop.
Disable sound indicator icons in Firefox pinned tabs
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
Paste this fucking shit into userChrome.css | |
``` | |
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | |
.tabbrowser-tab[pinned] :-moz-any(.tab-icon-overlay[soundplaying]) { | |
display: none !important; | |
} | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment