gtk2/testsuite/css/parser/not.css

81 lines
799 B
CSS
Raw Normal View History

:not(*) {
color: tomato;
}
:not(GtkButton) {
color: tomato;
}
:not(:hover) {
color: tomato;
}
:not(.yourmom) {
color: tomato;
}
:not(#yourmom) {
color: tomato;
}
:not( *) {
color: tomato;
}
:not( GtkButton) {
color: tomato;
}
:not( :hover) {
color: tomato;
}
:not( .yourmom) {
color: tomato;
}
:not( #yourmom) {
color: tomato;
}
:not(* ) {
color: tomato;
}
:not(GtkButton ) {
color: tomato;
}
:not(:hover ) {
color: tomato;
}
:not(.yourmom ) {
color: tomato;
}
:not(#yourmom ) {
color: tomato;
}
:not( * ) {
color: tomato;
}
:not( GtkButton ) {
color: tomato;
}
:not( :hover ) {
color: tomato;
}
:not( .yourmom ) {
color: tomato;
}
:not( #yourmom ) {
color: tomato;
}