-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcssp_prefix.cssp
93 lines (76 loc) · 1.77 KB
/
cssp_prefix.cssp
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
@css-rule border-radius(1) {
-webkit-border-radius: $0;
-moz-border-radius: $0;
border-radius: $0;
}
@css-rule border-radius(2) {
-webkit-border-radius: $0;
-moz-border-radius: $0;
border-radius: $0;
}
@css-rule border-radius(4) {
-webkit-border-top-left-radius: $1;
-webkit-border-top-right-radius: $2;
-webkit-border-bottom-right-radius: $3;
-webkit-border-bottom-left-radius: $4;
-moz-border-radius: $0;
border-radius: $0;
}
@css-rule border-radius(8) {
-webkit-border-top-left-radius: $1 $2;
-webkit-border-top-right-radius: $3 $4;
-webkit-border-bottom-right-radius: $5 $6;
-webkit-border-bottom-left-radius: $7 $8;
-moz-border-radius: $0;
border-radius: $0;
}
@css-rule border-top-left-radius {
-webkit-border-top-left-radius: $0;
-moz-border-radius-topleft: $0;
border-top-left-radius: $0;
}
@css-rule border-top-right-radius {
-webkit-border-top-right-radius: $0;
-moz-border-radius-topright: $0;
border-top-right-radius: $0;
}
@css-rule border-bottom-right-radius {
-webkit-border-bottom-right-radius: $0;
-moz-border-radius-bottomright: $0;
border-bottom-right-radius: $0;
}
@css-rule border-bottom-left-radius {
-webkit-border-bottom-left-radius: $0;
-moz-border-radius-bottomleft: $0;
border-bottom-left-radius: $0;
}
@css-rule opacity {
opacity: $1;
filter: alpha(opacity=$1*100);
}
@css-rule box-shadow {
-moz-box-shadow: $0;
-webkit-box-shadow: $0;
box-shadow: $0;
}
@css-rule display {
@css-switch ($1) {
@css-case 'block' {
display: $0;
*zoom: 1;
}
@css-case 'inline-block' {
display: -moz-inline-box;
display: $0;
*zoom: 1;
*display: inline;
}
@css-default {
display: $0;
}
}
}
@css-rule text-overflow {
text-overflow: $0;
-o-text-overflow: $0;
}