-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathaffected-props.js
49 lines (48 loc) · 1005 Bytes
/
affected-props.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// selectors have direction related properties
// should add [dir] prefix to increase priority
module.exports = [
'background',
'background-attachment',
'background-color',
'background-clip',
'-webkit-background-clip',
'background-image',
'background-position',
'background-position-x',
'background-position-y',
'background-repeat',
'background-size',
'border',
'border-bottom',
'border-bottom-color',
'border-bottom-style',
'border-bottom-width',
'border-color',
'border-style',
'border-width',
'border-top',
'border-top-color',
'border-top-style',
'border-top-width',
'border-radius',
'box-shadow',
'clear',
'cursor',
'float',
'margin',
'margin-top',
'margin-bottom',
'padding',
'padding-top',
'padding-bottom',
'transform-origin',
'transform',
'-webkit-transition',
'transition-delay',
'transition-duration',
'transition-property',
'transition-timing-function',
'text-align',
'text-align-last',
'text-shadow',
];