|
1 | 1 | /* for testing opacity set in styles in IE */ |
2 | 2 | ol#empty { |
3 | | - opacity: 0; |
4 | | - filter:Alpha(opacity=0) progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffff0000', EndColorStr='#ffffffff'); |
| 3 | + opacity: 0; |
| 4 | + filter:Alpha(opacity=0) progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffff0000', EndColorStr='#ffffffff'); |
5 | 5 | } |
6 | 6 |
|
7 | 7 | div#fx-tests h4 { |
8 | | - background: red; |
| 8 | + background: red; |
9 | 9 | } |
10 | 10 |
|
11 | 11 | div#fx-tests h4.pass { |
12 | | - background: green; |
| 12 | + background: green; |
13 | 13 | } |
14 | 14 |
|
15 | 15 | div#fx-tests div.box { |
16 | | - background: red; |
17 | | - overflow: hidden; |
18 | | - border: 2px solid #000; |
| 16 | + background: red; |
| 17 | + overflow: hidden; |
| 18 | + border: 2px solid #000; |
19 | 19 | } |
20 | 20 |
|
21 | 21 | div#fx-tests div.overflow { |
22 | | - overflow: visible; |
| 22 | + overflow: visible; |
23 | 23 | } |
24 | 24 |
|
25 | 25 | div.inline { |
26 | | - display: inline; |
| 26 | + display: inline; |
27 | 27 | } |
28 | 28 |
|
29 | 29 | div.autoheight { |
30 | | - height: auto; |
| 30 | + height: auto; |
31 | 31 | } |
32 | 32 |
|
33 | 33 | div.autowidth { |
34 | | - width: auto; |
| 34 | + width: auto; |
35 | 35 | } |
36 | 36 |
|
37 | 37 | div.autoopacity { |
38 | | - opacity: auto; |
| 38 | + opacity: auto; |
39 | 39 | } |
40 | 40 |
|
41 | 41 | div.largewidth { |
42 | | - width: 100px; |
| 42 | + width: 100px; |
43 | 43 | } |
44 | 44 |
|
45 | 45 | div.largeheight { |
46 | | - height: 100px; |
| 46 | + height: 100px; |
47 | 47 | } |
48 | 48 |
|
49 | 49 | div.largeopacity { |
50 | | - filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100); |
| 50 | + filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100); |
51 | 51 | } |
52 | 52 |
|
53 | 53 | div.medwidth { |
54 | | - width: 50px; |
| 54 | + width: 50px; |
55 | 55 | } |
56 | 56 |
|
57 | 57 | div.medheight { |
58 | | - height: 50px; |
| 58 | + height: 50px; |
59 | 59 | } |
60 | 60 |
|
61 | 61 | div.medopacity { |
62 | | - opacity: 0.5; |
63 | | - filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50); |
| 62 | + opacity: 0.5; |
| 63 | + filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50); |
64 | 64 | } |
65 | 65 |
|
66 | 66 | div.nowidth { |
67 | | - width: 0px; |
| 67 | + width: 0px; |
68 | 68 | } |
69 | 69 |
|
70 | 70 | div.noheight { |
71 | | - height: 0px; |
| 71 | + height: 0px; |
72 | 72 | } |
73 | 73 |
|
74 | 74 | div.noopacity { |
75 | | - opacity: 0; |
76 | | - filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0); |
| 75 | + opacity: 0; |
| 76 | + filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0); |
77 | 77 | } |
78 | 78 |
|
79 | 79 | div.hidden { |
80 | | - display: none; |
| 80 | + display: none; |
81 | 81 | } |
82 | 82 |
|
83 | 83 | div#fx-tests div.widewidth { |
84 | | - background-repeat: repeat-x; |
| 84 | + background-repeat: repeat-x; |
85 | 85 | } |
86 | 86 |
|
87 | 87 | div#fx-tests div.wideheight { |
88 | | - background-repeat: repeat-y; |
| 88 | + background-repeat: repeat-y; |
89 | 89 | } |
90 | 90 |
|
91 | 91 | div#fx-tests div.widewidth.wideheight { |
92 | | - background-repeat: repeat; |
| 92 | + background-repeat: repeat; |
93 | 93 | } |
94 | 94 |
|
95 | 95 | div#fx-tests div.noback { |
96 | | - background-image: none; |
| 96 | + background-image: none; |
97 | 97 | } |
98 | 98 |
|
99 | 99 | .chain-test, |
100 | 100 | .chain-test div { |
101 | | - width: 100px; |
102 | | - height: 20px; |
103 | | - position: relative; |
104 | | - float: left; |
| 101 | + width: 100px; |
| 102 | + height: 20px; |
| 103 | + position: relative; |
| 104 | + float: left; |
105 | 105 | } |
106 | 106 | .chain-test div { |
107 | | - position: absolute; |
108 | | - top: 0; |
109 | | - left: 0; |
| 107 | + position: absolute; |
| 108 | + top: 0; |
| 109 | + left: 0; |
110 | 110 | } |
111 | 111 |
|
112 | 112 | .chain-test { |
113 | | - background: red; |
| 113 | + background: red; |
114 | 114 | } |
115 | 115 | .chain-test div { |
116 | | - background: green; |
| 116 | + background: green; |
117 | 117 | } |
118 | 118 |
|
119 | 119 | .chain-test-out { |
120 | | - background: green; |
| 120 | + background: green; |
121 | 121 | } |
122 | 122 | .chain-test-out div { |
123 | | - background: red; |
124 | | - display: none; |
| 123 | + background: red; |
| 124 | + display: none; |
125 | 125 | } |
126 | 126 |
|
127 | 127 | /* tests to ensure jQuery can determine the native display mode of elements |
@@ -159,19 +159,19 @@ section { background:#f0f; display:block; } |
159 | 159 |
|
160 | 160 | /* fix get alpha opacity in IE8 */ |
161 | 161 | .fix-get-alpha-opacity-in-ie8 { |
162 | | - opacity: 0.5; |
163 | | - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; |
| 162 | + opacity: 0.5; |
| 163 | + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; |
164 | 164 | } |
165 | 165 |
|
166 | 166 | #div-gh-2836 { |
167 | | - position: relative; |
168 | | - overflow: auto; |
169 | | - height: 100px; |
| 167 | + position: relative; |
| 168 | + overflow: auto; |
| 169 | + height: 100px; |
170 | 170 | } |
171 | 171 | #div-gh-2836 div { |
172 | | - position: relative; |
173 | | - height: 100%; |
174 | | - padding: 0; |
175 | | - margin: 0; |
| 172 | + position: relative; |
| 173 | + height: 100%; |
| 174 | + padding: 0; |
| 175 | + margin: 0; |
176 | 176 | } |
177 | 177 |
|
0 commit comments