GNOME Bugzilla – Bug 686703
Scale slider background image dissapears when 'color' is set
Last modified: 2012-10-25 22:00:36 UTC
In Sugar theme we have a background image for the scale slider, like Adwaita: .scale.slider { background-color: transparent; background-image: url("assets/scale-slider.svg"); } In a specific window the slider image was not visible. This window inherits GtkWindow. Turned out 'color' rule in that window was the problem: SugarPaletteWindowWidget { color: @white; } The fix was: SugarPaletteWindowWidget .slider { color: transparent; } Looks like a bug to me.
I'm pretty sure what you're seeing is bug 686280, which I fixed in the master and gtk-3-6 branches (these commits [1] and [2]) - the fixes are not yet in a 3.6 stable release tarball, but they will be in 3.6.2 when it's out. I'm going to close this bug as a duplicate, but please reopen if you can test the referenced commits. Thanks. [1] http://git.gnome.org/browse/gtk+/commit/?id=ef027c93d49e2e31ccb8c181d0096c705c141906 [2] http://git.gnome.org/browse/gtk+/commit/?id=ad22a1faf6d3d3df0148c85127dc0048d9bbcd91 *** This bug has been marked as a duplicate of bug 686280 ***
Thanks Cosimo, haven't find time to check by myself yet, but will do.