We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3952a93 commit 11cadcaCopy full SHA for 11cadca
lib/lexer.js
@@ -29,7 +29,11 @@ var pseudos = [
29
'root',
30
'empty',
31
'target',
32
- 'not'
+ 'not',
33
+ '-o',
34
+ '-ms',
35
+ '-moz',
36
+ '-webkit'
37
]
38
39
/**
test/cases/pseudos.css
@@ -62,5 +62,9 @@
62
a:after
63
color: white
64
65
+input:-webkit-autofill ~ .error
66
+ pointer-events: none
67
+ z-index: inherit
68
+
69
textarea:focus::-webkit-input-placeholder
70
color: #cdcdcd
test/cases/pseudos.out.css
@@ -77,6 +77,11 @@
77
color: white;
78
}
79
80
+input:-webkit-autofill ~ .error {
81
+ pointer-events: none;
82
+ z-index: inherit;
83
+}
84
85
textarea:focus::-webkit-input-placeholder {
86
color: #cdcdcd;
87
0 commit comments