jquerymobile-rails 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +6 -0
- data/Gemfile +4 -0
- data/LICENSE +21 -0
- data/README.md +33 -0
- data/Rakefile +2 -0
- data/jquerymobile-rails.gemspec +20 -0
- data/lib/jquerymobile-rails/version.rb +10 -0
- data/lib/jquerymobile-rails.rb +6 -0
- data/vendor/assets/images/jquerymobile/ajax-loader.gif +0 -0
- data/vendor/assets/images/jquerymobile/ajax-loader.png +0 -0
- data/vendor/assets/images/jquerymobile/icons-18-black.png +0 -0
- data/vendor/assets/images/jquerymobile/icons-18-white.png +0 -0
- data/vendor/assets/images/jquerymobile/icons-36-black.png +0 -0
- data/vendor/assets/images/jquerymobile/icons-36-white.png +0 -0
- data/vendor/assets/javascripts/jquerymobile.js +7551 -0
- data/vendor/assets/stylesheets/jquerymobile.css.erb +2053 -0
- metadata +78 -0
@@ -0,0 +1,2053 @@
|
|
1
|
+
/*
|
2
|
+
* jQuery Mobile Framework 1.1.0-rc.2 0837c4a738b4f306ff6437f021100b350a753e11
|
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
|
+
*
|
9
|
+
*/
|
10
|
+
/* Swatches */
|
11
|
+
/* A
|
12
|
+
-----------------------------------------------------------------------------------------------------------*/
|
13
|
+
.ui-bar-a {
|
14
|
+
border: 1px solid #333 /*{a-bar-border}*/;
|
15
|
+
background: #111111 /*{a-bar-background-color}*/;
|
16
|
+
color: #ffffff /*{a-bar-color}*/;
|
17
|
+
font-weight: bold;
|
18
|
+
text-shadow: 0 /*{a-bar-shadow-x}*/ -1px /*{a-bar-shadow-y}*/ 1px /*{a-bar-shadow-radius}*/ #000000 /*{a-bar-shadow-color}*/;
|
19
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #3c3c3c /*{a-bar-background-start}*/), to( #111 /*{a-bar-background-end}*/)); /* Saf4+, Chrome */
|
20
|
+
background-image: -webkit-linear-gradient( #3c3c3c /*{a-bar-background-start}*/, #111 /*{a-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
21
|
+
background-image: -moz-linear-gradient( #3c3c3c /*{a-bar-background-start}*/, #111 /*{a-bar-background-end}*/); /* FF3.6 */
|
22
|
+
background-image: -ms-linear-gradient( #3c3c3c /*{a-bar-background-start}*/, #111 /*{a-bar-background-end}*/); /* IE10 */
|
23
|
+
background-image: -o-linear-gradient( #3c3c3c /*{a-bar-background-start}*/, #111 /*{a-bar-background-end}*/); /* Opera 11.10+ */
|
24
|
+
background-image: linear-gradient( #3c3c3c /*{a-bar-background-start}*/, #111 /*{a-bar-background-end}*/);
|
25
|
+
}
|
26
|
+
.ui-bar-a,
|
27
|
+
.ui-bar-a input,
|
28
|
+
.ui-bar-a select,
|
29
|
+
.ui-bar-a textarea,
|
30
|
+
.ui-bar-a button {
|
31
|
+
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
32
|
+
}
|
33
|
+
.ui-bar-a .ui-link-inherit {
|
34
|
+
color: #fff /*{a-bar-color}*/;
|
35
|
+
}
|
36
|
+
.ui-bar-a .ui-link {
|
37
|
+
color: #7cc4e7 /*{a-bar-link-color}*/;
|
38
|
+
font-weight: bold;
|
39
|
+
}
|
40
|
+
.ui-bar-a .ui-link:hover {
|
41
|
+
color: #2489CE /*{a-bar-link-hover}*/;
|
42
|
+
}
|
43
|
+
.ui-bar-a .ui-link:active {
|
44
|
+
color: #2489CE /*{a-bar-link-active}*/;
|
45
|
+
}
|
46
|
+
.ui-bar-a .ui-link:visited {
|
47
|
+
color: #2489CE /*{a-bar-link-visited}*/;
|
48
|
+
}
|
49
|
+
.ui-body-a,
|
50
|
+
.ui-overlay-a {
|
51
|
+
border: 1px solid #444 /*{a-body-border}*/;
|
52
|
+
background: #222 /*{a-body-background-color}*/;
|
53
|
+
color: #fff /*{a-body-color}*/;
|
54
|
+
text-shadow: 0 /*{a-body-shadow-x}*/ 1px /*{a-body-shadow-y}*/ 1px /*{a-body-shadow-radius}*/ #111 /*{a-body-shadow-color}*/;
|
55
|
+
font-weight: normal;
|
56
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #444 /*{a-body-background-start}*/), to( #222 /*{a-body-background-end}*/)); /* Saf4+, Chrome */
|
57
|
+
background-image: -webkit-linear-gradient( #444 /*{a-body-background-start}*/, #222 /*{a-body-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
58
|
+
background-image: -moz-linear-gradient( #444 /*{a-body-background-start}*/, #222 /*{a-body-background-end}*/); /* FF3.6 */
|
59
|
+
background-image: -ms-linear-gradient( #444 /*{a-body-background-start}*/, #222 /*{a-body-background-end}*/); /* IE10 */
|
60
|
+
background-image: -o-linear-gradient( #444 /*{a-body-background-start}*/, #222 /*{a-body-background-end}*/); /* Opera 11.10+ */
|
61
|
+
background-image: linear-gradient( #444 /*{a-body-background-start}*/, #222 /*{a-body-background-end}*/);
|
62
|
+
}
|
63
|
+
.ui-overlay-a {
|
64
|
+
background-image: none;
|
65
|
+
border-width: 0;
|
66
|
+
}
|
67
|
+
.ui-body-a,
|
68
|
+
.ui-body-a input,
|
69
|
+
.ui-body-a select,
|
70
|
+
.ui-body-a textarea,
|
71
|
+
.ui-body-a button {
|
72
|
+
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
73
|
+
}
|
74
|
+
.ui-body-a .ui-link-inherit {
|
75
|
+
color: #fff /*{a-body-color}*/;
|
76
|
+
}
|
77
|
+
.ui-body-a .ui-link {
|
78
|
+
color: #2489CE /*{a-body-link-color}*/;
|
79
|
+
font-weight: bold;
|
80
|
+
}
|
81
|
+
.ui-body-a .ui-link:hover {
|
82
|
+
color: #2489CE /*{a-body-link-hover}*/;
|
83
|
+
}
|
84
|
+
.ui-body-a .ui-link:active {
|
85
|
+
color: #2489CE /*{a-body-link-active}*/;
|
86
|
+
}
|
87
|
+
.ui-body-a .ui-link:visited {
|
88
|
+
color: #2489CE /*{a-body-link-visited}*/;
|
89
|
+
}
|
90
|
+
.ui-btn-up-a {
|
91
|
+
border: 1px solid #111 /*{a-bup-border}*/;
|
92
|
+
background: #333 /*{a-bup-background-color}*/;
|
93
|
+
font-weight: bold;
|
94
|
+
color: #fff /*{a-bup-color}*/;
|
95
|
+
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( #444444 /*{a-bup-background-start}*/), to( #2d2d2d /*{a-bup-background-end}*/)); /* Saf4+, Chrome */
|
97
|
+
background-image: -webkit-linear-gradient( #444444 /*{a-bup-background-start}*/, #2d2d2d /*{a-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
98
|
+
background-image: -moz-linear-gradient( #444444 /*{a-bup-background-start}*/, #2d2d2d /*{a-bup-background-end}*/); /* FF3.6 */
|
99
|
+
background-image: -ms-linear-gradient( #444444 /*{a-bup-background-start}*/, #2d2d2d /*{a-bup-background-end}*/); /* IE10 */
|
100
|
+
background-image: -o-linear-gradient( #444444 /*{a-bup-background-start}*/, #2d2d2d /*{a-bup-background-end}*/); /* Opera 11.10+ */
|
101
|
+
background-image: linear-gradient( #444444 /*{a-bup-background-start}*/, #2d2d2d /*{a-bup-background-end}*/);
|
102
|
+
}
|
103
|
+
.ui-btn-up-a a.ui-link-inherit {
|
104
|
+
color: #fff /*{a-bup-color}*/;
|
105
|
+
}
|
106
|
+
.ui-btn-hover-a {
|
107
|
+
border: 1px solid #000 /*{a-bhover-border}*/;
|
108
|
+
background: #444444 /*{a-bhover-background-color}*/;
|
109
|
+
font-weight: bold;
|
110
|
+
color: #fff /*{a-bhover-color}*/;
|
111
|
+
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( #555555 /*{a-bhover-background-start}*/), to( #383838 /*{a-bhover-background-end}*/)); /* Saf4+, Chrome */
|
113
|
+
background-image: -webkit-linear-gradient( #555555 /*{a-bhover-background-start}*/, #383838 /*{a-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
114
|
+
background-image: -moz-linear-gradient( #555555 /*{a-bhover-background-start}*/, #383838 /*{a-bhover-background-end}*/); /* FF3.6 */
|
115
|
+
background-image: -ms-linear-gradient( #555555 /*{a-bhover-background-start}*/, #383838 /*{a-bhover-background-end}*/); /* IE10 */
|
116
|
+
background-image: -o-linear-gradient( #555555 /*{a-bhover-background-start}*/, #383838 /*{a-bhover-background-end}*/); /* Opera 11.10+ */
|
117
|
+
background-image: linear-gradient( #555555 /*{a-bhover-background-start}*/, #383838 /*{a-bhover-background-end}*/);
|
118
|
+
}
|
119
|
+
.ui-btn-hover-a a.ui-link-inherit {
|
120
|
+
color: #fff /*{a-bhover-color}*/;
|
121
|
+
}
|
122
|
+
.ui-btn-down-a {
|
123
|
+
border: 1px solid #000 /*{a-bdown-border}*/;
|
124
|
+
background: #222 /*{a-bdown-background-color}*/;
|
125
|
+
font-weight: bold;
|
126
|
+
color: #fff /*{a-bdown-color}*/;
|
127
|
+
text-shadow: 0 /*{a-bdown-shadow-x}*/ 1px /*{a-bdown-shadow-y}*/ 1px /*{a-bdown-shadow-radius}*/ #111 /*{a-bdown-shadow-color}*/;
|
128
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #202020 /*{a-bdown-background-start}*/), to( #2c2c2c /*{a-bdown-background-end}*/)); /* Saf4+, Chrome */
|
129
|
+
background-image: -webkit-linear-gradient( #202020 /*{a-bdown-background-start}*/, #2c2c2c /*{a-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
130
|
+
background-image: -moz-linear-gradient( #202020 /*{a-bdown-background-start}*/, #2c2c2c /*{a-bdown-background-end}*/); /* FF3.6 */
|
131
|
+
background-image: -ms-linear-gradient( #202020 /*{a-bdown-background-start}*/, #2c2c2c /*{a-bdown-background-end}*/); /* IE10 */
|
132
|
+
background-image: -o-linear-gradient( #202020 /*{a-bdown-background-start}*/, #2c2c2c /*{a-bdown-background-end}*/); /* Opera 11.10+ */
|
133
|
+
background-image: linear-gradient( #202020 /*{a-bdown-background-start}*/, #2c2c2c /*{a-bdown-background-end}*/);
|
134
|
+
}
|
135
|
+
.ui-btn-down-a a.ui-link-inherit {
|
136
|
+
color: #fff /*{a-bdown-color}*/;
|
137
|
+
}
|
138
|
+
.ui-btn-up-a,
|
139
|
+
.ui-btn-hover-a,
|
140
|
+
.ui-btn-down-a {
|
141
|
+
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
142
|
+
text-decoration: none;
|
143
|
+
}
|
144
|
+
/* B
|
145
|
+
-----------------------------------------------------------------------------------------------------------*/
|
146
|
+
.ui-bar-b {
|
147
|
+
border: 1px solid #456f9a /*{b-bar-border}*/;
|
148
|
+
background: #5e87b0 /*{b-bar-background-color}*/;
|
149
|
+
color: #fff /*{b-bar-color}*/;
|
150
|
+
font-weight: bold;
|
151
|
+
text-shadow: 0 /*{b-bar-shadow-x}*/ 1px /*{b-bar-shadow-y}*/ 1px /*{b-bar-shadow-radius}*/ #3e6790 /*{b-bar-shadow-color}*/;
|
152
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #6facd5 /*{b-bar-background-start}*/), to( #497bae /*{b-bar-background-end}*/)); /* Saf4+, Chrome */
|
153
|
+
background-image: -webkit-linear-gradient( #6facd5 /*{b-bar-background-start}*/, #497bae /*{b-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
154
|
+
background-image: -moz-linear-gradient( #6facd5 /*{b-bar-background-start}*/, #497bae /*{b-bar-background-end}*/); /* FF3.6 */
|
155
|
+
background-image: -ms-linear-gradient( #6facd5 /*{b-bar-background-start}*/, #497bae /*{b-bar-background-end}*/); /* IE10 */
|
156
|
+
background-image: -o-linear-gradient( #6facd5 /*{b-bar-background-start}*/, #497bae /*{b-bar-background-end}*/); /* Opera 11.10+ */
|
157
|
+
background-image: linear-gradient( #6facd5 /*{b-bar-background-start}*/, #497bae /*{b-bar-background-end}*/);
|
158
|
+
}
|
159
|
+
.ui-bar-b,
|
160
|
+
.ui-bar-b input,
|
161
|
+
.ui-bar-b select,
|
162
|
+
.ui-bar-b textarea,
|
163
|
+
.ui-bar-b button {
|
164
|
+
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
165
|
+
}
|
166
|
+
.ui-bar-b .ui-link-inherit {
|
167
|
+
color: #fff /*{b-bar-color}*/;
|
168
|
+
}
|
169
|
+
.ui-bar-b .ui-link {
|
170
|
+
color: #ddf0f8 /*{b-bar-link-color}*/;
|
171
|
+
font-weight: bold;
|
172
|
+
}
|
173
|
+
.ui-bar-b .ui-link:hover {
|
174
|
+
color: #ddf0f8 /*{b-bar-link-hover}*/;
|
175
|
+
}
|
176
|
+
.ui-bar-b .ui-link:active {
|
177
|
+
color: #ddf0f8 /*{b-bar-link-active}*/;
|
178
|
+
}
|
179
|
+
.ui-bar-b .ui-link:visited {
|
180
|
+
color: #ddf0f8 /*{b-bar-link-visited}*/;
|
181
|
+
}
|
182
|
+
.ui-body-b,
|
183
|
+
.ui-overlay-b {
|
184
|
+
border: 1px solid #999 /*{b-body-border}*/;
|
185
|
+
background: #f3f3f3 /*{b-body-background-color}*/;
|
186
|
+
color: #222222 /*{b-body-color}*/;
|
187
|
+
text-shadow: 0 /*{b-body-shadow-x}*/ 1px /*{b-body-shadow-y}*/ 0 /*{b-body-shadow-radius}*/ #fff /*{b-body-shadow-color}*/;
|
188
|
+
font-weight: normal;
|
189
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #ddd /*{b-body-background-start}*/), to( #ccc /*{b-body-background-end}*/)); /* Saf4+, Chrome */
|
190
|
+
background-image: -webkit-linear-gradient( #ddd /*{b-body-background-start}*/, #ccc /*{b-body-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
191
|
+
background-image: -moz-linear-gradient( #ddd /*{b-body-background-start}*/, #ccc /*{b-body-background-end}*/); /* FF3.6 */
|
192
|
+
background-image: -ms-linear-gradient( #ddd /*{b-body-background-start}*/, #ccc /*{b-body-background-end}*/); /* IE10 */
|
193
|
+
background-image: -o-linear-gradient( #ddd /*{b-body-background-start}*/, #ccc /*{b-body-background-end}*/); /* Opera 11.10+ */
|
194
|
+
background-image: linear-gradient( #ddd /*{b-body-background-start}*/, #ccc /*{b-body-background-end}*/);
|
195
|
+
}
|
196
|
+
.ui-overlay-b {
|
197
|
+
background-image: none;
|
198
|
+
border-width: 0;
|
199
|
+
}
|
200
|
+
.ui-body-b,
|
201
|
+
.ui-body-b input,
|
202
|
+
.ui-body-b select,
|
203
|
+
.ui-body-b textarea,
|
204
|
+
.ui-body-b button {
|
205
|
+
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
206
|
+
}
|
207
|
+
.ui-body-b .ui-link-inherit {
|
208
|
+
color: #333333 /*{b-body-color}*/;
|
209
|
+
}
|
210
|
+
.ui-body-b .ui-link {
|
211
|
+
color: #2489CE /*{b-body-link-color}*/;
|
212
|
+
font-weight: bold;
|
213
|
+
}
|
214
|
+
.ui-body-b .ui-link:hover {
|
215
|
+
color: #2489CE /*{b-body-link-hover}*/;
|
216
|
+
}
|
217
|
+
.ui-body-b .ui-link:active {
|
218
|
+
color: #2489CE /*{b-body-link-active}*/;
|
219
|
+
}
|
220
|
+
.ui-body-b .ui-link:visited {
|
221
|
+
color: #2489CE /*{b-body-link-visited}*/;
|
222
|
+
}
|
223
|
+
.ui-btn-up-b {
|
224
|
+
border: 1px solid #044062 /*{b-bup-border}*/;
|
225
|
+
background: #396b9e /*{b-bup-background-color}*/;
|
226
|
+
font-weight: bold;
|
227
|
+
color: #fff /*{b-bup-color}*/;
|
228
|
+
text-shadow: 0 /*{b-bup-shadow-x}*/ 1px /*{b-bup-shadow-y}*/ 1px /*{b-bup-shadow-radius}*/ #194b7e /*{b-bup-shadow-color}*/;
|
229
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #5f9cc5 /*{b-bup-background-start}*/), to( #396b9e /*{b-bup-background-end}*/)); /* Saf4+, Chrome */
|
230
|
+
background-image: -webkit-linear-gradient( #5f9cc5 /*{b-bup-background-start}*/, #396b9e /*{b-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
231
|
+
background-image: -moz-linear-gradient( #5f9cc5 /*{b-bup-background-start}*/, #396b9e /*{b-bup-background-end}*/); /* FF3.6 */
|
232
|
+
background-image: -ms-linear-gradient( #5f9cc5 /*{b-bup-background-start}*/, #396b9e /*{b-bup-background-end}*/); /* IE10 */
|
233
|
+
background-image: -o-linear-gradient( #5f9cc5 /*{b-bup-background-start}*/, #396b9e /*{b-bup-background-end}*/); /* Opera 11.10+ */
|
234
|
+
background-image: linear-gradient( #5f9cc5 /*{b-bup-background-start}*/, #396b9e /*{b-bup-background-end}*/);
|
235
|
+
}
|
236
|
+
.ui-btn-up-b a.ui-link-inherit {
|
237
|
+
color: #fff /*{b-bup-color}*/;
|
238
|
+
}
|
239
|
+
.ui-btn-hover-b {
|
240
|
+
border: 1px solid #00415e /*{b-bhover-border}*/;
|
241
|
+
background: #4b88b6 /*{b-bhover-background-color}*/;
|
242
|
+
font-weight: bold;
|
243
|
+
color: #fff /*{b-bhover-color}*/;
|
244
|
+
text-shadow: 0 /*{b-bhover-shadow-x}*/ 1px /*{b-bhover-shadow-y}*/ 1px /*{b-bhover-shadow-radius}*/ #194b7e /*{b-bhover-shadow-color}*/;
|
245
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #6facd5 /*{b-bhover-background-start}*/), to( #4272a4 /*{b-bhover-background-end}*/)); /* Saf4+, Chrome */
|
246
|
+
background-image: -webkit-linear-gradient( #6facd5 /*{b-bhover-background-start}*/, #4272a4 /*{b-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
247
|
+
background-image: -moz-linear-gradient( #6facd5 /*{b-bhover-background-start}*/, #4272a4 /*{b-bhover-background-end}*/); /* FF3.6 */
|
248
|
+
background-image: -ms-linear-gradient( #6facd5 /*{b-bhover-background-start}*/, #4272a4 /*{b-bhover-background-end}*/); /* IE10 */
|
249
|
+
background-image: -o-linear-gradient( #6facd5 /*{b-bhover-background-start}*/, #4272a4 /*{b-bhover-background-end}*/); /* Opera 11.10+ */
|
250
|
+
background-image: linear-gradient( #6facd5 /*{b-bhover-background-start}*/, #4272a4 /*{b-bhover-background-end}*/);
|
251
|
+
}
|
252
|
+
.ui-btn-hover-b a.ui-link-inherit {
|
253
|
+
color: #fff /*{b-bhover-color}*/;
|
254
|
+
}
|
255
|
+
.ui-btn-down-b {
|
256
|
+
border: 1px solid #225377 /*{b-bdown-border}*/;
|
257
|
+
background: #4e89c5 /*{b-bdown-background-color}*/;
|
258
|
+
font-weight: bold;
|
259
|
+
color: #fff /*{b-bdown-color}*/;
|
260
|
+
text-shadow: 0 /*{b-bdown-shadow-x}*/ 1px /*{b-bdown-shadow-y}*/ 1px /*{b-bdown-shadow-radius}*/ #194b7e /*{b-bdown-shadow-color}*/;
|
261
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #295b8e /*{b-bdown-background-start}*/), to( #3e79b5 /*{b-bdown-background-end}*/)); /* Saf4+, Chrome */
|
262
|
+
background-image: -webkit-linear-gradient( #295b8e /*{b-bdown-background-start}*/, #3e79b5 /*{b-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
263
|
+
background-image: -moz-linear-gradient( #295b8e /*{b-bdown-background-start}*/, #3e79b5 /*{b-bdown-background-end}*/); /* FF3.6 */
|
264
|
+
background-image: -ms-linear-gradient( #295b8e /*{b-bdown-background-start}*/, #3e79b5 /*{b-bdown-background-end}*/); /* IE10 */
|
265
|
+
background-image: -o-linear-gradient( #295b8e /*{b-bdown-background-start}*/, #3e79b5 /*{b-bdown-background-end}*/); /* Opera 11.10+ */
|
266
|
+
background-image: linear-gradient( #295b8e /*{b-bdown-background-start}*/, #3e79b5 /*{b-bdown-background-end}*/);
|
267
|
+
}
|
268
|
+
.ui-btn-down-b a.ui-link-inherit {
|
269
|
+
color: #fff /*{b-bdown-color}*/;
|
270
|
+
}
|
271
|
+
.ui-btn-up-b,
|
272
|
+
.ui-btn-hover-b,
|
273
|
+
.ui-btn-down-b {
|
274
|
+
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
275
|
+
text-decoration: none;
|
276
|
+
}
|
277
|
+
/* C
|
278
|
+
-----------------------------------------------------------------------------------------------------------*/
|
279
|
+
.ui-bar-c {
|
280
|
+
border: 1px solid #B3B3B3 /*{c-bar-border}*/;
|
281
|
+
background: #eeeeee /*{c-bar-background-color}*/;
|
282
|
+
color: #3E3E3E /*{c-bar-color}*/;
|
283
|
+
font-weight: bold;
|
284
|
+
text-shadow: 0 /*{c-bar-shadow-x}*/ 1px /*{c-bar-shadow-y}*/ 1px /*{c-bar-shadow-radius}*/ #fff /*{c-bar-shadow-color}*/;
|
285
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #f0f0f0 /*{c-bar-background-start}*/), to( #ddd /*{c-bar-background-end}*/)); /* Saf4+, Chrome */
|
286
|
+
background-image: -webkit-linear-gradient( #f0f0f0 /*{c-bar-background-start}*/, #ddd /*{c-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
287
|
+
background-image: -moz-linear-gradient( #f0f0f0 /*{c-bar-background-start}*/, #ddd /*{c-bar-background-end}*/); /* FF3.6 */
|
288
|
+
background-image: -ms-linear-gradient( #f0f0f0 /*{c-bar-background-start}*/, #ddd /*{c-bar-background-end}*/); /* IE10 */
|
289
|
+
background-image: -o-linear-gradient( #f0f0f0 /*{c-bar-background-start}*/, #ddd /*{c-bar-background-end}*/); /* Opera 11.10+ */
|
290
|
+
background-image: linear-gradient( #f0f0f0 /*{c-bar-background-start}*/, #ddd /*{c-bar-background-end}*/);
|
291
|
+
}
|
292
|
+
.ui-bar-c .ui-link-inherit {
|
293
|
+
color: #3E3E3E /*{c-bar-color}*/;
|
294
|
+
}
|
295
|
+
.ui-bar-c .ui-link {
|
296
|
+
color: #7cc4e7 /*{c-bar-link-color}*/;
|
297
|
+
font-weight: bold;
|
298
|
+
}
|
299
|
+
.ui-bar-c .ui-link:hover {
|
300
|
+
color: #2489CE /*{c-bar-link-hover}*/;
|
301
|
+
}
|
302
|
+
.ui-bar-c .ui-link:active {
|
303
|
+
color: #2489CE /*{c-bar-link-active}*/;
|
304
|
+
}
|
305
|
+
.ui-bar-c .ui-link:visited {
|
306
|
+
color: #2489CE /*{c-bar-link-visited}*/;
|
307
|
+
}
|
308
|
+
.ui-bar-c,
|
309
|
+
.ui-bar-c input,
|
310
|
+
.ui-bar-c select,
|
311
|
+
.ui-bar-c textarea,
|
312
|
+
.ui-bar-c button {
|
313
|
+
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
314
|
+
}
|
315
|
+
.ui-body-c,
|
316
|
+
.ui-overlay-c {
|
317
|
+
border: 1px solid #aaa /*{c-body-border}*/;
|
318
|
+
color: #333333 /*{c-body-color}*/;
|
319
|
+
text-shadow: 0 /*{c-body-shadow-x}*/ 1px /*{c-body-shadow-y}*/ 0 /*{c-body-shadow-radius}*/ #fff /*{c-body-shadow-color}*/;
|
320
|
+
background: #f9f9f9 /*{c-body-background-color}*/;
|
321
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #f9f9f9 /*{c-body-background-start}*/), to( #eeeeee /*{c-body-background-end}*/)); /* Saf4+, Chrome */
|
322
|
+
background-image: -webkit-linear-gradient( #f9f9f9 /*{c-body-background-start}*/, #eeeeee /*{c-body-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
323
|
+
background-image: -moz-linear-gradient( #f9f9f9 /*{c-body-background-start}*/, #eeeeee /*{c-body-background-end}*/); /* FF3.6 */
|
324
|
+
background-image: -ms-linear-gradient( #f9f9f9 /*{c-body-background-start}*/, #eeeeee /*{c-body-background-end}*/); /* IE10 */
|
325
|
+
background-image: -o-linear-gradient( #f9f9f9 /*{c-body-background-start}*/, #eeeeee /*{c-body-background-end}*/); /* Opera 11.10+ */
|
326
|
+
background-image: linear-gradient( #f9f9f9 /*{c-body-background-start}*/, #eeeeee /*{c-body-background-end}*/);
|
327
|
+
}
|
328
|
+
.ui-overlay-c {
|
329
|
+
background-image: none;
|
330
|
+
border-width: 0;
|
331
|
+
}
|
332
|
+
.ui-body-c,
|
333
|
+
.ui-body-c input,
|
334
|
+
.ui-body-c select,
|
335
|
+
.ui-body-c textarea,
|
336
|
+
.ui-body-c button {
|
337
|
+
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
338
|
+
}
|
339
|
+
.ui-body-c .ui-link-inherit {
|
340
|
+
color: #333333 /*{c-body-color}*/;
|
341
|
+
}
|
342
|
+
.ui-body-c .ui-link {
|
343
|
+
color: #2489CE /*{c-body-link-color}*/;
|
344
|
+
font-weight: bold;
|
345
|
+
}
|
346
|
+
.ui-body-c .ui-link:hover {
|
347
|
+
color: #2489CE /*{c-body-link-hover}*/;
|
348
|
+
}
|
349
|
+
.ui-body-c .ui-link:active {
|
350
|
+
color: #2489CE /*{c-body-link-active}*/;
|
351
|
+
}
|
352
|
+
.ui-body-c .ui-link:visited {
|
353
|
+
color: #2489CE /*{c-body-link-visited}*/;
|
354
|
+
}
|
355
|
+
.ui-btn-up-c {
|
356
|
+
border: 1px solid #ccc /*{c-bup-border}*/;
|
357
|
+
background: #eee /*{c-bup-background-color}*/;
|
358
|
+
font-weight: bold;
|
359
|
+
color: #222 /*{c-bup-color}*/;
|
360
|
+
text-shadow: 0 /*{c-bup-shadow-x}*/ 1px /*{c-bup-shadow-y}*/ 0 /*{c-bup-shadow-radius}*/ #ffffff /*{c-bup-shadow-color}*/;
|
361
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #ffffff /*{c-bup-background-start}*/), to( #f1f1f1 /*{c-bup-background-end}*/)); /* Saf4+, Chrome */
|
362
|
+
background-image: -webkit-linear-gradient( #ffffff /*{c-bup-background-start}*/, #f1f1f1 /*{c-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
363
|
+
background-image: -moz-linear-gradient( #ffffff /*{c-bup-background-start}*/, #f1f1f1 /*{c-bup-background-end}*/); /* FF3.6 */
|
364
|
+
background-image: -ms-linear-gradient( #ffffff /*{c-bup-background-start}*/, #f1f1f1 /*{c-bup-background-end}*/); /* IE10 */
|
365
|
+
background-image: -o-linear-gradient( #ffffff /*{c-bup-background-start}*/, #f1f1f1 /*{c-bup-background-end}*/); /* Opera 11.10+ */
|
366
|
+
background-image: linear-gradient( #ffffff /*{c-bup-background-start}*/, #f1f1f1 /*{c-bup-background-end}*/);
|
367
|
+
}
|
368
|
+
.ui-btn-up-c a.ui-link-inherit {
|
369
|
+
color: #2F3E46 /*{c-bup-color}*/;
|
370
|
+
}
|
371
|
+
.ui-btn-hover-c {
|
372
|
+
border: 1px solid #bbb /*{c-bhover-border}*/;
|
373
|
+
background: #dfdfdf /*{c-bhover-background-color}*/;
|
374
|
+
font-weight: bold;
|
375
|
+
color: #222 /*{c-bhover-color}*/;
|
376
|
+
text-shadow: 0 /*{c-bhover-shadow-x}*/ 1px /*{c-bhover-shadow-y}*/ 0 /*{c-bhover-shadow-radius}*/ #ffffff /*{c-bhover-shadow-color}*/;
|
377
|
+
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( #f9f9f9 /*{c-bhover-background-start}*/, #e0e0e0 /*{c-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
379
|
+
background-image: -moz-linear-gradient( #f6f6f6 /*{c-bhover-background-start}*/, #e0e0e0 /*{c-bhover-background-end}*/); /* FF3.6 */
|
380
|
+
background-image: -ms-linear-gradient( #f6f6f6 /*{c-bhover-background-start}*/, #e0e0e0 /*{c-bhover-background-end}*/); /* IE10 */
|
381
|
+
background-image: -o-linear-gradient( #f6f6f6 /*{c-bhover-background-start}*/, #e0e0e0 /*{c-bhover-background-end}*/); /* Opera 11.10+ */
|
382
|
+
background-image: linear-gradient( #f6f6f6 /*{c-bhover-background-start}*/, #e0e0e0 /*{c-bhover-background-end}*/);
|
383
|
+
}
|
384
|
+
.ui-btn-hover-c a.ui-link-inherit {
|
385
|
+
color: #2F3E46 /*{c-bhover-color}*/;
|
386
|
+
}
|
387
|
+
.ui-btn-down-c {
|
388
|
+
border: 1px solid #bbb /*{c-bdown-border}*/;
|
389
|
+
background: #d6d6d6 /*{c-bdown-background-color}*/;
|
390
|
+
font-weight: bold;
|
391
|
+
color: #222 /*{c-bdown-color}*/;
|
392
|
+
text-shadow: 0 /*{c-bdown-shadow-x}*/ 1px /*{c-bdown-shadow-y}*/ 0 /*{c-bdown-shadow-radius}*/ #ffffff /*{c-bdown-shadow-color}*/;
|
393
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #d0d0d0 /*{c-bdown-background-start}*/), to( #dfdfdf /*{c-bdown-background-end}*/)); /* Saf4+, Chrome */
|
394
|
+
background-image: -webkit-linear-gradient( #d0d0d0 /*{c-bdown-background-start}*/, #dfdfdf /*{c-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
395
|
+
background-image: -moz-linear-gradient( #d0d0d0 /*{c-bdown-background-start}*/, #dfdfdf /*{c-bdown-background-end}*/); /* FF3.6 */
|
396
|
+
background-image: -ms-linear-gradient( #d0d0d0 /*{c-bdown-background-start}*/, #dfdfdf /*{c-bdown-background-end}*/); /* IE10 */
|
397
|
+
background-image: -o-linear-gradient( #d0d0d0 /*{c-bdown-background-start}*/, #dfdfdf /*{c-bdown-background-end}*/); /* Opera 11.10+ */
|
398
|
+
background-image: linear-gradient( #d0d0d0 /*{c-bdown-background-start}*/, #dfdfdf /*{c-bdown-background-end}*/);
|
399
|
+
}
|
400
|
+
.ui-btn-down-c a.ui-link-inherit {
|
401
|
+
color: #2F3E46 /*{c-bdown-color}*/;
|
402
|
+
}
|
403
|
+
.ui-btn-up-c,
|
404
|
+
.ui-btn-hover-c,
|
405
|
+
.ui-btn-down-c {
|
406
|
+
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
407
|
+
text-decoration: none;
|
408
|
+
}
|
409
|
+
/* D
|
410
|
+
-----------------------------------------------------------------------------------------------------------*/
|
411
|
+
.ui-bar-d {
|
412
|
+
border: 1px solid #bbb /*{d-bar-border}*/;
|
413
|
+
background: #bbb /*{d-bar-background-color}*/;
|
414
|
+
color: #333 /*{d-bar-color}*/;
|
415
|
+
text-shadow: 0 /*{d-bar-shadow-x}*/ 1px /*{d-bar-shadow-y}*/ 0 /*{d-bar-shadow-radius}*/ #eee /*{d-bar-shadow-color}*/;
|
416
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #ddd /*{d-bar-background-start}*/), to( #bbb /*{d-bar-background-end}*/)); /* Saf4+, Chrome */
|
417
|
+
background-image: -webkit-linear-gradient( #ddd /*{d-bar-background-start}*/, #bbb /*{d-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
418
|
+
background-image: -moz-linear-gradient( #ddd /*{d-bar-background-start}*/, #bbb /*{d-bar-background-end}*/); /* FF3.6 */
|
419
|
+
background-image: -ms-linear-gradient( #ddd /*{d-bar-background-start}*/, #bbb /*{d-bar-background-end}*/); /* IE10 */
|
420
|
+
background-image: -o-linear-gradient( #ddd /*{d-bar-background-start}*/, #bbb /*{d-bar-background-end}*/); /* Opera 11.10+ */
|
421
|
+
background-image: linear-gradient( #ddd /*{d-bar-background-start}*/, #bbb /*{d-bar-background-end}*/);
|
422
|
+
}
|
423
|
+
.ui-bar-d,
|
424
|
+
.ui-bar-d input,
|
425
|
+
.ui-bar-d select,
|
426
|
+
.ui-bar-d textarea,
|
427
|
+
.ui-bar-d button {
|
428
|
+
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
429
|
+
}
|
430
|
+
.ui-bar-d .ui-link-inherit {
|
431
|
+
color: #333333 /*{d-bar-color}*/;
|
432
|
+
}
|
433
|
+
.ui-bar-d .ui-link {
|
434
|
+
color: #2489CE /*{d-bar-link-color}*/;
|
435
|
+
font-weight: bold;
|
436
|
+
}
|
437
|
+
.ui-bar-d .ui-link:hover {
|
438
|
+
color: #2489CE /*{d-bar-link-hover}*/;
|
439
|
+
}
|
440
|
+
.ui-bar-d .ui-link:active {
|
441
|
+
color: #2489CE /*{d-bar-link-active}*/;
|
442
|
+
}
|
443
|
+
.ui-bar-d .ui-link:visited {
|
444
|
+
color: #2489CE /*{d-bar-link-visited}*/;
|
445
|
+
}
|
446
|
+
.ui-body-d,
|
447
|
+
.ui-overlay-d {
|
448
|
+
border: 1px solid #bbb /*{d-body-border}*/;
|
449
|
+
color: #333333 /*{d-body-color}*/;
|
450
|
+
text-shadow: 0 /*{d-body-shadow-x}*/ 1px /*{d-body-shadow-y}*/ 0 /*{d-body-shadow-radius}*/ #fff /*{d-body-shadow-color}*/;
|
451
|
+
background: #ffffff /*{d-body-background-color}*/;
|
452
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #fff), to( #fff /*{d-body-background-end}*/)); /* Saf4+, Chrome */
|
453
|
+
background-image: -webkit-linear-gradient( #fff /*{d-body-background-start}*/, #fff /*{d-body-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
454
|
+
background-image: -moz-linear-gradient( #fff /*{d-body-background-start}*/, #fff /*{d-body-background-end}*/); /* FF3.6 */
|
455
|
+
background-image: -ms-linear-gradient( #fff /*{d-body-background-start}*/, #fff /*{d-body-background-end}*/); /* IE10 */
|
456
|
+
background-image: -o-linear-gradient( #fff /*{d-body-background-start}*/, #fff /*{d-body-background-end}*/); /* Opera 11.10+ */
|
457
|
+
background-image: linear-gradient( #fff /*{d-body-background-start}*/, #fff /*{d-body-background-end}*/);
|
458
|
+
}
|
459
|
+
.ui-overlay-d {
|
460
|
+
background-image: none;
|
461
|
+
border-width: 0;
|
462
|
+
}
|
463
|
+
.ui-body-d,
|
464
|
+
.ui-body-d input,
|
465
|
+
.ui-body-d select,
|
466
|
+
.ui-body-d textarea,
|
467
|
+
.ui-body-d button {
|
468
|
+
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
469
|
+
}
|
470
|
+
.ui-body-d .ui-link-inherit {
|
471
|
+
color: #333333 /*{d-body-color}*/;
|
472
|
+
}
|
473
|
+
.ui-body-d .ui-link {
|
474
|
+
color: #2489CE /*{d-body-link-color}*/;
|
475
|
+
font-weight: bold;
|
476
|
+
}
|
477
|
+
.ui-body-d .ui-link:hover {
|
478
|
+
color: #2489CE /*{d-body-link-hover}*/;
|
479
|
+
}
|
480
|
+
.ui-body-d .ui-link:active {
|
481
|
+
color: #2489CE /*{d-body-link-active}*/;
|
482
|
+
}
|
483
|
+
.ui-body-d .ui-link:visited {
|
484
|
+
color: #2489CE /*{d-body-link-visited}*/;
|
485
|
+
}
|
486
|
+
.ui-btn-up-d {
|
487
|
+
border: 1px solid #bbb /*{d-bup-border}*/;
|
488
|
+
background: #fff /*{d-bup-background-color}*/;
|
489
|
+
font-weight: bold;
|
490
|
+
color: #333 /*{d-bup-color}*/;
|
491
|
+
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 */
|
493
|
+
background-image: -webkit-linear-gradient( #fafafa /*{d-bup-background-start}*/, #f6f6f6 /*{d-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
494
|
+
background-image: -moz-linear-gradient( #fafafa /*{d-bup-background-start}*/, #f6f6f6 /*{d-bup-background-end}*/); /* FF3.6 */
|
495
|
+
background-image: -ms-linear-gradient( #fafafa /*{d-bup-background-start}*/, #f6f6f6 /*{d-bup-background-end}*/); /* IE10 */
|
496
|
+
background-image: -o-linear-gradient( #fafafa /*{d-bup-background-start}*/, #f6f6f6 /*{d-bup-background-end}*/); /* Opera 11.10+ */
|
497
|
+
background-image: linear-gradient( #fafafa /*{d-bup-background-start}*/, #f6f6f6 /*{d-bup-background-end}*/);
|
498
|
+
}
|
499
|
+
.ui-btn-up-d a.ui-link-inherit {
|
500
|
+
color: #333 /*{d-bup-color}*/;
|
501
|
+
}
|
502
|
+
.ui-btn-hover-d {
|
503
|
+
border: 1px solid #aaa /*{d-bhover-border}*/;
|
504
|
+
background: #eeeeee /*{d-bhover-background-color}*/;
|
505
|
+
font-weight: bold;
|
506
|
+
color: #333 /*{d-bhover-color}*/;
|
507
|
+
cursor: pointer;
|
508
|
+
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 */
|
510
|
+
background-image: -webkit-linear-gradient( #eee /*{d-bhover-background-start}*/, #fff /*{d-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
511
|
+
background-image: -moz-linear-gradient( #eee /*{d-bhover-background-start}*/, #fff /*{d-bhover-background-end}*/); /* FF3.6 */
|
512
|
+
background-image: -ms-linear-gradient( #eee /*{d-bhover-background-start}*/, #fff /*{d-bhover-background-end}*/); /* IE10 */
|
513
|
+
background-image: -o-linear-gradient( #eee /*{d-bhover-background-start}*/, #fff /*{d-bhover-background-end}*/); /* Opera 11.10+ */
|
514
|
+
background-image: linear-gradient( #eee /*{d-bhover-background-start}*/, #fff /*{d-bhover-background-end}*/);
|
515
|
+
}
|
516
|
+
.ui-btn-hover-d a.ui-link-inherit {
|
517
|
+
color: #333 /*{d-bhover-color}*/;
|
518
|
+
}
|
519
|
+
.ui-btn-down-d {
|
520
|
+
border: 1px solid #aaa /*{d-bdown-border}*/;
|
521
|
+
background: #eee /*{d-bdown-background-color}*/;
|
522
|
+
font-weight: bold;
|
523
|
+
color: #333 /*{d-bdown-color}*/;
|
524
|
+
text-shadow: 0 /*{d-bdown-shadow-x}*/ 1px /*{d-bdown-shadow-y}*/ 0 /*{d-bdown-shadow-radius}*/ #ffffff /*{d-bdown-shadow-color}*/;
|
525
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #e5e5e5 /*{d-bdown-background-start}*/), to( #f2f2f2 /*{d-bdown-background-end}*/)); /* Saf4+, Chrome */
|
526
|
+
background-image: -webkit-linear-gradient( #e5e5e5 /*{d-bdown-background-start}*/, #f2f2f2 /*{d-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
527
|
+
background-image: -moz-linear-gradient( #e5e5e5 /*{d-bdown-background-start}*/, #f2f2f2 /*{d-bdown-background-end}*/); /* FF3.6 */
|
528
|
+
background-image: -ms-linear-gradient( #e5e5e5 /*{d-bdown-background-start}*/, #f2f2f2 /*{d-bdown-background-end}*/); /* IE10 */
|
529
|
+
background-image: -o-linear-gradient( #e5e5e5 /*{d-bdown-background-start}*/, #f2f2f2 /*{d-bdown-background-end}*/); /* Opera 11.10+ */
|
530
|
+
background-image: linear-gradient( #e5e5e5 /*{d-bdown-background-start}*/, #f2f2f2 /*{d-bdown-background-end}*/);
|
531
|
+
}
|
532
|
+
.ui-btn-down-d a.ui-link-inherit {
|
533
|
+
color: #333 /*{d-bdown-color}*/;
|
534
|
+
}
|
535
|
+
.ui-btn-up-d,
|
536
|
+
.ui-btn-hover-d,
|
537
|
+
.ui-btn-down-d {
|
538
|
+
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
539
|
+
text-decoration: none;
|
540
|
+
}
|
541
|
+
/* E
|
542
|
+
-----------------------------------------------------------------------------------------------------------*/
|
543
|
+
.ui-bar-e {
|
544
|
+
border: 1px solid #F7C942 /*{e-bar-border}*/;
|
545
|
+
background: #fadb4e /*{e-bar-background-color}*/;
|
546
|
+
color: #333 /*{e-bar-color}*/;
|
547
|
+
text-shadow: 0 /*{e-bar-shadow-x}*/ 1px /*{e-bar-shadow-y}*/ 0 /*{e-bar-shadow-radius}*/ #fff /*{e-bar-shadow-color}*/;
|
548
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #fceda7 /*{e-bar-background-start}*/), to( #fbef7e /*{e-bar-background-end}*/)); /* Saf4+, Chrome */
|
549
|
+
background-image: -webkit-linear-gradient( #fceda7 /*{e-bar-background-start}*/, #fbef7e /*{e-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
550
|
+
background-image: -moz-linear-gradient( #fceda7 /*{e-bar-background-start}*/, #fbef7e /*{e-bar-background-end}*/); /* FF3.6 */
|
551
|
+
background-image: -ms-linear-gradient( #fceda7 /*{e-bar-background-start}*/, #fbef7e /*{e-bar-background-end}*/); /* IE10 */
|
552
|
+
background-image: -o-linear-gradient( #fceda7 /*{e-bar-background-start}*/, #fbef7e /*{e-bar-background-end}*/); /* Opera 11.10+ */
|
553
|
+
background-image: linear-gradient( #fceda7 /*{e-bar-background-start}*/, #fbef7e /*{e-bar-background-end}*/);
|
554
|
+
}
|
555
|
+
.ui-bar-e,
|
556
|
+
.ui-bar-e input,
|
557
|
+
.ui-bar-e select,
|
558
|
+
.ui-bar-e textarea,
|
559
|
+
.ui-bar-e button {
|
560
|
+
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
561
|
+
}
|
562
|
+
.ui-bar-e .ui-link-inherit {
|
563
|
+
color: #333333 /*{e-bar-color}*/;
|
564
|
+
}
|
565
|
+
.ui-bar-e .ui-link {
|
566
|
+
color: #2489CE /*{e-bar-link-color}*/;
|
567
|
+
font-weight: bold;
|
568
|
+
}
|
569
|
+
.ui-bar-e .ui-link:hover {
|
570
|
+
color: #2489CE /*{e-bar-link-hover}*/;
|
571
|
+
}
|
572
|
+
.ui-bar-e .ui-link:active {
|
573
|
+
color: #2489CE /*{e-bar-link-active}*/;
|
574
|
+
}
|
575
|
+
.ui-bar-e .ui-link:visited {
|
576
|
+
color: #2489CE /*{e-bar-link-visited}*/;
|
577
|
+
}
|
578
|
+
.ui-body-e,
|
579
|
+
.ui-overlay-e {
|
580
|
+
border: 1px solid #F7C942 /*{e-body-border}*/;
|
581
|
+
color: #222222 /*{e-body-color}*/;
|
582
|
+
text-shadow: 0 /*{e-body-shadow-x}*/ 1px /*{e-body-shadow-y}*/ 0 /*{e-body-shadow-radius}*/ #fff /*{e-body-shadow-color}*/;
|
583
|
+
background: #fff9df /*{e-body-background-color}*/;
|
584
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #fffadf /*{e-body-background-start}*/), to( #fff3a5 /*{e-body-background-end}*/)); /* Saf4+, Chrome */
|
585
|
+
background-image: -webkit-linear-gradient( #fffadf /*{e-body-background-start}*/, #fff3a5 /*{e-body-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
586
|
+
background-image: -moz-linear-gradient( #fffadf /*{e-body-background-start}*/, #fff3a5 /*{e-body-background-end}*/); /* FF3.6 */
|
587
|
+
background-image: -ms-linear-gradient( #fffadf /*{e-body-background-start}*/, #fff3a5 /*{e-body-background-end}*/); /* IE10 */
|
588
|
+
background-image: -o-linear-gradient( #fffadf /*{e-body-background-start}*/, #fff3a5 /*{e-body-background-end}*/); /* Opera 11.10+ */
|
589
|
+
background-image: linear-gradient( #fffadf /*{e-body-background-start}*/, #fff3a5 /*{e-body-background-end}*/);
|
590
|
+
}
|
591
|
+
.ui-overlay-e {
|
592
|
+
background-image: none;
|
593
|
+
border-width: 0;
|
594
|
+
}
|
595
|
+
.ui-body-e,
|
596
|
+
.ui-body-e input,
|
597
|
+
.ui-body-e select,
|
598
|
+
.ui-body-e textarea,
|
599
|
+
.ui-body-e button {
|
600
|
+
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
601
|
+
}
|
602
|
+
.ui-body-e .ui-link-inherit {
|
603
|
+
color: #333333 /*{e-body-color}*/;
|
604
|
+
}
|
605
|
+
.ui-body-e .ui-link {
|
606
|
+
color: #2489CE /*{e-body-link-color}*/;
|
607
|
+
font-weight: bold;
|
608
|
+
}
|
609
|
+
.ui-body-e .ui-link:hover {
|
610
|
+
color: #2489CE /*{e-body-link-hover}*/;
|
611
|
+
}
|
612
|
+
.ui-body-e .ui-link:active {
|
613
|
+
color: #2489CE /*{e-body-link-active}*/;
|
614
|
+
}
|
615
|
+
.ui-body-e .ui-link:visited {
|
616
|
+
color: #2489CE /*{e-body-link-visited}*/;
|
617
|
+
}
|
618
|
+
.ui-btn-up-e {
|
619
|
+
border: 1px solid #F4C63f /*{e-bup-border}*/;
|
620
|
+
background: #fadb4e /*{e-bup-background-color}*/;
|
621
|
+
font-weight: bold;
|
622
|
+
color: #222 /*{e-bup-color}*/;
|
623
|
+
text-shadow: 0 /*{e-bup-shadow-x}*/ 1px /*{e-bup-shadow-y}*/ 0 /*{e-bup-shadow-radius}*/ #fff /*{e-bup-shadow-color}*/;
|
624
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #ffefaa /*{e-bup-background-start}*/), to( #ffe155 /*{e-bup-background-end}*/)); /* Saf4+, Chrome */
|
625
|
+
background-image: -webkit-linear-gradient( #ffefaa /*{e-bup-background-start}*/, #ffe155 /*{e-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
626
|
+
background-image: -moz-linear-gradient( #ffefaa /*{e-bup-background-start}*/, #ffe155 /*{e-bup-background-end}*/); /* FF3.6 */
|
627
|
+
background-image: -ms-linear-gradient( #ffefaa /*{e-bup-background-start}*/, #ffe155 /*{e-bup-background-end}*/); /* IE10 */
|
628
|
+
background-image: -o-linear-gradient( #ffefaa /*{e-bup-background-start}*/, #ffe155 /*{e-bup-background-end}*/); /* Opera 11.10+ */
|
629
|
+
background-image: linear-gradient( #ffefaa /*{e-bup-background-start}*/, #ffe155 /*{e-bup-background-end}*/);
|
630
|
+
}
|
631
|
+
.ui-btn-up-e a.ui-link-inherit {
|
632
|
+
color: #222 /*{e-bup-color}*/;
|
633
|
+
}
|
634
|
+
.ui-btn-hover-e {
|
635
|
+
border: 1px solid #F2C43d /*{e-bhover-border}*/;
|
636
|
+
background: #fbe26f /*{e-bhover-background-color}*/;
|
637
|
+
font-weight: bold;
|
638
|
+
color: #111 /*{e-bhover-color}*/;
|
639
|
+
text-shadow: 0 /*{e-bhover-shadow-x}*/ 1px /*{e-bhover-shadow-y}*/ 0 /*{e-bhover-shadow-radius}*/ #fff /*{e-bhover-shadow-color}*/;
|
640
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #fff5ba /*{e-bhover-background-start}*/), to( #fbdd52 /*{e-bhover-background-end}*/)); /* Saf4+, Chrome */
|
641
|
+
background-image: -webkit-linear-gradient( #fff5ba /*{e-bhover-background-start}*/, #fbdd52 /*{e-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
642
|
+
background-image: -moz-linear-gradient( #fff5ba /*{e-bhover-background-start}*/, #fbdd52 /*{e-bhover-background-end}*/); /* FF3.6 */
|
643
|
+
background-image: -ms-linear-gradient( #fff5ba /*{e-bhover-background-start}*/, #fbdd52 /*{e-bhover-background-end}*/); /* IE10 */
|
644
|
+
background-image: -o-linear-gradient( #fff5ba /*{e-bhover-background-start}*/, #fbdd52 /*{e-bhover-background-end}*/); /* Opera 11.10+ */
|
645
|
+
background-image: linear-gradient( #fff5ba /*{e-bhover-background-start}*/, #fbdd52 /*{e-bhover-background-end}*/);
|
646
|
+
}
|
647
|
+
.ui-btn-hover-e a.ui-link-inherit {
|
648
|
+
color: #333 /*{e-bhover-color}*/;
|
649
|
+
}
|
650
|
+
.ui-btn-down-e {
|
651
|
+
border: 1px solid #F2C43d /*{e-bdown-border}*/;
|
652
|
+
background: #fceda7 /*{e-bdown-background-color}*/;
|
653
|
+
font-weight: bold;
|
654
|
+
color: #111 /*{e-bdown-color}*/;
|
655
|
+
text-shadow: 0 /*{e-bdown-shadow-x}*/ 1px /*{e-bdown-shadow-y}*/ 0 /*{e-bdown-shadow-radius}*/ #ffffff /*{e-bdown-shadow-color}*/;
|
656
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #f8d94c /*{e-bdown-background-start}*/), to( #fadb4e /*{e-bdown-background-end}*/)); /* Saf4+, Chrome */
|
657
|
+
background-image: -webkit-linear-gradient( #f8d94c /*{e-bdown-background-start}*/, #fadb4e /*{e-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
658
|
+
background-image: -moz-linear-gradient( #f8d94c /*{e-bdown-background-start}*/, #fadb4e /*{e-bdown-background-end}*/); /* FF3.6 */
|
659
|
+
background-image: -ms-linear-gradient( #f8d94c /*{e-bdown-background-start}*/, #fadb4e /*{e-bdown-background-end}*/); /* IE10 */
|
660
|
+
background-image: -o-linear-gradient( #f8d94c /*{e-bdown-background-start}*/, #fadb4e /*{e-bdown-background-end}*/); /* Opera 11.10+ */
|
661
|
+
background-image: linear-gradient( #f8d94c /*{e-bdown-background-start}*/, #fadb4e /*{e-bdown-background-end}*/);
|
662
|
+
}
|
663
|
+
.ui-btn-down-e a.ui-link-inherit {
|
664
|
+
color: #333 /*{e-bdown-color}*/;
|
665
|
+
}
|
666
|
+
.ui-btn-up-e,
|
667
|
+
.ui-btn-hover-e,
|
668
|
+
.ui-btn-down-e {
|
669
|
+
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
670
|
+
text-decoration: none;
|
671
|
+
}
|
672
|
+
/* Structure */
|
673
|
+
/* links within "buttons"
|
674
|
+
-----------------------------------------------------------------------------------------------------------*/
|
675
|
+
a.ui-link-inherit {
|
676
|
+
text-decoration: none !important;
|
677
|
+
}
|
678
|
+
/* Active class used as the "on" state across all themes
|
679
|
+
-----------------------------------------------------------------------------------------------------------*/
|
680
|
+
.ui-btn-active {
|
681
|
+
border: 1px solid #2373a5 /*{global-active-border}*/;
|
682
|
+
background: #5393c5 /*{global-active-background-color}*/;
|
683
|
+
font-weight: bold;
|
684
|
+
color: #fff /*{global-active-color}*/;
|
685
|
+
cursor: pointer;
|
686
|
+
text-shadow: 0 /*{global-active-shadow-x}*/ 1px /*{global-active-shadow-y}*/ 1px /*{global-active-shadow-radius}*/ #3373a5 /*{global-active-shadow-color}*/;
|
687
|
+
text-decoration: none;
|
688
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #5393c5 /*{global-active-background-start}*/), to( #6facd5 /*{global-active-background-end}*/)); /* Saf4+, Chrome */
|
689
|
+
background-image: -webkit-linear-gradient( #5393c5 /*{global-active-background-start}*/, #6facd5 /*{global-active-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
690
|
+
background-image: -moz-linear-gradient( #5393c5 /*{global-active-background-start}*/, #6facd5 /*{global-active-background-end}*/); /* FF3.6 */
|
691
|
+
background-image: -ms-linear-gradient( #5393c5 /*{global-active-background-start}*/, #6facd5 /*{global-active-background-end}*/); /* IE10 */
|
692
|
+
background-image: -o-linear-gradient( #5393c5 /*{global-active-background-start}*/, #6facd5 /*{global-active-background-end}*/); /* Opera 11.10+ */
|
693
|
+
background-image: linear-gradient( #5393c5 /*{global-active-background-start}*/, #6facd5 /*{global-active-background-end}*/);
|
694
|
+
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
695
|
+
}
|
696
|
+
.ui-btn-active a.ui-link-inherit {
|
697
|
+
color: #fff /*{global-active-color}*/;
|
698
|
+
}
|
699
|
+
/* button inner top highlight
|
700
|
+
-----------------------------------------------------------------------------------------------------------*/
|
701
|
+
.ui-btn-inner {
|
702
|
+
border-top: 1px solid #fff;
|
703
|
+
border-color: rgba(255,255,255,.3);
|
704
|
+
}
|
705
|
+
/* corner rounding classes
|
706
|
+
-----------------------------------------------------------------------------------------------------------*/
|
707
|
+
.ui-corner-tl {
|
708
|
+
-moz-border-radius-topleft: .6em /*{global-radii-blocks}*/;
|
709
|
+
-webkit-border-top-left-radius: .6em /*{global-radii-blocks}*/;
|
710
|
+
border-top-left-radius: .6em /*{global-radii-blocks}*/;
|
711
|
+
}
|
712
|
+
.ui-corner-tr {
|
713
|
+
-moz-border-radius-topright: .6em /*{global-radii-blocks}*/;
|
714
|
+
-webkit-border-top-right-radius: .6em /*{global-radii-blocks}*/;
|
715
|
+
border-top-right-radius: .6em /*{global-radii-blocks}*/;
|
716
|
+
}
|
717
|
+
.ui-corner-bl {
|
718
|
+
-moz-border-radius-bottomleft: .6em /*{global-radii-blocks}*/;
|
719
|
+
-webkit-border-bottom-left-radius: .6em /*{global-radii-blocks}*/;
|
720
|
+
border-bottom-left-radius: .6em /*{global-radii-blocks}*/;
|
721
|
+
}
|
722
|
+
.ui-corner-br {
|
723
|
+
-moz-border-radius-bottomright: .6em /*{global-radii-blocks}*/;
|
724
|
+
-webkit-border-bottom-right-radius: .6em /*{global-radii-blocks}*/;
|
725
|
+
border-bottom-right-radius: .6em /*{global-radii-blocks}*/;
|
726
|
+
}
|
727
|
+
.ui-corner-top {
|
728
|
+
-moz-border-radius-topleft: .6em /*{global-radii-blocks}*/;
|
729
|
+
-webkit-border-top-left-radius: .6em /*{global-radii-blocks}*/;
|
730
|
+
border-top-left-radius: .6em /*{global-radii-blocks}*/;
|
731
|
+
-moz-border-radius-topright: .6em /*{global-radii-blocks}*/;
|
732
|
+
-webkit-border-top-right-radius: .6em /*{global-radii-blocks}*/;
|
733
|
+
border-top-right-radius: .6em /*{global-radii-blocks}*/;
|
734
|
+
}
|
735
|
+
.ui-corner-bottom {
|
736
|
+
-moz-border-radius-bottomleft: .6em /*{global-radii-blocks}*/;
|
737
|
+
-webkit-border-bottom-left-radius: .6em /*{global-radii-blocks}*/;
|
738
|
+
border-bottom-left-radius: .6em /*{global-radii-blocks}*/;
|
739
|
+
-moz-border-radius-bottomright: .6em /*{global-radii-blocks}*/;
|
740
|
+
-webkit-border-bottom-right-radius: .6em /*{global-radii-blocks}*/;
|
741
|
+
border-bottom-right-radius: .6em /*{global-radii-blocks}*/;
|
742
|
+
}
|
743
|
+
.ui-corner-right {
|
744
|
+
-moz-border-radius-topright: .6em /*{global-radii-blocks}*/;
|
745
|
+
-webkit-border-top-right-radius: .6em /*{global-radii-blocks}*/;
|
746
|
+
border-top-right-radius: .6em /*{global-radii-blocks}*/;
|
747
|
+
-moz-border-radius-bottomright: .6em /*{global-radii-blocks}*/;
|
748
|
+
-webkit-border-bottom-right-radius: .6em /*{global-radii-blocks}*/;
|
749
|
+
border-bottom-right-radius: .6em /*{global-radii-blocks}*/;
|
750
|
+
}
|
751
|
+
.ui-corner-left {
|
752
|
+
-moz-border-radius-topleft: .6em /*{global-radii-blocks}*/;
|
753
|
+
-webkit-border-top-left-radius: .6em /*{global-radii-blocks}*/;
|
754
|
+
border-top-left-radius: .6em /*{global-radii-blocks}*/;
|
755
|
+
-moz-border-radius-bottomleft: .6em /*{global-radii-blocks}*/;
|
756
|
+
-webkit-border-bottom-left-radius: .6em /*{global-radii-blocks}*/;
|
757
|
+
border-bottom-left-radius: .6em /*{global-radii-blocks}*/;
|
758
|
+
}
|
759
|
+
.ui-corner-all {
|
760
|
+
-moz-border-radius: .6em /*{global-radii-blocks}*/;
|
761
|
+
-webkit-border-radius: .6em /*{global-radii-blocks}*/;
|
762
|
+
border-radius: .6em /*{global-radii-blocks}*/;
|
763
|
+
}
|
764
|
+
.ui-corner-none {
|
765
|
+
-moz-border-radius: 0;
|
766
|
+
-webkit-border-radius: 0;
|
767
|
+
border-radius: 0;
|
768
|
+
}
|
769
|
+
/* Form field separator
|
770
|
+
-----------------------------------------------------------------------------------------------------------*/
|
771
|
+
.ui-br {
|
772
|
+
border-bottom: rgb(130,130,130);
|
773
|
+
border-bottom: rgba(130,130,130,.3);
|
774
|
+
border-bottom-width: 1px;
|
775
|
+
border-bottom-style: solid;
|
776
|
+
}
|
777
|
+
/* Interaction cues
|
778
|
+
-----------------------------------------------------------------------------------------------------------*/
|
779
|
+
.ui-disabled {
|
780
|
+
opacity: .3;
|
781
|
+
}
|
782
|
+
.ui-disabled,
|
783
|
+
.ui-disabled a {
|
784
|
+
cursor: default !important;
|
785
|
+
pointer-events: none;
|
786
|
+
}
|
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
|
+
/* Icons
|
793
|
+
-----------------------------------------------------------------------------------------------------------*/
|
794
|
+
.ui-icon,
|
795
|
+
.ui-icon-searchfield:after {
|
796
|
+
background: #666 /*{global-icon-color}*/;
|
797
|
+
background: rgba(0,0,0,.4) /*{global-icon-disc}*/;
|
798
|
+
background-image: url(<%= asset_path 'jquery_mobile/icons-18-white.png' %>) /*{global-icon-set}*/;
|
799
|
+
background-repeat: no-repeat;
|
800
|
+
-moz-border-radius: 9px;
|
801
|
+
-webkit-border-radius: 9px;
|
802
|
+
border-radius: 9px;
|
803
|
+
}
|
804
|
+
/* Alt icon color
|
805
|
+
-----------------------------------------------------------------------------------------------------------*/
|
806
|
+
.ui-icon-alt {
|
807
|
+
background: #fff;
|
808
|
+
background: rgba(255,255,255,.3);
|
809
|
+
background-image: url(<%= asset_path 'jquery_mobile/icons-18-black.png' %>);
|
810
|
+
background-repeat: no-repeat;
|
811
|
+
}
|
812
|
+
/* HD/"retina" sprite
|
813
|
+
-----------------------------------------------------------------------------------------------------------*/
|
814
|
+
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
|
815
|
+
only screen and (min--moz-device-pixel-ratio: 1.5),
|
816
|
+
only screen and (min-resolution: 240dpi) {
|
817
|
+
|
818
|
+
.ui-icon-plus, .ui-icon-minus, .ui-icon-delete, .ui-icon-arrow-r,
|
819
|
+
.ui-icon-arrow-l, .ui-icon-arrow-u, .ui-icon-arrow-d, .ui-icon-check,
|
820
|
+
.ui-icon-gear, .ui-icon-refresh, .ui-icon-forward, .ui-icon-back,
|
821
|
+
.ui-icon-grid, .ui-icon-star, .ui-icon-alert, .ui-icon-info, .ui-icon-home, .ui-icon-search, .ui-icon-searchfield:after,
|
822
|
+
.ui-icon-checkbox-off, .ui-icon-checkbox-on, .ui-icon-radio-off, .ui-icon-radio-on {
|
823
|
+
background-image: url(<%= asset_path 'jquery_mobile/icons-36-white.png' %>);
|
824
|
+
-moz-background-size: 776px 18px;
|
825
|
+
-o-background-size: 776px 18px;
|
826
|
+
-webkit-background-size: 776px 18px;
|
827
|
+
background-size: 776px 18px;
|
828
|
+
}
|
829
|
+
.ui-icon-alt {
|
830
|
+
background-image: url(<%= asset_path 'jquery_mobile/icons-36-black.png' %>);
|
831
|
+
}
|
832
|
+
}
|
833
|
+
/* plus minus */
|
834
|
+
.ui-icon-plus {
|
835
|
+
background-position: -0 50%;
|
836
|
+
}
|
837
|
+
.ui-icon-minus {
|
838
|
+
background-position: -36px 50%;
|
839
|
+
}
|
840
|
+
/* delete/close */
|
841
|
+
.ui-icon-delete {
|
842
|
+
background-position: -72px 50%;
|
843
|
+
}
|
844
|
+
/* arrows */
|
845
|
+
.ui-icon-arrow-r {
|
846
|
+
background-position: -108px 50%;
|
847
|
+
}
|
848
|
+
.ui-icon-arrow-l {
|
849
|
+
background-position: -144px 50%;
|
850
|
+
}
|
851
|
+
.ui-icon-arrow-u {
|
852
|
+
background-position: -180px 50%;
|
853
|
+
}
|
854
|
+
.ui-icon-arrow-d {
|
855
|
+
background-position: -216px 50%;
|
856
|
+
}
|
857
|
+
/* misc */
|
858
|
+
.ui-icon-check {
|
859
|
+
background-position: -252px 50%;
|
860
|
+
}
|
861
|
+
.ui-icon-gear {
|
862
|
+
background-position: -288px 50%;
|
863
|
+
}
|
864
|
+
.ui-icon-refresh {
|
865
|
+
background-position: -324px 50%;
|
866
|
+
}
|
867
|
+
.ui-icon-forward {
|
868
|
+
background-position: -360px 50%;
|
869
|
+
}
|
870
|
+
.ui-icon-back {
|
871
|
+
background-position: -396px 50%;
|
872
|
+
}
|
873
|
+
.ui-icon-grid {
|
874
|
+
background-position: -432px 50%;
|
875
|
+
}
|
876
|
+
.ui-icon-star {
|
877
|
+
background-position: -468px 50%;
|
878
|
+
}
|
879
|
+
.ui-icon-alert {
|
880
|
+
background-position: -504px 50%;
|
881
|
+
}
|
882
|
+
.ui-icon-info {
|
883
|
+
background-position: -540px 50%;
|
884
|
+
}
|
885
|
+
.ui-icon-home {
|
886
|
+
background-position: -576px 50%;
|
887
|
+
}
|
888
|
+
.ui-icon-search,
|
889
|
+
.ui-icon-searchfield:after {
|
890
|
+
background-position: -612px 50%;
|
891
|
+
}
|
892
|
+
.ui-icon-checkbox-off {
|
893
|
+
background-position: -684px 50%;
|
894
|
+
}
|
895
|
+
.ui-icon-checkbox-on {
|
896
|
+
background-position: -648px 50%;
|
897
|
+
}
|
898
|
+
.ui-icon-radio-off {
|
899
|
+
background-position: -756px 50%;
|
900
|
+
}
|
901
|
+
.ui-icon-radio-on {
|
902
|
+
background-position: -720px 50%;
|
903
|
+
}
|
904
|
+
/* checks,radios */
|
905
|
+
.ui-checkbox .ui-icon {
|
906
|
+
-moz-border-radius: 3px;
|
907
|
+
-webkit-border-radius: 3px;
|
908
|
+
border-radius: 3px;
|
909
|
+
}
|
910
|
+
.ui-icon-checkbox-off,
|
911
|
+
.ui-icon-radio-off {
|
912
|
+
background-color: transparent;
|
913
|
+
}
|
914
|
+
.ui-checkbox-on .ui-icon,
|
915
|
+
.ui-radio-on .ui-icon {
|
916
|
+
background-color: #4596ce /*{global-active-background-color}*/; /* NOTE: this hex should match the active state color. It's repeated here for cascade */
|
917
|
+
}
|
918
|
+
/* loading icon */
|
919
|
+
.ui-icon-loading {
|
920
|
+
background: url(<%= asset_path 'jquery_mobile/ajax-loader.gif' %>);
|
921
|
+
background-size: 46px 46px;
|
922
|
+
}
|
923
|
+
/* Button corner classes
|
924
|
+
-----------------------------------------------------------------------------------------------------------*/
|
925
|
+
.ui-btn-corner-tl {
|
926
|
+
-moz-border-radius-topleft: 1em /*{global-radii-buttons}*/;
|
927
|
+
-webkit-border-top-left-radius: 1em /*{global-radii-buttons}*/;
|
928
|
+
border-top-left-radius: 1em /*{global-radii-buttons}*/;
|
929
|
+
}
|
930
|
+
.ui-btn-corner-tr {
|
931
|
+
-moz-border-radius-topright: 1em /*{global-radii-buttons}*/;
|
932
|
+
-webkit-border-top-right-radius: 1em /*{global-radii-buttons}*/;
|
933
|
+
border-top-right-radius: 1em /*{global-radii-buttons}*/;
|
934
|
+
}
|
935
|
+
.ui-btn-corner-bl {
|
936
|
+
-moz-border-radius-bottomleft: 1em /*{global-radii-buttons}*/;
|
937
|
+
-webkit-border-bottom-left-radius: 1em /*{global-radii-buttons}*/;
|
938
|
+
border-bottom-left-radius: 1em /*{global-radii-buttons}*/;
|
939
|
+
}
|
940
|
+
.ui-btn-corner-br {
|
941
|
+
-moz-border-radius-bottomright: 1em /*{global-radii-buttons}*/;
|
942
|
+
-webkit-border-bottom-right-radius: 1em /*{global-radii-buttons}*/;
|
943
|
+
border-bottom-right-radius: 1em /*{global-radii-buttons}*/;
|
944
|
+
}
|
945
|
+
.ui-btn-corner-top {
|
946
|
+
-moz-border-radius-topleft: 1em /*{global-radii-buttons}*/;
|
947
|
+
-webkit-border-top-left-radius: 1em /*{global-radii-buttons}*/;
|
948
|
+
border-top-left-radius: 1em /*{global-radii-buttons}*/;
|
949
|
+
-moz-border-radius-topright: 1em /*{global-radii-buttons}*/;
|
950
|
+
-webkit-border-top-right-radius: 1em /*{global-radii-buttons}*/;
|
951
|
+
border-top-right-radius: 1em /*{global-radii-buttons}*/;
|
952
|
+
}
|
953
|
+
.ui-btn-corner-bottom {
|
954
|
+
-moz-border-radius-bottomleft: 1em /*{global-radii-buttons}*/;
|
955
|
+
-webkit-border-bottom-left-radius: 1em /*{global-radii-buttons}*/;
|
956
|
+
border-bottom-left-radius: 1em /*{global-radii-buttons}*/;
|
957
|
+
-moz-border-radius-bottomright: 1em /*{global-radii-buttons}*/;
|
958
|
+
-webkit-border-bottom-right-radius: 1em /*{global-radii-buttons}*/;
|
959
|
+
border-bottom-right-radius: 1em /*{global-radii-buttons}*/;
|
960
|
+
}
|
961
|
+
.ui-btn-corner-right {
|
962
|
+
-moz-border-radius-topright: 1em /*{global-radii-buttons}*/;
|
963
|
+
-webkit-border-top-right-radius: 1em /*{global-radii-buttons}*/;
|
964
|
+
border-top-right-radius: 1em /*{global-radii-buttons}*/;
|
965
|
+
-moz-border-radius-bottomright: 1em /*{global-radii-buttons}*/;
|
966
|
+
-webkit-border-bottom-right-radius: 1em /*{global-radii-buttons}*/;
|
967
|
+
border-bottom-right-radius: 1em /*{global-radii-buttons}*/;
|
968
|
+
}
|
969
|
+
.ui-btn-corner-left {
|
970
|
+
-moz-border-radius-topleft: 1em /*{global-radii-buttons}*/;
|
971
|
+
-webkit-border-top-left-radius: 1em /*{global-radii-buttons}*/;
|
972
|
+
border-top-left-radius: 1em /*{global-radii-buttons}*/;
|
973
|
+
-moz-border-radius-bottomleft: 1em /*{global-radii-buttons}*/;
|
974
|
+
-webkit-border-bottom-left-radius: 1em /*{global-radii-buttons}*/;
|
975
|
+
border-bottom-left-radius: 1em /*{global-radii-buttons}*/;
|
976
|
+
}
|
977
|
+
.ui-btn-corner-all {
|
978
|
+
-moz-border-radius: 1em /*{global-radii-buttons}*/;
|
979
|
+
-webkit-border-radius: 1em /*{global-radii-buttons}*/;
|
980
|
+
border-radius: 1em /*{global-radii-buttons}*/;
|
981
|
+
}
|
982
|
+
/* radius clip workaround for cleaning up corner trapping */
|
983
|
+
.ui-corner-tl,
|
984
|
+
.ui-corner-tr,
|
985
|
+
.ui-corner-bl,
|
986
|
+
.ui-corner-br,
|
987
|
+
.ui-corner-top,
|
988
|
+
.ui-corner-bottom,
|
989
|
+
.ui-corner-right,
|
990
|
+
.ui-corner-left,
|
991
|
+
.ui-corner-all,
|
992
|
+
.ui-btn-corner-tl,
|
993
|
+
.ui-btn-corner-tr,
|
994
|
+
.ui-btn-corner-bl,
|
995
|
+
.ui-btn-corner-br,
|
996
|
+
.ui-btn-corner-top,
|
997
|
+
.ui-btn-corner-bottom,
|
998
|
+
.ui-btn-corner-right,
|
999
|
+
.ui-btn-corner-left,
|
1000
|
+
.ui-btn-corner-all {
|
1001
|
+
-webkit-background-clip: padding-box;
|
1002
|
+
-moz-background-clip: padding;
|
1003
|
+
background-clip: padding-box;
|
1004
|
+
}
|
1005
|
+
/* Overlay / modal
|
1006
|
+
-----------------------------------------------------------------------------------------------------------*/
|
1007
|
+
.ui-overlay {
|
1008
|
+
background: #666;
|
1009
|
+
opacity: .5;
|
1010
|
+
filter: Alpha(Opacity=50);
|
1011
|
+
position: absolute;
|
1012
|
+
width: 100%;
|
1013
|
+
height: 100%;
|
1014
|
+
}
|
1015
|
+
.ui-overlay-shadow {
|
1016
|
+
-moz-box-shadow: 0px 0px 12px rgba(0,0,0,.6);
|
1017
|
+
-webkit-box-shadow: 0px 0px 12px rgba(0,0,0,.6);
|
1018
|
+
box-shadow: 0px 0px 12px rgba(0,0,0,.6);
|
1019
|
+
}
|
1020
|
+
.ui-shadow {
|
1021
|
+
-moz-box-shadow: 0px 1px 4px /*{global-box-shadow-size}*/ rgba(0,0,0,.3) /*{global-box-shadow-color}*/;
|
1022
|
+
-webkit-box-shadow: 0px 1px 4px /*{global-box-shadow-size}*/ rgba(0,0,0,.3) /*{global-box-shadow-color}*/;
|
1023
|
+
box-shadow: 0px 1px 4px /*{global-box-shadow-size}*/ rgba(0,0,0,.3) /*{global-box-shadow-color}*/;
|
1024
|
+
}
|
1025
|
+
.ui-bar-a .ui-shadow,
|
1026
|
+
.ui-bar-b .ui-shadow ,
|
1027
|
+
.ui-bar-c .ui-shadow {
|
1028
|
+
-moz-box-shadow: 0px 1px 0 rgba(255,255,255,.3);
|
1029
|
+
-webkit-box-shadow: 0px 1px 0 rgba(255,255,255,.3);
|
1030
|
+
box-shadow: 0px 1px 0 rgba(255,255,255,.3);
|
1031
|
+
}
|
1032
|
+
.ui-shadow-inset {
|
1033
|
+
-moz-box-shadow: inset 0px 1px 4px rgba(0,0,0,.2);
|
1034
|
+
-webkit-box-shadow: inset 0px 1px 4px rgba(0,0,0,.2);
|
1035
|
+
box-shadow: inset 0px 1px 4px rgba(0,0,0,.2);
|
1036
|
+
}
|
1037
|
+
.ui-icon-shadow {
|
1038
|
+
-moz-box-shadow: 0px 1px 0 rgba(255,255,255,.4) /*{global-icon-shadow}*/;
|
1039
|
+
-webkit-box-shadow: 0px 1px 0 rgba(255,255,255,.4) /*{global-icon-shadow}*/;
|
1040
|
+
box-shadow: 0px 1px 0 rgba(255,255,255,.4) /*{global-icon-shadow}*/;
|
1041
|
+
}
|
1042
|
+
/* Focus state - set here for specificity (note: these classes are added by JavaScript)
|
1043
|
+
-----------------------------------------------------------------------------------------------------------*/
|
1044
|
+
.ui-btn:focus {
|
1045
|
+
outline: 0;
|
1046
|
+
}
|
1047
|
+
.ui-focus,
|
1048
|
+
.ui-btn:focus {
|
1049
|
+
-moz-box-shadow: 0px 0px 12px #387bbe /*{global-active-background-color}*/;
|
1050
|
+
-webkit-box-shadow: 0px 0px 12px #387bbe /*{global-active-background-color}*/;
|
1051
|
+
box-shadow: 0px 0px 12px #387bbe /*{global-active-background-color}*/;
|
1052
|
+
}
|
1053
|
+
/* unset box shadow in browsers that don't do it right
|
1054
|
+
-----------------------------------------------------------------------------------------------------------*/
|
1055
|
+
.ui-mobile-nosupport-boxshadow * {
|
1056
|
+
-moz-box-shadow: none !important;
|
1057
|
+
-webkit-box-shadow: none !important;
|
1058
|
+
box-shadow: none !important;
|
1059
|
+
}
|
1060
|
+
/* ...and bring back focus */
|
1061
|
+
.ui-mobile-nosupport-boxshadow .ui-focus,
|
1062
|
+
.ui-mobile-nosupport-boxshadow .ui-btn:focus {
|
1063
|
+
outline-width: 1px;
|
1064
|
+
outline-style: dotted;
|
1065
|
+
}
|
1066
|
+
/* some unsets - more probably needed */
|
1067
|
+
.ui-mobile, .ui-mobile body { height: 99.9%; }
|
1068
|
+
.ui-mobile fieldset, .ui-page { padding: 0; margin: 0; }
|
1069
|
+
.ui-mobile a img, .ui-mobile fieldset { border-width: 0; }
|
1070
|
+
/* responsive page widths */
|
1071
|
+
.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); }
|
1072
|
+
/* Issue #2066 */
|
1073
|
+
body.ui-mobile-viewport,
|
1074
|
+
div.ui-mobile-viewport { overflow-x: hidden; }
|
1075
|
+
/* "page" containers - full-screen views, one should always be in view post-pageload */
|
1076
|
+
.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; }
|
1077
|
+
.ui-mobile .ui-page-active { display: block; overflow: visible; }
|
1078
|
+
/* on ios4, setting focus on the page element causes flashing during transitions when there is an outline, so we turn off outlines */
|
1079
|
+
.ui-page { outline: none; }
|
1080
|
+
/*orientations from js are available */
|
1081
|
+
@media screen and (orientation: portrait){
|
1082
|
+
.ui-mobile, .ui-mobile .ui-page { min-height: 420px; }
|
1083
|
+
}
|
1084
|
+
@media screen and (orientation: landscape){
|
1085
|
+
.ui-mobile, .ui-mobile .ui-page { min-height: 300px; }
|
1086
|
+
}
|
1087
|
+
/* loading screen */
|
1088
|
+
.ui-loading .ui-loader { display: block; }
|
1089
|
+
.ui-loader { display: none; z-index: 9999999; position: fixed; top: 50%; box-shadow: 0 1px 1px -1px #fff; left: 50%; border:0; }
|
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; }
|
1092
|
+
.ui-loader-default h1 { font-size: 0; width: 0; height: 0; overflow: hidden; }
|
1093
|
+
.ui-loader-verbose h1 { font-size: 16px; margin: 0; text-align: center; }
|
1094
|
+
.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; }
|
1097
|
+
.ui-loader-textonly .ui-icon { display: none; }
|
1098
|
+
.ui-loader-fakefix { position: absolute; }
|
1099
|
+
/*fouc*/
|
1100
|
+
.ui-mobile-rendering > * { visibility: hidden; }
|
1101
|
+
/*headers, content panels*/
|
1102
|
+
.ui-bar, .ui-body { position: relative; padding: .4em 15px; overflow: hidden; display: block; clear:both; }
|
1103
|
+
.ui-bar { font-size: 16px; margin: 0; }
|
1104
|
+
.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; }
|
1106
|
+
.ui-header .ui-btn-left,
|
1107
|
+
.ui-header .ui-btn-right,
|
1108
|
+
.ui-footer .ui-btn-left,
|
1109
|
+
.ui-footer .ui-btn-right { position: absolute; top: 3px; }
|
1110
|
+
.ui-header .ui-btn-left,
|
1111
|
+
.ui-footer .ui-btn-left { left: 5px; }
|
1112
|
+
.ui-header .ui-btn-right,
|
1113
|
+
.ui-footer .ui-btn-right { right: 5px; }
|
1114
|
+
.ui-footer .ui-btn-icon-notext,
|
1115
|
+
.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; padding: 0; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; outline: 0 !important; }
|
1117
|
+
.ui-footer .ui-title { margin: .6em 15px .8em; }
|
1118
|
+
/*content area*/
|
1119
|
+
.ui-content { border-width: 0; overflow: visible; overflow-x: hidden; padding: 15px; }
|
1120
|
+
/* icons sizing */
|
1121
|
+
.ui-icon { width: 18px; height: 18px; }
|
1122
|
+
/* non-js content hiding */
|
1123
|
+
.ui-nojs { position: absolute; left: -9999px; }
|
1124
|
+
/* accessible content hiding */
|
1125
|
+
.ui-hide-label label,
|
1126
|
+
.ui-hidden-accessible { position: absolute !important; left: -9999px; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
|
1127
|
+
/* Transitions originally inspired by those from jQtouch, nice work, folks */
|
1128
|
+
.ui-mobile-viewport-transitioning,
|
1129
|
+
.ui-mobile-viewport-transitioning .ui-page {
|
1130
|
+
width: 100%;
|
1131
|
+
height: 100%;
|
1132
|
+
overflow: hidden;
|
1133
|
+
}
|
1134
|
+
.in {
|
1135
|
+
-webkit-animation-timing-function: ease-out;
|
1136
|
+
-webkit-animation-duration: 350ms;
|
1137
|
+
-moz-animation-timing-function: ease-out;
|
1138
|
+
-moz-animation-duration: 350ms;
|
1139
|
+
}
|
1140
|
+
.out {
|
1141
|
+
-webkit-animation-timing-function: ease-in;
|
1142
|
+
-webkit-animation-duration: 225ms;
|
1143
|
+
-moz-animation-timing-function: ease-in;
|
1144
|
+
-moz-animation-duration: 225;
|
1145
|
+
}
|
1146
|
+
@-webkit-keyframes fadein {
|
1147
|
+
from { opacity: 0; }
|
1148
|
+
to { opacity: 1; }
|
1149
|
+
}
|
1150
|
+
@-moz-keyframes fadein {
|
1151
|
+
from { opacity: 0; }
|
1152
|
+
to { opacity: 1; }
|
1153
|
+
}
|
1154
|
+
@-webkit-keyframes fadeout {
|
1155
|
+
from { opacity: 1; }
|
1156
|
+
to { opacity: 0; }
|
1157
|
+
}
|
1158
|
+
@-moz-keyframes fadeout {
|
1159
|
+
from { opacity: 1; }
|
1160
|
+
to { opacity: 0; }
|
1161
|
+
}
|
1162
|
+
.fade.out {
|
1163
|
+
opacity: 0;
|
1164
|
+
-webkit-animation-duration: 125ms;
|
1165
|
+
-webkit-animation-name: fadeout;
|
1166
|
+
-moz-animation-duration: 125ms;
|
1167
|
+
-moz-animation-name: fadeout;
|
1168
|
+
}
|
1169
|
+
.fade.in {
|
1170
|
+
opacity: 1;
|
1171
|
+
-webkit-animation-duration: 225ms;
|
1172
|
+
-webkit-animation-name: fadein;
|
1173
|
+
-moz-animation-duration: 225ms;
|
1174
|
+
-moz-animation-name: fadein;
|
1175
|
+
}
|
1176
|
+
.pop {
|
1177
|
+
-webkit-transform-origin: 50% 50%;
|
1178
|
+
-moz-transform-origin: 50% 50%;
|
1179
|
+
}
|
1180
|
+
.pop.in {
|
1181
|
+
-webkit-transform: scale(1);
|
1182
|
+
-moz-transform: scale(1);
|
1183
|
+
opacity: 1;
|
1184
|
+
-webkit-animation-name: popin;
|
1185
|
+
-moz-animation-name: popin;
|
1186
|
+
-webkit-animation-duration: 350ms;
|
1187
|
+
-moz-animation-duration: 350ms;
|
1188
|
+
}
|
1189
|
+
.pop.out {
|
1190
|
+
-webkit-animation-name: fadeout;
|
1191
|
+
-moz-animation-name: fadeout;
|
1192
|
+
opacity: 0;
|
1193
|
+
-webkit-animation-duration: 100ms;
|
1194
|
+
-moz-animation-duration: 100ms;
|
1195
|
+
}
|
1196
|
+
.pop.in.reverse {
|
1197
|
+
-webkit-animation-name: fadein;
|
1198
|
+
-moz-animation-name: fadein;
|
1199
|
+
}
|
1200
|
+
.pop.out.reverse {
|
1201
|
+
-webkit-transform: scale(.8);
|
1202
|
+
-moz-transform: scale(.8);
|
1203
|
+
-webkit-animation-name: popout;
|
1204
|
+
-moz-animation-name: popout;
|
1205
|
+
}
|
1206
|
+
@-webkit-keyframes popin {
|
1207
|
+
from {
|
1208
|
+
-webkit-transform: scale(.8);
|
1209
|
+
opacity: 0;
|
1210
|
+
}
|
1211
|
+
to {
|
1212
|
+
-webkit-transform: scale(1);
|
1213
|
+
opacity: 1;
|
1214
|
+
}
|
1215
|
+
}
|
1216
|
+
@-moz-keyframes popin {
|
1217
|
+
from {
|
1218
|
+
-moz-transform: scale(.8);
|
1219
|
+
opacity: 0;
|
1220
|
+
}
|
1221
|
+
to {
|
1222
|
+
-moz-transform: scale(1);
|
1223
|
+
opacity: 1;
|
1224
|
+
}
|
1225
|
+
}
|
1226
|
+
@-webkit-keyframes popout {
|
1227
|
+
from {
|
1228
|
+
-webkit-transform: scale(1);
|
1229
|
+
opacity: 1;
|
1230
|
+
}
|
1231
|
+
to {
|
1232
|
+
-webkit-transform: scale(.8);
|
1233
|
+
opacity: 0;
|
1234
|
+
}
|
1235
|
+
}
|
1236
|
+
@-moz-keyframes popout {
|
1237
|
+
from {
|
1238
|
+
-moz-transform: scale(1);
|
1239
|
+
opacity: 1;
|
1240
|
+
}
|
1241
|
+
to {
|
1242
|
+
-moz-transform: scale(.8);
|
1243
|
+
opacity: 0;
|
1244
|
+
}
|
1245
|
+
}
|
1246
|
+
/* keyframes for slidein from sides */
|
1247
|
+
@-webkit-keyframes slideinfromright {
|
1248
|
+
from { -webkit-transform: translateX(100%); }
|
1249
|
+
to { -webkit-transform: translateX(0); }
|
1250
|
+
}
|
1251
|
+
@-moz-keyframes slideinfromright {
|
1252
|
+
from { -moz-transform: translateX(100%); }
|
1253
|
+
to { -moz-transform: translateX(0); }
|
1254
|
+
}
|
1255
|
+
@-webkit-keyframes slideinfromleft {
|
1256
|
+
from { -webkit-transform: translateX(-100%); }
|
1257
|
+
to { -webkit-transform: translateX(0); }
|
1258
|
+
}
|
1259
|
+
@-moz-keyframes slideinfromleft {
|
1260
|
+
from { -moz-transform: translateX(-100%); }
|
1261
|
+
to { -moz-transform: translateX(0); }
|
1262
|
+
}
|
1263
|
+
/* keyframes for slideout to sides */
|
1264
|
+
@-webkit-keyframes slideouttoleft {
|
1265
|
+
from { -webkit-transform: translateX(0); }
|
1266
|
+
to { -webkit-transform: translateX(-100%); }
|
1267
|
+
}
|
1268
|
+
@-moz-keyframes slideouttoleft {
|
1269
|
+
from { -moz-transform: translateX(0); }
|
1270
|
+
to { -moz-transform: translateX(-100%); }
|
1271
|
+
}
|
1272
|
+
@-webkit-keyframes slideouttoright {
|
1273
|
+
from { -webkit-transform: translateX(0); }
|
1274
|
+
to { -webkit-transform: translateX(100%); }
|
1275
|
+
}
|
1276
|
+
@-moz-keyframes slideouttoright {
|
1277
|
+
from { -moz-transform: translateX(0); }
|
1278
|
+
to { -moz-transform: translateX(100%); }
|
1279
|
+
}
|
1280
|
+
.slide.out, .slide.in {
|
1281
|
+
-webkit-animation-timing-function: ease-out;
|
1282
|
+
-webkit-animation-duration: 350ms;
|
1283
|
+
-moz-animation-timing-function: ease-out;
|
1284
|
+
-moz-animation-duration: 350ms;
|
1285
|
+
}
|
1286
|
+
.slide.out {
|
1287
|
+
-webkit-transform: translateX(-100%);
|
1288
|
+
-webkit-animation-name: slideouttoleft;
|
1289
|
+
-moz-transform: translateX(-100%);
|
1290
|
+
-moz-animation-name: slideouttoleft;
|
1291
|
+
}
|
1292
|
+
.slide.in {
|
1293
|
+
-webkit-transform: translateX(0);
|
1294
|
+
-webkit-animation-name: slideinfromright;
|
1295
|
+
-moz-transform: translateX(0);
|
1296
|
+
-moz-animation-name: slideinfromright;
|
1297
|
+
}
|
1298
|
+
.slide.out.reverse {
|
1299
|
+
-webkit-transform: translateX(100%);
|
1300
|
+
-webkit-animation-name: slideouttoright;
|
1301
|
+
-moz-transform: translateX(100%);
|
1302
|
+
-moz-animation-name: slideouttoright;
|
1303
|
+
}
|
1304
|
+
.slide.in.reverse {
|
1305
|
+
-webkit-transform: translateX(0);
|
1306
|
+
-webkit-animation-name: slideinfromleft;
|
1307
|
+
-moz-transform: translateX(0);
|
1308
|
+
-moz-animation-name: slideinfromleft;
|
1309
|
+
}
|
1310
|
+
.slidefade.out {
|
1311
|
+
-webkit-transform: translateX(-100%);
|
1312
|
+
-webkit-animation-name: slideouttoleft;
|
1313
|
+
-moz-transform: translateX(-100%);
|
1314
|
+
-moz-animation-name: slideouttoleft;
|
1315
|
+
-webkit-animation-duration: 225ms;
|
1316
|
+
-moz-animation-duration: 225ms;
|
1317
|
+
}
|
1318
|
+
.slidefade.in {
|
1319
|
+
-webkit-transform: translateX(0);
|
1320
|
+
-webkit-animation-name: fadein;
|
1321
|
+
-moz-transform: translateX(0);
|
1322
|
+
-moz-animation-name: fadein;
|
1323
|
+
-webkit-animation-duration: 200ms;
|
1324
|
+
-moz-animation-duration: 200ms;
|
1325
|
+
}
|
1326
|
+
.slidefade.out.reverse {
|
1327
|
+
-webkit-transform: translateX(100%);
|
1328
|
+
-webkit-animation-name: slideouttoright;
|
1329
|
+
-moz-transform: translateX(100%);
|
1330
|
+
-moz-animation-name: slideouttoright;
|
1331
|
+
-webkit-animation-duration: 200ms;
|
1332
|
+
-moz-animation-duration: 200ms;
|
1333
|
+
}
|
1334
|
+
.slidefade.in.reverse {
|
1335
|
+
-webkit-transform: translateX(0);
|
1336
|
+
-webkit-animation-name: fadein;
|
1337
|
+
-moz-transform: translateX(0);
|
1338
|
+
-moz-animation-name: fadein;
|
1339
|
+
-webkit-animation-duration: 200ms;
|
1340
|
+
-moz-animation-duration: 200ms;
|
1341
|
+
}
|
1342
|
+
/* slide down */
|
1343
|
+
.slidedown.out {
|
1344
|
+
-webkit-animation-name: fadeout;
|
1345
|
+
-moz-animation-name: fadeout;
|
1346
|
+
-webkit-animation-duration: 100ms;
|
1347
|
+
-moz-animation-duration: 100ms;
|
1348
|
+
}
|
1349
|
+
.slidedown.in {
|
1350
|
+
-webkit-transform: translateY(0);
|
1351
|
+
-webkit-animation-name: slideinfromtop;
|
1352
|
+
-moz-transform: translateY(0);
|
1353
|
+
-moz-animation-name: slideinfromtop;
|
1354
|
+
-webkit-animation-duration: 250ms;
|
1355
|
+
-moz-animation-duration: 250ms;
|
1356
|
+
}
|
1357
|
+
.slidedown.in.reverse {
|
1358
|
+
-webkit-animation-name: fadein;
|
1359
|
+
-moz-animation-name: fadein;
|
1360
|
+
-webkit-animation-duration: 150ms;
|
1361
|
+
-moz-animation-duration: 150ms;
|
1362
|
+
}
|
1363
|
+
.slidedown.out.reverse {
|
1364
|
+
-webkit-transform: translateY(-100%);
|
1365
|
+
-moz-transform: translateY(-100%);
|
1366
|
+
-webkit-animation-name: slideouttotop;
|
1367
|
+
-moz-animation-name: slideouttotop;
|
1368
|
+
-webkit-animation-duration: 200ms;
|
1369
|
+
-moz-animation-duration: 200ms;
|
1370
|
+
}
|
1371
|
+
@-webkit-keyframes slideinfromtop {
|
1372
|
+
from { -webkit-transform: translateY(-100%); }
|
1373
|
+
to { -webkit-transform: translateY(0); }
|
1374
|
+
}
|
1375
|
+
@-moz-keyframes slideinfromtop {
|
1376
|
+
from { -moz-transform: translateY(-100%); }
|
1377
|
+
to { -moz-transform: translateY(0); }
|
1378
|
+
}
|
1379
|
+
@-webkit-keyframes slideouttotop {
|
1380
|
+
from { -webkit-transform: translateY(0); }
|
1381
|
+
to { -webkit-transform: translateY(-100%); }
|
1382
|
+
}
|
1383
|
+
@-moz-keyframes slideouttotop {
|
1384
|
+
from { -moz-transform: translateY(0); }
|
1385
|
+
to { -moz-transform: translateY(-100%); }
|
1386
|
+
}
|
1387
|
+
/* slide up */
|
1388
|
+
.slideup.out {
|
1389
|
+
-webkit-animation-name: fadeout;
|
1390
|
+
-moz-animation-name: fadeout;
|
1391
|
+
-webkit-animation-duration: 100ms;
|
1392
|
+
-moz-animation-duration: 100ms;
|
1393
|
+
}
|
1394
|
+
.slideup.in {
|
1395
|
+
-webkit-transform: translateY(0);
|
1396
|
+
-webkit-animation-name: slideinfrombottom;
|
1397
|
+
-moz-transform: translateY(0);
|
1398
|
+
-moz-animation-name: slideinfrombottom;
|
1399
|
+
-webkit-animation-duration: 250ms;
|
1400
|
+
-moz-animation-duration: 250ms;
|
1401
|
+
}
|
1402
|
+
.slideup.in.reverse {
|
1403
|
+
-webkit-animation-name: fadein;
|
1404
|
+
-moz-animation-name: fadein;
|
1405
|
+
-webkit-animation-duration: 150ms;
|
1406
|
+
-moz-animation-duration: 150ms;
|
1407
|
+
}
|
1408
|
+
.slideup.out.reverse {
|
1409
|
+
-webkit-transform: translateY(100%);
|
1410
|
+
-moz-transform: translateY(100%);
|
1411
|
+
-webkit-animation-name: slideouttobottom;
|
1412
|
+
-moz-animation-name: slideouttobottom;
|
1413
|
+
-webkit-animation-duration: 200ms;
|
1414
|
+
-moz-animation-duration: 200ms;
|
1415
|
+
}
|
1416
|
+
@-webkit-keyframes slideinfrombottom {
|
1417
|
+
from { -webkit-transform: translateY(100%); }
|
1418
|
+
to { -webkit-transform: translateY(0); }
|
1419
|
+
}
|
1420
|
+
@-moz-keyframes slideinfrombottom {
|
1421
|
+
from { -moz-transform: translateY(100%); }
|
1422
|
+
to { -moz-transform: translateY(0); }
|
1423
|
+
}
|
1424
|
+
@-webkit-keyframes slideouttobottom {
|
1425
|
+
from { -webkit-transform: translateY(0); }
|
1426
|
+
to { -webkit-transform: translateY(100%); }
|
1427
|
+
}
|
1428
|
+
@-moz-keyframes slideouttobottom {
|
1429
|
+
from { -moz-transform: translateY(0); }
|
1430
|
+
to { -moz-transform: translateY(100%); }
|
1431
|
+
}
|
1432
|
+
/* The properties in this rule are only necessary for the 'flip' transition.
|
1433
|
+
* We need specify the perspective to create a projection matrix. This will add
|
1434
|
+
* some depth as the element flips. The depth number represents the distance of
|
1435
|
+
* the viewer from the z-plane. According to the CSS3 spec, 1000 is a moderate
|
1436
|
+
* value.
|
1437
|
+
*/
|
1438
|
+
.viewport-flip {
|
1439
|
+
-webkit-perspective: 1000;
|
1440
|
+
-moz-perspective: 1000;
|
1441
|
+
position: absolute;
|
1442
|
+
}
|
1443
|
+
.flip {
|
1444
|
+
-webkit-backface-visibility:hidden;
|
1445
|
+
-webkit-transform:translateX(0); /* Needed to work around an iOS 3.1 bug that causes listview thumbs to disappear when -webkit-visibility:hidden is used. */
|
1446
|
+
-moz-backface-visibility:hidden;
|
1447
|
+
-moz-transform:translateX(0);
|
1448
|
+
}
|
1449
|
+
.flip.out {
|
1450
|
+
-webkit-transform: rotateY(-90deg) scale(.9);
|
1451
|
+
-webkit-animation-name: flipouttoleft;
|
1452
|
+
-webkit-animation-duration: 175ms;
|
1453
|
+
-moz-transform: rotateY(-90deg) scale(.9);
|
1454
|
+
-moz-animation-name: flipouttoleft;
|
1455
|
+
-moz-animation-duration: 175ms;
|
1456
|
+
}
|
1457
|
+
.flip.in {
|
1458
|
+
-webkit-animation-name: flipintoright;
|
1459
|
+
-webkit-animation-duration: 225ms;
|
1460
|
+
-moz-animation-name: flipintoright;
|
1461
|
+
-moz-animation-duration: 225ms;
|
1462
|
+
}
|
1463
|
+
.flip.out.reverse {
|
1464
|
+
-webkit-transform: rotateY(90deg) scale(.9);
|
1465
|
+
-webkit-animation-name: flipouttoright;
|
1466
|
+
-moz-transform: rotateY(90deg) scale(.9);
|
1467
|
+
-moz-animation-name: flipouttoright;
|
1468
|
+
}
|
1469
|
+
.flip.in.reverse {
|
1470
|
+
-webkit-animation-name: flipintoleft;
|
1471
|
+
-moz-animation-name: flipintoleft;
|
1472
|
+
}
|
1473
|
+
@-webkit-keyframes flipouttoleft {
|
1474
|
+
from { -webkit-transform: rotateY(0); }
|
1475
|
+
to { -webkit-transform: rotateY(-90deg) scale(.9); }
|
1476
|
+
}
|
1477
|
+
@-moz-keyframes flipouttoleft {
|
1478
|
+
from { -moz-transform: rotateY(0); }
|
1479
|
+
to { -moz-transform: rotateY(-90deg) scale(.9); }
|
1480
|
+
}
|
1481
|
+
@-webkit-keyframes flipouttoright {
|
1482
|
+
from { -webkit-transform: rotateY(0) ; }
|
1483
|
+
to { -webkit-transform: rotateY(90deg) scale(.9); }
|
1484
|
+
}
|
1485
|
+
@-moz-keyframes flipouttoright {
|
1486
|
+
from { -moz-transform: rotateY(0); }
|
1487
|
+
to { -moz-transform: rotateY(90deg) scale(.9); }
|
1488
|
+
}
|
1489
|
+
@-webkit-keyframes flipintoleft {
|
1490
|
+
from { -webkit-transform: rotateY(-90deg) scale(.9); }
|
1491
|
+
to { -webkit-transform: rotateY(0); }
|
1492
|
+
}
|
1493
|
+
@-moz-keyframes flipintoleft {
|
1494
|
+
from { -moz-transform: rotateY(-90deg) scale(.9); }
|
1495
|
+
to { -moz-transform: rotateY(0); }
|
1496
|
+
}
|
1497
|
+
@-webkit-keyframes flipintoright {
|
1498
|
+
from { -webkit-transform: rotateY(90deg) scale(.9); }
|
1499
|
+
to { -webkit-transform: rotateY(0); }
|
1500
|
+
}
|
1501
|
+
@-moz-keyframes flipintoright {
|
1502
|
+
from { -moz-transform: rotateY(90deg) scale(.9); }
|
1503
|
+
to { -moz-transform: rotateY(0); }
|
1504
|
+
}
|
1505
|
+
/* The properties in this rule are only necessary for the 'flip' transition.
|
1506
|
+
* We need specify the perspective to create a projection matrix. This will add
|
1507
|
+
* some depth as the element flips. The depth number represents the distance of
|
1508
|
+
* the viewer from the z-plane. According to the CSS3 spec, 1000 is a moderate
|
1509
|
+
* value.
|
1510
|
+
*/
|
1511
|
+
.viewport-turn {
|
1512
|
+
-webkit-perspective: 1000;
|
1513
|
+
-moz-perspective: 1000;
|
1514
|
+
position: absolute;
|
1515
|
+
}
|
1516
|
+
.turn {
|
1517
|
+
-webkit-backface-visibility:hidden;
|
1518
|
+
-webkit-transform:translateX(0); /* Needed to work around an iOS 3.1 bug that causes listview thumbs to disappear when -webkit-visibility:hidden is used. */
|
1519
|
+
-webkit-transform-origin: 0;
|
1520
|
+
|
1521
|
+
-moz-backface-visibility:hidden;
|
1522
|
+
-moz-transform:translateX(0); /* Needed to work around an iOS 3.1 bug that causes listview thumbs to disappear when -webkit-visibility:hidden is used. */
|
1523
|
+
-moz-transform-origin: 0;
|
1524
|
+
}
|
1525
|
+
.turn.out {
|
1526
|
+
-webkit-transform: rotateY(-90deg) scale(.9);
|
1527
|
+
-webkit-animation-name: flipouttoleft;
|
1528
|
+
-moz-transform: rotateY(-90deg) scale(.9);
|
1529
|
+
-moz-animation-name: flipouttoleft;
|
1530
|
+
-webkit-animation-duration: 125ms;
|
1531
|
+
-moz-animation-duration: 125ms;
|
1532
|
+
}
|
1533
|
+
.turn.in {
|
1534
|
+
-webkit-animation-name: flipintoright;
|
1535
|
+
-moz-animation-name: flipintoright;
|
1536
|
+
-webkit-animation-duration: 250ms;
|
1537
|
+
-moz-animation-duration: 250ms;
|
1538
|
+
|
1539
|
+
}
|
1540
|
+
.turn.out.reverse {
|
1541
|
+
-webkit-transform: rotateY(90deg) scale(.9);
|
1542
|
+
-webkit-animation-name: flipouttoright;
|
1543
|
+
-moz-transform: rotateY(90deg) scale(.9);
|
1544
|
+
-moz-animation-name: flipouttoright;
|
1545
|
+
}
|
1546
|
+
.turn.in.reverse {
|
1547
|
+
-webkit-animation-name: flipintoleft;
|
1548
|
+
-moz-animation-name: flipintoleft;
|
1549
|
+
}
|
1550
|
+
@-webkit-keyframes flipouttoleft {
|
1551
|
+
from { -webkit-transform: rotateY(0); }
|
1552
|
+
to { -webkit-transform: rotateY(-90deg) scale(.9); }
|
1553
|
+
}
|
1554
|
+
@-moz-keyframes flipouttoleft {
|
1555
|
+
from { -moz-transform: rotateY(0); }
|
1556
|
+
to { -moz-transform: rotateY(-90deg) scale(.9); }
|
1557
|
+
}
|
1558
|
+
@-webkit-keyframes flipouttoright {
|
1559
|
+
from { -webkit-transform: rotateY(0) ; }
|
1560
|
+
to { -webkit-transform: rotateY(90deg) scale(.9); }
|
1561
|
+
}
|
1562
|
+
@-moz-keyframes flipouttoright {
|
1563
|
+
from { -moz-transform: rotateY(0); }
|
1564
|
+
to { -moz-transform: rotateY(90deg) scale(.9); }
|
1565
|
+
}
|
1566
|
+
@-webkit-keyframes flipintoleft {
|
1567
|
+
from { -webkit-transform: rotateY(-90deg) scale(.9); }
|
1568
|
+
to { -webkit-transform: rotateY(0); }
|
1569
|
+
}
|
1570
|
+
@-moz-keyframes flipintoleft {
|
1571
|
+
from { -moz-transform: rotateY(-90deg) scale(.9); }
|
1572
|
+
to { -moz-transform: rotateY(0); }
|
1573
|
+
}
|
1574
|
+
@-webkit-keyframes flipintoright {
|
1575
|
+
from { -webkit-transform: rotateY(90deg) scale(.9); }
|
1576
|
+
to { -webkit-transform: rotateY(0); }
|
1577
|
+
}
|
1578
|
+
@-moz-keyframes flipintoright {
|
1579
|
+
from { -moz-transform: rotateY(90deg) scale(.9); }
|
1580
|
+
to { -moz-transform: rotateY(0); }
|
1581
|
+
}
|
1582
|
+
/* flow transition */
|
1583
|
+
.flow {
|
1584
|
+
-webkit-transform-origin: 50% 30%;
|
1585
|
+
-moz-transform-origin: 50% 30%;
|
1586
|
+
-webkit-box-shadow: 0 0 20px rgba(0,0,0,.4);
|
1587
|
+
-moz-box-shadow: 0 0 20px rgba(0,0,0,.4);
|
1588
|
+
}
|
1589
|
+
.ui-dialog.flow {
|
1590
|
+
-webkit-transform-origin: none;
|
1591
|
+
-moz-transform-origin: none;
|
1592
|
+
-webkit-box-shadow: none;
|
1593
|
+
-moz-box-shadow: none;
|
1594
|
+
}
|
1595
|
+
.flow.out {
|
1596
|
+
-webkit-transform: translateX(-100%) scale(.7);
|
1597
|
+
-webkit-animation-name: flowouttoleft;
|
1598
|
+
-webkit-animation-timing-function: ease;
|
1599
|
+
-webkit-animation-duration: 350ms;
|
1600
|
+
-moz-transform: translateX(-100%) scale(.7);
|
1601
|
+
-moz-animation-name: flowouttoleft;
|
1602
|
+
-moz-animation-timing-function: ease;
|
1603
|
+
-moz-animation-duration: 350ms;
|
1604
|
+
}
|
1605
|
+
.flow.in {
|
1606
|
+
-webkit-transform: translateX(0) scale(1);
|
1607
|
+
-webkit-animation-name: flowinfromright;
|
1608
|
+
-webkit-animation-timing-function: ease;
|
1609
|
+
-webkit-animation-duration: 350ms;
|
1610
|
+
-moz-transform: translateX(0) scale(1);
|
1611
|
+
-moz-animation-name: flowinfromright;
|
1612
|
+
-moz-animation-timing-function: ease;
|
1613
|
+
-moz-animation-duration: 350ms;
|
1614
|
+
}
|
1615
|
+
.flow.out.reverse {
|
1616
|
+
-webkit-transform: translateX(100%);
|
1617
|
+
-webkit-animation-name: flowouttoright;
|
1618
|
+
-moz-transform: translateX(100%);
|
1619
|
+
-moz-animation-name: flowouttoright;
|
1620
|
+
}
|
1621
|
+
.flow.in.reverse {
|
1622
|
+
-webkit-animation-name: flowinfromleft;
|
1623
|
+
-moz-animation-name: flowinfromleft;
|
1624
|
+
}
|
1625
|
+
@-webkit-keyframes flowouttoleft {
|
1626
|
+
0% { -webkit-transform: translateX(0) scale(1); }
|
1627
|
+
60%, 70% { -webkit-transform: translateX(0) scale(.7); }
|
1628
|
+
100% { -webkit-transform: translateX(-100%) scale(.7); }
|
1629
|
+
}
|
1630
|
+
@-moz-keyframes flowouttoleft {
|
1631
|
+
0% { -moz-transform: translateX(0) scale(1); }
|
1632
|
+
60%, 70% { -moz-transform: translateX(0) scale(.7); }
|
1633
|
+
100% { -moz-transform: translateX(-100%) scale(.7); }
|
1634
|
+
}
|
1635
|
+
@-webkit-keyframes flowouttoright {
|
1636
|
+
0% { -webkit-transform: translateX(0) scale(1); }
|
1637
|
+
60%, 70% { -webkit-transform: translateX(0) scale(.7); }
|
1638
|
+
100% { -webkit-transform: translateX(100%) scale(.7); }
|
1639
|
+
}
|
1640
|
+
@-moz-keyframes flowouttoright {
|
1641
|
+
0% { -moz-transform: translateX(0) scale(1); }
|
1642
|
+
60%, 70% { -moz-transform: translateX(0) scale(.7); }
|
1643
|
+
100% { -moz-transform: translateX(100%) scale(.7); }
|
1644
|
+
}
|
1645
|
+
@-webkit-keyframes flowinfromleft {
|
1646
|
+
0% { -webkit-transform: translateX(-100%) scale(.7); }
|
1647
|
+
30%, 40% { -webkit-transform: translateX(0) scale(.7); }
|
1648
|
+
100% { -webkit-transform: translateX(0) scale(1); }
|
1649
|
+
}
|
1650
|
+
@-moz-keyframes flowinfromleft {
|
1651
|
+
0% { -moz-transform: translateX(-100%) scale(.7); }
|
1652
|
+
30%, 40% { -moz-transform: translateX(0) scale(.7); }
|
1653
|
+
100% { -moz-transform: translateX(0) scale(1); }
|
1654
|
+
}
|
1655
|
+
@-webkit-keyframes flowinfromright {
|
1656
|
+
0% { -webkit-transform: translateX(100%) scale(.7); }
|
1657
|
+
30%, 40% { -webkit-transform: translateX(0) scale(.7); }
|
1658
|
+
100% { -webkit-transform: translateX(0) scale(1); }
|
1659
|
+
}
|
1660
|
+
@-moz-keyframes flowinfromright {
|
1661
|
+
0% { -moz-transform: translateX(100%) scale(.7); }
|
1662
|
+
30%, 40% { -moz-transform: translateX(0) scale(.7); }
|
1663
|
+
100% { -moz-transform: translateX(0) scale(1); }
|
1664
|
+
}
|
1665
|
+
/* content configurations. */
|
1666
|
+
.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;}
|
1668
|
+
/* grid solo: 100 - single item fallback */
|
1669
|
+
.ui-grid-solo .ui-block-a { width: 100%; float: none; }
|
1670
|
+
/* grid a: 50/50 */
|
1671
|
+
.ui-grid-a .ui-block-a, .ui-grid-a .ui-block-b { width: 50%; }
|
1672
|
+
.ui-grid-a .ui-block-a { clear: left; }
|
1673
|
+
/* 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.333%; }
|
1675
|
+
.ui-grid-b .ui-block-a { clear: left; }
|
1676
|
+
/* 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: 25%; }
|
1678
|
+
.ui-grid-c .ui-block-a { clear: left; }
|
1679
|
+
/* 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: 20%; }
|
1681
|
+
.ui-grid-d .ui-block-a { clear: left; }
|
1682
|
+
/* fixed page header & footer configuration */
|
1683
|
+
.ui-header-fixed,
|
1684
|
+
.ui-footer-fixed {
|
1685
|
+
left: 0;
|
1686
|
+
right: 0;
|
1687
|
+
width: 100%;
|
1688
|
+
position: fixed;
|
1689
|
+
z-index: 1000;
|
1690
|
+
}
|
1691
|
+
.ui-header-fixed {
|
1692
|
+
top: 0;
|
1693
|
+
}
|
1694
|
+
.ui-footer-fixed {
|
1695
|
+
bottom: 0;
|
1696
|
+
}
|
1697
|
+
.ui-header-fullscreen,
|
1698
|
+
.ui-footer-fullscreen {
|
1699
|
+
opacity: .9;
|
1700
|
+
}
|
1701
|
+
.ui-page-header-fixed {
|
1702
|
+
padding-top: 2.5em;
|
1703
|
+
}
|
1704
|
+
.ui-page-footer-fixed {
|
1705
|
+
padding-bottom: 3em;
|
1706
|
+
}
|
1707
|
+
.ui-page-header-fullscreen .ui-content,
|
1708
|
+
.ui-page-footer-fullscreen .ui-content {
|
1709
|
+
padding: 0;
|
1710
|
+
}
|
1711
|
+
.ui-fixed-hidden {
|
1712
|
+
position: absolute;
|
1713
|
+
}
|
1714
|
+
.ui-page-header-fullscreen .ui-fixed-hidden,
|
1715
|
+
.ui-page-footer-fullscreen .ui-fixed-hidden {
|
1716
|
+
left: -99999em;
|
1717
|
+
}
|
1718
|
+
.ui-header-fixed .ui-btn,
|
1719
|
+
.ui-footer-fixed .ui-btn {
|
1720
|
+
z-index: 10;
|
1721
|
+
}
|
1722
|
+
.ui-navbar { overflow: hidden; }
|
1723
|
+
.ui-navbar ul, .ui-navbar-expanded ul { list-style:none; padding: 0; margin: 0; position: relative; display: block; border: 0;}
|
1724
|
+
.ui-navbar-collapsed ul { float: left; width: 75%; margin-right: -2px; }
|
1725
|
+
.ui-navbar-collapsed .ui-navbar-toggle { float: left; width: 25%; }
|
1726
|
+
.ui-navbar li.ui-navbar-truncate { position: absolute; left: -9999px; top: -9999px; }
|
1727
|
+
.ui-navbar li .ui-btn, .ui-navbar .ui-navbar-toggle .ui-btn { display: block; font-size: 12px; text-align: center; margin: 0; border-right-width: 0; max-width: 100%; }
|
1728
|
+
.ui-navbar li .ui-btn { margin-right: -1px; }
|
1729
|
+
.ui-navbar li .ui-btn:last-child { margin-right: 0; }
|
1730
|
+
.ui-header .ui-navbar li .ui-btn, .ui-header .ui-navbar .ui-navbar-toggle .ui-btn,
|
1731
|
+
.ui-footer .ui-navbar li .ui-btn, .ui-footer .ui-navbar .ui-navbar-toggle .ui-btn { border-top-width: 0; border-bottom-width: 0; }
|
1732
|
+
.ui-navbar .ui-btn-inner { padding-left: 2px; padding-right: 2px; }
|
1733
|
+
.ui-navbar-noicons li .ui-btn .ui-btn-inner, .ui-navbar-noicons .ui-navbar-toggle .ui-btn-inner { padding-top: .8em; padding-bottom: .9em; }
|
1734
|
+
/*expanded page styles*/
|
1735
|
+
.ui-navbar-expanded .ui-btn { margin: 0; font-size: 14px; }
|
1736
|
+
.ui-navbar-expanded .ui-btn-inner { padding-left: 5px; padding-right: 5px; }
|
1737
|
+
.ui-navbar-expanded .ui-btn-icon-top .ui-btn-inner { padding: 45px 5px 15px; text-align: center; }
|
1738
|
+
.ui-navbar-expanded .ui-btn-icon-top .ui-icon { top: 15px; }
|
1739
|
+
.ui-navbar-expanded .ui-btn-icon-bottom .ui-btn-inner { padding: 15px 5px 45px; text-align: center; }
|
1740
|
+
.ui-navbar-expanded .ui-btn-icon-bottom .ui-icon { bottom: 15px; }
|
1741
|
+
.ui-navbar-expanded li .ui-btn .ui-btn-inner { min-height: 2.5em; }
|
1742
|
+
.ui-navbar-expanded .ui-navbar-noicons .ui-btn .ui-btn-inner { padding-top: 1.8em; padding-bottom: 1.9em; }
|
1743
|
+
.ui-btn { display: block; text-align: center; cursor:pointer; position: relative; margin: .5em 5px; padding: 0; }
|
1744
|
+
.ui-mini { margin: .25em 5px; }
|
1745
|
+
.ui-btn-inner { padding: .6em 20px; min-width: .75em; display: block; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; position: relative; zoom: 1; }
|
1746
|
+
.ui-btn input, .ui-btn button { z-index: 2; }
|
1747
|
+
.ui-btn-left, .ui-btn-right, .ui-btn-inline { display: inline-block; }
|
1748
|
+
.ui-btn-block { display: block; }
|
1749
|
+
.ui-header .ui-btn,
|
1750
|
+
.ui-footer .ui-btn { display: inline-block; margin: 0; }
|
1751
|
+
.ui-header .ui-btn-inner,
|
1752
|
+
.ui-footer .ui-btn-inner,
|
1753
|
+
.ui-mini .ui-btn-inner { font-size: 12.5px; padding: .55em 11px .5em; }
|
1754
|
+
.ui-header .ui-fullsize .ui-btn-inner,
|
1755
|
+
.ui-footer .ui-fullsize .ui-btn-inner { font-size: 16px; padding: .6em 25px; }
|
1756
|
+
.ui-btn-icon-notext { width: 24px; height: 24px; }
|
1757
|
+
.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%; }
|
1760
|
+
.ui-btn-icon-notext .ui-btn-text { position: absolute; left: -9999px; }
|
1761
|
+
.ui-btn-icon-left .ui-btn-inner { padding-left: 40px; }
|
1762
|
+
.ui-btn-icon-right .ui-btn-inner { padding-right: 40px; }
|
1763
|
+
.ui-btn-icon-top .ui-btn-inner { padding-top: 40px; }
|
1764
|
+
.ui-btn-icon-bottom .ui-btn-inner { padding-bottom: 40px; }
|
1765
|
+
.ui-header .ui-btn-icon-left .ui-btn-inner,
|
1766
|
+
.ui-footer .ui-btn-icon-left .ui-btn-inner,
|
1767
|
+
.ui-mini .ui-btn-icon-left .ui-btn-inner { padding-left: 30px; }
|
1768
|
+
.ui-header .ui-btn-icon-right .ui-btn-inner,
|
1769
|
+
.ui-footer .ui-btn-icon-right .ui-btn-inner,
|
1770
|
+
.ui-mini .ui-btn-icon-right .ui-btn-inner { padding-right: 30px; }
|
1771
|
+
.ui-header .ui-btn-icon-top .ui-btn-inner,
|
1772
|
+
.ui-footer .ui-btn-icon-top .ui-btn-inner,
|
1773
|
+
.ui-mini .ui-btn-icon-top .ui-btn-inner { padding: 30px 3px .5em 3px; }
|
1774
|
+
.ui-header .ui-btn-icon-bottom .ui-btn-inner,
|
1775
|
+
.ui-footer .ui-btn-icon-bottom .ui-btn-inner,
|
1776
|
+
.ui-mini .ui-btn-icon-bottom .ui-btn-inner { padding: .55em 3px 30px 3px; }
|
1777
|
+
/*btn icon positioning*/
|
1778
|
+
.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%; margin-left: -9px; }
|
1781
|
+
.ui-btn-icon-left .ui-icon { left: 10px; }
|
1782
|
+
.ui-btn-icon-right .ui-icon { right: 10px; }
|
1783
|
+
.ui-btn-icon-top .ui-icon { top: 10px; }
|
1784
|
+
.ui-btn-icon-bottom .ui-icon { top: auto; bottom: 10px; }
|
1785
|
+
.ui-header .ui-btn-icon-left .ui-icon,
|
1786
|
+
.ui-footer .ui-btn-icon-left .ui-icon,
|
1787
|
+
.ui-mini.ui-btn-icon-left .ui-icon,
|
1788
|
+
.ui-mini .ui-btn-icon-left .ui-icon { left: 5px; }
|
1789
|
+
.ui-header .ui-btn-icon-right .ui-icon,
|
1790
|
+
.ui-footer .ui-btn-icon-right .ui-icon,
|
1791
|
+
.ui-mini.ui-btn-icon-right .ui-icon,
|
1792
|
+
.ui-mini .ui-btn-icon-right .ui-icon { right: 5px; }
|
1793
|
+
.ui-header .ui-btn-icon-top .ui-icon,
|
1794
|
+
.ui-footer .ui-btn-icon-top .ui-icon,
|
1795
|
+
.ui-mini.ui-btn-icon-top .ui-icon,
|
1796
|
+
.ui-mini .ui-btn-icon-top .ui-icon { top: 5px; }
|
1797
|
+
.ui-header .ui-btn-icon-bottom .ui-icon,
|
1798
|
+
.ui-footer .ui-btn-icon-bottom .ui-icon,
|
1799
|
+
.ui-mini.ui-btn-icon-bottom .ui-icon,
|
1800
|
+
.ui-mini .ui-btn-icon-bottom .ui-icon { bottom: 5px; }
|
1801
|
+
/*hiding native button,inputs */
|
1802
|
+
.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; text-indent: -9999px; }
|
1803
|
+
.ui-collapsible { margin: .5em 0; }
|
1804
|
+
.ui-collapsible-heading { font-size: 16px; display: block; margin: 0 -8px; padding: 0; border-width: 0 0 1px 0; position: relative; }
|
1805
|
+
.ui-collapsible-heading a { text-align: left; margin: 0; }
|
1806
|
+
.ui-collapsible-heading .ui-btn-inner,
|
1807
|
+
.ui-collapsible-heading .ui-btn-icon-left .ui-btn-inner { padding-left: 40px; }
|
1808
|
+
.ui-collapsible-heading .ui-btn-icon-right .ui-btn-inner { padding-left: 12px; padding-right: 40px; }
|
1809
|
+
.ui-collapsible-heading .ui-btn-icon-top .ui-btn-inner,
|
1810
|
+
.ui-collapsible-heading .ui-btn-icon-bottom .ui-btn-inner { padding-right: 40px; text-align: center; }
|
1811
|
+
.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; }
|
1812
|
+
.ui-collapsible-heading a span.ui-btn .ui-btn-inner { padding: 10px 0; }
|
1813
|
+
.ui-collapsible-heading a span.ui-btn .ui-icon { left: 0; margin-top: -10px; }
|
1814
|
+
.ui-collapsible-heading-status { position: absolute; top: -9999px; left:0px; }
|
1815
|
+
.ui-collapsible-content {
|
1816
|
+
display: block;
|
1817
|
+
margin: 0 -8px;
|
1818
|
+
padding: 10px 16px;
|
1819
|
+
border-top: none; /* Overrides ui-btn-up-* */
|
1820
|
+
background-image: none; /* Overrides ui-btn-up-* */
|
1821
|
+
font-weight: normal; /* Overrides ui-btn-up-* */
|
1822
|
+
}
|
1823
|
+
.ui-collapsible-content-collapsed { display: none; }
|
1824
|
+
.ui-collapsible-set { margin: .5em 0; }
|
1825
|
+
.ui-collapsible-set .ui-collapsible { margin: -1px 0 0; }
|
1826
|
+
.ui-controlgroup, fieldset.ui-controlgroup { padding: 0; margin: 0em 0 .5em; zoom: 1; }
|
1827
|
+
.ui-bar .ui-controlgroup { margin: 0 .3em; }
|
1828
|
+
.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
|
+
.ui-controlgroup li { list-style: none; }
|
1831
|
+
.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; }
|
1834
|
+
.ui-controlgroup-vertical .ui-controlgroup-last { border-bottom-width: 1px; }
|
1835
|
+
.ui-controlgroup-horizontal { padding: 0; }
|
1836
|
+
.ui-controlgroup-horizontal .ui-btn-inner { text-align:center; }
|
1837
|
+
.ui-controlgroup-horizontal .ui-btn, .ui-controlgroup-horizontal .ui-select { display: inline-block; margin: 0 -6px 0 0; }
|
1838
|
+
.ui-controlgroup-horizontal .ui-checkbox, .ui-controlgroup-horizontal .ui-radio { float: left; clear: none; margin: 0 -1px 0 0; }
|
1839
|
+
.ui-controlgroup-horizontal .ui-checkbox .ui-btn, .ui-controlgroup-horizontal .ui-radio .ui-btn,
|
1840
|
+
.ui-controlgroup-horizontal .ui-checkbox:last-child, .ui-controlgroup-horizontal .ui-radio:last-child { margin-right: 0; }
|
1841
|
+
.ui-controlgroup-horizontal .ui-controlgroup-last { margin-right: 0; }
|
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
|
+
*/
|
1847
|
+
@media all and (min-width: 450px){
|
1848
|
+
.ui-field-contain .ui-controlgroup-label { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0; }
|
1849
|
+
.ui-field-contain .ui-controlgroup-controls { width: 60%; display: inline-block; }
|
1850
|
+
.ui-field-contain .ui-controlgroup .ui-select { width: 100%; }
|
1851
|
+
.ui-field-contain .ui-controlgroup-horizontal .ui-select { width: auto; }
|
1852
|
+
}
|
1853
|
+
.ui-dialog {
|
1854
|
+
background: none !important; /* this is to ensure that dialog theming does not apply (by default at least) on the page div */
|
1855
|
+
}
|
1856
|
+
.ui-dialog-contain { width: 92.5%; max-width: 500px; margin: 10% auto 15px auto; padding: 0; }
|
1857
|
+
.ui-dialog .ui-header {
|
1858
|
+
margin-top: 15%;
|
1859
|
+
border: none;
|
1860
|
+
overflow: hidden;
|
1861
|
+
}
|
1862
|
+
.ui-dialog .ui-header,
|
1863
|
+
.ui-dialog .ui-content,
|
1864
|
+
.ui-dialog .ui-footer {
|
1865
|
+
display: block;
|
1866
|
+
position: relative;
|
1867
|
+
width: auto;
|
1868
|
+
}
|
1869
|
+
.ui-dialog .ui-header,
|
1870
|
+
.ui-dialog .ui-footer {
|
1871
|
+
z-index: 10;
|
1872
|
+
padding: 0;
|
1873
|
+
}
|
1874
|
+
.ui-dialog .ui-footer {
|
1875
|
+
padding: 0 15px;
|
1876
|
+
}
|
1877
|
+
.ui-dialog .ui-content {
|
1878
|
+
padding: 15px;
|
1879
|
+
}
|
1880
|
+
.ui-dialog {
|
1881
|
+
margin-top: -15px;
|
1882
|
+
}
|
1883
|
+
.ui-checkbox, .ui-radio { position: relative; clear: both; margin: .2em 0 .5em; z-index: 1; }
|
1884
|
+
.ui-checkbox .ui-btn, .ui-radio .ui-btn { margin: 0; text-align: left; z-index: 2; }
|
1885
|
+
.ui-checkbox .ui-btn-inner, .ui-radio .ui-btn-inner { white-space: normal; }
|
1886
|
+
.ui-checkbox .ui-btn-icon-left .ui-btn-inner,.ui-radio .ui-btn-icon-left .ui-btn-inner { padding-left: 45px; }
|
1887
|
+
.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; }
|
1888
|
+
.ui-checkbox .ui-btn-icon-right .ui-btn-inner, .ui-radio .ui-btn-icon-right .ui-btn-inner { padding-right: 45px; }
|
1889
|
+
.ui-checkbox .ui-mini.ui-btn-icon-right .ui-btn-inner, .ui-radio .ui-mini.ui-btn-icon-right .ui-btn-inner { padding-right: 36px; }
|
1890
|
+
.ui-checkbox .ui-btn-icon-top .ui-btn-inner,.ui-radio .ui-btn-icon-top .ui-btn-inner { padding-right: 0; padding-left: 0; text-align: center; }
|
1891
|
+
.ui-checkbox .ui-btn-icon-bottom .ui-btn-inner, .ui-radio .ui-btn-icon-bottom .ui-btn-inner { padding-right: 0; padding-left: 0; text-align: center; }
|
1892
|
+
.ui-checkbox .ui-icon, .ui-radio .ui-icon { top: 1.1em; }
|
1893
|
+
.ui-checkbox .ui-btn-icon-left .ui-icon, .ui-radio .ui-btn-icon-left .ui-icon { left: 15px; }
|
1894
|
+
.ui-checkbox .ui-mini.ui-btn-icon-left .ui-icon, .ui-radio .ui-mini.ui-btn-icon-left .ui-icon { left: 9px; }
|
1895
|
+
.ui-checkbox .ui-btn-icon-right .ui-icon, .ui-radio .ui-btn-icon-right .ui-icon { right: 15px; }
|
1896
|
+
.ui-checkbox .ui-mini.ui-btn-icon-right .ui-icon, .ui-radio .ui-mini.ui-btn-icon-right .ui-icon { right: 9px; }
|
1897
|
+
.ui-checkbox .ui-btn-icon-top .ui-icon, .ui-radio .ui-btn-icon-top .ui-icon { top: 10px; }
|
1898
|
+
.ui-checkbox .ui-btn-icon-bottom .ui-icon, .ui-radio .ui-btn-icon-bottom .ui-icon { top: auto; bottom: 10px; }
|
1899
|
+
.ui-checkbox .ui-btn-icon-right .ui-icon, .ui-radio .ui-btn-icon-right .ui-icon { right: 15px; }
|
1900
|
+
.ui-checkbox .ui-mini.ui-btn-icon-right .ui-icon, .ui-radio .ui-mini.ui-btn-icon-right .ui-icon { right: 9px; }
|
1901
|
+
/* input, label positioning */
|
1902
|
+
.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
|
+
.ui-field-contain, fieldset.ui-field-contain { padding: .8em 0; margin: 0; border-width: 0 0 1px 0; overflow: visible; }
|
1904
|
+
.ui-field-contain:first-child { border-top-width: 0; }
|
1905
|
+
.ui-header .ui-field-contain-left,
|
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
|
+
}
|
1917
|
+
@media all and (min-width: 450px){
|
1918
|
+
.ui-field-contain, .ui-mobile fieldset.ui-field-contain { border-width: 0; padding: 0; margin: 1em 0; }
|
1919
|
+
}
|
1920
|
+
.ui-select { display: block; position: relative; }
|
1921
|
+
.ui-select select { position: absolute; left: -9999px; top: -9999px; }
|
1922
|
+
.ui-select .ui-btn { overflow: hidden; opacity: 1; margin: 0; }
|
1923
|
+
/* 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. */
|
1924
|
+
.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; }
|
1925
|
+
.ui-select .ui-disabled { opacity: .3; }
|
1926
|
+
@-moz-document url-prefix() {.ui-select .ui-btn select { opacity: 0.0001; }}
|
1927
|
+
.ui-select .ui-btn select.ui-select-nativeonly { opacity: 1; text-indent: 0; }
|
1928
|
+
.ui-select .ui-btn-icon-right .ui-btn-inner { padding-right: 45px; }
|
1929
|
+
.ui-select .ui-btn-icon-right .ui-icon { right: 15px; }
|
1930
|
+
.ui-select .ui-mini.ui-btn-icon-right .ui-icon { right: 7px; }
|
1931
|
+
/* labels */
|
1932
|
+
label.ui-select { font-size: 16px; line-height: 1.4; font-weight: normal; margin: 0 0 .3em; display: block; }
|
1933
|
+
/*listbox*/
|
1934
|
+
.ui-select .ui-btn-text, .ui-selectmenu .ui-btn-text { display: block; min-height: 1em; overflow: hidden !important;
|
1935
|
+
/* This !important is required for iPad Safari specifically. See https://github.com/jquery/jquery-mobile/issues/2647 */ }
|
1936
|
+
.ui-select .ui-btn-text { text-overflow: ellipsis; }
|
1937
|
+
.ui-selectmenu { position: absolute; padding: 0; z-index: 1100 !important; width: 80%; max-width: 350px; padding: 6px; }
|
1938
|
+
.ui-selectmenu .ui-listview { margin: 0; }
|
1939
|
+
.ui-selectmenu .ui-btn.ui-li-divider { cursor: default; }
|
1940
|
+
.ui-selectmenu-hidden { top: -9999px; left: -9999px; }
|
1941
|
+
.ui-selectmenu-screen { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 99; }
|
1942
|
+
.ui-screen-hidden, .ui-selectmenu-list .ui-li .ui-icon { display: none; }
|
1943
|
+
.ui-selectmenu-list .ui-li .ui-icon { display: block; }
|
1944
|
+
.ui-li.ui-selectmenu-placeholder { display: none; }
|
1945
|
+
.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; display: inline-block; width: 20%; margin: 0 2% 0 0; }
|
1948
|
+
.ui-field-contain .ui-select { width: 60%; display: inline-block; }
|
1949
|
+
}
|
1950
|
+
/* 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
|
+
.ui-selectmenu .ui-header h1:after { content: '.'; visibility: hidden; }
|
1952
|
+
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: 97%; outline: 0; }
|
1954
|
+
.ui-header input.ui-input-text,
|
1955
|
+
.ui-footer input.ui-input-text { margin-left: 1.25%; padding: .4em 1%; width: 95.5% } /* Note that padding left/right on text inputs is factored into how the element is displayed in Firefox, but does not actually pad the text inside it. */
|
1956
|
+
input.ui-input-text { -webkit-appearance: none; }
|
1957
|
+
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; }
|
1959
|
+
.ui-icon-searchfield:after { position: absolute; left: 7px; top: 50%; margin-top: -9px; content: ""; width: 18px; height: 18px; opacity: .5; }
|
1960
|
+
.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
|
+
.ui-input-search .ui-input-clear { position: absolute; right: 0; top: 50%; margin-top: -13px; }
|
1962
|
+
.ui-mini .ui-input-clear { right: -3px; }
|
1963
|
+
.ui-input-search .ui-input-clear-hidden { display: none; }
|
1964
|
+
input.ui-mini, .ui-mini input, textarea.ui-mini { font-size: 14px; }
|
1965
|
+
textarea.ui-mini { height: 45px; }
|
1966
|
+
/* orientation adjustments - incomplete!*/
|
1967
|
+
@media all and (min-width: 450px){
|
1968
|
+
.ui-field-contain label.ui-input-text { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0 }
|
1969
|
+
.ui-field-contain input.ui-input-text,
|
1970
|
+
.ui-field-contain textarea.ui-input-text,
|
1971
|
+
.ui-field-contain .ui-input-search { width: 60%; display: inline-block; }
|
1972
|
+
.ui-field-contain .ui-input-search { width: 50%; }
|
1973
|
+
.ui-hide-label input.ui-input-text,
|
1974
|
+
.ui-hide-label textarea.ui-input-text,
|
1975
|
+
.ui-hide-label .ui-input-search { padding: .4em; width: 97%; }
|
1976
|
+
.ui-input-search input.ui-input-text { width: 98%; /*echos rule from above*/ }
|
1977
|
+
}
|
1978
|
+
.ui-listview { margin: 0; counter-reset: listnumbering; }
|
1979
|
+
.ui-content .ui-listview { margin: -15px; }
|
1980
|
+
.ui-content .ui-listview-inset { margin: 1em 0; }
|
1981
|
+
.ui-listview, .ui-li { list-style:none; padding:0; }
|
1982
|
+
.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 .ui-btn-text a.ui-link-inherit { text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
|
1984
|
+
.ui-li-divider, .ui-li-static { padding: .5em 15px; font-size: 14px; font-weight: bold; }
|
1985
|
+
.ui-li-divider { counter-reset: listnumbering; }
|
1986
|
+
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
|
+
ol.ui-listview .ui-li-jsnumbering:before { content: "" !important; } /* to avoid chance of duplication */
|
1988
|
+
.ui-listview-inset .ui-li { border-right-width: 1px; border-left-width: 1px; }
|
1989
|
+
.ui-li:last-child, .ui-li.ui-field-contain:last-child { border-bottom-width: 1px; }
|
1990
|
+
.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 .7em 15px; display: block; }
|
1992
|
+
.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 { min-height: 20px; padding-left: 40px; }
|
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: 30px; }
|
1996
|
+
.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-has-count .ui-btn-text { padding-right: 15px; }
|
1998
|
+
.ui-li-heading { font-size: 16px; font-weight: bold; display: block; margin: .6em 0; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
|
1999
|
+
.ui-li-desc { font-size: 12px; font-weight: normal; display: block; margin: -.5em 0 .6em; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
|
2000
|
+
.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: 40px; max-width: 40px; left: 10px; top: .9em; }
|
2002
|
+
.ui-li-thumb, .ui-listview .ui-li-icon, .ui-li-content { float: left; margin-right: 10px; }
|
2003
|
+
.ui-li-aside { float: right; width: 50%; text-align: right; margin: .3em 0; }
|
2004
|
+
@media all and (min-width: 480px){
|
2005
|
+
.ui-li-aside { width: 45%; }
|
2006
|
+
}
|
2007
|
+
.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: 95px; }
|
2009
|
+
.ui-li-has-count .ui-li-count { position: absolute; font-size: 11px; font-weight: bold; padding: .2em .5em; top: 50%; margin-top: -.9em; right: 48px; }
|
2010
|
+
.ui-li-divider .ui-li-count, .ui-li-static .ui-li-count { right: 10px; }
|
2011
|
+
.ui-li-has-alt .ui-li-count { right: 55px; }
|
2012
|
+
.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: -11px 0 0 0; border-bottom-width: 1px; z-index: -1;}
|
2014
|
+
.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; }
|
2016
|
+
.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 }
|
2018
|
+
.ui-listview-filter .ui-input-search { margin: 5px; width: auto; display: block; }
|
2019
|
+
.ui-listview-filter-inset { margin: -15px -5px -15px -5px; background: transparent; }
|
2020
|
+
.ui-li.ui-screen-hidden{display:none;}
|
2021
|
+
/* Odd iPad positioning issue. */
|
2022
|
+
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
|
2023
|
+
.ui-li .ui-btn-text { overflow: visible; }
|
2024
|
+
}
|
2025
|
+
label.ui-slider { font-size: 16px; line-height: 1.4; font-weight: normal; margin: 0 0 .3em; display: block; }
|
2026
|
+
input.ui-slider-input,
|
2027
|
+
.ui-field-contain input.ui-slider-input { display: inline-block; width: 50px; }
|
2028
|
+
select.ui-slider-switch { display: none; }
|
2029
|
+
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; }
|
2031
|
+
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; top: 50%; width: 28px; height: 28px; margin-top: -15px; margin-left: -15px; outline: 0; }
|
2033
|
+
a.ui-slider-handle .ui-btn-inner { padding: 0; height: 100%; }
|
2034
|
+
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; }
|
2036
|
+
@media all and (min-width: 450px){
|
2037
|
+
.ui-field-contain label.ui-slider { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0; }
|
2038
|
+
.ui-field-contain div.ui-slider { width: 43%; }
|
2039
|
+
.ui-field-contain div.ui-slider-switch { width: 5.5em; }
|
2040
|
+
}
|
2041
|
+
div.ui-slider-switch { height: 32px; margin-left: 0; width: 5.8em; }
|
2042
|
+
a.ui-slider-handle-snapping { -webkit-transition: left 70ms linear; -moz-transition: left 70ms linear; }
|
2043
|
+
div.ui-slider-switch .ui-slider-handle { margin-top: 1px; }
|
2044
|
+
.ui-slider-inneroffset { margin: 0 16px; position: relative; z-index: 1; }
|
2045
|
+
div.ui-slider-switch.ui-slider-mini { width: 5em; height: 29px; }
|
2046
|
+
div.ui-slider-switch.ui-slider-mini .ui-slider-inneroffset { margin: 0 15px 0 14px; }
|
2047
|
+
div.ui-slider-switch.ui-slider-mini .ui-slider-handle { width: 25px; height: 25px; margin: 1px 0 0 -13px; }
|
2048
|
+
div.ui-slider-switch.ui-slider-mini a.ui-slider-handle .ui-btn-inner { height: 30px; width: 30px; padding: 0; margin: 0; }
|
2049
|
+
span.ui-slider-label { position: absolute; text-align: center; width: 100%; overflow: hidden; font-size: 16px; top: 0; line-height: 2; min-height: 100%; border-width: 0; white-space: nowrap; }
|
2050
|
+
.ui-slider-mini span.ui-slider-label { font-size: 14px; }
|
2051
|
+
span.ui-slider-label-a { z-index: 1; left: 0; text-indent: -1.5em; }
|
2052
|
+
span.ui-slider-label-b { z-index: 0; right: 0; text-indent: 1.5em;}
|
2053
|
+
.ui-slider-inline { width: 120px; display: inline-block; }
|