mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-16 23:24:16 +00:00
3ab189404e
Should have been a part of 76421847a5
but I forgot to commit it.
14 lines
160 B
CSS
14 lines
160 B
CSS
:root {
|
|
color: red;
|
|
}
|
|
|
|
window {
|
|
/* :root has higher priority */
|
|
color: blue;
|
|
}
|
|
|
|
label {
|
|
/* :root doesn't apply so it's still green */
|
|
color: green;
|
|
}
|