gtk2/testsuite/css/style/adjacent-states.css
Matthias Clasen 6d239cfba7 Add a css style test for adjacent states
This test checks that the selector E:state + F works as expected.

https://bugzilla.gnome.org/show_bug.cgi?id=722727
2016-01-10 14:51:36 -05:00

8 lines
86 B
CSS

checkbutton:checked + label {
color: red;
}
checkbutton + label {
color: blue;
}