gtk/tests/reftests/css-match-siblings.css

20 lines
186 B
CSS
Raw Normal View History

* + *,
#red {
color: red
}
* ~ * ~ GtkLabel,
#green {
color: green;
}
* ~ * + GtkLabel ~ *,
#blue {
color: blue;
}
* + GtkLabel ~ * ~ GtkLabel + *,
#purple {
color: purple;
}