forked from AuroraMiddleware/gtk
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
180 B
CSS
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);
|
|
}
|