Open wirano opened 1 year ago
Same here on NixOS using Catppuccin-Mocha-Standard-Mauve-Dark:
Same for me. This is a problem from the Colloid theme it is based on, since it does the same when using Colloid.
For anyone who comes across this and wants a quick fix, I've narrowed it down to the following rule at gtk-dark.css:645:
actionbar > revealer > box .linked > button:not(.suggested-action):not(.destructive-action), button {
transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1);
outline: none;
box-shadow: inset 0 0 0 9999px transparent;
background-color: rgba(255, 255, 255, 0.08);
background-image: radial-gradient(circle, transparent 10%, transparent 0%);
background-repeat: no-repeat;
background-position: center;
background-size: 1000% 1000%;
color: #FFFFFF;
}
Specifically background-color
on the button
selector. I've just commented that property out locally because I'm impatient.
As far as I can tell, this comes from here and here, with the color being set here. I'm not entirely sure why this is like this or how to fix it properly, but I'll create an issue upstream.
The workaround seemingly does not work anymore, I commented this out in gtk-3.0/gtk-dark.css
actionbar > revealer > box .linked > button:not(.suggested-action):not(.destructive-action), button {
transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1);
outline: none;
box-shadow: inset 0 0 0 9999px transparent;
/* background-color: rgba(255, 255, 255, 0.08); */
background-image: radial-gradient(circle, transparent 10%, transparent 0%);
background-repeat: no-repeat;
background-position: center;
background-size: 1000% 1000%;
color: #FFFFFF;
}
Can repro, tested on v1.0.0-rc3
. Doesn't seem as bad as the original report, but still broken nonetheless.
How to reproduce: