GNOME Bugzilla – Bug 767391
cross-fade() not cross-fading
Last modified: 2016-09-06 10:39:19 UTC
cross-fade() doesn't seem like working, something simple as `button { background-image: cross-fade(image(red), image(blue)); }` in the inspector on the widget-factory gives me no background-image and a terminal output full of: (gtk3-widget-factory:24074): Gdk-CRITICAL **: gdk_cairo_set_source_rgba: assertion 'rgba != NULL' failed (gtk3-widget-factory:24074): Gtk-CRITICAL **: _gtk_css_rgba_value_get_rgba: assertion 'rgba->class == >K_CSS_VALUE_RGBA' failed
Motivating example: I want to apply a tint to the background-image to improve visibility of a hovered row in a treeview. treeview:hover { background-image: cross-fade (90% url("bg.png"), @light_bg_color); } explicitly using "bg.png" would be a work around, ideally i'd want to use the existing image and just apply a shade or something.