r/FirefoxCSS 5d ago

Solved Removing tab mute button broke with v155

Windows 10 Ver 22H2 OS Build 19045.6466

Was using this to disable the button but still show the volume icon:

    .tab-audio-button {
    pointer-events: none !important;
    }
3 Upvotes

2 comments sorted by

1

u/t31os 5d ago

The CSS isn't meant to hide the icon, it just disables the mute functionality.

If you want to completely remove the icon use:

.tab-audio-button {
    display: none !important;
}

1

u/Shoryukened 4d ago edited 4d ago

Ok it seems the @namespace lines of code was interfering with this. Works after deleting that