gtk/testsuite/reftests/gtk-image-effect-inherit.css
Benjamin Otte 5b33127692 gtk: Replace -gtk-icon-effect with -gtk-icon-filter
Instead of
  -gtk-icon-effect: dim;
  -gtk-icon-effect: hilight;
we now use
  -gtk-icon-filter: opacity(0.5);
  -gtk-icon-filter: brightness(1.2);
respectively.
2016-12-31 02:49:47 +01:00

12 lines
180 B
CSS

GtkBox > :nth-child(1) {
-gtk-icon-filter: none;
}
GtkBox > :nth-child(2) {
-gtk-icon-filter: brightness(1.2);
}
GtkBox > :nth-child(3) {
-gtk-icon-filter: opacity(0.5);
}