-
Notifications
You must be signed in to change notification settings - Fork 280
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
4.1.1 mute button theming is broken #3696
Comments
Same for me. |
Also have this problem. |
Update: I do have this issue on a laptop running Linux Mint 22 Cinnamon, while it is not seen on another laptop running Ubuntu 20.04; both uses the latest available version of Firefox. |
Sorry I missed this. The appearance of the "sound playing" button will be uniformed on all themes, with the commit 04cf13b. Screenshots with the commit: |
Here's the fix I'm using in the mean time. #3695 |
It is white icon on black background on your configuration. But it's black icon on black background on mine, so I can't see the icon. Currently I use this workaround: tab-sound-button::before {
background: white;
}
tab-sound-button {
filter: invert();
} |
@tcbbd @nk-tedo-001 Does your problem still happen with Firefox's system theme and no userChrome.css, no user stylesheet in TST's options? What themes of Firefox and the platform do you use? |
Oh, I have it but it seems like there is nothing to conflict with the media icon
Also for my user stylesheet - there is only a workaround
Theme - System Auto |
@piroor The problem disappears in a fresh profile. But it seem this is not related to userChrome.css or user style. Because when I import those from my daily profile into the new profile, the mute button still works fine. I'm not sure what addon or config option causes the problem. Theme - System Auto Okay, I found that on my daily profile, the addon activates this style: tab-item:not(.collapsed).sound-playing:not(.muted) tab-sound-button::after,
tab-item:not(.collapsed).has-sound-playing-member.subtree-collapsed[data-child-ids]
tab-sound-button::after {
background-image: url("./icons/audio-16.svg");
} But on the fresh profile, the addon activates this style: :root.simulate-svg-context-fill tab-item:not(.collapsed).sound-playing:not(.muted) tab-sound-button::after,
:root.simulate-svg-context-fill tab-item:not(.collapsed).has-sound-playing-member.subtree-collapsed[data-child-ids]
tab-sound-button::after {
background-image: none;
mask-image: url("./icons/audio-16.svg");
} Both are on Tree Style Tab 4.1.3. |
@tcbbd Thank you for investigation! In short: you need to turn |
@nk-tedo-001 I couldn't reproduce the problem with TST 4.1.3 on Nightly 137.0a1 on macOS. One note: the workaround you set need to be removed when you use newer TST - the workaround conflicts updated TST. |
I will use |
This issue has been closed due to no response within 14 days after labeled as "fixed", 7 days after last reopened, and 7 days after last commented. |
Abstract
Steps to reproduce
Expected result
Audio playing indicator/mute button looks like it did before.
Actual result
Mute button is giant and unthemed.
The text was updated successfully, but these errors were encountered: