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

20 lines
184 B
CSS
Raw Normal View History

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