Files
gtk/testsuite/css/parser/pseudo-classes-known.css
Alice Mikhaylenko 76421847a5 cssselector: Support :root
This will be useful for defining global variables.
2024-04-22 18:55:35 +04:00

56 lines
396 B
CSS

:active {
color: red;
}
:hover {
color: red;
}
:selected {
color: red;
}
:disabled {
color: red;
}
:indeterminate {
color: red;
}
:focus {
color: red;
}
:backdrop {
color: red;
}
:dir(ltr) {
color: red;
}
:dir(rtl) {
color: red;
}
:link {
color: red;
}
:visited {
color: red;
}
:checked {
color: red;
}
:drop(active) {
color: red;
}
:root {
color: red;
}