qedproject 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/qedproject +0 -0
- data/lib/qedproject/libraries/ember.rb +27 -0
- data/lib/qedproject/libraries/jquerymobile.rb +2 -2
- data/lib/qedproject/version.rb +1 -1
- data/lib/qedproject.rb +2 -2
- data/templates/suite.html +8 -1
- data/vendor/ember/app.js +7 -0
- data/vendor/ember/apple-touch-icon-114x114-precomposed.png +0 -0
- data/vendor/ember/apple-touch-icon-57x57-precomposed.png +0 -0
- data/vendor/ember/apple-touch-icon-72x72-precomposed.png +0 -0
- data/vendor/ember/apple-touch-icon-precomposed.png +0 -0
- data/vendor/ember/apple-touch-icon.png +0 -0
- data/vendor/ember/ember-0.9.js +14745 -0
- data/vendor/ember/favicon.ico +0 -0
- data/vendor/ember/style.css +141 -0
- data/vendor/ember/templates/index.html +57 -0
- data/vendor/jquerymobile/ajax-loader.png +0 -0
- data/vendor/jquerymobile/icons-18-black.png +0 -0
- data/vendor/jquerymobile/icons-18-white.png +0 -0
- data/vendor/jquerymobile/icons-36-black.png +0 -0
- data/vendor/jquerymobile/icons-36-white.png +0 -0
- data/vendor/jquerymobile/{jquery.mobile-1.0rc2.css → jquery.mobile-1.0.css} +250 -295
- data/vendor/jquerymobile/{jquery.mobile-1.0rc2.js → jquery.mobile-1.0.js} +456 -319
- metadata +19 -13
- data/lib/qedproject/libraries/jquerytmpl.rb +0 -10
- data/vendor/jquerytmpl/VERSION +0 -1
- data/vendor/jquerytmpl/jquery.tmpl.min.js +0 -10
@@ -1,17 +1,12 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
/*!
|
10
|
-
* jQuery Mobile Framework
|
11
|
-
* Copyright (c) jQuery Project
|
12
|
-
* Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.
|
1
|
+
/*
|
2
|
+
* jQuery Mobile Framework 1.0
|
3
|
+
* http://jquerymobile.com
|
4
|
+
*
|
5
|
+
* Copyright 2011 (c) jQuery Project
|
6
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
7
|
+
* http://jquery.org/license
|
8
|
+
*
|
13
9
|
*/
|
14
|
-
|
15
10
|
/* Swatches */
|
16
11
|
|
17
12
|
/* A
|
@@ -23,19 +18,19 @@
|
|
23
18
|
color: #ffffff /*{a-bar-color}*/;
|
24
19
|
font-weight: bold;
|
25
20
|
text-shadow: 0 /*{a-bar-shadow-x}*/ -1px /*{a-bar-shadow-y}*/ 1px /*{a-bar-shadow-radius}*/ #000000 /*{a-bar-shadow-color}*/;
|
26
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from(#3c3c3c /*{a-bar-background-start}*/), to(#111 /*{a-bar-background-end}*/)); /* Saf4+, Chrome */
|
27
|
-
background-image: -webkit-linear-gradient(
|
28
|
-
background-image: -moz-linear-gradient(
|
29
|
-
background-image: -ms-linear-gradient(
|
30
|
-
background-image: -o-linear-gradient(
|
31
|
-
background-image: linear-gradient(
|
21
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #3c3c3c /*{a-bar-background-start}*/), to( #111 /*{a-bar-background-end}*/)); /* Saf4+, Chrome */
|
22
|
+
background-image: -webkit-linear-gradient(#3c3c3c /*{a-bar-background-start}*/, #111 /*{a-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
23
|
+
background-image: -moz-linear-gradient(#3c3c3c /*{a-bar-background-start}*/, #111 /*{a-bar-background-end}*/); /* FF3.6 */
|
24
|
+
background-image: -ms-linear-gradient(#3c3c3c /*{a-bar-background-start}*/, #111 /*{a-bar-background-end}*/); /* IE10 */
|
25
|
+
background-image: -o-linear-gradient(#3c3c3c /*{a-bar-background-start}*/, #111 /*{a-bar-background-end}*/); /* Opera 11.10+ */
|
26
|
+
background-image: linear-gradient(#3c3c3c /*{a-bar-background-start}*/, #111 /*{a-bar-background-end}*/);
|
32
27
|
}
|
33
28
|
.ui-bar-a,
|
34
29
|
.ui-bar-a input,
|
35
30
|
.ui-bar-a select,
|
36
31
|
.ui-bar-a textarea,
|
37
32
|
.ui-bar-a button {
|
38
|
-
font-family: Helvetica, Arial, sans-serif /*{
|
33
|
+
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
39
34
|
}
|
40
35
|
.ui-bar-a .ui-link-inherit {
|
41
36
|
color: #fff /*{a-bar-color}*/;
|
@@ -57,25 +52,26 @@
|
|
57
52
|
.ui-bar-a .ui-link:visited {
|
58
53
|
color: #2489CE /*{a-bar-link-visited}*/;
|
59
54
|
}
|
60
|
-
.ui-body-a
|
55
|
+
.ui-body-a,
|
56
|
+
.ui-dialog.ui-overlay-a {
|
61
57
|
border: 1px solid #2A2A2A /*{a-body-border}*/;
|
62
58
|
background: #222222 /*{a-body-background-color}*/;
|
63
59
|
color: #fff /*{a-body-color}*/;
|
64
60
|
text-shadow: 0 /*{a-body-shadow-x}*/ 1px /*{a-body-shadow-y}*/ 0 /*{a-body-shadow-radius}*/ #000 /*{a-body-shadow-color}*/;
|
65
61
|
font-weight: normal;
|
66
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from(#666 /*{a-body-background-start}*/), to(#222 /*{a-body-background-end}*/)); /* Saf4+, Chrome */
|
67
|
-
background-image: -webkit-linear-gradient(
|
68
|
-
background-image: -moz-linear-gradient(
|
69
|
-
background-image: -ms-linear-gradient(
|
70
|
-
background-image: -o-linear-gradient(
|
71
|
-
background-image: linear-gradient(
|
62
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #666 /*{a-body-background-start}*/), to( #222 /*{a-body-background-end}*/)); /* Saf4+, Chrome */
|
63
|
+
background-image: -webkit-linear-gradient(#666 /*{a-body-background-start}*/, #222 /*{a-body-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
64
|
+
background-image: -moz-linear-gradient(#666 /*{a-body-background-start}*/, #222 /*{a-body-background-end}*/); /* FF3.6 */
|
65
|
+
background-image: -ms-linear-gradient(#666 /*{a-body-background-start}*/, #222 /*{a-body-background-end}*/); /* IE10 */
|
66
|
+
background-image: -o-linear-gradient(#666 /*{a-body-background-start}*/, #222 /*{a-body-background-end}*/); /* Opera 11.10+ */
|
67
|
+
background-image: linear-gradient(#666 /*{a-body-background-start}*/, #222 /*{a-body-background-end}*/);
|
72
68
|
}
|
73
69
|
.ui-body-a,
|
74
70
|
.ui-body-a input,
|
75
71
|
.ui-body-a select,
|
76
72
|
.ui-body-a textarea,
|
77
73
|
.ui-body-a button {
|
78
|
-
font-family: Helvetica, Arial, sans-serif /*{
|
74
|
+
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
79
75
|
}
|
80
76
|
.ui-body-a .ui-link-inherit {
|
81
77
|
color: #fff /*{a-body-color}*/;
|
@@ -98,24 +94,18 @@
|
|
98
94
|
color: #2489CE /*{a-body-link-visited}*/;
|
99
95
|
}
|
100
96
|
|
101
|
-
.ui-br {
|
102
|
-
border-bottom: rgb(130,130,130);
|
103
|
-
border-bottom: rgba(130,130,130,.3);
|
104
|
-
border-bottom-width: 1px;
|
105
|
-
border-bottom-style: solid;
|
106
|
-
}
|
107
97
|
.ui-btn-up-a {
|
108
98
|
border: 1px solid #222 /*{a-bup-border}*/;
|
109
99
|
background: #333333 /*{a-bup-background-color}*/;
|
110
100
|
font-weight: bold;
|
111
101
|
color: #fff /*{a-bup-color}*/;
|
112
102
|
text-shadow: 0 /*{a-bup-shadow-x}*/ -1px /*{a-bup-shadow-y}*/ 1px /*{a-bup-shadow-radius}*/ #000 /*{a-bup-shadow-color}*/;
|
113
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from(#555 /*{a-bup-background-start}*/), to(#333 /*{a-bup-background-end}*/)); /* Saf4+, Chrome */
|
114
|
-
background-image: -webkit-linear-gradient(
|
115
|
-
background-image: -moz-linear-gradient(
|
116
|
-
background-image: -ms-linear-gradient(
|
117
|
-
background-image: -o-linear-gradient(
|
118
|
-
background-image: linear-gradient(
|
103
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #555 /*{a-bup-background-start}*/), to( #333 /*{a-bup-background-end}*/)); /* Saf4+, Chrome */
|
104
|
+
background-image: -webkit-linear-gradient(#555 /*{a-bup-background-start}*/, #333 /*{a-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
105
|
+
background-image: -moz-linear-gradient(#555 /*{a-bup-background-start}*/, #333 /*{a-bup-background-end}*/); /* FF3.6 */
|
106
|
+
background-image: -ms-linear-gradient(#555 /*{a-bup-background-start}*/, #333 /*{a-bup-background-end}*/); /* IE10 */
|
107
|
+
background-image: -o-linear-gradient(#555 /*{a-bup-background-start}*/, #333 /*{a-bup-background-end}*/); /* Opera 11.10+ */
|
108
|
+
background-image: linear-gradient(#555 /*{a-bup-background-start}*/, #333 /*{a-bup-background-end}*/);
|
119
109
|
}
|
120
110
|
.ui-btn-up-a a.ui-link-inherit {
|
121
111
|
color: #fff /*{a-bup-color}*/;
|
@@ -126,12 +116,12 @@
|
|
126
116
|
font-weight: bold;
|
127
117
|
color: #fff /*{a-bhover-color}*/;
|
128
118
|
text-shadow: 0 /*{a-bhover-shadow-x}*/ -1px /*{a-bhover-shadow-y}*/ 1px /*{a-bhover-shadow-radius}*/ #000 /*{a-bhover-shadow-color}*/;
|
129
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from(#666 /*{a-bhover-background-start}*/), to(#444 /*{a-bhover-background-end}*/)); /* Saf4+, Chrome */
|
130
|
-
background-image: -webkit-linear-gradient(
|
131
|
-
background-image: -moz-linear-gradient(
|
132
|
-
background-image: -ms-linear-gradient(
|
133
|
-
background-image: -o-linear-gradient(
|
134
|
-
background-image: linear-gradient(
|
119
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #666 /*{a-bhover-background-start}*/), to( #444 /*{a-bhover-background-end}*/)); /* Saf4+, Chrome */
|
120
|
+
background-image: -webkit-linear-gradient(#666 /*{a-bhover-background-start}*/, #444 /*{a-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
121
|
+
background-image: -moz-linear-gradient(#666 /*{a-bhover-background-start}*/, #444 /*{a-bhover-background-end}*/); /* FF3.6 */
|
122
|
+
background-image: -ms-linear-gradient(#666 /*{a-bhover-background-start}*/, #444 /*{a-bhover-background-end}*/); /* IE10 */
|
123
|
+
background-image: -o-linear-gradient(#666 /*{a-bhover-background-start}*/, #444 /*{a-bhover-background-end}*/); /* Opera 11.10+ */
|
124
|
+
background-image: linear-gradient(#666 /*{a-bhover-background-start}*/, #444 /*{a-bhover-background-end}*/);
|
135
125
|
}
|
136
126
|
.ui-btn-hover-a a.ui-link-inherit {
|
137
127
|
color: #fff /*{a-bhover-color}*/;
|
@@ -142,12 +132,12 @@
|
|
142
132
|
font-weight: bold;
|
143
133
|
color: #fff /*{a-bdown-color}*/;
|
144
134
|
text-shadow: 0 /*{a-bdown-shadow-x}*/ -1px /*{a-bdown-shadow-y}*/ 1px /*{a-bdown-shadow-radius}*/ #000 /*{a-bdown-shadow-color}*/;
|
145
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from(#333 /*{a-bdown-background-start}*/), to(#5a5a5a /*{a-bdown-background-end}*/)); /* Saf4+, Chrome */
|
146
|
-
background-image: -webkit-linear-gradient(
|
147
|
-
background-image: -moz-linear-gradient(
|
148
|
-
background-image: -ms-linear-gradient(
|
149
|
-
background-image: -o-linear-gradient(
|
150
|
-
background-image: linear-gradient(
|
135
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #333 /*{a-bdown-background-start}*/), to( #5a5a5a /*{a-bdown-background-end}*/)); /* Saf4+, Chrome */
|
136
|
+
background-image: -webkit-linear-gradient(#333 /*{a-bdown-background-start}*/, #5a5a5a /*{a-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
137
|
+
background-image: -moz-linear-gradient(#333 /*{a-bdown-background-start}*/, #5a5a5a /*{a-bdown-background-end}*/); /* FF3.6 */
|
138
|
+
background-image: -ms-linear-gradient(#333 /*{a-bdown-background-start}*/, #5a5a5a /*{a-bdown-background-end}*/); /* IE10 */
|
139
|
+
background-image: -o-linear-gradient(#333 /*{a-bdown-background-start}*/, #5a5a5a /*{a-bdown-background-end}*/); /* Opera 11.10+ */
|
140
|
+
background-image: linear-gradient(#333 /*{a-bdown-background-start}*/, #5a5a5a /*{a-bdown-background-end}*/);
|
151
141
|
}
|
152
142
|
.ui-btn-down-a a.ui-link-inherit {
|
153
143
|
color: #fff /*{a-bdown-color}*/;
|
@@ -155,7 +145,7 @@
|
|
155
145
|
.ui-btn-up-a,
|
156
146
|
.ui-btn-hover-a,
|
157
147
|
.ui-btn-down-a {
|
158
|
-
font-family: Helvetica, Arial, sans-serif /*{
|
148
|
+
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
159
149
|
text-decoration: none;
|
160
150
|
}
|
161
151
|
|
@@ -169,19 +159,19 @@
|
|
169
159
|
color: #fff /*{b-bar-color}*/;
|
170
160
|
font-weight: bold;
|
171
161
|
text-shadow: 0 /*{b-bar-shadow-x}*/ -1px /*{b-bar-shadow-y}*/ 1px /*{b-bar-shadow-radius}*/ #254f7a /*{b-bar-shadow-color}*/;
|
172
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from(#81a8ce /*{b-bar-background-start}*/), to(#5e87b0 /*{b-bar-background-end}*/)); /* Saf4+, Chrome */
|
173
|
-
background-image: -webkit-linear-gradient(
|
174
|
-
background-image: -moz-linear-gradient(
|
175
|
-
background-image: -ms-linear-gradient(
|
176
|
-
background-image: -o-linear-gradient(
|
177
|
-
background-image: linear-gradient(
|
162
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #81a8ce /*{b-bar-background-start}*/), to( #5e87b0 /*{b-bar-background-end}*/)); /* Saf4+, Chrome */
|
163
|
+
background-image: -webkit-linear-gradient(#81a8ce /*{b-bar-background-start}*/, #5e87b0 /*{b-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
164
|
+
background-image: -moz-linear-gradient(#81a8ce /*{b-bar-background-start}*/, #5e87b0 /*{b-bar-background-end}*/); /* FF3.6 */
|
165
|
+
background-image: -ms-linear-gradient(#81a8ce /*{b-bar-background-start}*/, #5e87b0 /*{b-bar-background-end}*/); /* IE10 */
|
166
|
+
background-image: -o-linear-gradient(#81a8ce /*{b-bar-background-start}*/, #5e87b0 /*{b-bar-background-end}*/); /* Opera 11.10+ */
|
167
|
+
background-image: linear-gradient(#81a8ce /*{b-bar-background-start}*/, #5e87b0 /*{b-bar-background-end}*/);
|
178
168
|
}
|
179
169
|
.ui-bar-b,
|
180
170
|
.ui-bar-b input,
|
181
171
|
.ui-bar-b select,
|
182
172
|
.ui-bar-b textarea,
|
183
173
|
.ui-bar-b button {
|
184
|
-
font-family: Helvetica, Arial, sans-serif /*{
|
174
|
+
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
185
175
|
}
|
186
176
|
.ui-bar-b .ui-link-inherit {
|
187
177
|
color: #fff /*{b-bar-color}*/;
|
@@ -202,25 +192,26 @@
|
|
202
192
|
.ui-bar-b .ui-link:visited {
|
203
193
|
color: #ddf0f8 /*{b-bar-link-visited}*/;
|
204
194
|
}
|
205
|
-
.ui-body-b
|
195
|
+
.ui-body-b,
|
196
|
+
.ui-dialog.ui-overlay-b {
|
206
197
|
border: 1px solid #C6C6C6 /*{b-body-border}*/;
|
207
198
|
background: #cccccc /*{b-body-background-color}*/;
|
208
199
|
color: #333333 /*{b-body-color}*/;
|
209
200
|
text-shadow: 0 /*{b-body-shadow-x}*/ 1px /*{b-body-shadow-y}*/ 0 /*{b-body-shadow-radius}*/ #fff /*{b-body-shadow-color}*/;
|
210
201
|
font-weight: normal;
|
211
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from(#e6e6e6 /*{b-body-background-start}*/), to(#ccc /*{b-body-background-end}*/)); /* Saf4+, Chrome */
|
212
|
-
background-image: -webkit-linear-gradient(
|
213
|
-
background-image: -moz-linear-gradient(
|
214
|
-
background-image: -ms-linear-gradient(
|
215
|
-
background-image: -o-linear-gradient(
|
216
|
-
background-image: linear-gradient(
|
202
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #e6e6e6 /*{b-body-background-start}*/), to( #ccc /*{b-body-background-end}*/)); /* Saf4+, Chrome */
|
203
|
+
background-image: -webkit-linear-gradient(#e6e6e6 /*{b-body-background-start}*/, #ccc /*{b-body-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
204
|
+
background-image: -moz-linear-gradient(#e6e6e6 /*{b-body-background-start}*/, #ccc /*{b-body-background-end}*/); /* FF3.6 */
|
205
|
+
background-image: -ms-linear-gradient(#e6e6e6 /*{b-body-background-start}*/, #ccc /*{b-body-background-end}*/); /* IE10 */
|
206
|
+
background-image: -o-linear-gradient(#e6e6e6 /*{b-body-background-start}*/, #ccc /*{b-body-background-end}*/); /* Opera 11.10+ */
|
207
|
+
background-image: linear-gradient(#e6e6e6 /*{b-body-background-start}*/, #ccc /*{b-body-background-end}*/);
|
217
208
|
}
|
218
209
|
.ui-body-b,
|
219
210
|
.ui-body-b input,
|
220
211
|
.ui-body-b select,
|
221
212
|
.ui-body-b textarea,
|
222
213
|
.ui-body-b button {
|
223
|
-
font-family: Helvetica, Arial, sans-serif /*{
|
214
|
+
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
224
215
|
}
|
225
216
|
.ui-body-b .ui-link-inherit {
|
226
217
|
color: #333333 /*{b-body-color}*/;
|
@@ -249,12 +240,12 @@
|
|
249
240
|
font-weight: bold;
|
250
241
|
color: #fff /*{b-bup-color}*/;
|
251
242
|
text-shadow: 0 /*{b-bup-shadow-x}*/ -1px /*{b-bup-shadow-y}*/ 1px /*{b-bup-shadow-radius}*/ #145072 /*{b-bup-shadow-color}*/;
|
252
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from(#5f9cc5 /*{b-bup-background-start}*/), to(#396b9e /*{b-bup-background-end}*/)); /* Saf4+, Chrome */
|
253
|
-
background-image: -webkit-linear-gradient(
|
254
|
-
background-image: -moz-linear-gradient(
|
255
|
-
background-image: -ms-linear-gradient(
|
256
|
-
background-image: -o-linear-gradient(
|
257
|
-
background-image: linear-gradient(
|
243
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #5f9cc5 /*{b-bup-background-start}*/), to( #396b9e /*{b-bup-background-end}*/)); /* Saf4+, Chrome */
|
244
|
+
background-image: -webkit-linear-gradient(#5f9cc5 /*{b-bup-background-start}*/, #396b9e /*{b-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
245
|
+
background-image: -moz-linear-gradient(#5f9cc5 /*{b-bup-background-start}*/, #396b9e /*{b-bup-background-end}*/); /* FF3.6 */
|
246
|
+
background-image: -ms-linear-gradient(#5f9cc5 /*{b-bup-background-start}*/, #396b9e /*{b-bup-background-end}*/); /* IE10 */
|
247
|
+
background-image: -o-linear-gradient(#5f9cc5 /*{b-bup-background-start}*/, #396b9e /*{b-bup-background-end}*/); /* Opera 11.10+ */
|
248
|
+
background-image: linear-gradient(#5f9cc5 /*{b-bup-background-start}*/, #396b9e /*{b-bup-background-end}*/);
|
258
249
|
}
|
259
250
|
.ui-btn-up-b a.ui-link-inherit {
|
260
251
|
color: #fff /*{b-bup-color}*/;
|
@@ -265,12 +256,12 @@
|
|
265
256
|
font-weight: bold;
|
266
257
|
color: #fff /*{b-bhover-color}*/;
|
267
258
|
text-shadow: 0 /*{b-bhover-shadow-x}*/ -1px /*{b-bhover-shadow-y}*/ 1px /*{b-bhover-shadow-radius}*/ #014D68 /*{b-bhover-shadow-color}*/;
|
268
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from(#72b0d4 /*{b-bhover-background-start}*/), to(#4b88b6 /*{b-bhover-background-end}*/)); /* Saf4+, Chrome */
|
269
|
-
background-image: -webkit-linear-gradient(
|
270
|
-
background-image: -moz-linear-gradient(
|
271
|
-
background-image: -ms-linear-gradient(
|
272
|
-
background-image: -o-linear-gradient(
|
273
|
-
background-image: linear-gradient(
|
259
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #72b0d4 /*{b-bhover-background-start}*/), to( #4b88b6 /*{b-bhover-background-end}*/)); /* Saf4+, Chrome */
|
260
|
+
background-image: -webkit-linear-gradient(#72b0d4 /*{b-bhover-background-start}*/, #4b88b6 /*{b-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
261
|
+
background-image: -moz-linear-gradient(#72b0d4 /*{b-bhover-background-start}*/, #4b88b6 /*{b-bhover-background-end}*/); /* FF3.6 */
|
262
|
+
background-image: -ms-linear-gradient(#72b0d4 /*{b-bhover-background-start}*/, #4b88b6 /*{b-bhover-background-end}*/); /* IE10 */
|
263
|
+
background-image: -o-linear-gradient(#72b0d4 /*{b-bhover-background-start}*/, #4b88b6 /*{b-bhover-background-end}*/); /* Opera 11.10+ */
|
264
|
+
background-image: linear-gradient(#72b0d4 /*{b-bhover-background-start}*/, #4b88b6 /*{b-bhover-background-end}*/);
|
274
265
|
}
|
275
266
|
.ui-btn-hover-b a.ui-link-inherit {
|
276
267
|
color: #fff /*{b-bhover-color}*/;
|
@@ -281,12 +272,12 @@
|
|
281
272
|
font-weight: bold;
|
282
273
|
color: #fff /*{b-bdown-color}*/;
|
283
274
|
text-shadow: 0 /*{b-bdown-shadow-x}*/ -1px /*{b-bdown-shadow-y}*/ 1px /*{b-bdown-shadow-radius}*/ #225377 /*{b-bdown-shadow-color}*/;
|
284
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from(#396b9e /*{b-bdown-background-start}*/), to(#4e89c5 /*{b-bdown-background-end}*/)); /* Saf4+, Chrome */
|
285
|
-
background-image: -webkit-linear-gradient(
|
286
|
-
background-image: -moz-linear-gradient(
|
287
|
-
background-image: -ms-linear-gradient(
|
288
|
-
background-image: -o-linear-gradient(
|
289
|
-
background-image: linear-gradient(
|
275
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #396b9e /*{b-bdown-background-start}*/), to( #4e89c5 /*{b-bdown-background-end}*/)); /* Saf4+, Chrome */
|
276
|
+
background-image: -webkit-linear-gradient(#396b9e /*{b-bdown-background-start}*/, #4e89c5 /*{b-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
277
|
+
background-image: -moz-linear-gradient(#396b9e /*{b-bdown-background-start}*/, #4e89c5 /*{b-bdown-background-end}*/); /* FF3.6 */
|
278
|
+
background-image: -ms-linear-gradient(#396b9e /*{b-bdown-background-start}*/, #4e89c5 /*{b-bdown-background-end}*/); /* IE10 */
|
279
|
+
background-image: -o-linear-gradient(#396b9e /*{b-bdown-background-start}*/, #4e89c5 /*{b-bdown-background-end}*/); /* Opera 11.10+ */
|
280
|
+
background-image: linear-gradient(#396b9e /*{b-bdown-background-start}*/, #4e89c5 /*{b-bdown-background-end}*/);
|
290
281
|
}
|
291
282
|
.ui-btn-down-b a.ui-link-inherit {
|
292
283
|
color: #fff /*{b-bdown-color}*/;
|
@@ -294,7 +285,7 @@
|
|
294
285
|
.ui-btn-up-b,
|
295
286
|
.ui-btn-hover-b,
|
296
287
|
.ui-btn-down-b {
|
297
|
-
font-family: Helvetica, Arial, sans-serif /*{
|
288
|
+
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
298
289
|
text-decoration: none;
|
299
290
|
}
|
300
291
|
|
@@ -308,12 +299,12 @@
|
|
308
299
|
color: #3E3E3E /*{c-bar-color}*/;
|
309
300
|
font-weight: bold;
|
310
301
|
text-shadow: 0 /*{c-bar-shadow-x}*/ 1px /*{c-bar-shadow-y}*/ 1px /*{c-bar-shadow-radius}*/ #fff /*{c-bar-shadow-color}*/;
|
311
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from(#f0f0f0 /*{c-bar-background-start}*/), to(#e9eaeb /*{c-bar-background-end}*/)); /* Saf4+, Chrome */
|
312
|
-
background-image: -webkit-linear-gradient(
|
313
|
-
background-image: -moz-linear-gradient(
|
314
|
-
background-image: -ms-linear-gradient(
|
315
|
-
background-image: -o-linear-gradient(
|
316
|
-
background-image: linear-gradient(
|
302
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #f0f0f0 /*{c-bar-background-start}*/), to( #e9eaeb /*{c-bar-background-end}*/)); /* Saf4+, Chrome */
|
303
|
+
background-image: -webkit-linear-gradient(#f0f0f0 /*{c-bar-background-start}*/, #e9eaeb /*{c-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
304
|
+
background-image: -moz-linear-gradient(#f0f0f0 /*{c-bar-background-start}*/, #e9eaeb /*{c-bar-background-end}*/); /* FF3.6 */
|
305
|
+
background-image: -ms-linear-gradient(#f0f0f0 /*{c-bar-background-start}*/, #e9eaeb /*{c-bar-background-end}*/); /* IE10 */
|
306
|
+
background-image: -o-linear-gradient(#f0f0f0 /*{c-bar-background-start}*/, #e9eaeb /*{c-bar-background-end}*/); /* Opera 11.10+ */
|
307
|
+
background-image: linear-gradient(#f0f0f0 /*{c-bar-background-start}*/, #e9eaeb /*{c-bar-background-end}*/);
|
317
308
|
}
|
318
309
|
|
319
310
|
.ui-bar-c .ui-link-inherit {
|
@@ -341,26 +332,27 @@
|
|
341
332
|
.ui-bar-c select,
|
342
333
|
.ui-bar-c textarea,
|
343
334
|
.ui-bar-c button {
|
344
|
-
font-family: Helvetica, Arial, sans-serif /*{
|
335
|
+
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
345
336
|
}
|
346
|
-
.ui-body-c
|
337
|
+
.ui-body-c,
|
338
|
+
.ui-dialog.ui-overlay-c {
|
347
339
|
border: 1px solid #B3B3B3 /*{c-body-border}*/;
|
348
340
|
color: #333333 /*{c-body-color}*/;
|
349
341
|
text-shadow: 0 /*{c-body-shadow-x}*/ 1px /*{c-body-shadow-y}*/ 0 /*{c-body-shadow-radius}*/ #fff /*{c-body-shadow-color}*/;
|
350
342
|
background: #f0f0f0 /*{c-body-background-color}*/;
|
351
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from(#eee /*{c-body-background-start}*/), to(#ddd /*{c-body-background-end}*/)); /* Saf4+, Chrome */
|
352
|
-
background-image: -webkit-linear-gradient(
|
353
|
-
background-image: -moz-linear-gradient(
|
354
|
-
background-image: -ms-linear-gradient(
|
355
|
-
background-image: -o-linear-gradient(
|
356
|
-
background-image: linear-gradient(
|
343
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #eee /*{c-body-background-start}*/), to( #ddd /*{c-body-background-end}*/)); /* Saf4+, Chrome */
|
344
|
+
background-image: -webkit-linear-gradient(#eee /*{c-body-background-start}*/, #ddd /*{c-body-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
345
|
+
background-image: -moz-linear-gradient(#eee /*{c-body-background-start}*/, #ddd /*{c-body-background-end}*/); /* FF3.6 */
|
346
|
+
background-image: -ms-linear-gradient(#eee /*{c-body-background-start}*/, #ddd /*{c-body-background-end}*/); /* IE10 */
|
347
|
+
background-image: -o-linear-gradient(#eee /*{c-body-background-start}*/, #ddd /*{c-body-background-end}*/); /* Opera 11.10+ */
|
348
|
+
background-image: linear-gradient(#eee /*{c-body-background-start}*/, #ddd /*{c-body-background-end}*/);
|
357
349
|
}
|
358
350
|
.ui-body-c,
|
359
351
|
.ui-body-c input,
|
360
352
|
.ui-body-c select,
|
361
353
|
.ui-body-c textarea,
|
362
354
|
.ui-body-c button {
|
363
|
-
font-family: Helvetica, Arial, sans-serif /*{
|
355
|
+
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
364
356
|
}
|
365
357
|
|
366
358
|
.ui-body-c .ui-link-inherit {
|
@@ -390,12 +382,12 @@
|
|
390
382
|
font-weight: bold;
|
391
383
|
color: #444 /*{c-bup-color}*/;
|
392
384
|
text-shadow: 0 /*{c-bup-shadow-x}*/ 1px /*{c-bup-shadow-y}*/ 1px /*{c-bup-shadow-radius}*/ #f6f6f6 /*{c-bup-shadow-color}*/;
|
393
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from(#fdfdfd /*{c-bup-background-start}*/), to(#eee /*{c-bup-background-end}*/)); /* Saf4+, Chrome */
|
394
|
-
background-image: -webkit-linear-gradient(
|
395
|
-
background-image: -moz-linear-gradient(
|
396
|
-
background-image: -ms-linear-gradient(
|
397
|
-
background-image: -o-linear-gradient(
|
398
|
-
background-image: linear-gradient(
|
385
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #fdfdfd /*{c-bup-background-start}*/), to( #eee /*{c-bup-background-end}*/)); /* Saf4+, Chrome */
|
386
|
+
background-image: -webkit-linear-gradient(#fdfdfd /*{c-bup-background-start}*/, #eee /*{c-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
387
|
+
background-image: -moz-linear-gradient(#fdfdfd /*{c-bup-background-start}*/, #eee /*{c-bup-background-end}*/); /* FF3.6 */
|
388
|
+
background-image: -ms-linear-gradient(#fdfdfd /*{c-bup-background-start}*/, #eee /*{c-bup-background-end}*/); /* IE10 */
|
389
|
+
background-image: -o-linear-gradient(#fdfdfd /*{c-bup-background-start}*/, #eee /*{c-bup-background-end}*/); /* Opera 11.10+ */
|
390
|
+
background-image: linear-gradient(#fdfdfd /*{c-bup-background-start}*/, #eee /*{c-bup-background-end}*/);
|
399
391
|
}
|
400
392
|
.ui-btn-up-c a.ui-link-inherit {
|
401
393
|
color: #2F3E46 /*{c-bup-color}*/;
|
@@ -407,12 +399,12 @@
|
|
407
399
|
font-weight: bold;
|
408
400
|
color: #101010 /*{c-bhover-color}*/;
|
409
401
|
text-shadow: 0 /*{c-bhover-shadow-x}*/ 1px /*{c-bhover-shadow-y}*/ 1px /*{c-bhover-shadow-radius}*/ #fff /*{c-bhover-shadow-color}*/;
|
410
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from(#ededed /*{c-bhover-background-start}*/), to(#dadada /*{c-bhover-background-end}*/)); /* Saf4+, Chrome */
|
411
|
-
background-image: -webkit-linear-gradient(
|
412
|
-
background-image: -moz-linear-gradient(
|
413
|
-
background-image: -ms-linear-gradient(
|
414
|
-
background-image: -o-linear-gradient(
|
415
|
-
background-image: linear-gradient(
|
402
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #ededed /*{c-bhover-background-start}*/), to( #dadada /*{c-bhover-background-end}*/)); /* Saf4+, Chrome */
|
403
|
+
background-image: -webkit-linear-gradient(#ededed /*{c-bhover-background-start}*/, #dadada /*{c-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
404
|
+
background-image: -moz-linear-gradient(#ededed /*{c-bhover-background-start}*/, #dadada /*{c-bhover-background-end}*/); /* FF3.6 */
|
405
|
+
background-image: -ms-linear-gradient(#ededed /*{c-bhover-background-start}*/, #dadada /*{c-bhover-background-end}*/); /* IE10 */
|
406
|
+
background-image: -o-linear-gradient(#ededed /*{c-bhover-background-start}*/, #dadada /*{c-bhover-background-end}*/); /* Opera 11.10+ */
|
407
|
+
background-image: linear-gradient(#ededed /*{c-bhover-background-start}*/, #dadada /*{c-bhover-background-end}*/);
|
416
408
|
}
|
417
409
|
.ui-btn-hover-c a.ui-link-inherit {
|
418
410
|
color: #2F3E46 /*{c-bhover-color}*/;
|
@@ -423,12 +415,12 @@
|
|
423
415
|
font-weight: bold;
|
424
416
|
color: #111111 /*{c-bdown-color}*/;
|
425
417
|
text-shadow: 0 /*{c-bdown-shadow-x}*/ 1px /*{c-bdown-shadow-y}*/ 1px /*{c-bdown-shadow-radius}*/ #ffffff /*{c-bdown-shadow-color}*/;
|
426
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from(#eee /*{c-bdown-background-start}*/), to(#fdfdfd /*{c-bdown-background-end}*/)); /* Saf4+, Chrome */
|
427
|
-
background-image: -webkit-linear-gradient(
|
428
|
-
background-image: -moz-linear-gradient(
|
429
|
-
background-image: -ms-linear-gradient(
|
430
|
-
background-image: -o-linear-gradient(
|
431
|
-
background-image: linear-gradient(
|
418
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #eee /*{c-bdown-background-start}*/), to( #fdfdfd /*{c-bdown-background-end}*/)); /* Saf4+, Chrome */
|
419
|
+
background-image: -webkit-linear-gradient(#eee /*{c-bdown-background-start}*/, #fdfdfd /*{c-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
420
|
+
background-image: -moz-linear-gradient(#eee /*{c-bdown-background-start}*/, #fdfdfd /*{c-bdown-background-end}*/); /* FF3.6 */
|
421
|
+
background-image: -ms-linear-gradient(#eee /*{c-bdown-background-start}*/, #fdfdfd /*{c-bdown-background-end}*/); /* IE10 */
|
422
|
+
background-image: -o-linear-gradient(#eee /*{c-bdown-background-start}*/, #fdfdfd /*{c-bdown-background-end}*/); /* Opera 11.10+ */
|
423
|
+
background-image: linear-gradient(#eee /*{c-bdown-background-start}*/, #fdfdfd /*{c-bdown-background-end}*/);
|
432
424
|
}
|
433
425
|
.ui-btn-down-c a.ui-link-inherit {
|
434
426
|
color: #2F3E46 /*{c-bdown-color}*/;
|
@@ -436,7 +428,7 @@
|
|
436
428
|
.ui-btn-up-c,
|
437
429
|
.ui-btn-hover-c,
|
438
430
|
.ui-btn-down-c {
|
439
|
-
font-family: Helvetica, Arial, sans-serif /*{
|
431
|
+
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
440
432
|
text-decoration: none;
|
441
433
|
}
|
442
434
|
|
@@ -449,19 +441,19 @@
|
|
449
441
|
background: #bbb /*{d-bar-background-color}*/;
|
450
442
|
color: #333 /*{d-bar-color}*/;
|
451
443
|
text-shadow: 0 /*{d-bar-shadow-x}*/ 1px /*{d-bar-shadow-y}*/ 0 /*{d-bar-shadow-radius}*/ #eee /*{d-bar-shadow-color}*/;
|
452
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from(#ddd /*{d-bar-background-start}*/), to(#bbb /*{d-bar-background-end}*/)); /* Saf4+, Chrome */
|
453
|
-
background-image: -webkit-linear-gradient(
|
454
|
-
background-image: -moz-linear-gradient(
|
455
|
-
background-image: -ms-linear-gradient(
|
456
|
-
background-image: -o-linear-gradient(
|
457
|
-
background-image: linear-gradient(
|
444
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #ddd /*{d-bar-background-start}*/), to( #bbb /*{d-bar-background-end}*/)); /* Saf4+, Chrome */
|
445
|
+
background-image: -webkit-linear-gradient(#ddd /*{d-bar-background-start}*/, #bbb /*{d-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
446
|
+
background-image: -moz-linear-gradient(#ddd /*{d-bar-background-start}*/, #bbb /*{d-bar-background-end}*/); /* FF3.6 */
|
447
|
+
background-image: -ms-linear-gradient(#ddd /*{d-bar-background-start}*/, #bbb /*{d-bar-background-end}*/); /* IE10 */
|
448
|
+
background-image: -o-linear-gradient(#ddd /*{d-bar-background-start}*/, #bbb /*{d-bar-background-end}*/); /* Opera 11.10+ */
|
449
|
+
background-image: linear-gradient(#ddd /*{d-bar-background-start}*/, #bbb /*{d-bar-background-end}*/);
|
458
450
|
}
|
459
451
|
.ui-bar-d,
|
460
452
|
.ui-bar-d input,
|
461
453
|
.ui-bar-d select,
|
462
454
|
.ui-bar-d textarea,
|
463
455
|
.ui-bar-d button {
|
464
|
-
font-family: Helvetica, Arial, sans-serif /*{
|
456
|
+
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
465
457
|
}
|
466
458
|
|
467
459
|
.ui-bar-d .ui-link-inherit {
|
@@ -484,24 +476,25 @@
|
|
484
476
|
color: #2489CE /*{d-bar-link-visited}*/;
|
485
477
|
}
|
486
478
|
|
487
|
-
.ui-body-d
|
479
|
+
.ui-body-d,
|
480
|
+
.ui-dialog.ui-overlay-d {
|
488
481
|
border: 1px solid #ccc /*{d-body-border}*/;
|
489
482
|
color: #333333 /*{d-body-color}*/;
|
490
483
|
text-shadow: 0 /*{d-body-shadow-x}*/ 1px /*{d-body-shadow-y}*/ 0 /*{d-body-shadow-radius}*/ #fff /*{d-body-shadow-color}*/;
|
491
484
|
background: #ffffff /*{d-body-background-color}*/;
|
492
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff /*{d-body-background-end}*/)); /* Saf4+, Chrome */
|
493
|
-
background-image: -webkit-linear-gradient(
|
494
|
-
background-image: -moz-linear-gradient(
|
495
|
-
background-image: -ms-linear-gradient(
|
496
|
-
background-image: -o-linear-gradient(
|
497
|
-
background-image: linear-gradient(
|
485
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #fff), to( #fff /*{d-body-background-end}*/)); /* Saf4+, Chrome */
|
486
|
+
background-image: -webkit-linear-gradient(#fff /*{d-body-background-start}*/, #fff /*{d-body-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
487
|
+
background-image: -moz-linear-gradient(#fff /*{d-body-background-start}*/, #fff /*{d-body-background-end}*/); /* FF3.6 */
|
488
|
+
background-image: -ms-linear-gradient(#fff /*{d-body-background-start}*/, #fff /*{d-body-background-end}*/); /* IE10 */
|
489
|
+
background-image: -o-linear-gradient(#fff /*{d-body-background-start}*/, #fff /*{d-body-background-end}*/); /* Opera 11.10+ */
|
490
|
+
background-image: linear-gradient(#fff /*{d-body-background-start}*/, #fff /*{d-body-background-end}*/);
|
498
491
|
}
|
499
492
|
.ui-body-d,
|
500
493
|
.ui-body-d input,
|
501
494
|
.ui-body-d select,
|
502
495
|
.ui-body-d textarea,
|
503
496
|
.ui-body-d button {
|
504
|
-
font-family: Helvetica, Arial, sans-serif /*{
|
497
|
+
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
505
498
|
}
|
506
499
|
|
507
500
|
.ui-body-d .ui-link-inherit {
|
@@ -531,12 +524,12 @@
|
|
531
524
|
font-weight: bold;
|
532
525
|
color: #444 /*{d-bup-color}*/;
|
533
526
|
text-shadow: 0 /*{d-bup-shadow-x}*/ 1px /*{d-bup-shadow-y}*/ 1px /*{d-bup-shadow-radius}*/ #fff /*{d-bup-shadow-color}*/;
|
534
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff /*{d-bup-background-end}*/)); /* Saf4+, Chrome */
|
535
|
-
background-image: -webkit-linear-gradient(
|
536
|
-
background-image: -moz-linear-gradient(
|
537
|
-
background-image: -ms-linear-gradient(
|
538
|
-
background-image: -o-linear-gradient(
|
539
|
-
background-image: linear-gradient(
|
527
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #fff), to( #fff /*{d-bup-background-end}*/)); /* Saf4+, Chrome */
|
528
|
+
background-image: -webkit-linear-gradient(#fff /*{d-bup-background-start}*/, #fff /*{d-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
529
|
+
background-image: -moz-linear-gradient(#fff /*{d-bup-background-start}*/, #fff /*{d-bup-background-end}*/); /* FF3.6 */
|
530
|
+
background-image: -ms-linear-gradient(#fff /*{d-bup-background-start}*/, #fff /*{d-bup-background-end}*/); /* IE10 */
|
531
|
+
background-image: -o-linear-gradient(#fff /*{d-bup-background-start}*/, #fff /*{d-bup-background-end}*/); /* Opera 11.10+ */
|
532
|
+
background-image: linear-gradient(#fff /*{d-bup-background-start}*/, #fff /*{d-bup-background-end}*/);
|
540
533
|
}
|
541
534
|
.ui-btn-up-d a.ui-link-inherit {
|
542
535
|
color: #333 /*{d-bup-color}*/;
|
@@ -548,12 +541,12 @@
|
|
548
541
|
color: #222 /*{d-bhover-color}*/;
|
549
542
|
cursor: pointer;
|
550
543
|
text-shadow: 0 /*{d-bhover-shadow-x}*/ 1px /*{d-bhover-shadow-y}*/ 1px /*{d-bhover-shadow-radius}*/ #fff /*{d-bhover-shadow-color}*/;
|
551
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from(#fdfdfd), to(#eee /*{d-bhover-background-end}*/)); /* Saf4+, Chrome */
|
552
|
-
background-image: -webkit-linear-gradient(
|
553
|
-
background-image: -moz-linear-gradient(
|
554
|
-
background-image: -ms-linear-gradient(
|
555
|
-
background-image: -o-linear-gradient(
|
556
|
-
background-image: linear-gradient(
|
544
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #fdfdfd), to( #eee /*{d-bhover-background-end}*/)); /* Saf4+, Chrome */
|
545
|
+
background-image: -webkit-linear-gradient(#fdfdfd /*{d-bhover-background-start}*/, #eee /*{d-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
546
|
+
background-image: -moz-linear-gradient(#fdfdfd /*{d-bhover-background-start}*/, #eee /*{d-bhover-background-end}*/); /* FF3.6 */
|
547
|
+
background-image: -ms-linear-gradient(#fdfdfd /*{d-bhover-background-start}*/, #eee /*{d-bhover-background-end}*/); /* IE10 */
|
548
|
+
background-image: -o-linear-gradient(#fdfdfd /*{d-bhover-background-start}*/, #eee /*{d-bhover-background-end}*/); /* Opera 11.10+ */
|
549
|
+
background-image: linear-gradient(#fdfdfd /*{d-bhover-background-start}*/, #eee /*{d-bhover-background-end}*/);
|
557
550
|
}
|
558
551
|
.ui-btn-hover-d a.ui-link-inherit {
|
559
552
|
color: #222 /*{d-bhover-color}*/;
|
@@ -564,12 +557,12 @@
|
|
564
557
|
font-weight: bold;
|
565
558
|
color: #111 /*{d-bdown-color}*/;
|
566
559
|
text-shadow: 0 /*{d-bdown-shadow-x}*/ 1px /*{d-bdown-shadow-y}*/ 1px /*{d-bdown-shadow-radius}*/ #ffffff /*{d-bdown-shadow-color}*/;
|
567
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from(#eee /*{d-bdown-background-start}*/), to(#fff /*{d-bdown-background-end}*/)); /* Saf4+, Chrome */
|
568
|
-
background-image: -webkit-linear-gradient(
|
569
|
-
background-image: -moz-linear-gradient(
|
570
|
-
background-image: -ms-linear-gradient(
|
571
|
-
background-image: -o-linear-gradient(
|
572
|
-
background-image: linear-gradient(
|
560
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #eee /*{d-bdown-background-start}*/), to( #fff /*{d-bdown-background-end}*/)); /* Saf4+, Chrome */
|
561
|
+
background-image: -webkit-linear-gradient(#eee /*{d-bdown-background-start}*/, #fff /*{d-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
562
|
+
background-image: -moz-linear-gradient(#eee /*{d-bdown-background-start}*/, #fff /*{d-bdown-background-end}*/); /* FF3.6 */
|
563
|
+
background-image: -ms-linear-gradient(#eee /*{d-bdown-background-start}*/, #fff /*{d-bdown-background-end}*/); /* IE10 */
|
564
|
+
background-image: -o-linear-gradient(#eee /*{d-bdown-background-start}*/, #fff /*{d-bdown-background-end}*/); /* Opera 11.10+ */
|
565
|
+
background-image: linear-gradient(#eee /*{d-bdown-background-start}*/, #fff /*{d-bdown-background-end}*/);
|
573
566
|
}
|
574
567
|
.ui-btn-down-d a.ui-link-inherit {
|
575
568
|
color: #111 /*{d-bdown-color}*/;
|
@@ -577,7 +570,7 @@
|
|
577
570
|
.ui-btn-up-d,
|
578
571
|
.ui-btn-hover-d,
|
579
572
|
.ui-btn-down-d {
|
580
|
-
font-family: Helvetica, Arial, sans-serif /*{
|
573
|
+
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
581
574
|
text-decoration: none;
|
582
575
|
}
|
583
576
|
|
@@ -590,19 +583,19 @@
|
|
590
583
|
background: #fadb4e /*{e-bar-background-color}*/;
|
591
584
|
color: #333 /*{e-bar-color}*/;
|
592
585
|
text-shadow: 0 /*{e-bar-shadow-x}*/ 1px /*{e-bar-shadow-y}*/ 0 /*{e-bar-shadow-radius}*/ #fff /*{e-bar-shadow-color}*/;
|
593
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from(#fceda7 /*{e-bar-background-start}*/), to(#fadb4e /*{e-bar-background-end}*/)); /* Saf4+, Chrome */
|
594
|
-
background-image: -webkit-linear-gradient(
|
595
|
-
background-image: -moz-linear-gradient(
|
596
|
-
background-image: -ms-linear-gradient(
|
597
|
-
background-image: -o-linear-gradient(
|
598
|
-
background-image: linear-gradient(
|
586
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #fceda7 /*{e-bar-background-start}*/), to( #fadb4e /*{e-bar-background-end}*/)); /* Saf4+, Chrome */
|
587
|
+
background-image: -webkit-linear-gradient(#fceda7 /*{e-bar-background-start}*/, #fadb4e /*{e-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
588
|
+
background-image: -moz-linear-gradient(#fceda7 /*{e-bar-background-start}*/, #fadb4e /*{e-bar-background-end}*/); /* FF3.6 */
|
589
|
+
background-image: -ms-linear-gradient(#fceda7 /*{e-bar-background-start}*/, #fadb4e /*{e-bar-background-end}*/); /* IE10 */
|
590
|
+
background-image: -o-linear-gradient(#fceda7 /*{e-bar-background-start}*/, #fadb4e /*{e-bar-background-end}*/); /* Opera 11.10+ */
|
591
|
+
background-image: linear-gradient(#fceda7 /*{e-bar-background-start}*/, #fadb4e /*{e-bar-background-end}*/);
|
599
592
|
}
|
600
593
|
.ui-bar-e,
|
601
594
|
.ui-bar-e input,
|
602
595
|
.ui-bar-e select,
|
603
596
|
.ui-bar-e textarea,
|
604
597
|
.ui-bar-e button {
|
605
|
-
font-family: Helvetica, Arial, sans-serif /*{
|
598
|
+
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
606
599
|
}
|
607
600
|
.ui-bar-e .ui-link-inherit {
|
608
601
|
color: #333333 /*{e-bar-color}*/;
|
@@ -624,24 +617,25 @@
|
|
624
617
|
color: #2489CE /*{e-bar-link-visited}*/;
|
625
618
|
}
|
626
619
|
|
627
|
-
.ui-body-e
|
620
|
+
.ui-body-e,
|
621
|
+
.ui-dialog.ui-overlay-e {
|
628
622
|
border: 1px solid #F7C942 /*{e-body-border}*/;
|
629
623
|
color: #333333 /*{e-body-color}*/;
|
630
624
|
text-shadow: 0 /*{e-body-shadow-x}*/ 1px /*{e-body-shadow-y}*/ 0 /*{e-body-shadow-radius}*/ #fff /*{e-body-shadow-color}*/;
|
631
625
|
background: #faeb9e /*{e-body-background-color}*/;
|
632
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from(#fff /*{e-body-background-start}*/), to(#faeb9e /*{e-body-background-end}*/)); /* Saf4+, Chrome */
|
633
|
-
background-image: -webkit-linear-gradient(
|
634
|
-
background-image: -moz-linear-gradient(
|
635
|
-
background-image: -ms-linear-gradient(
|
636
|
-
background-image: -o-linear-gradient(
|
637
|
-
background-image: linear-gradient(
|
626
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #fff /*{e-body-background-start}*/), to( #faeb9e /*{e-body-background-end}*/)); /* Saf4+, Chrome */
|
627
|
+
background-image: -webkit-linear-gradient(#fff /*{e-body-background-start}*/, #faeb9e /*{e-body-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
628
|
+
background-image: -moz-linear-gradient(#fff /*{e-body-background-start}*/, #faeb9e /*{e-body-background-end}*/); /* FF3.6 */
|
629
|
+
background-image: -ms-linear-gradient(#fff /*{e-body-background-start}*/, #faeb9e /*{e-body-background-end}*/); /* IE10 */
|
630
|
+
background-image: -o-linear-gradient(#fff /*{e-body-background-start}*/, #faeb9e /*{e-body-background-end}*/); /* Opera 11.10+ */
|
631
|
+
background-image: linear-gradient(#fff /*{e-body-background-start}*/, #faeb9e /*{e-body-background-end}*/);
|
638
632
|
}
|
639
633
|
.ui-body-e,
|
640
634
|
.ui-body-e input,
|
641
635
|
.ui-body-e select,
|
642
636
|
.ui-body-e textarea,
|
643
637
|
.ui-body-e button {
|
644
|
-
font-family: Helvetica, Arial, sans-serif /*{
|
638
|
+
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
645
639
|
}
|
646
640
|
.ui-body-e .ui-link-inherit {
|
647
641
|
color: #333333 /*{e-body-color}*/;
|
@@ -670,12 +664,12 @@
|
|
670
664
|
font-weight: bold;
|
671
665
|
color: #333 /*{e-bup-color}*/;
|
672
666
|
text-shadow: 0 /*{e-bup-shadow-x}*/ 1px /*{e-bup-shadow-y}*/ 0 /*{e-bup-shadow-radius}*/ #fff /*{e-bup-shadow-color}*/;
|
673
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from(#fceda7 /*{e-bup-background-start}*/), to(#fadb4e /*{e-bup-background-end}*/)); /* Saf4+, Chrome */
|
674
|
-
background-image: -webkit-linear-gradient(
|
675
|
-
background-image: -moz-linear-gradient(
|
676
|
-
background-image: -ms-linear-gradient(
|
677
|
-
background-image: -o-linear-gradient(
|
678
|
-
background-image: linear-gradient(
|
667
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #fceda7 /*{e-bup-background-start}*/), to( #fadb4e /*{e-bup-background-end}*/)); /* Saf4+, Chrome */
|
668
|
+
background-image: -webkit-linear-gradient(#fceda7 /*{e-bup-background-start}*/, #fadb4e /*{e-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
669
|
+
background-image: -moz-linear-gradient(#fceda7 /*{e-bup-background-start}*/, #fadb4e /*{e-bup-background-end}*/); /* FF3.6 */
|
670
|
+
background-image: -ms-linear-gradient(#fceda7 /*{e-bup-background-start}*/, #fadb4e /*{e-bup-background-end}*/); /* IE10 */
|
671
|
+
background-image: -o-linear-gradient(#fceda7 /*{e-bup-background-start}*/, #fadb4e /*{e-bup-background-end}*/); /* Opera 11.10+ */
|
672
|
+
background-image: linear-gradient(#fceda7 /*{e-bup-background-start}*/, #fadb4e /*{e-bup-background-end}*/);
|
679
673
|
}
|
680
674
|
.ui-btn-up-e a.ui-link-inherit {
|
681
675
|
color: #333 /*{e-bup-color}*/;
|
@@ -686,12 +680,12 @@
|
|
686
680
|
font-weight: bold;
|
687
681
|
color: #111 /*{e-bhover-color}*/;
|
688
682
|
text-shadow: 0 /*{e-bhover-shadow-x}*/ 1px /*{e-bhover-shadow-y}*/ 1px /*{e-bhover-shadow-radius}*/ #fff /*{e-bhover-shadow-color}*/;
|
689
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf0b5 /*{e-bhover-background-start}*/), to(#fbe26f /*{e-bhover-background-end}*/)); /* Saf4+, Chrome */
|
690
|
-
background-image: -webkit-linear-gradient(
|
691
|
-
background-image: -moz-linear-gradient(
|
692
|
-
background-image: -ms-linear-gradient(
|
693
|
-
background-image: -o-linear-gradient(
|
694
|
-
background-image: linear-gradient(
|
683
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #fcf0b5 /*{e-bhover-background-start}*/), to( #fbe26f /*{e-bhover-background-end}*/)); /* Saf4+, Chrome */
|
684
|
+
background-image: -webkit-linear-gradient(#fcf0b5 /*{e-bhover-background-start}*/, #fbe26f /*{e-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
685
|
+
background-image: -moz-linear-gradient(#fcf0b5 /*{e-bhover-background-start}*/, #fbe26f /*{e-bhover-background-end}*/); /* FF3.6 */
|
686
|
+
background-image: -ms-linear-gradient(#fcf0b5 /*{e-bhover-background-start}*/, #fbe26f /*{e-bhover-background-end}*/); /* IE10 */
|
687
|
+
background-image: -o-linear-gradient(#fcf0b5 /*{e-bhover-background-start}*/, #fbe26f /*{e-bhover-background-end}*/); /* Opera 11.10+ */
|
688
|
+
background-image: linear-gradient(#fcf0b5 /*{e-bhover-background-start}*/, #fbe26f /*{e-bhover-background-end}*/);
|
695
689
|
}
|
696
690
|
|
697
691
|
.ui-btn-hover-e a.ui-link-inherit {
|
@@ -703,12 +697,12 @@
|
|
703
697
|
font-weight: bold;
|
704
698
|
color: #111 /*{e-bdown-color}*/;
|
705
699
|
text-shadow: 0 /*{e-bdown-shadow-x}*/ 1px /*{e-bdown-shadow-y}*/ 1px /*{e-bdown-shadow-radius}*/ #ffffff /*{e-bdown-shadow-color}*/;
|
706
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from(#fadb4e /*{e-bdown-background-start}*/), to(#fceda7 /*{e-bdown-background-end}*/)); /* Saf4+, Chrome */
|
707
|
-
background-image: -webkit-linear-gradient(
|
708
|
-
background-image: -moz-linear-gradient(
|
709
|
-
background-image: -ms-linear-gradient(
|
710
|
-
background-image: -o-linear-gradient(
|
711
|
-
background-image: linear-gradient(
|
700
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #fadb4e /*{e-bdown-background-start}*/), to( #fceda7 /*{e-bdown-background-end}*/)); /* Saf4+, Chrome */
|
701
|
+
background-image: -webkit-linear-gradient(#fadb4e /*{e-bdown-background-start}*/, #fceda7 /*{e-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
702
|
+
background-image: -moz-linear-gradient(#fadb4e /*{e-bdown-background-start}*/, #fceda7 /*{e-bdown-background-end}*/); /* FF3.6 */
|
703
|
+
background-image: -ms-linear-gradient(#fadb4e /*{e-bdown-background-start}*/, #fceda7 /*{e-bdown-background-end}*/); /* IE10 */
|
704
|
+
background-image: -o-linear-gradient(#fadb4e /*{e-bdown-background-start}*/, #fceda7 /*{e-bdown-background-end}*/); /* Opera 11.10+ */
|
705
|
+
background-image: linear-gradient(#fadb4e /*{e-bdown-background-start}*/, #fceda7 /*{e-bdown-background-end}*/);
|
712
706
|
}
|
713
707
|
.ui-btn-down-e a.ui-link-inherit {
|
714
708
|
color: #333 /*{e-bdown-color}*/;
|
@@ -716,7 +710,7 @@
|
|
716
710
|
.ui-btn-up-e,
|
717
711
|
.ui-btn-hover-e,
|
718
712
|
.ui-btn-down-e {
|
719
|
-
font-family: Helvetica, Arial, sans-serif /*{
|
713
|
+
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
720
714
|
text-decoration: none;
|
721
715
|
}
|
722
716
|
|
@@ -741,13 +735,13 @@ a.ui-link-inherit {
|
|
741
735
|
cursor: pointer;
|
742
736
|
text-shadow: 0 /*{global-active-shadow-x}*/ -1px /*{global-active-shadow-y}*/ 1px /*{global-active-shadow-radius}*/ #145072 /*{global-active-shadow-color}*/;
|
743
737
|
text-decoration: none;
|
744
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from(#85bae4 /*{global-active-background-start}*/), to(#5393c5 /*{global-active-background-end}*/)); /* Saf4+, Chrome */
|
745
|
-
background-image: -webkit-linear-gradient(
|
746
|
-
background-image: -moz-linear-gradient(
|
747
|
-
background-image: -ms-linear-gradient(
|
748
|
-
background-image: -o-linear-gradient(
|
749
|
-
background-image: linear-gradient(
|
750
|
-
font-family: Helvetica, Arial, sans-serif /*{global-
|
738
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #85bae4 /*{global-active-background-start}*/), to( #5393c5 /*{global-active-background-end}*/)); /* Saf4+, Chrome */
|
739
|
+
background-image: -webkit-linear-gradient(#85bae4 /*{global-active-background-start}*/, #5393c5 /*{global-active-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
740
|
+
background-image: -moz-linear-gradient(#85bae4 /*{global-active-background-start}*/, #5393c5 /*{global-active-background-end}*/); /* FF3.6 */
|
741
|
+
background-image: -ms-linear-gradient(#85bae4 /*{global-active-background-start}*/, #5393c5 /*{global-active-background-end}*/); /* IE10 */
|
742
|
+
background-image: -o-linear-gradient(#85bae4 /*{global-active-background-start}*/, #5393c5 /*{global-active-background-end}*/); /* Opera 11.10+ */
|
743
|
+
background-image: linear-gradient(#85bae4 /*{global-active-background-start}*/, #5393c5 /*{global-active-background-end}*/);
|
744
|
+
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
751
745
|
}
|
752
746
|
.ui-btn-active a.ui-link-inherit {
|
753
747
|
color: #fff /*{global-active-color}*/;
|
@@ -829,6 +823,15 @@ a.ui-link-inherit {
|
|
829
823
|
border-radius: 0;
|
830
824
|
}
|
831
825
|
|
826
|
+
/* Form field separator
|
827
|
+
-----------------------------------------------------------------------------------------------------------*/
|
828
|
+
.ui-br {
|
829
|
+
border-bottom: rgb(130,130,130);
|
830
|
+
border-bottom: rgba(130,130,130,.3);
|
831
|
+
border-bottom-width: 1px;
|
832
|
+
border-bottom-style: solid;
|
833
|
+
}
|
834
|
+
|
832
835
|
/* Interaction cues
|
833
836
|
-----------------------------------------------------------------------------------------------------------*/
|
834
837
|
.ui-disabled {
|
@@ -1136,22 +1139,20 @@ a.ui-link-inherit {
|
|
1136
1139
|
/* ...and bring back focus */
|
1137
1140
|
.ui-mobile-nosupport-boxshadow .ui-focus {
|
1138
1141
|
outline-width: 2px;
|
1139
|
-
}
|
1140
|
-
* jQuery Mobile Framework
|
1141
|
-
* Copyright (c) jQuery Project
|
1142
|
-
* Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.
|
1143
|
-
*/
|
1144
|
-
|
1142
|
+
}
|
1145
1143
|
/* some unsets - more probably needed */
|
1146
1144
|
.ui-mobile, .ui-mobile body { height: 100%; }
|
1147
1145
|
.ui-mobile fieldset, .ui-page { padding: 0; margin: 0; }
|
1148
1146
|
.ui-mobile a img, .ui-mobile fieldset { border: 0; }
|
1149
1147
|
|
1150
1148
|
/* responsive page widths */
|
1151
|
-
.ui-mobile-viewport { margin: 0; overflow-x:
|
1149
|
+
.ui-mobile-viewport { margin: 0; overflow-x: visible; -webkit-text-size-adjust: none; -ms-text-size-adjust:none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
|
1150
|
+
/* Issue #2066 */
|
1151
|
+
body.ui-mobile-viewport,
|
1152
|
+
div.ui-mobile-viewport { overflow-x: hidden; }
|
1152
1153
|
|
1153
1154
|
/* "page" containers - full-screen views, one should always be in view post-pageload */
|
1154
|
-
.ui-mobile [data-role=page], .ui-mobile [data-role=dialog], .ui-page { top: 0; left: 0; width: 100%; min-height: 100%; position: absolute; display: none; border: 0; }
|
1155
|
+
.ui-mobile [data-role=page], .ui-mobile [data-role=dialog], .ui-page { top: 0; left: 0; width: 100%; min-height: 100%; position: absolute; display: none; border: 0; }
|
1155
1156
|
.ui-mobile .ui-page-active { display: block; overflow: visible; }
|
1156
1157
|
|
1157
1158
|
/* on ios4, setting focus on the page element causes flashing during transitions when there is an outline, so we turn off outlines */
|
@@ -1262,11 +1263,6 @@ a.ui-link-inherit {
|
|
1262
1263
|
/* accessible content hiding */
|
1263
1264
|
.ui-hide-label label,
|
1264
1265
|
.ui-hidden-accessible { position: absolute !important; left: -9999px; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
|
1265
|
-
/*
|
1266
|
-
* jQuery Mobile Framework
|
1267
|
-
* Copyright (c) jQuery Project
|
1268
|
-
* Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
|
1269
|
-
*/
|
1270
1266
|
.spin {
|
1271
1267
|
-webkit-transform: rotate(360deg);
|
1272
1268
|
-webkit-animation-name: spin;
|
@@ -1529,13 +1525,7 @@ Built by David Kaneda and maintained by Jonathan Stark.
|
|
1529
1525
|
-webkit-transform: scale(.2);
|
1530
1526
|
opacity: 0;
|
1531
1527
|
}
|
1532
|
-
}/*
|
1533
|
-
* jQuery Mobile Framework
|
1534
|
-
* Copyright (c) jQuery Project
|
1535
|
-
* Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
|
1536
|
-
*/
|
1537
|
-
|
1538
|
-
/* content configurations. */
|
1528
|
+
}/* content configurations. */
|
1539
1529
|
.ui-grid-a, .ui-grid-b, .ui-grid-c, .ui-grid-d { overflow: hidden; }
|
1540
1530
|
.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;}
|
1541
1531
|
|
@@ -1557,11 +1547,6 @@ Built by David Kaneda and maintained by Jonathan Stark.
|
|
1557
1547
|
/* grid d: 20/20/20/20/20 */
|
1558
1548
|
.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: 20%; }
|
1559
1549
|
.ui-grid-d .ui-block-a { clear: left; }
|
1560
|
-
/*
|
1561
|
-
* jQuery Mobile Framework
|
1562
|
-
* Copyright (c) jQuery Project
|
1563
|
-
* Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
|
1564
|
-
*/
|
1565
1550
|
/* fixed page header & footer configuration */
|
1566
1551
|
.ui-header, .ui-footer, .ui-page-fullscreen .ui-header, .ui-page-fullscreen .ui-footer { position: absolute; overflow: hidden; width: 100%; border-left-width: 0; border-right-width: 0; }
|
1567
1552
|
.ui-header-fixed, .ui-footer-fixed {
|
@@ -1570,11 +1555,6 @@ Built by David Kaneda and maintained by Jonathan Stark.
|
|
1570
1555
|
}
|
1571
1556
|
.ui-footer-duplicate, .ui-page-fullscreen .ui-fixed-inline { display: none; }
|
1572
1557
|
.ui-page-fullscreen .ui-header, .ui-page-fullscreen .ui-footer { opacity: .9; }
|
1573
|
-
/*
|
1574
|
-
* jQuery Mobile Framework
|
1575
|
-
* Copyright (c) jQuery Project
|
1576
|
-
* Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
|
1577
|
-
*/
|
1578
1558
|
.ui-navbar { overflow: hidden; }
|
1579
1559
|
.ui-navbar ul, .ui-navbar-expanded ul { list-style:none; padding: 0; margin: 0; position: relative; display: block; border: 0;}
|
1580
1560
|
.ui-navbar-collapsed ul { float: left; width: 75%; margin-right: -2px; }
|
@@ -1596,11 +1576,6 @@ Built by David Kaneda and maintained by Jonathan Stark.
|
|
1596
1576
|
.ui-navbar-expanded .ui-btn-icon-bottom .ui-icon { bottom: 15px; }
|
1597
1577
|
.ui-navbar-expanded li .ui-btn .ui-btn-inner { min-height: 2.5em; }
|
1598
1578
|
.ui-navbar-expanded .ui-navbar-noicons .ui-btn .ui-btn-inner { padding-top: 1.8em; padding-bottom: 1.9em; }
|
1599
|
-
/*
|
1600
|
-
* jQuery Mobile Framework
|
1601
|
-
* Copyright (c) jQuery Project
|
1602
|
-
* Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
|
1603
|
-
*/
|
1604
1579
|
.ui-btn { display: block; text-align: center; cursor:pointer; position: relative; margin: .5em 5px; padding: 0; }
|
1605
1580
|
.ui-header .ui-btn, .ui-footer .ui-btn, .ui-bar .ui-btn { display: inline-block; font-size: 13px; margin: 0; }
|
1606
1581
|
.ui-btn-inline { display: inline-block; }
|
@@ -1650,12 +1625,7 @@ Built by David Kaneda and maintained by Jonathan Stark.
|
|
1650
1625
|
.ui-bar .ui-btn-icon-bottom .ui-icon { bottom: 4px; }
|
1651
1626
|
|
1652
1627
|
/*hiding native button,inputs */
|
1653
|
-
.ui-btn-hidden { position: absolute; top: 0; left: 0; width: 100%; height: 100%; -webkit-appearance: button; opacity: .1; cursor: pointer; background:
|
1654
|
-
/*
|
1655
|
-
* jQuery Mobile Framework
|
1656
|
-
* Copyright (c) jQuery Project
|
1657
|
-
* Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
|
1658
|
-
*/
|
1628
|
+
.ui-btn-hidden { position: absolute; top: 0; left: 0; width: 100%; height: 100%; -webkit-appearance: button; opacity: .1; cursor: pointer; background: #fff; background: rgba(255,255,255,0); filter: Alpha(Opacity=.0001); font-size: 1px; border: none; line-height: 999px; }
|
1659
1629
|
.ui-collapsible { margin: .5em 0; }
|
1660
1630
|
.ui-collapsible-heading { font-size: 16px; display: block; margin: 0 -8px; padding: 0; border-width: 0 0 1px 0; position: relative; }
|
1661
1631
|
.ui-collapsible-heading a { text-align: left; margin: 0; }
|
@@ -1663,7 +1633,7 @@ Built by David Kaneda and maintained by Jonathan Stark.
|
|
1663
1633
|
.ui-collapsible-heading a 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; }
|
1664
1634
|
.ui-collapsible-heading a span.ui-btn .ui-btn-inner { padding: 10px 0; }
|
1665
1635
|
.ui-collapsible-heading a span.ui-btn .ui-icon { left: 0; margin-top: -10px; }
|
1666
|
-
.ui-collapsible-heading-status { position:
|
1636
|
+
.ui-collapsible-heading-status { position: absolute; top: -9999px; left:0px; }
|
1667
1637
|
.ui-collapsible-content {
|
1668
1638
|
display: block;
|
1669
1639
|
margin: 0 -8px;
|
@@ -1676,11 +1646,6 @@ Built by David Kaneda and maintained by Jonathan Stark.
|
|
1676
1646
|
|
1677
1647
|
.ui-collapsible-set { margin: .5em 0; }
|
1678
1648
|
.ui-collapsible-set .ui-collapsible { margin: -1px 0 0; }
|
1679
|
-
/*
|
1680
|
-
* jQuery Mobile Framework
|
1681
|
-
* Copyright (c) jQuery Project
|
1682
|
-
* Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
|
1683
|
-
*/
|
1684
1649
|
.ui-controlgroup, fieldset.ui-controlgroup { padding: 0; margin: .5em 0 1em; }
|
1685
1650
|
.ui-bar .ui-controlgroup { margin: 0 .3em; }
|
1686
1651
|
.ui-controlgroup-label { font-size: 16px; line-height: 1.4; font-weight: normal; margin: 0 0 .3em; }
|
@@ -1708,20 +1673,27 @@ Built by David Kaneda and maintained by Jonathan Stark.
|
|
1708
1673
|
.ui-field-contain .ui-controlgroup-controls { width: 60%; display: inline-block; }
|
1709
1674
|
.ui-field-contain .ui-controlgroup .ui-select { width: 100%; }
|
1710
1675
|
.ui-field-contain .ui-controlgroup-horizontal .ui-select { width: auto; }
|
1711
|
-
}
|
1712
|
-
|
1713
|
-
|
1714
|
-
|
1715
|
-
|
1716
|
-
|
1717
|
-
|
1718
|
-
|
1719
|
-
|
1720
|
-
.ui-dialog .ui-
|
1721
|
-
|
1722
|
-
|
1723
|
-
|
1724
|
-
|
1676
|
+
} .ui-dialog { min-height: 480px; }
|
1677
|
+
.ui-dialog .ui-header,
|
1678
|
+
.ui-dialog .ui-content,
|
1679
|
+
.ui-dialog .ui-footer {
|
1680
|
+
max-width: 500px;
|
1681
|
+
margin: 10% auto 15px auto;
|
1682
|
+
width: 85%;
|
1683
|
+
position: relative;
|
1684
|
+
}
|
1685
|
+
.ui-dialog .ui-header,
|
1686
|
+
.ui-dialog .ui-footer {
|
1687
|
+
padding: 0 15px;
|
1688
|
+
z-index: 10;
|
1689
|
+
}
|
1690
|
+
.ui-dialog .ui-content {
|
1691
|
+
padding: 15px;
|
1692
|
+
}
|
1693
|
+
.ui-dialog .ui-content,
|
1694
|
+
.ui-dialog .ui-footer {
|
1695
|
+
margin-top: -15px;
|
1696
|
+
}
|
1725
1697
|
.ui-checkbox, .ui-radio { position:relative; margin: .2em 0 .5em; z-index: 1; }
|
1726
1698
|
.ui-checkbox .ui-btn, .ui-radio .ui-btn { margin: 0; text-align: left; z-index: 2; }
|
1727
1699
|
.ui-checkbox .ui-btn-inner, .ui-radio .ui-btn-inner { white-space: normal; }
|
@@ -1731,24 +1703,22 @@ Built by David Kaneda and maintained by Jonathan Stark.
|
|
1731
1703
|
.ui-checkbox .ui-btn-icon-left .ui-icon, .ui-radio .ui-btn-icon-left .ui-icon {left: 15px; }
|
1732
1704
|
.ui-checkbox .ui-btn-icon-right .ui-icon, .ui-radio .ui-btn-icon-right .ui-icon {right: 15px; }
|
1733
1705
|
/* input, label positioning */
|
1734
|
-
.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; }
|
1735
|
-
* jQuery Mobile Framework
|
1736
|
-
* Copyright (c) jQuery Project
|
1737
|
-
* Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
|
1738
|
-
*/
|
1739
|
-
.ui-field-contain { padding: 1.5em 0; margin: 0; border-bottom-width: 1px; overflow: visible; }
|
1706
|
+
.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; }.ui-field-contain { padding: 1.5em 0; margin: 0; border-bottom-width: 1px; overflow: visible; }
|
1740
1707
|
.ui-field-contain:first-child { border-top-width: 0; }
|
1741
1708
|
@media all and (min-width: 450px){
|
1742
1709
|
.ui-field-contain { border-width: 0; padding: 0; margin: 1em 0; }
|
1743
|
-
}
|
1744
|
-
* jQuery Mobile Framework
|
1745
|
-
* Copyright (c) jQuery Project
|
1746
|
-
* Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
|
1747
|
-
*/
|
1748
|
-
.ui-select { display: block; position: relative; }
|
1710
|
+
} .ui-select { display: block; position: relative; }
|
1749
1711
|
.ui-select select { position: absolute; left: -9999px; top: -9999px; }
|
1750
1712
|
.ui-select .ui-btn { overflow: hidden; }
|
1713
|
+
|
1714
|
+
|
1715
|
+
.ui-select .ui-btn { opacity: 1; }
|
1716
|
+
|
1717
|
+
/* 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. */
|
1751
1718
|
.ui-select .ui-btn select { cursor: pointer; -webkit-appearance: button; left: 0; top:0; width: 100%; min-height: 1.5em; min-height: 100%; height: 3em; max-height: 100%; opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); z-index: 2; }
|
1719
|
+
|
1720
|
+
.ui-select .ui-disabled { opacity: .3; }
|
1721
|
+
|
1752
1722
|
@-moz-document url-prefix() {.ui-select .ui-btn select { opacity: 0.0001; }}
|
1753
1723
|
.ui-select .ui-btn select.ui-select-nativeonly { opacity: 1; text-indent: 0; }
|
1754
1724
|
|
@@ -1762,7 +1732,7 @@ label.ui-select { font-size: 16px; line-height: 1.4; font-weight: normal; margi
|
|
1762
1732
|
.ui-select .ui-btn-text, .ui-selectmenu .ui-btn-text { display: block; min-height: 1em; overflow: hidden; }
|
1763
1733
|
.ui-select .ui-btn-text { text-overflow: ellipsis; }
|
1764
1734
|
|
1765
|
-
.ui-selectmenu { position: absolute; padding: 0; z-index:
|
1735
|
+
.ui-selectmenu { position: absolute; padding: 0; z-index: 1100 !important; width: 80%; max-width: 350px; padding: 6px; }
|
1766
1736
|
.ui-selectmenu .ui-listview { margin: 0; }
|
1767
1737
|
.ui-selectmenu .ui-btn.ui-li-divider { cursor: default; }
|
1768
1738
|
.ui-selectmenu-hidden { top: -9999px; left: -9999px; }
|
@@ -1778,13 +1748,8 @@ label.ui-select { font-size: 16px; line-height: 1.4; font-weight: normal; margi
|
|
1778
1748
|
}
|
1779
1749
|
|
1780
1750
|
/* 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 */
|
1781
|
-
.ui-selectmenu .ui-header h1:after { content: '.'; visibility: hidden; }
|
1782
|
-
|
1783
|
-
* Copyright (c) jQuery Project
|
1784
|
-
* Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
|
1785
|
-
*/
|
1786
|
-
label.ui-input-text { font-size: 16px; line-height: 1.4; display: block; font-weight: normal; margin: 0 0 .3em; }
|
1787
|
-
input.ui-input-text, textarea.ui-input-text { background-image: none; padding: .4em 1.5%; line-height: 1.4; font-size: 16px; display: block; width: 97%; }
|
1751
|
+
.ui-selectmenu .ui-header h1:after { content: '.'; visibility: hidden; }label.ui-input-text { font-size: 16px; line-height: 1.4; display: block; font-weight: normal; margin: 0 0 .3em; }
|
1752
|
+
input.ui-input-text, textarea.ui-input-text { background-image: none; padding: .4em; line-height: 1.4; font-size: 16px; display: block; width: 97%; }
|
1788
1753
|
input.ui-input-text { -webkit-appearance: none; }
|
1789
1754
|
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; }
|
1790
1755
|
.ui-input-search { padding: 0 30px; background-image: none; position: relative; }
|
@@ -1802,14 +1767,9 @@ textarea.ui-input-text { height: 50px; -webkit-transition: height 200ms linear;
|
|
1802
1767
|
.ui-field-contain .ui-input-search { width: 50%; }
|
1803
1768
|
.ui-hide-label input.ui-input-text,
|
1804
1769
|
.ui-hide-label textarea.ui-input-text,
|
1805
|
-
.ui-hide-label .ui-input-search { padding: .4em
|
1770
|
+
.ui-hide-label .ui-input-search { padding: .4em; width: 97%; }
|
1806
1771
|
.ui-input-search input.ui-input-text { width: 98%; /*echos rule from above*/ }
|
1807
|
-
}
|
1808
|
-
* jQuery Mobile Framework
|
1809
|
-
* Copyright (c) jQuery Project
|
1810
|
-
* Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
|
1811
|
-
*/
|
1812
|
-
.ui-listview { margin: 0; counter-reset: listnumbering; }
|
1772
|
+
}.ui-listview { margin: 0; counter-reset: listnumbering; }
|
1813
1773
|
.ui-content .ui-listview { margin: -15px; }
|
1814
1774
|
.ui-content .ui-listview-inset { margin: 1em 0; }
|
1815
1775
|
.ui-listview, .ui-li { list-style:none; padding:0; }
|
@@ -1831,9 +1791,9 @@ ol.ui-listview .ui-li-jsnumbering:before { content: "" !important; } /* to avoid
|
|
1831
1791
|
.ui-li-has-count .ui-btn-text { padding-right: 15px; }
|
1832
1792
|
.ui-li-heading { font-size: 16px; font-weight: bold; display: block; margin: .6em 0; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
|
1833
1793
|
.ui-li-desc { font-size: 12px; font-weight: normal; display: block; margin: -.5em 0 .6em; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
|
1834
|
-
.ui-li-thumb, .ui-li-icon { position: absolute; left: 1px; top: 0; max-height: 80px; max-width: 80px; }
|
1835
|
-
.ui-li-icon { max-height: 40px; max-width: 40px; left: 10px; top: .9em; }
|
1836
|
-
.ui-li-thumb, .ui-li-icon, .ui-li-content { float: left; margin-right: 10px; }
|
1794
|
+
.ui-li-thumb, .ui-listview .ui-li-icon { position: absolute; left: 1px; top: 0; max-height: 80px; max-width: 80px; }
|
1795
|
+
.ui-listview .ui-li-icon { max-height: 40px; max-width: 40px; left: 10px; top: .9em; }
|
1796
|
+
.ui-li-thumb, .ui-listview .ui-li-icon, .ui-li-content { float: left; margin-right: 10px; }
|
1837
1797
|
|
1838
1798
|
.ui-li-aside { float: right; width: 50%; text-align: right; margin: .3em 0; }
|
1839
1799
|
@media all and (min-width: 480px){
|
@@ -1859,16 +1819,11 @@ ol.ui-listview .ui-li-jsnumbering:before { content: "" !important; } /* to avoid
|
|
1859
1819
|
/* Odd iPad positioning issue. */
|
1860
1820
|
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
|
1861
1821
|
.ui-li .ui-btn-text { overflow: visible; }
|
1862
|
-
}
|
1863
|
-
* jQuery Mobile Framework
|
1864
|
-
* Copyright (c) jQuery Project
|
1865
|
-
* Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
|
1866
|
-
*/
|
1867
|
-
label.ui-slider { font-size: 16px; line-height: 1.4; font-weight: normal; margin: 0 0 .3em; display: block; }
|
1822
|
+
}label.ui-slider { font-size: 16px; line-height: 1.4; font-weight: normal; margin: 0 0 .3em; display: block; }
|
1868
1823
|
input.ui-slider-input,
|
1869
1824
|
.ui-field-contain input.ui-slider-input { display: inline-block; width: 50px; }
|
1870
1825
|
select.ui-slider-switch { display: none; }
|
1871
|
-
div.ui-slider { position: relative; display: inline-block; overflow: visible; height: 15px; padding: 0; margin: 0 2% 0 20px; top: 4px; width:
|
1826
|
+
div.ui-slider { position: relative; display: inline-block; overflow: visible; height: 15px; padding: 0; margin: 0 2% 0 20px; top: 4px; width: 60%; }
|
1872
1827
|
div.ui-slider-switch { width: 99.8%; }
|
1873
1828
|
a.ui-slider-handle { position: absolute; z-index: 10; top: 50%; width: 28px; height: 28px; margin-top: -15px; margin-left: -15px; }
|
1874
1829
|
a.ui-slider-handle .ui-btn-inner { padding-left: 0; padding-right: 0; }
|
@@ -1879,7 +1834,7 @@ a.ui-slider-handle .ui-btn-inner { padding-left: 0; padding-right: 0; }
|
|
1879
1834
|
|
1880
1835
|
div.ui-slider-switch { height: 32px; overflow: hidden; margin-left: 0; }
|
1881
1836
|
div.ui-slider-inneroffset { margin-left: 50%; position: absolute; top: 1px; height: 100%; width: 50%; }
|
1882
|
-
a.ui-slider-handle-snapping { -webkit-transition: left
|
1837
|
+
a.ui-slider-handle-snapping { -webkit-transition: left 70ms linear; }
|
1883
1838
|
div.ui-slider-labelbg { position: absolute; top:0; margin: 0; border-width: 0; }
|
1884
1839
|
div.ui-slider-switch div.ui-slider-labelbg-a { width: 60%; height: 100%; left: 0; }
|
1885
1840
|
div.ui-slider-switch div.ui-slider-labelbg-b { width: 60%; height: 100%; right: 0; }
|