W32: Give unfocused selected list items special background, like Explorer does

https://bugzilla.gnome.org/show_bug.cgi?id=727244
This commit is contained in:
Руслан Ижбулатов 2014-04-02 17:42:31 +00:00
parent fb9a6bb6d8
commit 3540e6ca57

View File

@ -328,10 +328,14 @@
}
.list-row:selected {
background-color: transparent;
/* Override *:selected {} blanket style, keeping the background - bright
and the text - dark */
background-color: transparent;
color: @text_color;
background-image: -gtk-win32-theme-part(listview, 6 13);
}
.list-row:selected:focus {
background-image: -gtk-win32-theme-part(listview, 6 11);
}