mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 08:40:08 +00:00
f3ed498c5b
In widget hierarchy like "Foo Bar Bar Baz", we want the selector "Foo > Bar Baz" to match, because it matches the elements 1, 2 and 4. Previously, the selector only matches the Bar at position 3 and then failed because it wasn't preceded by a Foo.
12 lines
152 B
CSS
12 lines
152 B
CSS
GtkEventBox {
|
|
background-color: blue
|
|
}
|
|
|
|
GtkGrid GtkEventBox {
|
|
background-color: red
|
|
}
|
|
|
|
GtkWindow > GtkGrid GtkEventBox {
|
|
background-color: blue
|
|
}
|