mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-16 07:04:29 +00:00
15 lines
151 B
CSS
15 lines
151 B
CSS
/* test variable changes */
|
|
|
|
box {
|
|
--test: red;
|
|
color: var(--test, green);
|
|
}
|
|
|
|
label:hover {
|
|
--test: blue;
|
|
}
|
|
|
|
label:active {
|
|
--test: initial;
|
|
}
|