mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 19:00:08 +00:00
5b33127692
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.
12 lines
141 B
CSS
12 lines
141 B
CSS
* {
|
|
-gtk-icon-filter: none;
|
|
}
|
|
|
|
:nth-child(2) {
|
|
-gtk-icon-filter: opacity(0.5);
|
|
}
|
|
|
|
:nth-child(3) {
|
|
-gtk-icon-filter: brightness(1.2);
|
|
}
|