mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-27 06:00:22 +00:00
22 lines
202 B
CSS
22 lines
202 B
CSS
|
/* test combining multiple state changes */
|
||
|
|
||
|
box {
|
||
|
color: red;
|
||
|
}
|
||
|
|
||
|
label:hover {
|
||
|
color: green;
|
||
|
}
|
||
|
|
||
|
label:backdrop {
|
||
|
color: blue;
|
||
|
}
|
||
|
|
||
|
label:disabled {
|
||
|
color: blue;
|
||
|
}
|
||
|
|
||
|
label:focus {
|
||
|
color: blue;
|
||
|
}
|