qedproject 0.3.2 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/qedproject +5 -1
- data/lib/qedproject/libraries/jquery.rb +1 -1
- data/lib/qedproject/libraries/jquerymobile.rb +3 -3
- data/lib/qedproject/libraries/skeleton.rb +1 -1
- data/lib/qedproject/project.rb +2 -2
- data/lib/qedproject/version.rb +1 -1
- data/templates/Guardfile +7 -5
- data/templates/assets.yml +2 -2
- data/templates/sampleSpec.js +5 -6
- data/templates/suite.html +28 -28
- data/vendor/jasmine/lib/{jasmine-1.1.0 → jasmine-1.2.0}/jasmine-html.js +1 -61
- data/vendor/jasmine/lib/{jasmine-1.1.0 → jasmine-1.2.0}/jasmine.js +185 -184
- data/vendor/jquery/VERSION +1 -1
- data/vendor/jquery/jquery-1.8.2.min.js +2 -0
- data/vendor/jquerymobile/ajax-loader.gif +0 -0
- data/vendor/jquerymobile/{jquery.mobile-1.1.0.css → jquery.mobile-1.2.0.css} +611 -332
- data/vendor/jquerymobile/{jquery.mobile-1.1.0.js → jquery.mobile-1.2.0.js} +6591 -4980
- data/vendor/skeleton/VERSION +1 -5
- data/vendor/skeleton/base.css +2 -76
- data/vendor/skeleton/layout.css +2 -2
- data/vendor/skeleton/skeleton.css +2 -2
- data/vendor/skeleton/templates/index.html +50 -52
- metadata +95 -67
- data/vendor/jasmine/lib/jasmine-1.1.0/jasmine_favicon.png +0 -0
- data/vendor/jquery/jquery-1.7.0.min.js +0 -4
- data/vendor/jquerymobile/ajax-loader.png +0 -0
- data/vendor/skeleton/tabs.js +0 -29
- /data/vendor/jasmine/lib/{jasmine-1.1.0 → jasmine-1.2.0}/jasmine.css +0 -0
@@ -1,21 +1,23 @@
|
|
1
1
|
/*
|
2
|
-
* jQuery Mobile Framework
|
2
|
+
* jQuery Mobile Framework Git Build: SHA1: b49cc06499abf8f987cf90f35349cfac0918c939 <> Date: Tue Oct 2 11:22:34 2012 -0700
|
3
3
|
* http://jquerymobile.com
|
4
4
|
*
|
5
|
-
* Copyright
|
6
|
-
*
|
5
|
+
* Copyright 2012 jQuery Foundation and other contributors
|
6
|
+
* Released under the MIT license.
|
7
7
|
* http://jquery.org/license
|
8
8
|
*
|
9
9
|
*/
|
10
|
+
|
11
|
+
|
10
12
|
/* Swatches */
|
11
13
|
/* A
|
12
14
|
-----------------------------------------------------------------------------------------------------------*/
|
13
15
|
.ui-bar-a {
|
14
16
|
border: 1px solid #333 /*{a-bar-border}*/;
|
15
|
-
background: #
|
16
|
-
color: #
|
17
|
+
background: #111 /*{a-bar-background-color}*/;
|
18
|
+
color: #fff /*{a-bar-color}*/;
|
17
19
|
font-weight: bold;
|
18
|
-
text-shadow: 0 /*{a-bar-shadow-x}*/ -1px /*{a-bar-shadow-y}*/ 1px /*{a-bar-shadow-radius}*/ #
|
20
|
+
text-shadow: 0 /*{a-bar-shadow-x}*/ -1px /*{a-bar-shadow-y}*/ 1px /*{a-bar-shadow-radius}*/ #000 /*{a-bar-shadow-color}*/;
|
19
21
|
background-image: -webkit-gradient(linear, left top, left bottom, from( #3c3c3c /*{a-bar-background-start}*/), to( #111 /*{a-bar-background-end}*/)); /* Saf4+, Chrome */
|
20
22
|
background-image: -webkit-linear-gradient( #3c3c3c /*{a-bar-background-start}*/, #111 /*{a-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
21
23
|
background-image: -moz-linear-gradient( #3c3c3c /*{a-bar-background-start}*/, #111 /*{a-bar-background-end}*/); /* FF3.6 */
|
@@ -23,28 +25,28 @@
|
|
23
25
|
background-image: -o-linear-gradient( #3c3c3c /*{a-bar-background-start}*/, #111 /*{a-bar-background-end}*/); /* Opera 11.10+ */
|
24
26
|
background-image: linear-gradient( #3c3c3c /*{a-bar-background-start}*/, #111 /*{a-bar-background-end}*/);
|
25
27
|
}
|
26
|
-
.ui-bar-a,
|
27
|
-
.ui-bar-a input,
|
28
|
-
.ui-bar-a select,
|
29
|
-
.ui-bar-a textarea,
|
28
|
+
.ui-bar-a,
|
29
|
+
.ui-bar-a input,
|
30
|
+
.ui-bar-a select,
|
31
|
+
.ui-bar-a textarea,
|
30
32
|
.ui-bar-a button {
|
31
33
|
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
32
34
|
}
|
33
35
|
.ui-bar-a .ui-link-inherit {
|
34
36
|
color: #fff /*{a-bar-color}*/;
|
35
37
|
}
|
36
|
-
.ui-bar-a .ui-link {
|
38
|
+
.ui-bar-a a.ui-link {
|
37
39
|
color: #7cc4e7 /*{a-bar-link-color}*/;
|
38
40
|
font-weight: bold;
|
39
41
|
}
|
40
|
-
.ui-bar-a .ui-link:
|
41
|
-
|
42
|
+
.ui-bar-a a.ui-link:visited {
|
43
|
+
color: #2489ce /*{a-bar-link-visited}*/;
|
42
44
|
}
|
43
|
-
.ui-bar-a .ui-link:
|
44
|
-
color: #
|
45
|
+
.ui-bar-a a.ui-link:hover {
|
46
|
+
color: #2489ce /*{a-bar-link-hover}*/;
|
45
47
|
}
|
46
|
-
.ui-bar-a .ui-link:
|
47
|
-
|
48
|
+
.ui-bar-a a.ui-link:active {
|
49
|
+
color: #2489ce /*{a-bar-link-active}*/;
|
48
50
|
}
|
49
51
|
.ui-body-a,
|
50
52
|
.ui-overlay-a {
|
@@ -75,17 +77,17 @@
|
|
75
77
|
color: #fff /*{a-body-color}*/;
|
76
78
|
}
|
77
79
|
.ui-body-a .ui-link {
|
78
|
-
color: #
|
80
|
+
color: #2489ce /*{a-body-link-color}*/;
|
79
81
|
font-weight: bold;
|
80
82
|
}
|
83
|
+
.ui-body-a .ui-link:visited {
|
84
|
+
color: #2489ce /*{a-body-link-visited}*/;
|
85
|
+
}
|
81
86
|
.ui-body-a .ui-link:hover {
|
82
|
-
color: #
|
87
|
+
color: #2489ce /*{a-body-link-hover}*/;
|
83
88
|
}
|
84
89
|
.ui-body-a .ui-link:active {
|
85
|
-
color: #
|
86
|
-
}
|
87
|
-
.ui-body-a .ui-link:visited {
|
88
|
-
color: #2489CE /*{a-body-link-visited}*/;
|
90
|
+
color: #2489ce /*{a-body-link-active}*/;
|
89
91
|
}
|
90
92
|
.ui-btn-up-a {
|
91
93
|
border: 1px solid #111 /*{a-bup-border}*/;
|
@@ -93,29 +95,32 @@
|
|
93
95
|
font-weight: bold;
|
94
96
|
color: #fff /*{a-bup-color}*/;
|
95
97
|
text-shadow: 0 /*{a-bup-shadow-x}*/ 1px /*{a-bup-shadow-y}*/ 1px /*{a-bup-shadow-radius}*/ #111 /*{a-bup-shadow-color}*/;
|
96
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #
|
97
|
-
background-image: -webkit-linear-gradient( #
|
98
|
-
background-image: -moz-linear-gradient( #
|
99
|
-
background-image: -ms-linear-gradient( #
|
100
|
-
background-image: -o-linear-gradient( #
|
101
|
-
background-image: linear-gradient( #
|
102
|
-
}
|
98
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #444 /*{a-bup-background-start}*/), to( #2d2d2d /*{a-bup-background-end}*/)); /* Saf4+, Chrome */
|
99
|
+
background-image: -webkit-linear-gradient( #444 /*{a-bup-background-start}*/, #2d2d2d /*{a-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
100
|
+
background-image: -moz-linear-gradient( #444 /*{a-bup-background-start}*/, #2d2d2d /*{a-bup-background-end}*/); /* FF3.6 */
|
101
|
+
background-image: -ms-linear-gradient( #444 /*{a-bup-background-start}*/, #2d2d2d /*{a-bup-background-end}*/); /* IE10 */
|
102
|
+
background-image: -o-linear-gradient( #444 /*{a-bup-background-start}*/, #2d2d2d /*{a-bup-background-end}*/); /* Opera 11.10+ */
|
103
|
+
background-image: linear-gradient( #444 /*{a-bup-background-start}*/, #2d2d2d /*{a-bup-background-end}*/);
|
104
|
+
}
|
105
|
+
.ui-btn-up-a:visited,
|
103
106
|
.ui-btn-up-a a.ui-link-inherit {
|
104
107
|
color: #fff /*{a-bup-color}*/;
|
105
108
|
}
|
106
109
|
.ui-btn-hover-a {
|
107
110
|
border: 1px solid #000 /*{a-bhover-border}*/;
|
108
|
-
background: #
|
111
|
+
background: #444 /*{a-bhover-background-color}*/;
|
109
112
|
font-weight: bold;
|
110
113
|
color: #fff /*{a-bhover-color}*/;
|
111
114
|
text-shadow: 0 /*{a-bhover-shadow-x}*/ 1px /*{a-bhover-shadow-y}*/ 1px /*{a-bhover-shadow-radius}*/ #111 /*{a-bhover-shadow-color}*/;
|
112
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #
|
113
|
-
background-image: -webkit-linear-gradient( #
|
114
|
-
background-image: -moz-linear-gradient( #
|
115
|
-
background-image: -ms-linear-gradient( #
|
116
|
-
background-image: -o-linear-gradient( #
|
117
|
-
background-image: linear-gradient( #
|
118
|
-
}
|
115
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #555 /*{a-bhover-background-start}*/), to( #383838 /*{a-bhover-background-end}*/)); /* Saf4+, Chrome */
|
116
|
+
background-image: -webkit-linear-gradient( #555 /*{a-bhover-background-start}*/, #383838 /*{a-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
117
|
+
background-image: -moz-linear-gradient( #555 /*{a-bhover-background-start}*/, #383838 /*{a-bhover-background-end}*/); /* FF3.6 */
|
118
|
+
background-image: -ms-linear-gradient( #555 /*{a-bhover-background-start}*/, #383838 /*{a-bhover-background-end}*/); /* IE10 */
|
119
|
+
background-image: -o-linear-gradient( #555 /*{a-bhover-background-start}*/, #383838 /*{a-bhover-background-end}*/); /* Opera 11.10+ */
|
120
|
+
background-image: linear-gradient( #555 /*{a-bhover-background-start}*/, #383838 /*{a-bhover-background-end}*/);
|
121
|
+
}
|
122
|
+
.ui-btn-hover-a:visited,
|
123
|
+
.ui-btn-hover-a:hover,
|
119
124
|
.ui-btn-hover-a a.ui-link-inherit {
|
120
125
|
color: #fff /*{a-bhover-color}*/;
|
121
126
|
}
|
@@ -132,6 +137,8 @@
|
|
132
137
|
background-image: -o-linear-gradient( #202020 /*{a-bdown-background-start}*/, #2c2c2c /*{a-bdown-background-end}*/); /* Opera 11.10+ */
|
133
138
|
background-image: linear-gradient( #202020 /*{a-bdown-background-start}*/, #2c2c2c /*{a-bdown-background-end}*/);
|
134
139
|
}
|
140
|
+
.ui-btn-down-a:visited,
|
141
|
+
.ui-btn-down-a:hover,
|
135
142
|
.ui-btn-down-a a.ui-link-inherit {
|
136
143
|
color: #fff /*{a-bdown-color}*/;
|
137
144
|
}
|
@@ -166,24 +173,24 @@
|
|
166
173
|
.ui-bar-b .ui-link-inherit {
|
167
174
|
color: #fff /*{b-bar-color}*/;
|
168
175
|
}
|
169
|
-
.ui-bar-b .ui-link {
|
176
|
+
.ui-bar-b a.ui-link {
|
170
177
|
color: #ddf0f8 /*{b-bar-link-color}*/;
|
171
178
|
font-weight: bold;
|
172
179
|
}
|
173
|
-
.ui-bar-b .ui-link:
|
180
|
+
.ui-bar-b a.ui-link:visited {
|
181
|
+
color: #ddf0f8 /*{b-bar-link-visited}*/;
|
182
|
+
}
|
183
|
+
.ui-bar-b a.ui-link:hover {
|
174
184
|
color: #ddf0f8 /*{b-bar-link-hover}*/;
|
175
185
|
}
|
176
|
-
.ui-bar-b .ui-link:active {
|
186
|
+
.ui-bar-b a.ui-link:active {
|
177
187
|
color: #ddf0f8 /*{b-bar-link-active}*/;
|
178
188
|
}
|
179
|
-
.ui-bar-b .ui-link:visited {
|
180
|
-
color: #ddf0f8 /*{b-bar-link-visited}*/;
|
181
|
-
}
|
182
189
|
.ui-body-b,
|
183
190
|
.ui-overlay-b {
|
184
191
|
border: 1px solid #999 /*{b-body-border}*/;
|
185
192
|
background: #f3f3f3 /*{b-body-background-color}*/;
|
186
|
-
color: #
|
193
|
+
color: #222 /*{b-body-color}*/;
|
187
194
|
text-shadow: 0 /*{b-body-shadow-x}*/ 1px /*{b-body-shadow-y}*/ 0 /*{b-body-shadow-radius}*/ #fff /*{b-body-shadow-color}*/;
|
188
195
|
font-weight: normal;
|
189
196
|
background-image: -webkit-gradient(linear, left top, left bottom, from( #ddd /*{b-body-background-start}*/), to( #ccc /*{b-body-background-end}*/)); /* Saf4+, Chrome */
|
@@ -205,20 +212,20 @@
|
|
205
212
|
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
206
213
|
}
|
207
214
|
.ui-body-b .ui-link-inherit {
|
208
|
-
color: #
|
215
|
+
color: #333 /*{b-body-color}*/;
|
209
216
|
}
|
210
217
|
.ui-body-b .ui-link {
|
211
|
-
color: #
|
218
|
+
color: #2489ce /*{b-body-link-color}*/;
|
212
219
|
font-weight: bold;
|
213
220
|
}
|
221
|
+
.ui-body-b .ui-link:visited {
|
222
|
+
color: #2489ce /*{b-body-link-visited}*/;
|
223
|
+
}
|
214
224
|
.ui-body-b .ui-link:hover {
|
215
|
-
color: #
|
225
|
+
color: #2489ce /*{b-body-link-hover}*/;
|
216
226
|
}
|
217
227
|
.ui-body-b .ui-link:active {
|
218
|
-
color: #
|
219
|
-
}
|
220
|
-
.ui-body-b .ui-link:visited {
|
221
|
-
color: #2489CE /*{b-body-link-visited}*/;
|
228
|
+
color: #2489ce /*{b-body-link-active}*/;
|
222
229
|
}
|
223
230
|
.ui-btn-up-b {
|
224
231
|
border: 1px solid #044062 /*{b-bup-border}*/;
|
@@ -233,6 +240,7 @@
|
|
233
240
|
background-image: -o-linear-gradient( #5f9cc5 /*{b-bup-background-start}*/, #396b9e /*{b-bup-background-end}*/); /* Opera 11.10+ */
|
234
241
|
background-image: linear-gradient( #5f9cc5 /*{b-bup-background-start}*/, #396b9e /*{b-bup-background-end}*/);
|
235
242
|
}
|
243
|
+
.ui-btn-up-b:visited,
|
236
244
|
.ui-btn-up-b a.ui-link-inherit {
|
237
245
|
color: #fff /*{b-bup-color}*/;
|
238
246
|
}
|
@@ -249,6 +257,8 @@
|
|
249
257
|
background-image: -o-linear-gradient( #6facd5 /*{b-bhover-background-start}*/, #4272a4 /*{b-bhover-background-end}*/); /* Opera 11.10+ */
|
250
258
|
background-image: linear-gradient( #6facd5 /*{b-bhover-background-start}*/, #4272a4 /*{b-bhover-background-end}*/);
|
251
259
|
}
|
260
|
+
.ui-btn-hover-b:visited,
|
261
|
+
.ui-btn-hover-b:hover,
|
252
262
|
.ui-btn-hover-b a.ui-link-inherit {
|
253
263
|
color: #fff /*{b-bhover-color}*/;
|
254
264
|
}
|
@@ -265,6 +275,8 @@
|
|
265
275
|
background-image: -o-linear-gradient( #295b8e /*{b-bdown-background-start}*/, #3e79b5 /*{b-bdown-background-end}*/); /* Opera 11.10+ */
|
266
276
|
background-image: linear-gradient( #295b8e /*{b-bdown-background-start}*/, #3e79b5 /*{b-bdown-background-end}*/);
|
267
277
|
}
|
278
|
+
.ui-btn-down-b:visited,
|
279
|
+
.ui-btn-down-b:hover,
|
268
280
|
.ui-btn-down-b a.ui-link-inherit {
|
269
281
|
color: #fff /*{b-bdown-color}*/;
|
270
282
|
}
|
@@ -277,9 +289,9 @@
|
|
277
289
|
/* C
|
278
290
|
-----------------------------------------------------------------------------------------------------------*/
|
279
291
|
.ui-bar-c {
|
280
|
-
border: 1px solid #
|
281
|
-
background: #
|
282
|
-
color: #
|
292
|
+
border: 1px solid #b3b3b3 /*{c-bar-border}*/;
|
293
|
+
background: #eee /*{c-bar-background-color}*/;
|
294
|
+
color: #3e3e3e /*{c-bar-color}*/;
|
283
295
|
font-weight: bold;
|
284
296
|
text-shadow: 0 /*{c-bar-shadow-x}*/ 1px /*{c-bar-shadow-y}*/ 1px /*{c-bar-shadow-radius}*/ #fff /*{c-bar-shadow-color}*/;
|
285
297
|
background-image: -webkit-gradient(linear, left top, left bottom, from( #f0f0f0 /*{c-bar-background-start}*/), to( #ddd /*{c-bar-background-end}*/)); /* Saf4+, Chrome */
|
@@ -290,20 +302,20 @@
|
|
290
302
|
background-image: linear-gradient( #f0f0f0 /*{c-bar-background-start}*/, #ddd /*{c-bar-background-end}*/);
|
291
303
|
}
|
292
304
|
.ui-bar-c .ui-link-inherit {
|
293
|
-
color: #
|
305
|
+
color: #3e3e3e /*{c-bar-color}*/;
|
294
306
|
}
|
295
|
-
.ui-bar-c .ui-link {
|
307
|
+
.ui-bar-c a.ui-link {
|
296
308
|
color: #7cc4e7 /*{c-bar-link-color}*/;
|
297
309
|
font-weight: bold;
|
298
310
|
}
|
299
|
-
.ui-bar-c .ui-link:
|
300
|
-
|
311
|
+
.ui-bar-c a.ui-link:visited {
|
312
|
+
color: #2489ce /*{c-bar-link-visited}*/;
|
301
313
|
}
|
302
|
-
.ui-bar-c .ui-link:
|
303
|
-
color: #
|
314
|
+
.ui-bar-c a.ui-link:hover {
|
315
|
+
color: #2489ce /*{c-bar-link-hover}*/;
|
304
316
|
}
|
305
|
-
.ui-bar-c .ui-link:
|
306
|
-
|
317
|
+
.ui-bar-c a.ui-link:active {
|
318
|
+
color: #2489ce /*{c-bar-link-active}*/;
|
307
319
|
}
|
308
320
|
.ui-bar-c,
|
309
321
|
.ui-bar-c input,
|
@@ -315,15 +327,15 @@
|
|
315
327
|
.ui-body-c,
|
316
328
|
.ui-overlay-c {
|
317
329
|
border: 1px solid #aaa /*{c-body-border}*/;
|
318
|
-
color: #
|
330
|
+
color: #333 /*{c-body-color}*/;
|
319
331
|
text-shadow: 0 /*{c-body-shadow-x}*/ 1px /*{c-body-shadow-y}*/ 0 /*{c-body-shadow-radius}*/ #fff /*{c-body-shadow-color}*/;
|
320
332
|
background: #f9f9f9 /*{c-body-background-color}*/;
|
321
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #f9f9f9 /*{c-body-background-start}*/), to( #
|
322
|
-
background-image: -webkit-linear-gradient( #f9f9f9 /*{c-body-background-start}*/, #
|
323
|
-
background-image: -moz-linear-gradient( #f9f9f9 /*{c-body-background-start}*/, #
|
324
|
-
background-image: -ms-linear-gradient( #f9f9f9 /*{c-body-background-start}*/, #
|
325
|
-
background-image: -o-linear-gradient( #f9f9f9 /*{c-body-background-start}*/, #
|
326
|
-
background-image: linear-gradient( #f9f9f9 /*{c-body-background-start}*/, #
|
333
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #f9f9f9 /*{c-body-background-start}*/), to( #eee /*{c-body-background-end}*/)); /* Saf4+, Chrome */
|
334
|
+
background-image: -webkit-linear-gradient( #f9f9f9 /*{c-body-background-start}*/, #eee /*{c-body-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
335
|
+
background-image: -moz-linear-gradient( #f9f9f9 /*{c-body-background-start}*/, #eee /*{c-body-background-end}*/); /* FF3.6 */
|
336
|
+
background-image: -ms-linear-gradient( #f9f9f9 /*{c-body-background-start}*/, #eee /*{c-body-background-end}*/); /* IE10 */
|
337
|
+
background-image: -o-linear-gradient( #f9f9f9 /*{c-body-background-start}*/, #eee /*{c-body-background-end}*/); /* Opera 11.10+ */
|
338
|
+
background-image: linear-gradient( #f9f9f9 /*{c-body-background-start}*/, #eee /*{c-body-background-end}*/);
|
327
339
|
}
|
328
340
|
.ui-overlay-c {
|
329
341
|
background-image: none;
|
@@ -337,59 +349,62 @@
|
|
337
349
|
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
338
350
|
}
|
339
351
|
.ui-body-c .ui-link-inherit {
|
340
|
-
color: #
|
352
|
+
color: #333 /*{c-body-color}*/;
|
341
353
|
}
|
342
354
|
.ui-body-c .ui-link {
|
343
|
-
color: #
|
355
|
+
color: #2489ce /*{c-body-link-color}*/;
|
344
356
|
font-weight: bold;
|
345
357
|
}
|
358
|
+
.ui-body-c .ui-link:visited {
|
359
|
+
color: #2489ce /*{c-body-link-visited}*/;
|
360
|
+
}
|
346
361
|
.ui-body-c .ui-link:hover {
|
347
|
-
color: #
|
362
|
+
color: #2489ce /*{c-body-link-hover}*/;
|
348
363
|
}
|
349
364
|
.ui-body-c .ui-link:active {
|
350
|
-
color: #
|
351
|
-
}
|
352
|
-
.ui-body-c .ui-link:visited {
|
353
|
-
color: #2489CE /*{c-body-link-visited}*/;
|
365
|
+
color: #2489ce /*{c-body-link-active}*/;
|
354
366
|
}
|
355
367
|
.ui-btn-up-c {
|
356
368
|
border: 1px solid #ccc /*{c-bup-border}*/;
|
357
369
|
background: #eee /*{c-bup-background-color}*/;
|
358
370
|
font-weight: bold;
|
359
371
|
color: #222 /*{c-bup-color}*/;
|
360
|
-
text-shadow: 0 /*{c-bup-shadow-x}*/ 1px /*{c-bup-shadow-y}*/ 0 /*{c-bup-shadow-radius}*/ #
|
361
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #
|
362
|
-
background-image: -webkit-linear-gradient( #
|
363
|
-
background-image: -moz-linear-gradient( #
|
364
|
-
background-image: -ms-linear-gradient( #
|
365
|
-
background-image: -o-linear-gradient( #
|
366
|
-
background-image: linear-gradient( #
|
367
|
-
}
|
372
|
+
text-shadow: 0 /*{c-bup-shadow-x}*/ 1px /*{c-bup-shadow-y}*/ 0 /*{c-bup-shadow-radius}*/ #fff /*{c-bup-shadow-color}*/;
|
373
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #fff /*{c-bup-background-start}*/), to( #f1f1f1 /*{c-bup-background-end}*/)); /* Saf4+, Chrome */
|
374
|
+
background-image: -webkit-linear-gradient( #fff /*{c-bup-background-start}*/, #f1f1f1 /*{c-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
375
|
+
background-image: -moz-linear-gradient( #fff /*{c-bup-background-start}*/, #f1f1f1 /*{c-bup-background-end}*/); /* FF3.6 */
|
376
|
+
background-image: -ms-linear-gradient( #fff /*{c-bup-background-start}*/, #f1f1f1 /*{c-bup-background-end}*/); /* IE10 */
|
377
|
+
background-image: -o-linear-gradient( #fff /*{c-bup-background-start}*/, #f1f1f1 /*{c-bup-background-end}*/); /* Opera 11.10+ */
|
378
|
+
background-image: linear-gradient( #fff /*{c-bup-background-start}*/, #f1f1f1 /*{c-bup-background-end}*/);
|
379
|
+
}
|
380
|
+
.ui-btn-up-c:visited,
|
368
381
|
.ui-btn-up-c a.ui-link-inherit {
|
369
|
-
color: #
|
382
|
+
color: #2f3e46 /*{c-bup-color}*/;
|
370
383
|
}
|
371
384
|
.ui-btn-hover-c {
|
372
385
|
border: 1px solid #bbb /*{c-bhover-border}*/;
|
373
386
|
background: #dfdfdf /*{c-bhover-background-color}*/;
|
374
387
|
font-weight: bold;
|
375
388
|
color: #222 /*{c-bhover-color}*/;
|
376
|
-
text-shadow: 0 /*{c-bhover-shadow-x}*/ 1px /*{c-bhover-shadow-y}*/ 0 /*{c-bhover-shadow-radius}*/ #
|
389
|
+
text-shadow: 0 /*{c-bhover-shadow-x}*/ 1px /*{c-bhover-shadow-y}*/ 0 /*{c-bhover-shadow-radius}*/ #fff /*{c-bhover-shadow-color}*/;
|
377
390
|
background-image: -webkit-gradient(linear, left top, left bottom, from( #f6f6f6 /*{c-bhover-background-start}*/), to( #e0e0e0 /*{c-bhover-background-end}*/)); /* Saf4+, Chrome */
|
378
|
-
background-image: -webkit-linear-gradient( #
|
391
|
+
background-image: -webkit-linear-gradient( #f6f6f6 /*{c-bhover-background-start}*/, #e0e0e0 /*{c-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
379
392
|
background-image: -moz-linear-gradient( #f6f6f6 /*{c-bhover-background-start}*/, #e0e0e0 /*{c-bhover-background-end}*/); /* FF3.6 */
|
380
393
|
background-image: -ms-linear-gradient( #f6f6f6 /*{c-bhover-background-start}*/, #e0e0e0 /*{c-bhover-background-end}*/); /* IE10 */
|
381
394
|
background-image: -o-linear-gradient( #f6f6f6 /*{c-bhover-background-start}*/, #e0e0e0 /*{c-bhover-background-end}*/); /* Opera 11.10+ */
|
382
395
|
background-image: linear-gradient( #f6f6f6 /*{c-bhover-background-start}*/, #e0e0e0 /*{c-bhover-background-end}*/);
|
383
396
|
}
|
397
|
+
.ui-btn-hover-c:visited,
|
398
|
+
.ui-btn-hover-c:hover,
|
384
399
|
.ui-btn-hover-c a.ui-link-inherit {
|
385
|
-
color: #
|
400
|
+
color: #2f3e46 /*{c-bhover-color}*/;
|
386
401
|
}
|
387
402
|
.ui-btn-down-c {
|
388
403
|
border: 1px solid #bbb /*{c-bdown-border}*/;
|
389
404
|
background: #d6d6d6 /*{c-bdown-background-color}*/;
|
390
405
|
font-weight: bold;
|
391
406
|
color: #222 /*{c-bdown-color}*/;
|
392
|
-
text-shadow: 0 /*{c-bdown-shadow-x}*/ 1px /*{c-bdown-shadow-y}*/ 0 /*{c-bdown-shadow-radius}*/ #
|
407
|
+
text-shadow: 0 /*{c-bdown-shadow-x}*/ 1px /*{c-bdown-shadow-y}*/ 0 /*{c-bdown-shadow-radius}*/ #fff /*{c-bdown-shadow-color}*/;
|
393
408
|
background-image: -webkit-gradient(linear, left top, left bottom, from( #d0d0d0 /*{c-bdown-background-start}*/), to( #dfdfdf /*{c-bdown-background-end}*/)); /* Saf4+, Chrome */
|
394
409
|
background-image: -webkit-linear-gradient( #d0d0d0 /*{c-bdown-background-start}*/, #dfdfdf /*{c-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
395
410
|
background-image: -moz-linear-gradient( #d0d0d0 /*{c-bdown-background-start}*/, #dfdfdf /*{c-bdown-background-end}*/); /* FF3.6 */
|
@@ -397,8 +412,10 @@
|
|
397
412
|
background-image: -o-linear-gradient( #d0d0d0 /*{c-bdown-background-start}*/, #dfdfdf /*{c-bdown-background-end}*/); /* Opera 11.10+ */
|
398
413
|
background-image: linear-gradient( #d0d0d0 /*{c-bdown-background-start}*/, #dfdfdf /*{c-bdown-background-end}*/);
|
399
414
|
}
|
415
|
+
.ui-btn-down-c:visited,
|
416
|
+
.ui-btn-down-c:hover,
|
400
417
|
.ui-btn-down-c a.ui-link-inherit {
|
401
|
-
color: #
|
418
|
+
color: #2f3e46 /*{c-bdown-color}*/;
|
402
419
|
}
|
403
420
|
.ui-btn-up-c,
|
404
421
|
.ui-btn-hover-c,
|
@@ -412,6 +429,7 @@
|
|
412
429
|
border: 1px solid #bbb /*{d-bar-border}*/;
|
413
430
|
background: #bbb /*{d-bar-background-color}*/;
|
414
431
|
color: #333 /*{d-bar-color}*/;
|
432
|
+
font-weight: bold;
|
415
433
|
text-shadow: 0 /*{d-bar-shadow-x}*/ 1px /*{d-bar-shadow-y}*/ 0 /*{d-bar-shadow-radius}*/ #eee /*{d-bar-shadow-color}*/;
|
416
434
|
background-image: -webkit-gradient(linear, left top, left bottom, from( #ddd /*{d-bar-background-start}*/), to( #bbb /*{d-bar-background-end}*/)); /* Saf4+, Chrome */
|
417
435
|
background-image: -webkit-linear-gradient( #ddd /*{d-bar-background-start}*/, #bbb /*{d-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
@@ -428,28 +446,28 @@
|
|
428
446
|
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
429
447
|
}
|
430
448
|
.ui-bar-d .ui-link-inherit {
|
431
|
-
color: #
|
449
|
+
color: #333 /*{d-bar-color}*/;
|
432
450
|
}
|
433
|
-
.ui-bar-d .ui-link {
|
434
|
-
color: #
|
451
|
+
.ui-bar-d a.ui-link {
|
452
|
+
color: #2489ce /*{d-bar-link-color}*/;
|
435
453
|
font-weight: bold;
|
436
454
|
}
|
437
|
-
.ui-bar-d .ui-link:
|
438
|
-
|
455
|
+
.ui-bar-d a.ui-link:visited {
|
456
|
+
color: #2489ce /*{d-bar-link-visited}*/;
|
439
457
|
}
|
440
|
-
.ui-bar-d .ui-link:
|
441
|
-
color: #
|
458
|
+
.ui-bar-d a.ui-link:hover {
|
459
|
+
color: #2489ce /*{d-bar-link-hover}*/;
|
442
460
|
}
|
443
|
-
.ui-bar-d .ui-link:
|
444
|
-
|
461
|
+
.ui-bar-d a.ui-link:active {
|
462
|
+
color: #2489ce /*{d-bar-link-active}*/;
|
445
463
|
}
|
446
464
|
.ui-body-d,
|
447
465
|
.ui-overlay-d {
|
448
466
|
border: 1px solid #bbb /*{d-body-border}*/;
|
449
|
-
color: #
|
467
|
+
color: #333 /*{d-body-color}*/;
|
450
468
|
text-shadow: 0 /*{d-body-shadow-x}*/ 1px /*{d-body-shadow-y}*/ 0 /*{d-body-shadow-radius}*/ #fff /*{d-body-shadow-color}*/;
|
451
|
-
background: #
|
452
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #fff), to( #fff /*{d-body-background-end}*/)); /* Saf4+, Chrome */
|
469
|
+
background: #fff /*{d-body-background-color}*/;
|
470
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #fff /*{d-body-background-start}*/), to( #fff /*{d-body-background-end}*/)); /* Saf4+, Chrome */
|
453
471
|
background-image: -webkit-linear-gradient( #fff /*{d-body-background-start}*/, #fff /*{d-body-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
454
472
|
background-image: -moz-linear-gradient( #fff /*{d-body-background-start}*/, #fff /*{d-body-background-end}*/); /* FF3.6 */
|
455
473
|
background-image: -ms-linear-gradient( #fff /*{d-body-background-start}*/, #fff /*{d-body-background-end}*/); /* IE10 */
|
@@ -468,20 +486,20 @@
|
|
468
486
|
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
469
487
|
}
|
470
488
|
.ui-body-d .ui-link-inherit {
|
471
|
-
color: #
|
489
|
+
color: #333 /*{d-body-color}*/;
|
472
490
|
}
|
473
491
|
.ui-body-d .ui-link {
|
474
|
-
color: #
|
492
|
+
color: #2489ce /*{d-body-link-color}*/;
|
475
493
|
font-weight: bold;
|
476
494
|
}
|
495
|
+
.ui-body-d .ui-link:visited {
|
496
|
+
color: #2489ce /*{d-body-link-visited}*/;
|
497
|
+
}
|
477
498
|
.ui-body-d .ui-link:hover {
|
478
|
-
color: #
|
499
|
+
color: #2489ce /*{d-body-link-hover}*/;
|
479
500
|
}
|
480
501
|
.ui-body-d .ui-link:active {
|
481
|
-
color: #
|
482
|
-
}
|
483
|
-
.ui-body-d .ui-link:visited {
|
484
|
-
color: #2489CE /*{d-body-link-visited}*/;
|
502
|
+
color: #2489ce /*{d-body-link-active}*/;
|
485
503
|
}
|
486
504
|
.ui-btn-up-d {
|
487
505
|
border: 1px solid #bbb /*{d-bup-border}*/;
|
@@ -489,30 +507,33 @@
|
|
489
507
|
font-weight: bold;
|
490
508
|
color: #333 /*{d-bup-color}*/;
|
491
509
|
text-shadow: 0 /*{d-bup-shadow-x}*/ 1px /*{d-bup-shadow-y}*/ 0 /*{d-bup-shadow-radius}*/ #fff /*{d-bup-shadow-color}*/;
|
492
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #fafafa), to( #f6f6f6 /*{d-bup-background-end}*/)); /* Saf4+, Chrome */
|
510
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #fafafa /*{d-bup-background-start}*/), to( #f6f6f6 /*{d-bup-background-end}*/)); /* Saf4+, Chrome */
|
493
511
|
background-image: -webkit-linear-gradient( #fafafa /*{d-bup-background-start}*/, #f6f6f6 /*{d-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
494
512
|
background-image: -moz-linear-gradient( #fafafa /*{d-bup-background-start}*/, #f6f6f6 /*{d-bup-background-end}*/); /* FF3.6 */
|
495
513
|
background-image: -ms-linear-gradient( #fafafa /*{d-bup-background-start}*/, #f6f6f6 /*{d-bup-background-end}*/); /* IE10 */
|
496
514
|
background-image: -o-linear-gradient( #fafafa /*{d-bup-background-start}*/, #f6f6f6 /*{d-bup-background-end}*/); /* Opera 11.10+ */
|
497
515
|
background-image: linear-gradient( #fafafa /*{d-bup-background-start}*/, #f6f6f6 /*{d-bup-background-end}*/);
|
498
516
|
}
|
517
|
+
.ui-btn-up-d:visited,
|
499
518
|
.ui-btn-up-d a.ui-link-inherit {
|
500
519
|
color: #333 /*{d-bup-color}*/;
|
501
520
|
}
|
502
521
|
.ui-btn-hover-d {
|
503
522
|
border: 1px solid #aaa /*{d-bhover-border}*/;
|
504
|
-
background: #
|
523
|
+
background: #eee /*{d-bhover-background-color}*/;
|
505
524
|
font-weight: bold;
|
506
525
|
color: #333 /*{d-bhover-color}*/;
|
507
526
|
cursor: pointer;
|
508
527
|
text-shadow: 0 /*{d-bhover-shadow-x}*/ 1px /*{d-bhover-shadow-y}*/ 0 /*{d-bhover-shadow-radius}*/ #fff /*{d-bhover-shadow-color}*/;
|
509
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #eee), to( #fff /*{d-bhover-background-end}*/)); /* Saf4+, Chrome */
|
528
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #eee /*{d-bhover-background-start}*/), to( #fff /*{d-bhover-background-end}*/)); /* Saf4+, Chrome */
|
510
529
|
background-image: -webkit-linear-gradient( #eee /*{d-bhover-background-start}*/, #fff /*{d-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
511
530
|
background-image: -moz-linear-gradient( #eee /*{d-bhover-background-start}*/, #fff /*{d-bhover-background-end}*/); /* FF3.6 */
|
512
531
|
background-image: -ms-linear-gradient( #eee /*{d-bhover-background-start}*/, #fff /*{d-bhover-background-end}*/); /* IE10 */
|
513
532
|
background-image: -o-linear-gradient( #eee /*{d-bhover-background-start}*/, #fff /*{d-bhover-background-end}*/); /* Opera 11.10+ */
|
514
533
|
background-image: linear-gradient( #eee /*{d-bhover-background-start}*/, #fff /*{d-bhover-background-end}*/);
|
515
534
|
}
|
535
|
+
.ui-btn-hover-d:visited,
|
536
|
+
.ui-btn-hover-d:hover,
|
516
537
|
.ui-btn-hover-d a.ui-link-inherit {
|
517
538
|
color: #333 /*{d-bhover-color}*/;
|
518
539
|
}
|
@@ -521,7 +542,7 @@
|
|
521
542
|
background: #eee /*{d-bdown-background-color}*/;
|
522
543
|
font-weight: bold;
|
523
544
|
color: #333 /*{d-bdown-color}*/;
|
524
|
-
text-shadow: 0 /*{d-bdown-shadow-x}*/ 1px /*{d-bdown-shadow-y}*/ 0 /*{d-bdown-shadow-radius}*/ #
|
545
|
+
text-shadow: 0 /*{d-bdown-shadow-x}*/ 1px /*{d-bdown-shadow-y}*/ 0 /*{d-bdown-shadow-radius}*/ #fff /*{d-bdown-shadow-color}*/;
|
525
546
|
background-image: -webkit-gradient(linear, left top, left bottom, from( #e5e5e5 /*{d-bdown-background-start}*/), to( #f2f2f2 /*{d-bdown-background-end}*/)); /* Saf4+, Chrome */
|
526
547
|
background-image: -webkit-linear-gradient( #e5e5e5 /*{d-bdown-background-start}*/, #f2f2f2 /*{d-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
527
548
|
background-image: -moz-linear-gradient( #e5e5e5 /*{d-bdown-background-start}*/, #f2f2f2 /*{d-bdown-background-end}*/); /* FF3.6 */
|
@@ -529,6 +550,8 @@
|
|
529
550
|
background-image: -o-linear-gradient( #e5e5e5 /*{d-bdown-background-start}*/, #f2f2f2 /*{d-bdown-background-end}*/); /* Opera 11.10+ */
|
530
551
|
background-image: linear-gradient( #e5e5e5 /*{d-bdown-background-start}*/, #f2f2f2 /*{d-bdown-background-end}*/);
|
531
552
|
}
|
553
|
+
.ui-btn-down-d:visited,
|
554
|
+
.ui-btn-down-d:hover,
|
532
555
|
.ui-btn-down-d a.ui-link-inherit {
|
533
556
|
color: #333 /*{d-bdown-color}*/;
|
534
557
|
}
|
@@ -541,9 +564,10 @@
|
|
541
564
|
/* E
|
542
565
|
-----------------------------------------------------------------------------------------------------------*/
|
543
566
|
.ui-bar-e {
|
544
|
-
border: 1px solid #
|
567
|
+
border: 1px solid #f7c942 /*{e-bar-border}*/;
|
545
568
|
background: #fadb4e /*{e-bar-background-color}*/;
|
546
569
|
color: #333 /*{e-bar-color}*/;
|
570
|
+
font-weight: bold;
|
547
571
|
text-shadow: 0 /*{e-bar-shadow-x}*/ 1px /*{e-bar-shadow-y}*/ 0 /*{e-bar-shadow-radius}*/ #fff /*{e-bar-shadow-color}*/;
|
548
572
|
background-image: -webkit-gradient(linear, left top, left bottom, from( #fceda7 /*{e-bar-background-start}*/), to( #fbef7e /*{e-bar-background-end}*/)); /* Saf4+, Chrome */
|
549
573
|
background-image: -webkit-linear-gradient( #fceda7 /*{e-bar-background-start}*/, #fbef7e /*{e-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
@@ -560,25 +584,25 @@
|
|
560
584
|
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
561
585
|
}
|
562
586
|
.ui-bar-e .ui-link-inherit {
|
563
|
-
color: #
|
587
|
+
color: #333 /*{e-bar-color}*/;
|
564
588
|
}
|
565
|
-
.ui-bar-e .ui-link {
|
566
|
-
color: #
|
589
|
+
.ui-bar-e a.ui-link {
|
590
|
+
color: #2489ce /*{e-bar-link-color}*/;
|
567
591
|
font-weight: bold;
|
568
592
|
}
|
569
|
-
.ui-bar-e .ui-link:
|
570
|
-
|
593
|
+
.ui-bar-e a.ui-link:visited {
|
594
|
+
color: #2489ce /*{e-bar-link-visited}*/;
|
571
595
|
}
|
572
|
-
.ui-bar-e .ui-link:
|
573
|
-
color: #
|
596
|
+
.ui-bar-e a.ui-link:hover {
|
597
|
+
color: #2489ce /*{e-bar-link-hover}*/;
|
574
598
|
}
|
575
|
-
.ui-bar-e .ui-link:
|
576
|
-
|
599
|
+
.ui-bar-e a.ui-link:active {
|
600
|
+
color: #2489ce /*{e-bar-link-active}*/;
|
577
601
|
}
|
578
602
|
.ui-body-e,
|
579
603
|
.ui-overlay-e {
|
580
|
-
border: 1px solid #
|
581
|
-
color: #
|
604
|
+
border: 1px solid #f7c942 /*{e-body-border}*/;
|
605
|
+
color: #222 /*{e-body-color}*/;
|
582
606
|
text-shadow: 0 /*{e-body-shadow-x}*/ 1px /*{e-body-shadow-y}*/ 0 /*{e-body-shadow-radius}*/ #fff /*{e-body-shadow-color}*/;
|
583
607
|
background: #fff9df /*{e-body-background-color}*/;
|
584
608
|
background-image: -webkit-gradient(linear, left top, left bottom, from( #fffadf /*{e-body-background-start}*/), to( #fff3a5 /*{e-body-background-end}*/)); /* Saf4+, Chrome */
|
@@ -600,23 +624,23 @@
|
|
600
624
|
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
601
625
|
}
|
602
626
|
.ui-body-e .ui-link-inherit {
|
603
|
-
color: #
|
627
|
+
color: #222 /*{e-body-color}*/;
|
604
628
|
}
|
605
629
|
.ui-body-e .ui-link {
|
606
|
-
color: #
|
630
|
+
color: #2489ce /*{e-body-link-color}*/;
|
607
631
|
font-weight: bold;
|
608
632
|
}
|
633
|
+
.ui-body-e .ui-link:visited {
|
634
|
+
color: #2489ce /*{e-body-link-visited}*/;
|
635
|
+
}
|
609
636
|
.ui-body-e .ui-link:hover {
|
610
|
-
color: #
|
637
|
+
color: #2489ce /*{e-body-link-hover}*/;
|
611
638
|
}
|
612
639
|
.ui-body-e .ui-link:active {
|
613
|
-
color: #
|
614
|
-
}
|
615
|
-
.ui-body-e .ui-link:visited {
|
616
|
-
color: #2489CE /*{e-body-link-visited}*/;
|
640
|
+
color: #2489ce /*{e-body-link-active}*/;
|
617
641
|
}
|
618
642
|
.ui-btn-up-e {
|
619
|
-
border: 1px solid #
|
643
|
+
border: 1px solid #f4c63f /*{e-bup-border}*/;
|
620
644
|
background: #fadb4e /*{e-bup-background-color}*/;
|
621
645
|
font-weight: bold;
|
622
646
|
color: #222 /*{e-bup-color}*/;
|
@@ -628,11 +652,12 @@
|
|
628
652
|
background-image: -o-linear-gradient( #ffefaa /*{e-bup-background-start}*/, #ffe155 /*{e-bup-background-end}*/); /* Opera 11.10+ */
|
629
653
|
background-image: linear-gradient( #ffefaa /*{e-bup-background-start}*/, #ffe155 /*{e-bup-background-end}*/);
|
630
654
|
}
|
655
|
+
.ui-btn-up-e:visited,
|
631
656
|
.ui-btn-up-e a.ui-link-inherit {
|
632
657
|
color: #222 /*{e-bup-color}*/;
|
633
658
|
}
|
634
659
|
.ui-btn-hover-e {
|
635
|
-
border: 1px solid #
|
660
|
+
border: 1px solid #f2c43d /*{e-bhover-border}*/;
|
636
661
|
background: #fbe26f /*{e-bhover-background-color}*/;
|
637
662
|
font-weight: bold;
|
638
663
|
color: #111 /*{e-bhover-color}*/;
|
@@ -644,15 +669,17 @@
|
|
644
669
|
background-image: -o-linear-gradient( #fff5ba /*{e-bhover-background-start}*/, #fbdd52 /*{e-bhover-background-end}*/); /* Opera 11.10+ */
|
645
670
|
background-image: linear-gradient( #fff5ba /*{e-bhover-background-start}*/, #fbdd52 /*{e-bhover-background-end}*/);
|
646
671
|
}
|
672
|
+
.ui-btn-hover-e:visited,
|
673
|
+
.ui-btn-hover-e:hover,
|
647
674
|
.ui-btn-hover-e a.ui-link-inherit {
|
648
675
|
color: #333 /*{e-bhover-color}*/;
|
649
676
|
}
|
650
677
|
.ui-btn-down-e {
|
651
|
-
border: 1px solid #
|
678
|
+
border: 1px solid #f2c43d /*{e-bdown-border}*/;
|
652
679
|
background: #fceda7 /*{e-bdown-background-color}*/;
|
653
680
|
font-weight: bold;
|
654
681
|
color: #111 /*{e-bdown-color}*/;
|
655
|
-
text-shadow: 0 /*{e-bdown-shadow-x}*/ 1px /*{e-bdown-shadow-y}*/ 0 /*{e-bdown-shadow-radius}*/ #
|
682
|
+
text-shadow: 0 /*{e-bdown-shadow-x}*/ 1px /*{e-bdown-shadow-y}*/ 0 /*{e-bdown-shadow-radius}*/ #fff /*{e-bdown-shadow-color}*/;
|
656
683
|
background-image: -webkit-gradient(linear, left top, left bottom, from( #f8d94c /*{e-bdown-background-start}*/), to( #fadb4e /*{e-bdown-background-end}*/)); /* Saf4+, Chrome */
|
657
684
|
background-image: -webkit-linear-gradient( #f8d94c /*{e-bdown-background-start}*/, #fadb4e /*{e-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
658
685
|
background-image: -moz-linear-gradient( #f8d94c /*{e-bdown-background-start}*/, #fadb4e /*{e-bdown-background-end}*/); /* FF3.6 */
|
@@ -660,6 +687,8 @@
|
|
660
687
|
background-image: -o-linear-gradient( #f8d94c /*{e-bdown-background-start}*/, #fadb4e /*{e-bdown-background-end}*/); /* Opera 11.10+ */
|
661
688
|
background-image: linear-gradient( #f8d94c /*{e-bdown-background-start}*/, #fadb4e /*{e-bdown-background-end}*/);
|
662
689
|
}
|
690
|
+
.ui-btn-down-e:visited,
|
691
|
+
.ui-btn-down-e:hover,
|
663
692
|
.ui-btn-down-e a.ui-link-inherit {
|
664
693
|
color: #333 /*{e-bdown-color}*/;
|
665
694
|
}
|
@@ -693,6 +722,8 @@ a.ui-link-inherit {
|
|
693
722
|
background-image: linear-gradient( #5393c5 /*{global-active-background-start}*/, #6facd5 /*{global-active-background-end}*/);
|
694
723
|
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
695
724
|
}
|
725
|
+
.ui-btn-active:visited,
|
726
|
+
.ui-btn-active:hover,
|
696
727
|
.ui-btn-active a.ui-link-inherit {
|
697
728
|
color: #fff /*{global-active-color}*/;
|
698
729
|
}
|
@@ -777,18 +808,15 @@ a.ui-link-inherit {
|
|
777
808
|
/* Interaction cues
|
778
809
|
-----------------------------------------------------------------------------------------------------------*/
|
779
810
|
.ui-disabled {
|
780
|
-
|
811
|
+
filter: Alpha(Opacity=30);
|
812
|
+
opacity: .3;
|
813
|
+
zoom: 1;
|
781
814
|
}
|
782
815
|
.ui-disabled,
|
783
816
|
.ui-disabled a {
|
784
817
|
cursor: default !important;
|
785
818
|
pointer-events: none;
|
786
819
|
}
|
787
|
-
.ui-disabled .ui-btn-text {
|
788
|
-
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=30)";
|
789
|
-
filter: alpha(opacity=30);
|
790
|
-
zoom: 1;
|
791
|
-
}
|
792
820
|
/* Icons
|
793
821
|
-----------------------------------------------------------------------------------------------------------*/
|
794
822
|
.ui-icon,
|
@@ -902,7 +930,8 @@ a.ui-link-inherit {
|
|
902
930
|
background-position: -720px 50%;
|
903
931
|
}
|
904
932
|
/* checks,radios */
|
905
|
-
.ui-checkbox .ui-icon
|
933
|
+
.ui-checkbox .ui-icon,
|
934
|
+
.ui-selectmenu-list .ui-icon {
|
906
935
|
-moz-border-radius: 3px;
|
907
936
|
-webkit-border-radius: 3px;
|
908
937
|
border-radius: 3px;
|
@@ -982,19 +1011,19 @@ a.ui-link-inherit {
|
|
982
1011
|
/* radius clip workaround for cleaning up corner trapping */
|
983
1012
|
.ui-corner-tl,
|
984
1013
|
.ui-corner-tr,
|
985
|
-
.ui-corner-bl,
|
1014
|
+
.ui-corner-bl,
|
986
1015
|
.ui-corner-br,
|
987
1016
|
.ui-corner-top,
|
988
|
-
.ui-corner-bottom,
|
1017
|
+
.ui-corner-bottom,
|
989
1018
|
.ui-corner-right,
|
990
1019
|
.ui-corner-left,
|
991
1020
|
.ui-corner-all,
|
992
1021
|
.ui-btn-corner-tl,
|
993
1022
|
.ui-btn-corner-tr,
|
994
|
-
.ui-btn-corner-bl,
|
1023
|
+
.ui-btn-corner-bl,
|
995
1024
|
.ui-btn-corner-br,
|
996
1025
|
.ui-btn-corner-top,
|
997
|
-
.ui-btn-corner-bottom,
|
1026
|
+
.ui-btn-corner-bottom,
|
998
1027
|
.ui-btn-corner-right,
|
999
1028
|
.ui-btn-corner-left,
|
1000
1029
|
.ui-btn-corner-all {
|
@@ -1006,8 +1035,8 @@ a.ui-link-inherit {
|
|
1006
1035
|
-----------------------------------------------------------------------------------------------------------*/
|
1007
1036
|
.ui-overlay {
|
1008
1037
|
background: #666;
|
1009
|
-
opacity: .5;
|
1010
1038
|
filter: Alpha(Opacity=50);
|
1039
|
+
opacity: .5;
|
1011
1040
|
position: absolute;
|
1012
1041
|
width: 100%;
|
1013
1042
|
height: 100%;
|
@@ -1041,14 +1070,23 @@ a.ui-link-inherit {
|
|
1041
1070
|
}
|
1042
1071
|
/* Focus state - set here for specificity (note: these classes are added by JavaScript)
|
1043
1072
|
-----------------------------------------------------------------------------------------------------------*/
|
1044
|
-
.ui-btn:focus {
|
1073
|
+
.ui-btn:focus, .ui-link-inherit:focus {
|
1045
1074
|
outline: 0;
|
1046
1075
|
}
|
1076
|
+
.ui-btn.ui-focus {
|
1077
|
+
z-index: 1;
|
1078
|
+
}
|
1047
1079
|
.ui-focus,
|
1048
1080
|
.ui-btn:focus {
|
1049
|
-
-moz-box-shadow: 0px 0px
|
1050
|
-
-webkit-box-shadow: 0px 0px
|
1051
|
-
box-shadow: 0px 0px
|
1081
|
+
-moz-box-shadow: inset 0px 0px 3px #387bbe /*{global-active-background-color}*/, 0px 0px 9px #387bbe /*{global-active-background-color}*/;
|
1082
|
+
-webkit-box-shadow: inset 0px 0px 3px #387bbe /*{global-active-background-color}*/, 0px 0px 9px #387bbe /*{global-active-background-color}*/;
|
1083
|
+
box-shadow: inset 0px 0px 3px #387bbe /*{global-active-background-color}*/, 0px 0px 9px #387bbe /*{global-active-background-color}*/;
|
1084
|
+
}
|
1085
|
+
.ui-input-text.ui-focus,
|
1086
|
+
.ui-input-search.ui-focus {
|
1087
|
+
-moz-box-shadow: 0px 0px 12px #387bbe /*{global-active-background-color}*/;
|
1088
|
+
-webkit-box-shadow: 0px 0px 12px #387bbe /*{global-active-background-color}*/;
|
1089
|
+
box-shadow: 0px 0px 12px #387bbe /*{global-active-background-color}*/;
|
1052
1090
|
}
|
1053
1091
|
/* unset box shadow in browsers that don't do it right
|
1054
1092
|
-----------------------------------------------------------------------------------------------------------*/
|
@@ -1059,16 +1097,17 @@ a.ui-link-inherit {
|
|
1059
1097
|
}
|
1060
1098
|
/* ...and bring back focus */
|
1061
1099
|
.ui-mobile-nosupport-boxshadow .ui-focus,
|
1062
|
-
.ui-mobile-nosupport-boxshadow .ui-btn:focus
|
1100
|
+
.ui-mobile-nosupport-boxshadow .ui-btn:focus,
|
1101
|
+
.ui-mobile-nosupport-boxshadow .ui-link-inherit:focus {
|
1063
1102
|
outline-width: 1px;
|
1064
|
-
outline-style:
|
1103
|
+
outline-style: auto;
|
1065
1104
|
}
|
1066
1105
|
/* some unsets - more probably needed */
|
1067
1106
|
.ui-mobile, .ui-mobile body { height: 99.9%; }
|
1068
1107
|
.ui-mobile fieldset, .ui-page { padding: 0; margin: 0; }
|
1069
1108
|
.ui-mobile a img, .ui-mobile fieldset { border-width: 0; }
|
1070
1109
|
/* responsive page widths */
|
1071
|
-
.ui-mobile-viewport {
|
1110
|
+
.ui-mobile-viewport { margin: 0; overflow-x: visible; -webkit-text-size-adjust: 100%; -ms-text-size-adjust:none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
|
1072
1111
|
/* Issue #2066 */
|
1073
1112
|
body.ui-mobile-viewport,
|
1074
1113
|
div.ui-mobile-viewport { overflow-x: hidden; }
|
@@ -1086,23 +1125,23 @@ div.ui-mobile-viewport { overflow-x: hidden; }
|
|
1086
1125
|
}
|
1087
1126
|
/* loading screen */
|
1088
1127
|
.ui-loading .ui-loader { display: block; }
|
1089
|
-
.ui-loader { display: none; z-index: 9999999; position: fixed; top: 50%;
|
1090
|
-
.ui-loader-default { background: none; opacity: .18; width: 46px; height: 46px; margin-left: -23px; margin-top: -23px; }
|
1091
|
-
.ui-loader-verbose { width: 200px; opacity: .88; height: auto; margin-left: -110px; margin-top: -43px; padding: 10px; }
|
1128
|
+
.ui-loader { display: none; z-index: 9999999; position: fixed; top: 50%; left: 50%; border:0; }
|
1129
|
+
.ui-loader-default { background: none; filter: Alpha(Opacity=18); opacity: .18; width: 46px; height: 46px; margin-left: -23px; margin-top: -23px; }
|
1130
|
+
.ui-loader-verbose { width: 200px; filter: Alpha(Opacity=88); opacity: .88; box-shadow: 0 1px 1px -1px #fff; height: auto; margin-left: -110px; margin-top: -43px; padding: 10px; }
|
1092
1131
|
.ui-loader-default h1 { font-size: 0; width: 0; height: 0; overflow: hidden; }
|
1093
1132
|
.ui-loader-verbose h1 { font-size: 16px; margin: 0; text-align: center; }
|
1094
1133
|
.ui-loader .ui-icon { background-color: #000; display: block; margin: 0; width: 44px; height: 44px; padding: 1px; -webkit-border-radius: 36px; -moz-border-radius: 36px; border-radius: 36px; }
|
1095
|
-
.ui-loader-verbose .ui-icon { margin: 0 auto 10px; opacity: .75; }
|
1096
|
-
.ui-loader-textonly { padding: 15px; margin-left: -115px;
|
1134
|
+
.ui-loader-verbose .ui-icon { margin: 0 auto 10px; filter: Alpha(Opacity=75); opacity: .75; }
|
1135
|
+
.ui-loader-textonly { padding: 15px; margin-left: -115px; }
|
1097
1136
|
.ui-loader-textonly .ui-icon { display: none; }
|
1098
1137
|
.ui-loader-fakefix { position: absolute; }
|
1099
1138
|
/*fouc*/
|
1100
1139
|
.ui-mobile-rendering > * { visibility: hidden; }
|
1101
1140
|
/*headers, content panels*/
|
1102
|
-
.ui-bar, .ui-body { position: relative; padding: .4em 15px;
|
1141
|
+
.ui-bar, .ui-body { position: relative; padding: .4em 15px; overflow: hidden; display: block; clear:both; }
|
1103
1142
|
.ui-bar { font-size: 16px; margin: 0; }
|
1104
1143
|
.ui-bar h1, .ui-bar h2, .ui-bar h3, .ui-bar h4, .ui-bar h5, .ui-bar h6 { margin: 0; padding: 0; font-size: 16px; display: inline-block; }
|
1105
|
-
.ui-header, .ui-footer { position: relative; border-left-width: 0; border-right-width: 0; }
|
1144
|
+
.ui-header, .ui-footer { position: relative; border-left-width: 0; border-right-width: 0; zoom: 1; }
|
1106
1145
|
.ui-header .ui-btn-left,
|
1107
1146
|
.ui-header .ui-btn-right,
|
1108
1147
|
.ui-footer .ui-btn-left,
|
@@ -1113,8 +1152,8 @@ div.ui-mobile-viewport { overflow-x: hidden; }
|
|
1113
1152
|
.ui-footer .ui-btn-right { right: 5px; }
|
1114
1153
|
.ui-footer .ui-btn-icon-notext,
|
1115
1154
|
.ui-header .ui-btn-icon-notext { top: 6px; }
|
1116
|
-
.ui-header .ui-title, .ui-footer .ui-title { min-height: 1.1em; text-align: center; font-size: 16px; display: block; margin: .6em 30% .8em;
|
1117
|
-
.ui-footer .ui-title { margin: .6em 15px .8em;
|
1155
|
+
.ui-header .ui-title, .ui-footer .ui-title { min-height: 1.1em; text-align: center; font-size: 16px; display: block; margin: .6em 30% .8em; padding: 0; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; outline: 0 !important; }
|
1156
|
+
.ui-footer .ui-title { margin: .6em 15px .8em; }
|
1118
1157
|
/*content area*/
|
1119
1158
|
.ui-content { border-width: 0; overflow: visible; overflow-x: hidden; padding: 15px; }
|
1120
1159
|
/* icons sizing */
|
@@ -1122,7 +1161,7 @@ div.ui-mobile-viewport { overflow-x: hidden; }
|
|
1122
1161
|
/* non-js content hiding */
|
1123
1162
|
.ui-nojs { position: absolute; left: -9999px; }
|
1124
1163
|
/* accessible content hiding */
|
1125
|
-
.ui-hide-label label,
|
1164
|
+
.ui-hide-label label.ui-input-text, .ui-hide-label label.ui-select, .ui-hide-label label.ui-slider, .ui-hide-label label.ui-submit, .ui-hide-label .ui-controlgroup-label,
|
1126
1165
|
.ui-hidden-accessible { position: absolute !important; left: -9999px; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
|
1127
1166
|
/* Transitions originally inspired by those from jQtouch, nice work, folks */
|
1128
1167
|
.ui-mobile-viewport-transitioning,
|
@@ -1130,6 +1169,12 @@ div.ui-mobile-viewport { overflow-x: hidden; }
|
|
1130
1169
|
width: 100%;
|
1131
1170
|
height: 100%;
|
1132
1171
|
overflow: hidden;
|
1172
|
+
-webkit-box-sizing: border-box;
|
1173
|
+
-moz-box-sizing: border-box;
|
1174
|
+
box-sizing: border-box;
|
1175
|
+
}
|
1176
|
+
.ui-page-pre-in {
|
1177
|
+
opacity: 0;
|
1133
1178
|
}
|
1134
1179
|
.in {
|
1135
1180
|
-webkit-animation-timing-function: ease-out;
|
@@ -1141,7 +1186,7 @@ div.ui-mobile-viewport { overflow-x: hidden; }
|
|
1141
1186
|
-webkit-animation-timing-function: ease-in;
|
1142
1187
|
-webkit-animation-duration: 225ms;
|
1143
1188
|
-moz-animation-timing-function: ease-in;
|
1144
|
-
-moz-animation-duration:
|
1189
|
+
-moz-animation-duration: 225ms;
|
1145
1190
|
}
|
1146
1191
|
@-webkit-keyframes fadein {
|
1147
1192
|
from { opacity: 0; }
|
@@ -1664,20 +1709,25 @@ div.ui-mobile-viewport { overflow-x: hidden; }
|
|
1664
1709
|
}
|
1665
1710
|
/* content configurations. */
|
1666
1711
|
.ui-grid-a, .ui-grid-b, .ui-grid-c, .ui-grid-d { overflow: hidden; }
|
1667
|
-
.ui-block-a, .ui-block-b, .ui-block-c, .ui-block-d, .ui-block-e { margin: 0; padding: 0; border: 0; float: left; min-height:1px;}
|
1712
|
+
.ui-block-a, .ui-block-b, .ui-block-c, .ui-block-d, .ui-block-e { margin: 0; padding: 0; border: 0; float: left; min-height: 1px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box; }
|
1668
1713
|
/* grid solo: 100 - single item fallback */
|
1669
|
-
.ui-grid-solo .ui-block-a {
|
1714
|
+
.ui-grid-solo .ui-block-a { display: block; float: none; }
|
1715
|
+
/* Lower percentages for older browsers (i.e. IE7) to prevent wrapping. -.5px to fix BB5 wrap issue. */
|
1670
1716
|
/* grid a: 50/50 */
|
1671
|
-
.ui-grid-a .ui-block-a, .ui-grid-a .ui-block-b { width:
|
1717
|
+
.ui-grid-a .ui-block-a, .ui-grid-a .ui-block-b { width: 49.95%; }
|
1718
|
+
.ui-grid-a > :nth-child(n) { width: 50%; margin-right: -.5px; }
|
1672
1719
|
.ui-grid-a .ui-block-a { clear: left; }
|
1673
1720
|
/* grid b: 33/33/33 */
|
1674
|
-
.ui-grid-b .ui-block-a, .ui-grid-b .ui-block-b, .ui-grid-b .ui-block-c { width: 33.
|
1721
|
+
.ui-grid-b .ui-block-a, .ui-grid-b .ui-block-b, .ui-grid-b .ui-block-c { width: 33.25%; }
|
1722
|
+
.ui-grid-b > :nth-child(n) { width: 33.333%; margin-right: -.5px; }
|
1675
1723
|
.ui-grid-b .ui-block-a { clear: left; }
|
1676
1724
|
/* grid c: 25/25/25/25 */
|
1677
|
-
.ui-grid-c .ui-block-a, .ui-grid-c .ui-block-b, .ui-grid-c .ui-block-c, .ui-grid-c .ui-block-d { width:
|
1725
|
+
.ui-grid-c .ui-block-a, .ui-grid-c .ui-block-b, .ui-grid-c .ui-block-c, .ui-grid-c .ui-block-d { width: 24.925%; }
|
1726
|
+
.ui-grid-c > :nth-child(n) { width: 25%; margin-right: -.5px; }
|
1678
1727
|
.ui-grid-c .ui-block-a { clear: left; }
|
1679
1728
|
/* grid d: 20/20/20/20/20 */
|
1680
|
-
.ui-grid-d .ui-block-a, .ui-grid-d .ui-block-b, .ui-grid-d .ui-block-c, .ui-grid-d .ui-block-d, .ui-grid-d .ui-block-e { width:
|
1729
|
+
.ui-grid-d .ui-block-a, .ui-grid-d .ui-block-b, .ui-grid-d .ui-block-c, .ui-grid-d .ui-block-d, .ui-grid-d .ui-block-e { width: 19.925%; }
|
1730
|
+
.ui-grid-d > :nth-child(n) { width: 20%; }
|
1681
1731
|
.ui-grid-d .ui-block-a { clear: left; }
|
1682
1732
|
/* fixed page header & footer configuration */
|
1683
1733
|
.ui-header-fixed,
|
@@ -1696,13 +1746,14 @@ div.ui-mobile-viewport { overflow-x: hidden; }
|
|
1696
1746
|
}
|
1697
1747
|
.ui-header-fullscreen,
|
1698
1748
|
.ui-footer-fullscreen {
|
1749
|
+
filter: Alpha(Opacity=90);
|
1699
1750
|
opacity: .9;
|
1700
1751
|
}
|
1701
1752
|
.ui-page-header-fixed {
|
1702
|
-
padding-top: 2.
|
1753
|
+
padding-top: 2.6875em;
|
1703
1754
|
}
|
1704
1755
|
.ui-page-footer-fixed {
|
1705
|
-
padding-bottom:
|
1756
|
+
padding-bottom: 2.6875em;
|
1706
1757
|
}
|
1707
1758
|
.ui-page-header-fullscreen .ui-content,
|
1708
1759
|
.ui-page-footer-fullscreen .ui-content {
|
@@ -1713,50 +1764,67 @@ div.ui-mobile-viewport { overflow-x: hidden; }
|
|
1713
1764
|
}
|
1714
1765
|
.ui-page-header-fullscreen .ui-fixed-hidden,
|
1715
1766
|
.ui-page-footer-fullscreen .ui-fixed-hidden {
|
1716
|
-
left: -
|
1767
|
+
left: -9999px;
|
1717
1768
|
}
|
1718
1769
|
.ui-header-fixed .ui-btn,
|
1719
1770
|
.ui-footer-fixed .ui-btn {
|
1720
1771
|
z-index: 10;
|
1721
1772
|
}
|
1722
|
-
.ui-navbar {
|
1723
|
-
.ui-navbar
|
1724
|
-
.ui-navbar-
|
1725
|
-
.ui-navbar
|
1726
|
-
.ui-navbar
|
1727
|
-
.ui-navbar li .ui-btn
|
1728
|
-
.ui-navbar li .ui-btn {
|
1729
|
-
|
1730
|
-
.ui-
|
1731
|
-
.ui-
|
1732
|
-
.ui-
|
1733
|
-
.ui-
|
1734
|
-
|
1735
|
-
.ui-navbar-
|
1736
|
-
.ui-navbar-
|
1737
|
-
.ui-
|
1738
|
-
.ui-
|
1739
|
-
|
1740
|
-
.ui-navbar-
|
1741
|
-
.ui-navbar-
|
1742
|
-
.ui-
|
1743
|
-
.ui-
|
1744
|
-
.ui-
|
1745
|
-
.ui-
|
1773
|
+
.ui-navbar { max-width: 100%; }
|
1774
|
+
.ui-navbar.ui-mini { margin: 0; }
|
1775
|
+
.ui-navbar ul:before, .ui-navbar ul:after { content: " "; display: table; }
|
1776
|
+
.ui-navbar ul:after { clear: both; }
|
1777
|
+
.ui-navbar ul { list-style:none; margin: 0; padding: 0; position: relative; display: block; border: 0; max-width: 100%; overflow: visible; zoom: 1; }
|
1778
|
+
.ui-navbar li .ui-btn { display: block; text-align: center; margin: 0 -1px 0 0; border-right-width: 0; }
|
1779
|
+
.ui-navbar li .ui-btn-icon-right .ui-icon { right: 6px; }
|
1780
|
+
/* add border if not in header/footer (full width) */
|
1781
|
+
.ui-navbar li:last-child .ui-btn,
|
1782
|
+
.ui-navbar .ui-grid-duo .ui-block-b .ui-btn { margin-right: 0; border-right-width: 1px; }
|
1783
|
+
.ui-header .ui-navbar li:last-child .ui-btn,
|
1784
|
+
.ui-footer .ui-navbar li:last-child .ui-btn,
|
1785
|
+
.ui-header .ui-navbar .ui-grid-duo .ui-block-b .ui-btn,
|
1786
|
+
.ui-footer .ui-navbar .ui-grid-duo .ui-block-b .ui-btn { margin-right: -1px; border-right-width: 0; }
|
1787
|
+
.ui-navbar .ui-grid-duo li.ui-block-a:last-child .ui-btn { margin-right: -1px; border-right-width: 1px; }
|
1788
|
+
.ui-header .ui-navbar li .ui-btn,
|
1789
|
+
.ui-footer .ui-navbar li .ui-btn { border-top-width: 0; border-bottom-width: 0; }
|
1790
|
+
/* fixing gaps caused by subpixel problem */
|
1791
|
+
.ui-header .ui-navbar .ui-grid-b li.ui-block-c .ui-btn,
|
1792
|
+
.ui-footer .ui-navbar .ui-grid-b li.ui-block-c .ui-btn { margin-right: -5px; }
|
1793
|
+
.ui-header .ui-navbar .ui-grid-c li.ui-block-d .ui-btn,
|
1794
|
+
.ui-footer .ui-navbar .ui-grid-c li.ui-block-d .ui-btn,
|
1795
|
+
.ui-header .ui-navbar .ui-grid-d li.ui-block-e .ui-btn,
|
1796
|
+
.ui-footer .ui-navbar .ui-grid-d li.ui-block-e .ui-btn { margin-right: -4px; }
|
1797
|
+
.ui-header .ui-navbar .ui-grid-b li.ui-block-c .ui-btn-icon-right .ui-icon,
|
1798
|
+
.ui-footer .ui-navbar .ui-grid-b li.ui-block-c .ui-btn-icon-right .ui-icon,
|
1799
|
+
.ui-header .ui-navbar .ui-grid-c li.ui-block-d .ui-btn-icon-right .ui-icon,
|
1800
|
+
.ui-footer .ui-navbar .ui-grid-c li.ui-block-d .ui-btn-icon-right .ui-icon,
|
1801
|
+
.ui-header .ui-navbar .ui-grid-d li.ui-block-e .ui-btn-icon-right .ui-icon,
|
1802
|
+
.ui-footer .ui-navbar .ui-grid-d li.ui-block-e .ui-btn-icon-right .ui-icon { right: 8px; }
|
1803
|
+
.ui-navbar li .ui-btn .ui-btn-inner { padding-top: .7em; padding-bottom: .8em }
|
1804
|
+
.ui-navbar li .ui-btn-icon-top .ui-btn-inner { padding-top: 30px; }
|
1805
|
+
.ui-navbar li .ui-btn-icon-bottom .ui-btn-inner { padding-bottom: 30px; }
|
1806
|
+
.ui-btn { display: block; text-align: center; cursor:pointer; position: relative; margin: .5em 0; padding: 0; }
|
1807
|
+
.ui-mini { margin-top: .25em; margin-bottom: .25em; }
|
1808
|
+
.ui-btn-left, .ui-btn-right, .ui-input-clear, .ui-btn-inline,
|
1809
|
+
.ui-grid-a .ui-btn, .ui-grid-b .ui-btn, .ui-grid-c .ui-btn, .ui-grid-d .ui-btn, .ui-grid-e .ui-btn, .ui-grid-solo .ui-btn { margin-right: 5px; margin-left: 5px; }
|
1810
|
+
.ui-btn-inner { font-size: 16px; padding: .6em 20px; min-width: .75em; display: block; position: relative; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; zoom: 1; }
|
1746
1811
|
.ui-btn input, .ui-btn button { z-index: 2; }
|
1747
|
-
.ui-btn-left, .ui-btn-right, .ui-btn-inline { display: inline-block; }
|
1812
|
+
.ui-btn-left, .ui-btn-right, .ui-btn-inline { display: inline-block; vertical-align: middle; }
|
1813
|
+
.ui-mobile .ui-btn-left, .ui-mobile .ui-btn-right { margin: 0; } /* .ui-mobile to increase specificity level */
|
1748
1814
|
.ui-btn-block { display: block; }
|
1749
|
-
.ui-header .ui-btn,
|
1750
|
-
.ui-footer .ui-btn { display: inline-block; margin: 0; }
|
1815
|
+
.ui-header > .ui-btn,
|
1816
|
+
.ui-footer > .ui-btn { display: inline-block; margin: 0; }
|
1817
|
+
.ui-header .ui-btn-block,
|
1818
|
+
.ui-footer .ui-btn-block { display: block; }
|
1751
1819
|
.ui-header .ui-btn-inner,
|
1752
1820
|
.ui-footer .ui-btn-inner,
|
1753
1821
|
.ui-mini .ui-btn-inner { font-size: 12.5px; padding: .55em 11px .5em; }
|
1754
|
-
.ui-
|
1755
|
-
.ui-
|
1822
|
+
.ui-fullsize .ui-btn-inner,
|
1823
|
+
.ui-fullsize .ui-btn-inner { font-size: 16px; padding: .6em 20px; }
|
1756
1824
|
.ui-btn-icon-notext { width: 24px; height: 24px; }
|
1757
1825
|
.ui-btn-icon-notext .ui-btn-inner { padding: 0; height: 100%; }
|
1758
|
-
.ui-btn-icon-notext .ui-btn-inner .ui-icon { margin: 2px 1px 2px 3px; }
|
1759
|
-
.ui-btn-text { position: relative; z-index: 1; width: 100%; }
|
1826
|
+
.ui-btn-icon-notext .ui-btn-inner .ui-icon { margin: 2px 1px 2px 3px; float: left; }
|
1827
|
+
.ui-btn-text { position: relative; z-index: 1; width: 100%; -moz-user-select: none; -webkit-user-select: none; -ms-user-select: none; }
|
1760
1828
|
.ui-btn-icon-notext .ui-btn-text { position: absolute; left: -9999px; }
|
1761
1829
|
.ui-btn-icon-left .ui-btn-inner { padding-left: 40px; }
|
1762
1830
|
.ui-btn-icon-right .ui-btn-inner { padding-right: 40px; }
|
@@ -1764,20 +1832,24 @@ div.ui-mobile-viewport { overflow-x: hidden; }
|
|
1764
1832
|
.ui-btn-icon-bottom .ui-btn-inner { padding-bottom: 40px; }
|
1765
1833
|
.ui-header .ui-btn-icon-left .ui-btn-inner,
|
1766
1834
|
.ui-footer .ui-btn-icon-left .ui-btn-inner,
|
1835
|
+
.ui-mini.ui-btn-icon-left .ui-btn-inner,
|
1767
1836
|
.ui-mini .ui-btn-icon-left .ui-btn-inner { padding-left: 30px; }
|
1768
1837
|
.ui-header .ui-btn-icon-right .ui-btn-inner,
|
1769
1838
|
.ui-footer .ui-btn-icon-right .ui-btn-inner,
|
1839
|
+
.ui-mini.ui-btn-icon-right .ui-btn-inner,
|
1770
1840
|
.ui-mini .ui-btn-icon-right .ui-btn-inner { padding-right: 30px; }
|
1771
1841
|
.ui-header .ui-btn-icon-top .ui-btn-inner,
|
1772
|
-
.ui-footer .ui-btn-icon-top .ui-btn-inner
|
1773
|
-
.ui-mini
|
1842
|
+
.ui-footer .ui-btn-icon-top .ui-btn-inner { padding: 30px 3px .5em 3px; }
|
1843
|
+
.ui-mini.ui-btn-icon-top .ui-btn-inner,
|
1844
|
+
.ui-mini .ui-btn-icon-top .ui-btn-inner { padding-top: 30px; }
|
1774
1845
|
.ui-header .ui-btn-icon-bottom .ui-btn-inner,
|
1775
|
-
.ui-footer .ui-btn-icon-bottom .ui-btn-inner
|
1776
|
-
.ui-mini
|
1846
|
+
.ui-footer .ui-btn-icon-bottom .ui-btn-inner { padding: .55em 3px 30px 3px; }
|
1847
|
+
.ui-mini.ui-btn-icon-bottom .ui-btn-inner,
|
1848
|
+
.ui-mini .ui-btn-icon-bottom .ui-btn-inner { padding-bottom: 30px; }
|
1777
1849
|
/*btn icon positioning*/
|
1778
1850
|
.ui-btn-icon-notext .ui-icon { display: block; z-index: 0;}
|
1779
|
-
.ui-btn-icon-left .ui-btn-inner .ui-icon, .ui-btn-icon-right .ui-btn-inner .ui-icon { position: absolute; top: 50%; margin-top: -9px; }
|
1780
|
-
.ui-btn-icon-top .ui-btn-inner .ui-icon, .ui-btn-icon-bottom .ui-btn-inner .ui-icon { position: absolute; left: 50%;
|
1851
|
+
.ui-btn-icon-left > .ui-btn-inner > .ui-icon, .ui-btn-icon-right > .ui-btn-inner > .ui-icon { position: absolute; top: 50%; margin-top: -9px; }
|
1852
|
+
.ui-btn-icon-top .ui-btn-inner .ui-icon, .ui-btn-icon-bottom .ui-btn-inner .ui-icon { position: absolute; left: 50%; margin-left: -9px; }
|
1781
1853
|
.ui-btn-icon-left .ui-icon { left: 10px; }
|
1782
1854
|
.ui-btn-icon-right .ui-icon { right: 10px; }
|
1783
1855
|
.ui-btn-icon-top .ui-icon { top: 10px; }
|
@@ -1799,89 +1871,276 @@ div.ui-mobile-viewport { overflow-x: hidden; }
|
|
1799
1871
|
.ui-mini.ui-btn-icon-bottom .ui-icon,
|
1800
1872
|
.ui-mini .ui-btn-icon-bottom .ui-icon { bottom: 5px; }
|
1801
1873
|
/*hiding native button,inputs */
|
1802
|
-
.ui-btn-hidden { position: absolute; top: 0; left: 0; width: 100%; height: 100%; -webkit-appearance:
|
1803
|
-
|
1804
|
-
.ui-
|
1805
|
-
.ui-
|
1874
|
+
.ui-btn-hidden { position: absolute; top: 0; left: 0; width: 100%; height: 100%; -webkit-appearance: none; cursor: pointer; background: #fff; background: rgba(255,255,255,0); filter: Alpha(Opacity=0); opacity: .1; font-size: 1px; border: none; text-indent: -9999px; }
|
1875
|
+
/* Fixes IE/WP filter alpha opacity bugs */
|
1876
|
+
.ui-disabled .ui-btn-hidden { display: none; }
|
1877
|
+
.ui-disabled { z-index: 1; }
|
1878
|
+
.ui-field-contain .ui-btn.ui-submit { margin: 0; }
|
1879
|
+
label.ui-submit { font-size: 16px; line-height: 1.4; font-weight: normal; margin: 0 0 .3em; display: block; }
|
1880
|
+
@media all and (min-width: 450px){
|
1881
|
+
.ui-field-contain label.ui-submit { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0; }
|
1882
|
+
.ui-field-contain .ui-btn.ui-submit { width: 78%; display: inline-block; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box; }
|
1883
|
+
.ui-hide-label .ui-btn.ui-submit { width: auto; display: block; }
|
1884
|
+
}
|
1885
|
+
.ui-collapsible-inset { margin: .5em 0; }
|
1886
|
+
.ui-collapsible-heading { font-size: 16px; display: block; margin: 0 -15px; padding: 0; position: relative; }
|
1887
|
+
.ui-collapsible-inset .ui-collapsible-heading { margin: 0; }
|
1888
|
+
.ui-collapsible-heading .ui-btn { text-align: left; margin: 0; border-left-width: 0; border-right-width: 0; }
|
1889
|
+
.ui-collapsible-inset .ui-collapsible-heading .ui-btn { border-right-width: 1px; border-left-width: 1px; }
|
1890
|
+
.ui-collapsible-collapsed + .ui-collapsible:not(.ui-collapsible-inset) .ui-collapsible-heading .ui-btn { border-top-width: 0; }
|
1891
|
+
.ui-collapsible-set .ui-collapsible:not(.ui-collapsible-inset) .ui-collapsible-heading .ui-btn { border-top-width: 1px; }
|
1806
1892
|
.ui-collapsible-heading .ui-btn-inner,
|
1807
1893
|
.ui-collapsible-heading .ui-btn-icon-left .ui-btn-inner { padding-left: 40px; }
|
1808
1894
|
.ui-collapsible-heading .ui-btn-icon-right .ui-btn-inner { padding-left: 12px; padding-right: 40px; }
|
1809
1895
|
.ui-collapsible-heading .ui-btn-icon-top .ui-btn-inner,
|
1810
1896
|
.ui-collapsible-heading .ui-btn-icon-bottom .ui-btn-inner { padding-right: 40px; text-align: center; }
|
1811
|
-
.ui-collapsible-heading
|
1812
|
-
.ui-collapsible-heading
|
1813
|
-
.ui-collapsible-heading
|
1897
|
+
.ui-collapsible-heading .ui-btn span.ui-btn { position: absolute; left: 6px; top: 50%; margin: -12px 0 0 0; width: 20px; height: 20px; padding: 1px 0px 1px 2px; text-indent: -9999px; }
|
1898
|
+
.ui-collapsible-heading .ui-btn span.ui-btn .ui-btn-inner { padding: 10px 0; }
|
1899
|
+
.ui-collapsible-heading .ui-btn span.ui-btn .ui-icon { left: 0; margin-top: -10px; }
|
1814
1900
|
.ui-collapsible-heading-status { position: absolute; top: -9999px; left:0px; }
|
1815
1901
|
.ui-collapsible-content {
|
1816
1902
|
display: block;
|
1817
|
-
margin:
|
1818
|
-
padding: 10px
|
1819
|
-
border-
|
1820
|
-
|
1821
|
-
|
1822
|
-
|
1903
|
+
margin: 0 -15px;
|
1904
|
+
padding: 10px 15px;
|
1905
|
+
border-left-width: 0;
|
1906
|
+
border-right-width: 0;
|
1907
|
+
border-top: none; /* Overrides ui-body-* */
|
1908
|
+
background-image: none; /* Overrides ui-body-* */
|
1909
|
+
}
|
1910
|
+
.ui-collapsible-inset .ui-collapsible-content { margin: 0; border-right-width: 1px; border-left-width: 1px; }
|
1823
1911
|
.ui-collapsible-content-collapsed { display: none; }
|
1824
1912
|
.ui-collapsible-set { margin: .5em 0; }
|
1825
1913
|
.ui-collapsible-set .ui-collapsible { margin: -1px 0 0; }
|
1826
|
-
.ui-
|
1827
|
-
.ui-
|
1914
|
+
.ui-collapsible-set .ui-collapsible:first-child { margin-top: 0; }
|
1915
|
+
.ui-controlgroup, fieldset.ui-controlgroup { padding: 0; margin: .5em 0; zoom: 1; }
|
1916
|
+
.ui-controlgroup.ui-mini, fieldset.ui-controlgroup.ui-mini { margin: .25em 0; }
|
1917
|
+
.ui-field-contain .ui-controlgroup, .ui-field-contain fieldset.ui-controlgroup { margin: 0; }
|
1918
|
+
.ui-bar .ui-controlgroup { margin: 0 5px; }
|
1828
1919
|
.ui-controlgroup-label { font-size: 16px; line-height: 1.4; font-weight: normal; margin: 0 0 .4em; }
|
1829
|
-
.ui-controlgroup-controls { display: block; width: 100%;}
|
1830
1920
|
.ui-controlgroup li { list-style: none; }
|
1831
1921
|
.ui-controlgroup-vertical .ui-btn,
|
1832
|
-
.ui-controlgroup-vertical .ui-checkbox, .ui-controlgroup-vertical .ui-radio { margin: 0; border-bottom-width: 0;
|
1833
|
-
.ui-controlgroup-controls label.ui-select { position: absolute; left: -9999px; }
|
1922
|
+
.ui-controlgroup-vertical .ui-checkbox, .ui-controlgroup-vertical .ui-radio { margin: 0; border-bottom-width: 0; }
|
1834
1923
|
.ui-controlgroup-vertical .ui-controlgroup-last { border-bottom-width: 1px; }
|
1835
|
-
.ui-controlgroup-
|
1836
|
-
.ui-controlgroup
|
1837
|
-
.ui-controlgroup
|
1924
|
+
.ui-controlgroup-controls label.ui-select { position: absolute; left: -9999px; }
|
1925
|
+
.ui-controlgroup .ui-btn-icon-notext { width: auto; height: auto; top: auto; }
|
1926
|
+
.ui-controlgroup .ui-btn-icon-notext .ui-btn-inner { height: 20px; padding: .6em 20px .6em 20px }
|
1927
|
+
.ui-controlgroup-horizontal .ui-btn-icon-notext .ui-btn-inner { width: 18px; }
|
1928
|
+
.ui-controlgroup.ui-mini .ui-btn-icon-notext .ui-btn-inner,
|
1929
|
+
.ui-header .ui-controlgroup .ui-btn-icon-notext .ui-btn-inner,
|
1930
|
+
.ui-footer .ui-controlgroup .ui-btn-icon-notext .ui-btn-inner { height: 16px; padding: .55em 11px .5em 11px; }
|
1931
|
+
.ui-controlgroup .ui-btn-icon-notext .ui-btn-inner .ui-icon { position: absolute; top: 50%; right: 50%; margin: -9px -9px 0 0; }
|
1932
|
+
.ui-controlgroup-horizontal .ui-controlgroup-controls:before,
|
1933
|
+
.ui-controlgroup-horizontal .ui-controlgroup-controls:after { content: ""; display: table; }
|
1934
|
+
.ui-controlgroup-horizontal .ui-controlgroup-controls:after { clear: both; }
|
1935
|
+
.ui-controlgroup-horizontal .ui-controlgroup-controls { display: inline-block; vertical-align: middle; zoom: 1; }
|
1936
|
+
.ui-controlgroup-horizontal .ui-btn-inner { text-align: center; }
|
1937
|
+
.ui-controlgroup-horizontal.ui-mini .ui-btn-inner { height: 16px; line-height: 16px; }
|
1938
|
+
.ui-controlgroup-horizontal .ui-btn, .ui-controlgroup-horizontal .ui-select,
|
1838
1939
|
.ui-controlgroup-horizontal .ui-checkbox, .ui-controlgroup-horizontal .ui-radio { float: left; clear: none; margin: 0 -1px 0 0; }
|
1839
|
-
.ui-controlgroup-horizontal .ui-
|
1940
|
+
.ui-controlgroup-horizontal .ui-select .ui-btn,
|
1941
|
+
.ui-controlgroup-horizontal .ui-checkbox .ui-btn, .ui-controlgroup-horizontal .ui-radio .ui-btn { float: none; margin: 0; }
|
1942
|
+
.ui-controlgroup-horizontal .ui-controlgroup-last, .ui-controlgroup-horizontal .ui-select:last-child,
|
1840
1943
|
.ui-controlgroup-horizontal .ui-checkbox:last-child, .ui-controlgroup-horizontal .ui-radio:last-child { margin-right: 0; }
|
1841
|
-
.ui-controlgroup-
|
1842
|
-
.ui-controlgroup .ui-checkbox label, .ui-controlgroup .ui-radio label { font-size: 16px; }
|
1843
|
-
/* conflicts with listview..
|
1844
|
-
.ui-controlgroup .ui-btn-icon-notext { width: 30px; height: 30px; text-indent: -9999px; }
|
1845
|
-
.ui-controlgroup .ui-btn-icon-notext .ui-btn-inner { padding: 5px 6px 5px 5px; }
|
1846
|
-
*/
|
1944
|
+
.ui-controlgroup .ui-checkbox label, .ui-controlgroup .ui-radio label { font-size: 16px; }
|
1847
1945
|
@media all and (min-width: 450px){
|
1848
|
-
.ui-field-contain .ui-controlgroup-label { vertical-align: top; display: inline-block;
|
1849
|
-
.ui-field-contain .ui-controlgroup-controls { width:
|
1850
|
-
.ui-field-contain .ui-controlgroup .ui-select { width: 100%; }
|
1946
|
+
.ui-field-contain .ui-controlgroup-label { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0; }
|
1947
|
+
.ui-field-contain .ui-controlgroup-controls { width: 78%; display: inline-block; }
|
1948
|
+
.ui-field-contain .ui-controlgroup .ui-select { width: 100%; display: block; }
|
1851
1949
|
.ui-field-contain .ui-controlgroup-horizontal .ui-select { width: auto; }
|
1950
|
+
.ui-hide-label .ui-controlgroup-controls { width: 100%; }
|
1852
1951
|
}
|
1853
1952
|
.ui-dialog {
|
1854
1953
|
background: none !important; /* this is to ensure that dialog theming does not apply (by default at least) on the page div */
|
1855
1954
|
}
|
1856
|
-
.ui-dialog-contain {
|
1857
|
-
|
1858
|
-
|
1859
|
-
|
1860
|
-
|
1955
|
+
.ui-dialog-contain {
|
1956
|
+
width: 92.5%;
|
1957
|
+
max-width: 500px;
|
1958
|
+
margin: 10% auto 15px auto;
|
1959
|
+
padding: 0;
|
1960
|
+
position: relative;
|
1961
|
+
top: -15px;
|
1861
1962
|
}
|
1862
|
-
.ui-dialog .ui-header,
|
1863
|
-
.ui-dialog .ui-content,
|
1864
|
-
.ui-dialog .ui-footer {
|
1963
|
+
.ui-dialog-contain > .ui-header,
|
1964
|
+
.ui-dialog-contain > .ui-content,
|
1965
|
+
.ui-dialog-contain > .ui-footer {
|
1865
1966
|
display: block;
|
1866
1967
|
position: relative;
|
1867
1968
|
width: auto;
|
1969
|
+
margin: 0;
|
1868
1970
|
}
|
1869
|
-
.ui-dialog .ui-header
|
1870
|
-
|
1971
|
+
.ui-dialog-contain > .ui-header {
|
1972
|
+
border: none;
|
1973
|
+
overflow: hidden;
|
1871
1974
|
z-index: 10;
|
1872
1975
|
padding: 0;
|
1873
1976
|
}
|
1874
|
-
.ui-dialog .ui-
|
1977
|
+
.ui-dialog-contain > .ui-content {
|
1978
|
+
padding: 15px;
|
1979
|
+
}
|
1980
|
+
.ui-dialog-contain > .ui-footer {
|
1981
|
+
z-index: 10;
|
1875
1982
|
padding: 0 15px;
|
1876
1983
|
}
|
1877
|
-
.ui-
|
1878
|
-
|
1984
|
+
.ui-popup-open .ui-header-fixed,
|
1985
|
+
.ui-popup-open .ui-footer-fixed {
|
1986
|
+
position: absolute !important; /* See line #553 of popup.js */
|
1987
|
+
}
|
1988
|
+
.ui-popup-screen {
|
1989
|
+
background-image: url(data:image/gif;base64,R0lGODlhAQABAID/AMDAwAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==); /* Necessary to set some form of background to ensure element is clickable in IE6/7. While legacy IE won't understand the data-URI'd image, it ensures no additional requests occur in all other browsers with little overhead. */
|
1990
|
+
top: 0px;
|
1991
|
+
left: 0px;
|
1992
|
+
right: 0px;
|
1993
|
+
bottom: 1px;
|
1994
|
+
position: absolute;
|
1995
|
+
filter: Alpha(Opacity=0);
|
1996
|
+
opacity: 0;
|
1997
|
+
z-index: 1099;
|
1998
|
+
}
|
1999
|
+
.ui-popup-screen.in {
|
2000
|
+
opacity: 0.5;
|
2001
|
+
filter: Alpha(Opacity=50);
|
2002
|
+
}
|
2003
|
+
.ui-popup-screen.out {
|
2004
|
+
opacity: 0;
|
2005
|
+
filter: Alpha(Opacity=0);
|
2006
|
+
}
|
2007
|
+
.ui-popup-container {
|
2008
|
+
z-index: 1100;
|
2009
|
+
display: inline-block;
|
2010
|
+
position: absolute;
|
2011
|
+
padding: 0;
|
2012
|
+
outline: 0;
|
2013
|
+
}
|
2014
|
+
.ui-popup {
|
2015
|
+
position: relative;
|
2016
|
+
}
|
2017
|
+
.ui-popup.ui-content,
|
2018
|
+
.ui-popup .ui-content {
|
2019
|
+
overflow: visible;
|
1879
2020
|
}
|
1880
|
-
.ui-
|
1881
|
-
|
2021
|
+
.ui-popup > p,
|
2022
|
+
.ui-popup > h1,
|
2023
|
+
.ui-popup > h2,
|
2024
|
+
.ui-popup > h3,
|
2025
|
+
.ui-popup > h4,
|
2026
|
+
.ui-popup > h5,
|
2027
|
+
.ui-popup > h6 {
|
2028
|
+
margin: .5em 7px;
|
1882
2029
|
}
|
1883
|
-
.ui-
|
1884
|
-
|
2030
|
+
.ui-popup > span {
|
2031
|
+
display: block;
|
2032
|
+
margin: .5em 7px;
|
2033
|
+
}
|
2034
|
+
.ui-popup .ui-title {
|
2035
|
+
font-size: 16px;
|
2036
|
+
font-weight: bold;
|
2037
|
+
margin-top: .5em;
|
2038
|
+
margin-bottom: .5em;
|
2039
|
+
}
|
2040
|
+
.ui-popup-container .ui-content > p,
|
2041
|
+
.ui-popup-container .ui-content > h1,
|
2042
|
+
.ui-popup-container .ui-content > h2,
|
2043
|
+
.ui-popup-container .ui-content > h3,
|
2044
|
+
.ui-popup-container .ui-content > h4,
|
2045
|
+
.ui-popup-container .ui-content > h5,
|
2046
|
+
.ui-popup-container .ui-content > h6 {
|
2047
|
+
margin: .5em 0;
|
2048
|
+
}
|
2049
|
+
.ui-popup-container .ui-content > span {
|
2050
|
+
margin: 0;
|
2051
|
+
}
|
2052
|
+
.ui-popup-container .ui-content > p:first-child,
|
2053
|
+
.ui-popup-container .ui-content > h1:first-child,
|
2054
|
+
.ui-popup-container .ui-content > h2:first-child,
|
2055
|
+
.ui-popup-container .ui-content > h3:first-child,
|
2056
|
+
.ui-popup-container .ui-content > h4:first-child,
|
2057
|
+
.ui-popup-container .ui-content > h5:first-child,
|
2058
|
+
.ui-popup-container .ui-content > h6:first-child {
|
2059
|
+
margin-top: 0;
|
2060
|
+
}
|
2061
|
+
.ui-popup-container .ui-content > p:last-child,
|
2062
|
+
.ui-popup-container .ui-content > h1:last-child,
|
2063
|
+
.ui-popup-container .ui-content > h2:last-child,
|
2064
|
+
.ui-popup-container .ui-content > h3:last-child,
|
2065
|
+
.ui-popup-container .ui-content > h4:last-child,
|
2066
|
+
.ui-popup-container .ui-content > h5:last-child,
|
2067
|
+
.ui-popup-container .ui-content > h6:last-child {
|
2068
|
+
margin-bottom: 0;
|
2069
|
+
}
|
2070
|
+
.ui-popup > img {
|
2071
|
+
width: auto;
|
2072
|
+
height: auto;
|
2073
|
+
max-width: 100%;
|
2074
|
+
max-height: 100%;
|
2075
|
+
vertical-align: middle;
|
2076
|
+
}
|
2077
|
+
.ui-popup iframe {
|
2078
|
+
vertical-align: middle;
|
2079
|
+
}
|
2080
|
+
@media all and (min-width: 450px){
|
2081
|
+
.ui-popup .ui-field-contain label.ui-submit,
|
2082
|
+
.ui-popup .ui-field-contain .ui-controlgroup-label,
|
2083
|
+
.ui-popup .ui-field-contain label.ui-select,
|
2084
|
+
.ui-popup .ui-field-contain label.ui-input-text {
|
2085
|
+
font-size: 16px; line-height: 1.4; display: block; font-weight: normal; margin: 0 0 .3em;
|
2086
|
+
}
|
2087
|
+
.ui-popup .ui-field-contain .ui-btn.ui-submit,
|
2088
|
+
.ui-popup .ui-field-contain .ui-controlgroup-controls,
|
2089
|
+
.ui-popup .ui-field-contain .ui-select,
|
2090
|
+
.ui-popup .ui-field-contain input.ui-input-text,
|
2091
|
+
.ui-popup .ui-field-contain textarea.ui-input-text,
|
2092
|
+
.ui-popup .ui-field-contain .ui-input-search {
|
2093
|
+
width: 100%; display: block;
|
2094
|
+
}
|
2095
|
+
}
|
2096
|
+
.ui-popup > .ui-btn-left,
|
2097
|
+
.ui-popup > .ui-btn-right {
|
2098
|
+
position: absolute;
|
2099
|
+
top: -9px;
|
2100
|
+
margin: 0;
|
2101
|
+
z-index: 1101;
|
2102
|
+
}
|
2103
|
+
.ui-popup > .ui-btn-left { left: -9px; }
|
2104
|
+
.ui-popup > .ui-btn-right { right: -9px; }
|
2105
|
+
.ui-popup.ui-corner-all > .ui-header,
|
2106
|
+
.ui-popup.ui-corner-all ~ .ui-content,
|
2107
|
+
.ui-popup.ui-corner-all > .ui-content:first-child {
|
2108
|
+
-webkit-border-top-left-radius: inherit;
|
2109
|
+
border-top-left-radius: inherit;
|
2110
|
+
-webkit-border-top-right-radius: inherit;
|
2111
|
+
border-top-right-radius: inherit;
|
2112
|
+
}
|
2113
|
+
.ui-popup.ui-corner-all > .ui-content,
|
2114
|
+
.ui-popup.ui-corner-all > .ui-footer,
|
2115
|
+
.ui-popup.ui-corner-all > .ui-header:nth-child(n):last-child {
|
2116
|
+
-webkit-border-bottom-left-radius: inherit;
|
2117
|
+
border-bottom-left-radius: inherit;
|
2118
|
+
-webkit-border-bottom-right-radius: inherit;
|
2119
|
+
border-bottom-right-radius: inherit;
|
2120
|
+
}
|
2121
|
+
.ui-popup.ui-corner-all > .ui-content:nth-child(2),
|
2122
|
+
.ui-popup.ui-corner-all > .ui-header:nth-child(2) {
|
2123
|
+
-webkit-border-top-left-radius: 0;
|
2124
|
+
border-top-left-radius: 0;
|
2125
|
+
-webkit-border-top-right-radius: 0;
|
2126
|
+
border-top-right-radius: 0;
|
2127
|
+
}
|
2128
|
+
.ui-popup.ui-corner-all > .ui-content:nth-last-child(1n+2),
|
2129
|
+
.ui-popup.ui-corner-all > .ui-footer:nth-last-child(1n+2) {
|
2130
|
+
-webkit-border-bottom-left-radius: 0;
|
2131
|
+
border-bottom-left-radius: 0;
|
2132
|
+
-webkit-border-bottom-right-radius: 0;
|
2133
|
+
border-bottom-right-radius: 0;
|
2134
|
+
}
|
2135
|
+
.ui-popup.ui-corner-all > .ui-header:only-child,
|
2136
|
+
.ui-popup.ui-corner-all > .ui-footer:only-child {
|
2137
|
+
-webkit-border-radius: inherit;
|
2138
|
+
border-radius: inherit;
|
2139
|
+
}
|
2140
|
+
.ui-checkbox, .ui-radio { position: relative; clear: both; margin: 0; z-index: 1; }
|
2141
|
+
.ui-checkbox .ui-btn, .ui-radio .ui-btn { margin-top: .5em; margin-bottom: .5em; text-align: left; z-index: 2; }
|
2142
|
+
.ui-checkbox .ui-btn.ui-mini, .ui-radio .ui-btn.ui-mini { margin: .25em 0; }
|
2143
|
+
.ui-controlgroup .ui-checkbox .ui-btn, .ui-controlgroup .ui-radio .ui-btn { margin: 0; }
|
1885
2144
|
.ui-checkbox .ui-btn-inner, .ui-radio .ui-btn-inner { white-space: normal; }
|
1886
2145
|
.ui-checkbox .ui-btn-icon-left .ui-btn-inner,.ui-radio .ui-btn-icon-left .ui-btn-inner { padding-left: 45px; }
|
1887
2146
|
.ui-checkbox .ui-mini.ui-btn-icon-left .ui-btn-inner,.ui-radio .ui-mini.ui-btn-icon-left .ui-btn-inner { padding-left: 36px; }
|
@@ -1899,63 +2158,66 @@ div.ui-mobile-viewport { overflow-x: hidden; }
|
|
1899
2158
|
.ui-checkbox .ui-btn-icon-right .ui-icon, .ui-radio .ui-btn-icon-right .ui-icon { right: 15px; }
|
1900
2159
|
.ui-checkbox .ui-mini.ui-btn-icon-right .ui-icon, .ui-radio .ui-mini.ui-btn-icon-right .ui-icon { right: 9px; }
|
1901
2160
|
/* input, label positioning */
|
1902
|
-
.ui-checkbox input,.ui-radio input { position:absolute; left:20px; top:50%; width: 10px; height: 10px;
|
2161
|
+
.ui-checkbox input,.ui-radio input { position:absolute; left:20px; top:50%; width: 10px; height: 10px; margin:-5px 0 0 0; outline: 0 !important; z-index: 1; }
|
1903
2162
|
.ui-field-contain, fieldset.ui-field-contain { padding: .8em 0; margin: 0; border-width: 0 0 1px 0; overflow: visible; }
|
1904
|
-
.ui-field-contain:
|
1905
|
-
.ui-
|
1906
|
-
.ui-header .ui-field-contain-right {
|
1907
|
-
position: absolute;
|
1908
|
-
top: 0;
|
1909
|
-
width: 25%;
|
1910
|
-
}
|
1911
|
-
.ui-header .ui-field-contain-left {
|
1912
|
-
left: 1em;
|
1913
|
-
}
|
1914
|
-
.ui-header .ui-field-contain-right {
|
1915
|
-
right: 1em;
|
1916
|
-
}
|
2163
|
+
.ui-field-contain:last-child { border-bottom-width: 0; }
|
2164
|
+
.ui-field-contain { max-width: 100%; } /* This prevents horizontal scrollbar in IE7 */
|
1917
2165
|
@media all and (min-width: 450px){
|
1918
2166
|
.ui-field-contain, .ui-mobile fieldset.ui-field-contain { border-width: 0; padding: 0; margin: 1em 0; }
|
1919
2167
|
}
|
1920
2168
|
.ui-select { display: block; position: relative; }
|
1921
2169
|
.ui-select select { position: absolute; left: -9999px; top: -9999px; }
|
1922
|
-
.ui-select .ui-btn { overflow: hidden; opacity: 1;
|
1923
|
-
|
1924
|
-
|
2170
|
+
.ui-select .ui-btn { overflow: hidden; opacity: 1; }
|
2171
|
+
.ui-field-contain .ui-select .ui-btn { margin: 0; }
|
2172
|
+
/* Fixes #2588: When Windows Phone 7.5 (Mango) tries to calculate a numeric opacity for a select (including "inherit") without explicitly specifying an opacity on the parent to give it context, a bug appears where clicking elsewhere on the page after opening the select will open the select again. */
|
2173
|
+
.ui-select .ui-btn select { cursor: pointer; -webkit-appearance: none; left: 0; top:0; width: 100%; min-height: 1.5em; min-height: 100%; height: 3em; max-height: 100%; filter: Alpha(Opacity=0); opacity: 0; z-index: 2; }
|
1925
2174
|
.ui-select .ui-disabled { opacity: .3; }
|
1926
|
-
|
1927
|
-
.ui-select .ui-
|
1928
|
-
|
1929
|
-
.ui-select .ui-btn
|
1930
|
-
.ui-select .ui-
|
2175
|
+
/* Display none because of issues with IE/WP's filter alpha opacity */
|
2176
|
+
.ui-select .ui-disabled select { display: none; }
|
2177
|
+
@-moz-document url-prefix() { .ui-select .ui-btn select { opacity: 0.0001; }}
|
2178
|
+
.ui-select .ui-btn.ui-select-nativeonly { border-radius: 0; border: 0; }
|
2179
|
+
.ui-select .ui-btn.ui-select-nativeonly select { opacity: 1; text-indent: 0; display: block; }
|
2180
|
+
.ui-select .ui-disabled.ui-select-nativeonly .ui-btn-inner { opacity: 0; }
|
2181
|
+
.ui-select .ui-btn-icon-right .ui-btn-inner, .ui-select .ui-li-has-count .ui-btn-inner { padding-right: 45px; }
|
2182
|
+
.ui-select .ui-mini.ui-btn-icon-right .ui-btn-inner { padding-right: 32px; }
|
2183
|
+
.ui-select .ui-btn-icon-right.ui-li-has-count .ui-btn-inner { padding-right: 80px; }
|
2184
|
+
.ui-select .ui-mini.ui-btn-icon-right.ui-li-has-count .ui-btn-inner { padding-right: 67px; }
|
2185
|
+
.ui-select .ui-btn-icon-right .ui-icon { right: 15px; }
|
2186
|
+
.ui-select .ui-mini.ui-btn-icon-right .ui-icon { right: 7px; }
|
2187
|
+
.ui-select .ui-btn-icon-right.ui-li-has-count .ui-li-count { right: 45px; }
|
2188
|
+
.ui-select .ui-mini.ui-btn-icon-right.ui-li-has-count .ui-li-count { right: 32px; }
|
1931
2189
|
/* labels */
|
1932
|
-
label.ui-select { font-size: 16px; line-height: 1.4;
|
2190
|
+
label.ui-select { font-size: 16px; line-height: 1.4; font-weight: normal; margin: 0 0 .3em; display: block; }
|
1933
2191
|
/*listbox*/
|
1934
2192
|
.ui-select .ui-btn-text, .ui-selectmenu .ui-btn-text { display: block; min-height: 1em; overflow: hidden !important;
|
1935
2193
|
/* This !important is required for iPad Safari specifically. See https://github.com/jquery/jquery-mobile/issues/2647 */ }
|
1936
2194
|
.ui-select .ui-btn-text { text-overflow: ellipsis; }
|
1937
|
-
.ui-selectmenu {
|
2195
|
+
.ui-selectmenu { padding: 6px; min-width: 160px; }
|
1938
2196
|
.ui-selectmenu .ui-listview { margin: 0; }
|
1939
2197
|
.ui-selectmenu .ui-btn.ui-li-divider { cursor: default; }
|
1940
|
-
.ui-selectmenu-hidden { top: -
|
1941
|
-
.ui-selectmenu-screen { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 99; }
|
2198
|
+
.ui-selectmenu-hidden { top: -99999px; left: -9999px; }
|
1942
2199
|
.ui-screen-hidden, .ui-selectmenu-list .ui-li .ui-icon { display: none; }
|
1943
2200
|
.ui-selectmenu-list .ui-li .ui-icon { display: block; }
|
1944
2201
|
.ui-li.ui-selectmenu-placeholder { display: none; }
|
2202
|
+
.ui-selectmenu .ui-header { margin: 0; padding: 0; }
|
1945
2203
|
.ui-selectmenu .ui-header .ui-title { margin: 0.6em 46px 0.8em; }
|
1946
|
-
@media all and (min-width: 450px){
|
1947
|
-
.ui-field-contain label.ui-select { vertical-align: top;
|
1948
|
-
.ui-field-contain .ui-select { width:
|
1949
|
-
}
|
2204
|
+
@media all and (min-width: 450px){
|
2205
|
+
.ui-field-contain label.ui-select { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0; }
|
2206
|
+
.ui-field-contain .ui-select { width: 78%; display: inline-block; }
|
2207
|
+
.ui-hide-label .ui-select { width: 100%; }
|
2208
|
+
}
|
1950
2209
|
/* when no placeholder is defined in a multiple select, the header height doesn't even extend past the close button. this shim's content in there */
|
1951
2210
|
.ui-selectmenu .ui-header h1:after { content: '.'; visibility: hidden; }
|
1952
2211
|
label.ui-input-text { font-size: 16px; line-height: 1.4; display: block; font-weight: normal; margin: 0 0 .3em; }
|
1953
|
-
input.ui-input-text, textarea.ui-input-text { background-image: none; padding: .4em; line-height: 1.4; font-size: 16px; display: block; width:
|
1954
|
-
.ui-
|
1955
|
-
.ui-
|
1956
|
-
|
2212
|
+
input.ui-input-text, textarea.ui-input-text { background-image: none; padding: .4em; margin: .5em 0; line-height: 1.4; font-size: 16px; display: block; width: 100%; outline: 0; }
|
2213
|
+
input.ui-input-text.ui-mini, textarea.ui-input-text.ui-mini { margin: .25em 0; }
|
2214
|
+
.ui-field-contain input.ui-input-text, .ui-field-contain textarea.ui-input-text { margin: 0; }
|
2215
|
+
input.ui-input-text, textarea.ui-input-text, .ui-input-search { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box; }
|
2216
|
+
input.ui-input-text { -webkit-appearance: none; }
|
1957
2217
|
textarea.ui-input-text { height: 50px; -webkit-transition: height 200ms linear; -moz-transition: height 200ms linear; -o-transition: height 200ms linear; transition: height 200ms linear; }
|
1958
|
-
.ui-input-search { padding: 0 30px; background-image: none; position: relative; }
|
2218
|
+
.ui-input-search { padding: 0 30px; margin: .5em 0; background-image: none; position: relative; }
|
2219
|
+
.ui-input-search.ui-mini { margin: .25em 0; }
|
2220
|
+
.ui-field-contain .ui-input-search { margin: 0; }
|
1959
2221
|
.ui-icon-searchfield:after { position: absolute; left: 7px; top: 50%; margin-top: -9px; content: ""; width: 18px; height: 18px; opacity: .5; }
|
1960
2222
|
.ui-input-search input.ui-input-text { border: none; width: 98%; padding: .4em 0; margin: 0; display: block; background: transparent none; outline: 0 !important; }
|
1961
2223
|
.ui-input-search .ui-input-clear { position: absolute; right: 0; top: 50%; margin-top: -13px; }
|
@@ -1963,76 +2225,93 @@ textarea.ui-input-text { height: 50px; -webkit-transition: height 200ms linear;
|
|
1963
2225
|
.ui-input-search .ui-input-clear-hidden { display: none; }
|
1964
2226
|
input.ui-mini, .ui-mini input, textarea.ui-mini { font-size: 14px; }
|
1965
2227
|
textarea.ui-mini { height: 45px; }
|
1966
|
-
/* orientation adjustments - incomplete!*/
|
1967
2228
|
@media all and (min-width: 450px){
|
1968
|
-
.ui-field-contain label.ui-input-text { vertical-align: top; display: inline-block;
|
2229
|
+
.ui-field-contain label.ui-input-text { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0 }
|
1969
2230
|
.ui-field-contain input.ui-input-text,
|
1970
2231
|
.ui-field-contain textarea.ui-input-text,
|
1971
|
-
.ui-field-contain .ui-input-search { width:
|
1972
|
-
.ui-field-contain .ui-input-search { width: 50%; }
|
2232
|
+
.ui-field-contain .ui-input-search { width: 78%; display: inline-block; }
|
1973
2233
|
.ui-hide-label input.ui-input-text,
|
1974
2234
|
.ui-hide-label textarea.ui-input-text,
|
1975
|
-
.ui-hide-label .ui-input-search {
|
2235
|
+
.ui-hide-label .ui-input-search { width: 100%; }
|
1976
2236
|
.ui-input-search input.ui-input-text { width: 98%; /*echos rule from above*/ }
|
1977
2237
|
}
|
1978
|
-
.ui-listview { margin: 0;
|
2238
|
+
.ui-listview { margin: 0; }
|
2239
|
+
ol.ui-listview, ol.ui-listview .ui-li-divider { counter-reset: listnumbering; }
|
1979
2240
|
.ui-content .ui-listview { margin: -15px; }
|
1980
|
-
.ui-content .ui-listview
|
2241
|
+
.ui-collapsible-content > .ui-listview { margin: -10px -15px; }
|
2242
|
+
.ui-content .ui-listview-inset { margin: 1em 0; }
|
2243
|
+
.ui-collapsible-content .ui-listview-inset { margin: .5em 0; }
|
1981
2244
|
.ui-listview, .ui-li { list-style:none; padding:0; }
|
1982
2245
|
.ui-li, .ui-li.ui-field-contain { display: block; margin:0; position: relative; overflow: visible; text-align: left; border-width: 0; border-top-width: 1px; }
|
1983
|
-
.ui-li
|
1984
|
-
.ui-li-
|
1985
|
-
.ui-li-
|
1986
|
-
|
2246
|
+
.ui-li.ui-btn { margin: 0; }
|
2247
|
+
.ui-li .ui-btn-text a.ui-link-inherit { text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
|
2248
|
+
.ui-li-static { background-image: none; }
|
2249
|
+
.ui-li-divider { padding: .5em 15px; font-size: 14px; font-weight: bold; }
|
2250
|
+
ol.ui-listview .ui-link-inherit:before, ol.ui-listview .ui-li-static:before, .ui-li-dec { font-size: .8em; display: inline-block; padding-right: .3em; font-weight: normal; counter-increment: listnumbering; content: counter(listnumbering) ". "; }
|
1987
2251
|
ol.ui-listview .ui-li-jsnumbering:before { content: "" !important; } /* to avoid chance of duplication */
|
1988
2252
|
.ui-listview-inset .ui-li { border-right-width: 1px; border-left-width: 1px; }
|
1989
|
-
.ui-li
|
2253
|
+
.ui-li-last, .ui-li.ui-field-contain.ui-li-last { border-bottom-width: 1px; }
|
2254
|
+
.ui-collapsible [class*="ui-body"] > .ui-listview:not(.ui-listview-inset) .ui-li-last { border-bottom-width: 0; }
|
2255
|
+
.ui-collapsible-content > .ui-listview:not(.ui-listview-inset) .ui-li:first-child { border-top-width: 0; }
|
2256
|
+
.ui-collapsible-content > .ui-listview:not(.ui-listview-inset),
|
2257
|
+
.ui-collapsible-content > .ui-listview:not(.ui-listview-inset) .ui-li-last { -webkit-border-bottom-left-radius: inherit; -webkit-border-bottom-right-radius: inherit; border-bottom-left-radius: inherit; border-bottom-right-radius: inherit; }
|
2258
|
+
.ui-collapsible-content > .ui-listview:not(.ui-listview-inset) .ui-li-last .ui-li-link-alt { -webkit-border-bottom-right-radius: inherit; border-bottom-right-radius: inherit; }
|
1990
2259
|
.ui-li>.ui-btn-inner { display: block; position: relative; padding: 0; }
|
1991
|
-
.ui-li .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li { padding: .7em 15px
|
2260
|
+
.ui-li .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li { padding: .7em 15px; display: block; }
|
1992
2261
|
.ui-li-has-thumb .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-thumb { min-height: 60px; padding-left: 100px; }
|
1993
|
-
.ui-li-has-icon .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-icon {
|
1994
|
-
.ui-li-has-count .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-count { padding-right: 45px; }
|
1995
|
-
.ui-li-has-arrow .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-arrow { padding-right:
|
2262
|
+
.ui-li-has-icon .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-icon { min-height: 20px; padding-left: 40px; }
|
2263
|
+
.ui-li-has-count .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-count, .ui-li-divider.ui-li-has-count { padding-right: 45px; }
|
2264
|
+
.ui-li-has-arrow .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-arrow { padding-right: 40px; }
|
1996
2265
|
.ui-li-has-arrow.ui-li-has-count .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-arrow.ui-li-has-count { padding-right: 75px; }
|
1997
|
-
.ui-li-
|
1998
|
-
.ui-li-
|
1999
|
-
.ui-li-desc { font-size: 12px; font-weight: normal; display: block; margin: -.5em 0 .6em; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
|
2266
|
+
.ui-li-heading { font-size: 16px; font-weight: bold; display: block; margin: .6em 0; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
|
2267
|
+
.ui-li-desc { font-size: 12px; font-weight: normal; display: block; margin: -.5em 0 .6em; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
|
2000
2268
|
.ui-li-thumb, .ui-listview .ui-li-icon { position: absolute; left: 1px; top: 0; max-height: 80px; max-width: 80px; }
|
2001
|
-
.ui-listview .ui-li-icon { max-height:
|
2269
|
+
.ui-listview .ui-li-icon { max-height: 16px; max-width: 16px; left: 10px; top: .9em; }
|
2002
2270
|
.ui-li-thumb, .ui-listview .ui-li-icon, .ui-li-content { float: left; margin-right: 10px; }
|
2003
2271
|
.ui-li-aside { float: right; width: 50%; text-align: right; margin: .3em 0; }
|
2004
2272
|
@media all and (min-width: 480px){
|
2005
2273
|
.ui-li-aside { width: 45%; }
|
2006
2274
|
}
|
2007
2275
|
.ui-li-divider { cursor: default; }
|
2008
|
-
.ui-li-has-alt .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-alt { padding-right:
|
2009
|
-
.ui-li-has-
|
2010
|
-
.ui-li-
|
2011
|
-
.ui-li-has-
|
2276
|
+
.ui-li-has-alt .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-alt { padding-right: 53px; }
|
2277
|
+
.ui-li-has-alt.ui-li-has-count .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-alt.ui-li-has-count { padding-right: 88px; }
|
2278
|
+
.ui-li-has-count .ui-li-count { position: absolute; font-size: 11px; font-weight: bold; padding: .2em .5em; top: 50%; margin-top: -.9em; right: 10px; }
|
2279
|
+
.ui-li-has-count.ui-li-divider .ui-li-count, .ui-li-has-count .ui-link-inherit .ui-li-count { margin-top: -.95em; }
|
2280
|
+
.ui-li-has-arrow.ui-li-has-count .ui-li-count { right: 40px; }
|
2281
|
+
.ui-li-has-alt.ui-li-has-count .ui-li-count { right: 53px; }
|
2012
2282
|
.ui-li-link-alt { position: absolute; width: 40px; height: 100%; border-width: 0; border-left-width: 1px; top: 0; right: 0; margin: 0; padding: 0; z-index: 2; }
|
2013
|
-
.ui-li-link-alt .ui-btn { overflow: hidden; position: absolute; right: 8px; top: 50%; margin: -
|
2283
|
+
.ui-li-link-alt .ui-btn { overflow: hidden; position: absolute; right: 8px; top: 50%; margin: -13px 0 0 0; border-bottom-width: 1px; z-index: -1;}
|
2014
2284
|
.ui-li-link-alt .ui-btn-inner { padding: 0; height: 100%; position: absolute; width: 100%; top: 0; left: 0;}
|
2015
|
-
.ui-li-link-alt .ui-btn .ui-icon { right: 50%; margin-right: -9px;
|
2285
|
+
.ui-li-link-alt .ui-btn .ui-icon { right: 50%; margin-right: -9px; }
|
2286
|
+
.ui-li-link-alt .ui-btn-icon-notext .ui-btn-inner .ui-icon { position: absolute; top: 50%; margin-top: -9px; }
|
2016
2287
|
.ui-listview * .ui-btn-inner > .ui-btn > .ui-btn-inner { border-top: 0px; }
|
2017
|
-
.ui-listview-filter { border-width: 0; overflow: hidden; margin: -15px -15px 15px -15px }
|
2288
|
+
.ui-listview-filter { border-width: 0; overflow: hidden; margin: -15px -15px 15px -15px; }
|
2289
|
+
.ui-collapsible-content .ui-listview-filter { margin: -10px -15px 10px -15px; border-bottom: inherit; }
|
2290
|
+
.ui-listview-filter-inset { margin: -15px -5px; background: transparent; }
|
2291
|
+
.ui-collapsible-content .ui-listview-filter-inset { margin: -5px; border-bottom-width: 0; }
|
2018
2292
|
.ui-listview-filter .ui-input-search { margin: 5px; width: auto; display: block; }
|
2019
|
-
.ui-
|
2020
|
-
.ui-li.ui-screen-hidden{display:none;}
|
2293
|
+
.ui-li.ui-screen-hidden{ display:none; }
|
2021
2294
|
/* Odd iPad positioning issue. */
|
2022
2295
|
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
|
2023
2296
|
.ui-li .ui-btn-text { overflow: visible; }
|
2024
2297
|
}
|
2025
|
-
label.ui-slider { font-size: 16px; line-height: 1.4;
|
2298
|
+
label.ui-slider { font-size: 16px; line-height: 1.4; font-weight: normal; margin: 0 0 .3em; display: block; }
|
2026
2299
|
input.ui-slider-input,
|
2027
|
-
.ui-field-contain input.ui-slider-input { display: inline-block; width: 50px; }
|
2300
|
+
.ui-field-contain input.ui-slider-input { display: inline-block; width: 50px; background-image: none; padding: .4em; margin: .5em 0; line-height: 1.4; font-size: 16px; outline: 0; }
|
2301
|
+
input.ui-slider-input.ui-mini,
|
2302
|
+
.ui-field-contain input.ui-slider-input.ui-mini { width: 45px; margin: .25em 0; font-size: 14px; }
|
2303
|
+
.ui-field-contain input.ui-slider-input { margin: 0; }
|
2304
|
+
input.ui-slider-input, .ui-field-contain input.ui-slider-input { -webkit-box-sizing: content-box; -moz-box-sizing: content-box; -ms-box-sizing: content-box; box-sizing: content-box; }
|
2305
|
+
/* Fixes input fields being to small on Safari/Mac because of the up and down arrows. */
|
2306
|
+
.ui-slider-input::-webkit-outer-spin-button { margin: 0; }
|
2028
2307
|
select.ui-slider-switch { display: none; }
|
2029
2308
|
div.ui-slider { position: relative; display: inline-block; overflow: visible; height: 15px; padding: 0; margin: 0 2% 0 20px; top: 4px; width: 65%; }
|
2030
|
-
div.ui-slider-mini { height: 12px; margin-left: 10px; }
|
2309
|
+
div.ui-slider-mini { height: 12px; margin-left: 10px; top: 2px; }
|
2031
2310
|
div.ui-slider-bg { border: none; height: 100%; padding-right: 8px; }
|
2032
|
-
.ui-controlgroup a.ui-slider-handle, a.ui-slider-handle { position: absolute; z-index: 1;
|
2033
|
-
a.ui-slider-handle .ui-btn-inner { padding: 0; height: 100%; }
|
2311
|
+
.ui-controlgroup a.ui-slider-handle, a.ui-btn.ui-slider-handle { position: absolute; z-index: 1; top: 50%; width: 28px; height: 28px; margin: -15px 0 0 -15px; outline: 0; }
|
2312
|
+
a.ui-btn.ui-slider-handle .ui-btn-inner { padding: 0; height: 100%; }
|
2034
2313
|
div.ui-slider-mini a.ui-slider-handle { height: 14px; width: 14px; margin: -8px 0 0 -7px; }
|
2035
|
-
div.ui-slider-mini a.ui-slider-handle .ui-btn-inner { height: 30px; width: 30px; padding: 0; margin: -9px 0 0 -9px; }
|
2314
|
+
div.ui-slider-mini a.ui-slider-handle .ui-btn-inner { height: 30px; width: 30px; padding: 0; margin: -9px 0 0 -9px; border-top: none; }
|
2036
2315
|
@media all and (min-width: 450px){
|
2037
2316
|
.ui-field-contain label.ui-slider { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0; }
|
2038
2317
|
.ui-field-contain div.ui-slider { width: 43%; }
|
@@ -2040,7 +2319,7 @@ div.ui-slider-mini a.ui-slider-handle .ui-btn-inner { height: 30px; width: 30px;
|
|
2040
2319
|
}
|
2041
2320
|
div.ui-slider-switch { height: 32px; margin-left: 0; width: 5.8em; }
|
2042
2321
|
a.ui-slider-handle-snapping { -webkit-transition: left 70ms linear; -moz-transition: left 70ms linear; }
|
2043
|
-
div.ui-slider-switch .ui-slider-handle {
|
2322
|
+
div.ui-slider-switch .ui-slider-handle { margin: 1px 0 0 -15px; }
|
2044
2323
|
.ui-slider-inneroffset { margin: 0 16px; position: relative; z-index: 1; }
|
2045
2324
|
div.ui-slider-switch.ui-slider-mini { width: 5em; height: 29px; }
|
2046
2325
|
div.ui-slider-switch.ui-slider-mini .ui-slider-inneroffset { margin: 0 15px 0 14px; }
|