Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aesophor/2e282e6b65b5f1863616d372aad3f885 to your computer and use it in GitHub Desktop.
Save aesophor/2e282e6b65b5f1863616d372aad3f885 to your computer and use it in GitHub Desktop.
Disable sound indicator icons in Firefox pinned tabs
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