Hi, everyone
Some time ago, Firefox started displaying a sound speaker, that replaced the favicon, whenever sound was being played in a tab. (It seems it's an old featur… (read more)
Hi, everyone
Some time ago, Firefox started displaying a sound speaker, that replaced the favicon, whenever sound was being played in a tab. (It seems it's an old feature, but I've only ever noticed it not long ago.) The thing is, a few updates ago, the speaker stopped replacing the favicon and appears to the side of it. I preferred it when it replaced the favicon, so I've been looking for a way to bring it back.
With some help from ChatGPT, I was able to get close to what it was, by using the userChrome.css, but not quite. I asked it to create a code to hide the favicon, hoping that would do it, and this is what it came up with:
/* HIDE TAB FAVICON WHEN PLAYING SOUND AND SHIFT SPEAKER ICON LEFT */
.tabbrowser-tab:not([pinned], [sharing], [crashed]):is([activemedia-blocked], [soundplaying], [muted]) .tab-icon-image {
display: none !important;
}
It hides the favicon, but the speaker doesn't align with the favicon and the tab title is also slightly offset to the right. There's a space or margin somewhere. I tried removing margins (with the help of my technician), to no avail.
Is there any way of getting that previous behavior back?
Thank you.