W32: Fix dummy prelight style for check/radio buttons

Use a dummy transparent gradient instead of actual color (which screws up
focus rectangle on prelight), and apply to non-prelight state as well.

https://bugzilla.gnome.org/show_bug.cgi?id=728807
This commit is contained in:
Руслан Ижбулатов 2014-04-23 15:58:45 +00:00
parent f4b61e92f6
commit 5309149f75

View File

@ -160,9 +160,11 @@ GtkRadioButton:prelight:selected {
}
/* This is meaningless, it just enables prelight propagation to check/radio mark */
GtkCheckButton,
GtkRadioButton,
GtkCheckButton:prelight,
GtkRadioButton:prelight {
color: @fg_color;
background-image: -gtk-gradient (linear, left top, right bottom, from(transparent), to(transparent));
}
.check {