rhodes 3.1.0.beta.3 → 3.1.0.beta.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (35) hide show
  1. data/Manifest.txt +4 -4
  2. data/platform/android/Rhodes/jni/include/rhodes/jni/com_rhomobile_rhodes_bluetooth_RhoBluetoothManager.h +9 -3
  3. data/platform/android/Rhodes/jni/src/bluetooth.cpp +63 -40
  4. data/platform/android/Rhodes/src/com/rhomobile/rhodes/bluetooth/IRhoBluetoothManager.java +2 -2
  5. data/platform/android/Rhodes/src/com/rhomobile/rhodes/bluetooth/RhoBluetoothManager.java +13 -9
  6. data/platform/android/Rhodes/src/com/rhomobile/rhodes/bluetooth/RhoBluetoothManagerNew.java +9 -9
  7. data/platform/android/Rhodes/src/com/rhomobile/rhodes/bluetooth/RhoBluetoothManagerOld.java +5 -5
  8. data/platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/AnnotationsOverlay.java +8 -0
  9. data/platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/GoogleMapView.java +38 -7
  10. data/platform/android/build/androidcommon.rb +0 -2
  11. data/platform/iphone/Classes/Bluetooth/Bluetooth.m +2 -2
  12. data/platform/shared/qt/rhodes/impl/BluetoothImpl.cpp +2 -2
  13. data/platform/shared/ruby/ext/bluetooth/bluetooth.i +2 -2
  14. data/platform/shared/ruby/ext/bluetooth/bluetooth_wrap.c +422 -144
  15. data/platform/wm/rhodes/bluetooth/Bluetooth.cpp +4 -4
  16. data/platform/wm/rhodes/bluetooth/Bluetooth.h +1 -1
  17. data/res/generators/templates/application/app/Settings/controller.rb +1 -0
  18. data/res/generators/templates/application/app/layout.erb +16 -4
  19. data/res/generators/templates/application/public/css/android.css +9 -0
  20. data/res/generators/templates/application/public/css/blackberry.css +9 -0
  21. data/res/generators/templates/application/public/css/iphone.css +55 -46
  22. data/res/generators/templates/application/public/css/jqmobile-patch.css +15 -2
  23. data/res/generators/templates/application/public/jqmobile/images/icons-18-black.png +0 -0
  24. data/res/generators/templates/application/public/jqmobile/images/icons-18-white.png +0 -0
  25. data/res/generators/templates/application/public/jqmobile/images/icons-36-black.png +0 -0
  26. data/res/generators/templates/application/public/jqmobile/images/icons-36-white.png +0 -0
  27. data/res/generators/templates/application/public/jqmobile/{jquery.mobile-1.0b1.css → jquery.mobile-1.0b2.css} +163 -184
  28. data/res/generators/templates/application/public/jqmobile/{jquery.mobile-1.0b1.js → jquery.mobile-1.0b2.js} +3405 -2772
  29. data/res/generators/templates/application/public/jqmobile/jquery.mobile-1.0b2.min.css +8 -0
  30. data/res/generators/templates/application/public/jqmobile/jquery.mobile-1.0b2.min.js +155 -0
  31. data/res/generators/templates/application/public/js/jqmobile-patch.js +58 -10
  32. data/rhodes.gemspec +1 -1
  33. metadata +10 -10
  34. data/res/generators/templates/application/public/jqmobile/jquery.mobile-1.0b1.min.css +0 -8
  35. data/res/generators/templates/application/public/jqmobile/jquery.mobile-1.0b1.min.js +0 -146
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * jQuery Mobile v1.0b1
2
+ * jQuery Mobile v1.0b2
3
3
  * http://jquerymobile.com/
4
4
  *
5
5
  * Copyright 2010, jQuery Project
@@ -10,7 +10,6 @@
10
10
  * jQuery Mobile Framework
11
11
  * Copyright (c) jQuery Project
12
12
  * Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.
13
- * Note: Code is in draft form and is subject to change
14
13
  */
15
14
 
16
15
 
@@ -23,13 +22,12 @@
23
22
  color: #ffffff;
24
23
  font-weight: bold;
25
24
  text-shadow: 0 -1px 1px #000000;
26
- background-image: -moz-linear-gradient(top,
27
- #3c3c3c,
28
- #111111);
29
- background-image: -webkit-gradient(linear,left top,left bottom,
30
- color-stop(0, #3c3c3c),
31
- color-stop(1, #111111));
32
- -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#3c3c3c', EndColorStr='#111111')";
25
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#3c3c3c), to(#111)); /* Saf4+, Chrome */
26
+ background-image: -webkit-linear-gradient(top, #3c3c3c, #111); /* Chrome 10+, Saf5.1+ */
27
+ background-image: -moz-linear-gradient(top, #3c3c3c, #111); /* FF3.6 */
28
+ background-image: -ms-linear-gradient(top, #3c3c3c, #111); /* IE10 */
29
+ background-image: -o-linear-gradient(top, #3c3c3c, #111); /* Opera 11.10+ */
30
+ background-image: linear-gradient(top, #3c3c3c, #111);
33
31
  }
34
32
  .ui-bar-a,
35
33
  .ui-bar-a input,
@@ -51,13 +49,12 @@
51
49
  color: #fff;
52
50
  text-shadow: 0 1px 0 #000;
53
51
  font-weight: normal;
54
- background-image: -moz-linear-gradient(top,
55
- #666666,
56
- #222222);
57
- background-image: -webkit-gradient(linear,left top,left bottom,
58
- color-stop(0, #666666),
59
- color-stop(1, #222222));
60
- -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#666666', EndColorStr='#222222)')";
52
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#666), to(#222)); /* Saf4+, Chrome */
53
+ background-image: -webkit-linear-gradient(top, #666, #222); /* Chrome 10+, Saf5.1+ */
54
+ background-image: -moz-linear-gradient(top, #666, #222); /* FF3.6 */
55
+ background-image: -ms-linear-gradient(top, #666, #222); /* IE10 */
56
+ background-image: -o-linear-gradient(top, #666, #222); /* Opera 11.10+ */
57
+ background-image: linear-gradient(top, #666, #222);
61
58
  }
62
59
  .ui-body-a,
63
60
  .ui-body-a input,
@@ -85,13 +82,12 @@
85
82
  font-weight: bold;
86
83
  color: #fff;
87
84
  text-shadow: 0 -1px 1px #000;
88
- background-image: -moz-linear-gradient(top,
89
- #555555,
90
- #333333);
91
- background-image: -webkit-gradient(linear,left top,left bottom,
92
- color-stop(0, #555555),
93
- color-stop(1, #333333));
94
- -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#555555', EndColorStr='#333333')";
85
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#555), to(#333)); /* Saf4+, Chrome */
86
+ background-image: -webkit-linear-gradient(top, #555, #333); /* Chrome 10+, Saf5.1+ */
87
+ background-image: -moz-linear-gradient(top, #555, #333); /* FF3.6 */
88
+ background-image: -ms-linear-gradient(top, #555, #333); /* IE10 */
89
+ background-image: -o-linear-gradient(top, #555, #333); /* Opera 11.10+ */
90
+ background-image: linear-gradient(top, #555, #333);
95
91
  }
96
92
  .ui-btn-up-a a.ui-link-inherit {
97
93
  color: #fff;
@@ -102,13 +98,12 @@
102
98
  font-weight: bold;
103
99
  color: #fff;
104
100
  text-shadow: 0 -1px 1px #000;
105
- background-image: -moz-linear-gradient(top,
106
- #666666,
107
- #444444);
108
- background-image: -webkit-gradient(linear,left top,left bottom,
109
- color-stop(0, #666666),
110
- color-stop(1, #444444));
111
- -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#666666', EndColorStr='#444444')";
101
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#666), to(#444)); /* Saf4+, Chrome */
102
+ background-image: -webkit-linear-gradient(top, #666, #444); /* Chrome 10+, Saf5.1+ */
103
+ background-image: -moz-linear-gradient(top, #666, #444); /* FF3.6 */
104
+ background-image: -ms-linear-gradient(top, #666, #444); /* IE10 */
105
+ background-image: -o-linear-gradient(top, #666, #444); /* Opera 11.10+ */
106
+ background-image: linear-gradient(top, #666, #444);
112
107
  }
113
108
  .ui-btn-hover-a a.ui-link-inherit {
114
109
  color: #fff;
@@ -119,13 +114,12 @@
119
114
  font-weight: bold;
120
115
  color: #fff;
121
116
  text-shadow: 0 -1px 1px #000;
122
- background-image: -moz-linear-gradient(top,
123
- #333333,
124
- #5a5a5a);
125
- background-image: -webkit-gradient(linear,left top,left bottom,
126
- color-stop(0, #333333),
127
- color-stop(1, #5a5a5a));
128
- -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#333333', EndColorStr='#5a5a5a')";
117
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#333), to(#5a5a5a)); /* Saf4+, Chrome */
118
+ background-image: -webkit-linear-gradient(top, #333, #5a5a5a); /* Chrome 10+, Saf5.1+ */
119
+ background-image: -moz-linear-gradient(top, #333, #5a5a5a); /* FF3.6 */
120
+ background-image: -ms-linear-gradient(top, #333, #5a5a5a); /* IE10 */
121
+ background-image: -o-linear-gradient(top, #333, #5a5a5a); /* Opera 11.10+ */
122
+ background-image: linear-gradient(top, #333, #5a5a5a);
129
123
  }
130
124
  .ui-btn-down-a a.ui-link-inherit {
131
125
  color: #fff;
@@ -147,13 +141,12 @@
147
141
  color: #fff;
148
142
  font-weight: bold;
149
143
  text-shadow: 0 -1px 1px #254f7a;
150
- background-image: -moz-linear-gradient(top,
151
- #81a8ce,
152
- #5e87b0);
153
- background-image: -webkit-gradient(linear,left top,left bottom,
154
- color-stop(0, #81a8ce),
155
- color-stop(1, #5e87b0));
156
- -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#81a8ce', EndColorStr='#5e87b0')";
144
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#81a8ce), to(#5e87b0)); /* Saf4+, Chrome */
145
+ background-image: -webkit-linear-gradient(top, #81a8ce, #5e87b0); /* Chrome 10+, Saf5.1+ */
146
+ background-image: -moz-linear-gradient(top, #81a8ce, #5e87b0); /* FF3.6 */
147
+ background-image: -ms-linear-gradient(top, #81a8ce, #5e87b0); /* IE10 */
148
+ background-image: -o-linear-gradient(top, #81a8ce, #5e87b0); /* Opera 11.10+ */
149
+ background-image: linear-gradient(top, #81a8ce, #5e87b0);
157
150
  }
158
151
  .ui-bar-b,
159
152
  .ui-bar-b input,
@@ -176,13 +169,12 @@
176
169
  color: #333333;
177
170
  text-shadow: 0 1px 0 #fff;
178
171
  font-weight: normal;
179
- background-image: -moz-linear-gradient(top,
180
- #e6e6e6,
181
- #cccccc);
182
- background-image: -webkit-gradient(linear,left top,left bottom,
183
- color-stop(0, #e6e6e6),
184
- color-stop(1, #cccccc));
185
- -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#e6e6e6', EndColorStr='#cccccc')";
172
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#e6e6e6), to(#ccc)); /* Saf4+, Chrome */
173
+ background-image: -webkit-linear-gradient(top, #e6e6e6, #ccc); /* Chrome 10+, Saf5.1+ */
174
+ background-image: -moz-linear-gradient(top, #e6e6e6, #ccc); /* FF3.6 */
175
+ background-image: -ms-linear-gradient(top, #e6e6e6, #ccc); /* IE10 */
176
+ background-image: -o-linear-gradient(top, #e6e6e6, #ccc); /* Opera 11.10+ */
177
+ background-image: linear-gradient(top, #e6e6e6, #ccc);
186
178
  }
187
179
  .ui-body-b,
188
180
  .ui-body-b input,
@@ -204,13 +196,12 @@
204
196
  font-weight: bold;
205
197
  color: #fff;
206
198
  text-shadow: 0 -1px 1px #145072;
207
- background-image: -moz-linear-gradient(top,
208
- #4e89c5,
209
- #2567ab);
210
- background-image: -webkit-gradient(linear,left top,left bottom,
211
- color-stop(0, #5f9cc5),
212
- color-stop(1, #396b9e));
213
- -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#4e89c5', EndColorStr='#2567ab')";
199
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#5f9cc5), to(#396b9e)); /* Saf4+, Chrome */
200
+ background-image: -webkit-linear-gradient(top, #5f9cc5, #396b9e); /* Chrome 10+, Saf5.1+ */
201
+ background-image: -moz-linear-gradient(top, #5f9cc5, #396b9e); /* FF3.6 */
202
+ background-image: -ms-linear-gradient(top, #5f9cc5, #396b9e); /* IE10 */
203
+ background-image: -o-linear-gradient(top, #5f9cc5, #396b9e); /* Opera 11.10+ */
204
+ background-image: linear-gradient(top, #5f9cc5, #396b9e);
214
205
  }
215
206
  .ui-btn-up-b a.ui-link-inherit {
216
207
  color: #fff;
@@ -221,13 +212,12 @@
221
212
  font-weight: bold;
222
213
  color: #fff;
223
214
  text-shadow: 0 -1px 1px #014D68;
224
- background-image: -moz-linear-gradient(top,
225
- #72b0d4,
226
- #4b88b6);
227
- background-image: -webkit-gradient(linear,left top,left bottom,
228
- color-stop(0, #72b0d4),
229
- color-stop(1, #4b88b6));
230
- -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#72b0d4', EndColorStr='#4b88b6')";
215
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#72b0d4), to(#4b88b6)); /* Saf4+, Chrome */
216
+ background-image: -webkit-linear-gradient(top, #72b0d4, #4b88b6); /* Chrome 10+, Saf5.1+ */
217
+ background-image: -moz-linear-gradient(top, #72b0d4, #4b88b6); /* FF3.6 */
218
+ background-image: -ms-linear-gradient(top, #72b0d4, #4b88b6); /* IE10 */
219
+ background-image: -o-linear-gradient(top, #72b0d4, #4b88b6); /* Opera 11.10+ */
220
+ background-image: linear-gradient(top, #72b0d4, #4b88b6);
231
221
  }
232
222
  .ui-btn-hover-b a.ui-link-inherit {
233
223
  color: #fff;
@@ -238,13 +228,12 @@
238
228
  font-weight: bold;
239
229
  color: #fff;
240
230
  text-shadow: 0 -1px 1px #225377;
241
- background-image: -moz-linear-gradient(top,
242
- #396b9e,
243
- #4e89c5);
244
- background-image: -webkit-gradient(linear,left top,left bottom,
245
- color-stop(0, #396b9e),
246
- color-stop(1, #4e89c5));
247
- -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#396b9e', EndColorStr='#4e89c5')";
231
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#396b9e), to(#4e89c5)); /* Saf4+, Chrome */
232
+ background-image: -webkit-linear-gradient(top, #396b9e, #4e89c5); /* Chrome 10+, Saf5.1+ */
233
+ background-image: -moz-linear-gradient(top, #396b9e, #4e89c5); /* FF3.6 */
234
+ background-image: -ms-linear-gradient(top, #396b9e, #4e89c5); /* IE10 */
235
+ background-image: -o-linear-gradient(top, #396b9e, #4e89c5); /* Opera 11.10+ */
236
+ background-image: linear-gradient(top, #396b9e, #4e89c5);
248
237
  }
249
238
  .ui-btn-down-b a.ui-link-inherit {
250
239
  color: #fff;
@@ -266,13 +255,12 @@
266
255
  color: #3E3E3E;
267
256
  font-weight: bold;
268
257
  text-shadow: 0 1px 1px #fff;
269
- background-image: -moz-linear-gradient(top,
270
- #f0f0f0,
271
- #e9eaeb);
272
- background-image: -webkit-gradient(linear,left top,left bottom,
273
- color-stop(0, #f0f0f0),
274
- color-stop(1, #e9eaeb));
275
- -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#f0f0f0', EndColorStr='#e9eaeb')";
258
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#f0f0f0), to(#e9eaeb)); /* Saf4+, Chrome */
259
+ background-image: -webkit-linear-gradient(top, #f0f0f0, #e9eaeb); /* Chrome 10+, Saf5.1+ */
260
+ background-image: -moz-linear-gradient(top, #f0f0f0, #e9eaeb); /* FF3.6 */
261
+ background-image: -ms-linear-gradient(top, #f0f0f0, #e9eaeb); /* IE10 */
262
+ background-image: -o-linear-gradient(top, #f0f0f0, #e9eaeb); /* Opera 11.10+ */
263
+ background-image: linear-gradient(top, #f0f0f0, #e9eaeb);
276
264
  }
277
265
  .ui-bar-c,
278
266
  .ui-bar-c input,
@@ -286,13 +274,12 @@
286
274
  color: #333333;
287
275
  text-shadow: 0 1px 0 #fff;
288
276
  background: #f0f0f0;
289
- background-image: -moz-linear-gradient(top,
290
- #eeeeee,
291
- #dddddd);
292
- background-image: -webkit-gradient(linear,left top,left bottom,
293
- color-stop(0, #eeeeee),
294
- color-stop(1, #dddddd));
295
- -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#eeeeee', EndColorStr='#dddddd')";
277
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#ddd)); /* Saf4+, Chrome */
278
+ background-image: -webkit-linear-gradient(top, #eee, #ddd); /* Chrome 10+, Saf5.1+ */
279
+ background-image: -moz-linear-gradient(top, #eee, #ddd); /* FF3.6 */
280
+ background-image: -ms-linear-gradient(top, #eee, #ddd); /* IE10 */
281
+ background-image: -o-linear-gradient(top, #eee, #ddd); /* Opera 11.10+ */
282
+ background-image: linear-gradient(top, #eee, #ddd);
296
283
  }
297
284
  .ui-body-c,
298
285
  .ui-body-c input,
@@ -315,13 +302,12 @@
315
302
  font-weight: bold;
316
303
  color: #444;
317
304
  text-shadow: 0 1px 1px #f6f6f6;
318
- background-image: -moz-linear-gradient(top,
319
- #fefefe,
320
- #eeeeee);
321
- background-image: -webkit-gradient(linear,left top,left bottom,
322
- color-stop(0, #fdfdfd),
323
- color-stop(1, #eeeeee));
324
- -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#fdfdfd', EndColorStr='#eeeeee')";
305
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#fdfdfd), to(#eee)); /* Saf4+, Chrome */
306
+ background-image: -webkit-linear-gradient(top, #fdfdfd, #eee); /* Chrome 10+, Saf5.1+ */
307
+ background-image: -moz-linear-gradient(top, #fdfdfd, #eee); /* FF3.6 */
308
+ background-image: -ms-linear-gradient(top, #fdfdfd, #eee); /* IE10 */
309
+ background-image: -o-linear-gradient(top, #fdfdfd, #eee); /* Opera 11.10+ */
310
+ background-image: linear-gradient(top, #fdfdfd, #eee);
325
311
  }
326
312
  .ui-btn-up-c a.ui-link-inherit {
327
313
  color: #2F3E46;
@@ -333,13 +319,12 @@
333
319
  font-weight: bold;
334
320
  color: #101010;
335
321
  text-shadow: 0 1px 1px #fff;
336
- background-image: -moz-linear-gradient(top,
337
- #ededed,
338
- #dadada);
339
- background-image: -webkit-gradient(linear,left top,left bottom,
340
- color-stop(0, #ededed),
341
- color-stop(1, #dadada));
342
- -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#ededed', EndColorStr='#dadada')";
322
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#dadada)); /* Saf4+, Chrome */
323
+ background-image: -webkit-linear-gradient(top, #ededed, #dadada); /* Chrome 10+, Saf5.1+ */
324
+ background-image: -moz-linear-gradient(top, #ededed, #dadada); /* FF3.6 */
325
+ background-image: -ms-linear-gradient(top, #ededed, #dadada); /* IE10 */
326
+ background-image: -o-linear-gradient(top, #ededed, #dadada); /* Opera 11.10+ */
327
+ background-image: linear-gradient(top, #ededed, #dadada);
343
328
  }
344
329
  .ui-btn-hover-c a.ui-link-inherit {
345
330
  color: #2F3E46;
@@ -350,13 +335,12 @@
350
335
  font-weight: bold;
351
336
  color: #111111;
352
337
  text-shadow: 0 1px 1px #ffffff;
353
- background-image: -moz-linear-gradient(top,
354
- #eeeeee,
355
- #fdfdfd);
356
- background-image: -webkit-gradient(linear,left top,left bottom,
357
- color-stop(0, #eeeeee),
358
- color-stop(1, #fdfdfd));
359
- -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#eeeeee', EndColorStr='#fdfdfd')";
338
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#fdfdfd)); /* Saf4+, Chrome */
339
+ background-image: -webkit-linear-gradient(top, #eee, #fdfdfd); /* Chrome 10+, Saf5.1+ */
340
+ background-image: -moz-linear-gradient(top, #eee, #fdfdfd); /* FF3.6 */
341
+ background-image: -ms-linear-gradient(top, #eee, #fdfdfd); /* IE10 */
342
+ background-image: -o-linear-gradient(top, #eee, #fdfdfd); /* Opera 11.10+ */
343
+ background-image: linear-gradient(top, #eee, #fdfdfd);
360
344
  }
361
345
  .ui-btn-down-c a.ui-link-inherit {
362
346
  color: #2F3E46;
@@ -377,13 +361,12 @@
377
361
  background: #bbb;
378
362
  color: #333;
379
363
  text-shadow: 0 1px 0 #eee;
380
- background-image: -moz-linear-gradient(top,
381
- #ddd,
382
- #bbb);
383
- background-image: -webkit-gradient(linear,left top,left bottom,
384
- color-stop(0, #ddd),
385
- color-stop(1, #bbb));
386
- -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#dddddd', EndColorStr='#bbbbbb')";
364
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#ddd), to(#bbb)); /* Saf4+, Chrome */
365
+ background-image: -webkit-linear-gradient(top, #ddd, #bbb); /* Chrome 10+, Saf5.1+ */
366
+ background-image: -moz-linear-gradient(top, #ddd, #bbb); /* FF3.6 */
367
+ background-image: -ms-linear-gradient(top, #ddd, #bbb); /* IE10 */
368
+ background-image: -o-linear-gradient(top, #ddd, #bbb); /* Opera 11.10+ */
369
+ background-image: linear-gradient(top, #ddd, #bbb);
387
370
  }
388
371
  .ui-bar-d,
389
372
  .ui-bar-d input,
@@ -436,13 +419,12 @@
436
419
  color: #222;
437
420
  cursor: pointer;
438
421
  text-shadow: 0 1px 1px #fff;
439
- background-image: -moz-linear-gradient(top,
440
- #fdfdfd,
441
- #eeeeee);
442
- background-image: -webkit-gradient(linear,left top,left bottom,
443
- color-stop(0, #fdfdfd),
444
- color-stop(1, #eeeeee));
445
- -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#fdfdfd', EndColorStr='#eeeeee')";
422
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#fdfdfd), to(#eee)); /* Saf4+, Chrome */
423
+ background-image: -webkit-linear-gradient(top, #fdfdfd, #eee); /* Chrome 10+, Saf5.1+ */
424
+ background-image: -moz-linear-gradient(top, #fdfdfd, #eee); /* FF3.6 */
425
+ background-image: -ms-linear-gradient(top, #fdfdfd, #eee); /* IE10 */
426
+ background-image: -o-linear-gradient(top, #fdfdfd, #eee); /* Opera 11.10+ */
427
+ background-image: linear-gradient(top, #fdfdfd, #eee);
446
428
  }
447
429
  .ui-btn-hover-d a.ui-link-inherit {
448
430
  color: #222;
@@ -453,13 +435,12 @@
453
435
  font-weight: bold;
454
436
  color: #111;
455
437
  text-shadow: 0 1px 1px #ffffff;
456
- background-image: -moz-linear-gradient(top,
457
- #eeeeee,
458
- #ffffff);
459
- background-image: -webkit-gradient(linear,left top,left bottom,
460
- color-stop(0, #eeeeee),
461
- color-stop(1, #ffffff));
462
- -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#eeeeee', EndColorStr='#ffffff')";
438
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#fff)); /* Saf4+, Chrome */
439
+ background-image: -webkit-linear-gradient(top, #eee, #fff); /* Chrome 10+, Saf5.1+ */
440
+ background-image: -moz-linear-gradient(top, #eee, #fff); /* FF3.6 */
441
+ background-image: -ms-linear-gradient(top, #eee, #fff); /* IE10 */
442
+ background-image: -o-linear-gradient(top, #eee, #fff); /* Opera 11.10+ */
443
+ background-image: linear-gradient(top, #eee, #fff);
463
444
  }
464
445
  .ui-btn-down-d a.ui-link-inherit {
465
446
  color: #111;
@@ -480,19 +461,18 @@
480
461
  background: #fadb4e;
481
462
  color: #333;
482
463
  text-shadow: 0 1px 0 #fff;
483
- background-image: -moz-linear-gradient(top,
484
- #fceda7,
485
- #fadb4e);
486
- background-image: -webkit-gradient(linear,left top,left bottom,
487
- color-stop(0, #fceda7),
488
- color-stop(1, #fadb4e));
489
- -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#fceda7', EndColorStr='#fadb4e')";
464
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#fceda7), to(#fadb4e)); /* Saf4+, Chrome */
465
+ background-image: -webkit-linear-gradient(top, #fceda7, #fadb4e); /* Chrome 10+, Saf5.1+ */
466
+ background-image: -moz-linear-gradient(top, #fceda7, #fadb4e); /* FF3.6 */
467
+ background-image: -ms-linear-gradient(top, #fceda7, #fadb4e); /* IE10 */
468
+ background-image: -o-linear-gradient(top, #fceda7, #fadb4e); /* Opera 11.10+ */
469
+ background-image: linear-gradient(top, #fceda7, #fadb4e);
490
470
  }
491
471
  .ui-bar-e,
492
472
  .ui-bar-e input,
493
473
  .ui-bar-e select,
494
474
  .ui-bar-e textarea,
495
- .ui-bar-d button {
475
+ .ui-bar-e button {
496
476
  font-family: Helvetica, Arial, sans-serif;
497
477
  }
498
478
  .ui-bar-e .ui-link-inherit {
@@ -507,13 +487,12 @@
507
487
  color: #333333;
508
488
  text-shadow: 0 1px 0 #fff;
509
489
  background: #faeb9e;
510
- background-image: -moz-linear-gradient(top,
511
- #fff,
512
- #faeb9e);
513
- background-image: -webkit-gradient(linear,left top,left bottom,
514
- color-stop(0, #fff),
515
- color-stop(1, #faeb9e));
516
- -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff', EndColorStr='#faeb9e')";
490
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#faeb9e)); /* Saf4+, Chrome */
491
+ background-image: -webkit-linear-gradient(top, #fff, #faeb9e); /* Chrome 10+, Saf5.1+ */
492
+ background-image: -moz-linear-gradient(top, #fff, #faeb9e); /* FF3.6 */
493
+ background-image: -ms-linear-gradient(top, #fff, #faeb9e); /* IE10 */
494
+ background-image: -o-linear-gradient(top, #fff, #faeb9e); /* Opera 11.10+ */
495
+ background-image: linear-gradient(top, #fff, #faeb9e);
517
496
  }
518
497
  .ui-body-e,
519
498
  .ui-body-e input,
@@ -535,13 +514,12 @@
535
514
  font-weight: bold;
536
515
  color: #333;
537
516
  text-shadow: 0 1px 0 #fff;
538
- background-image: -moz-linear-gradient(top,
539
- #fceda7,
540
- #fadb4e);
541
- background-image: -webkit-gradient(linear,left top,left bottom,
542
- color-stop(0, #fceda7),
543
- color-stop(1, #fadb4e));
544
- -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#fceda7', EndColorStr='#fadb4e')";
517
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#fceda7), to(#fadb4e)); /* Saf4+, Chrome */
518
+ background-image: -webkit-linear-gradient(top, #fceda7, #fadb4e); /* Chrome 10+, Saf5.1+ */
519
+ background-image: -moz-linear-gradient(top, #fceda7, #fadb4e); /* FF3.6 */
520
+ background-image: -ms-linear-gradient(top, #fceda7, #fadb4e); /* IE10 */
521
+ background-image: -o-linear-gradient(top, #fceda7, #fadb4e); /* Opera 11.10+ */
522
+ background-image: linear-gradient(top, #fceda7, #fadb4e);
545
523
  }
546
524
  .ui-btn-up-e a.ui-link-inherit {
547
525
  color: #333;
@@ -552,13 +530,12 @@
552
530
  font-weight: bold;
553
531
  color: #111;
554
532
  text-shadow: 0 1px 1px #fff;
555
- background-image: -moz-linear-gradient(top,
556
- #fcf0b5,
557
- #fbe26f);
558
- background-image: -webkit-gradient(linear,left top,left bottom,
559
- color-stop(0, #fcf0b5),
560
- color-stop(1, #fbe26f));
561
- -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#fcf0b5', EndColorStr='#fbe26f')";
533
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf0b5), to(#fbe26f)); /* Saf4+, Chrome */
534
+ background-image: -webkit-linear-gradient(top, #fcf0b5, #fbe26f); /* Chrome 10+, Saf5.1+ */
535
+ background-image: -moz-linear-gradient(top, #fcf0b5, #fbe26f); /* FF3.6 */
536
+ background-image: -ms-linear-gradient(top, #fcf0b5, #fbe26f); /* IE10 */
537
+ background-image: -o-linear-gradient(top, #fcf0b5, #fbe26f); /* Opera 11.10+ */
538
+ background-image: linear-gradient(top, #fcf0b5, #fbe26f);
562
539
  }
563
540
 
564
541
  .ui-btn-hover-e a.ui-link-inherit {
@@ -570,13 +547,12 @@
570
547
  font-weight: bold;
571
548
  color: #111;
572
549
  text-shadow: 0 1px 1px #ffffff;
573
- background-image: -moz-linear-gradient(top,
574
- #fadb4e,
575
- #fceda7);
576
- background-image: -webkit-gradient(linear,left top,left bottom,
577
- color-stop(0, #fadb4e),
578
- color-stop(1, #fceda7));
579
- -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#fadb4e', EndColorStr='#fceda7')";
550
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#fadb4e), to(#fceda7)); /* Saf4+, Chrome */
551
+ background-image: -webkit-linear-gradient(top, #fadb4e, #fceda7); /* Chrome 10+, Saf5.1+ */
552
+ background-image: -moz-linear-gradient(top, #fadb4e, #fceda7); /* FF3.6 */
553
+ background-image: -ms-linear-gradient(top, #fadb4e, #fceda7); /* IE10 */
554
+ background-image: -o-linear-gradient(top, #fadb4e, #fceda7); /* Opera 11.10+ */
555
+ background-image: linear-gradient(top, #fadb4e, #fceda7);
580
556
  }
581
557
  .ui-btn-down-e a.ui-link-inherit {
582
558
  color: #333;
@@ -608,13 +584,12 @@ a.ui-link-inherit {
608
584
  cursor: pointer;
609
585
  text-shadow: 0 -1px 1px #145072;
610
586
  text-decoration: none;
611
- background-image: -moz-linear-gradient(top,
612
- #85bae4,
613
- #5393c5);
614
- background-image: -webkit-gradient(linear,left top,left bottom,
615
- color-stop(0, #85bae4),
616
- color-stop(1, #5393c5));
617
- -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#85bae4', EndColorStr='#5393c5')";
587
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#85bae4), to(#5393c5)); /* Saf4+, Chrome */
588
+ background-image: -webkit-linear-gradient(top, #85bae4, #5393c5); /* Chrome 10+, Saf5.1+ */
589
+ background-image: -moz-linear-gradient(top, #85bae4, #5393c5); /* FF3.6 */
590
+ background-image: -ms-linear-gradient(top, #85bae4, #5393c5); /* IE10 */
591
+ background-image: -o-linear-gradient(top, #85bae4, #5393c5); /* Opera 11.10+ */
592
+ background-image: linear-gradient(top, #85bae4, #5393c5);
618
593
  outline: none;
619
594
  }
620
595
  .ui-btn-active a.ui-link-inherit {
@@ -827,14 +802,18 @@ a.ui-link-inherit {
827
802
 
828
803
 
829
804
  /* checks,radios */
805
+ .ui-checkbox .ui-icon {
806
+ -moz-border-radius: 3px;
807
+ -webkit-border-radius: 3px;
808
+ border-radius: 3px;
809
+ }
830
810
  .ui-icon-checkbox-off,
831
- .ui-icon-checkbox-on,
832
- .ui-icon-radio-off,
833
- .ui-icon-radio-on {
834
- background-color: transparent;
835
- -moz-border-radius: 0;
836
- -webkit-border-radius: 0;
837
- border-radius: 0;
811
+ .ui-icon-radio-off {
812
+ background-color: transparent;
813
+ }
814
+ .ui-checkbox-on .ui-icon,
815
+ .ui-radio-on .ui-icon {
816
+ background-color: #4596ce; /* NOTE: this hex should match the active state color. It's repeated here for cascade */
838
817
  }
839
818
  .ui-icon-searchfield {
840
819
  background-image: url(images/icon-search-black.png);
@@ -934,7 +913,7 @@ a.ui-link-inherit {
934
913
  .ui-btn-corner-left,
935
914
  .ui-btn-corner-all {
936
915
  -webkit-background-clip: padding-box;
937
- -moz-background-clip: padding-box;
916
+ -moz-background-clip: padding;
938
917
  background-clip: padding-box;
939
918
  }
940
919
 
@@ -1003,7 +982,6 @@ a.ui-link-inherit {
1003
982
  * jQuery Mobile Framework
1004
983
  * Copyright (c) jQuery Project
1005
984
  * Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.
1006
- * Note: Code is in draft form and is subject to change
1007
985
  */
1008
986
 
1009
987
  /* some unsets - more probably needed */
@@ -1069,6 +1047,7 @@ a.ui-link-inherit {
1069
1047
  -webkit-animation-name: spin;
1070
1048
  -webkit-animation-duration: 1s;
1071
1049
  -webkit-animation-iteration-count: infinite;
1050
+ -webkit-animation-timing-function: linear;
1072
1051
  }
1073
1052
  @-webkit-keyframes spin {
1074
1053
  from {-webkit-transform: rotate(0deg);}
@@ -1399,7 +1378,7 @@ Built by David Kaneda and maintained by Jonathan Stark.
1399
1378
  .ui-btn:focus, .ui-btn:active { outline: none; }
1400
1379
  .ui-header .ui-btn, .ui-footer .ui-btn, .ui-bar .ui-btn { display: inline-block; font-size: 13px; margin: 0; }
1401
1380
  .ui-btn-inline { display: inline-block; }
1402
- .ui-btn-inner { padding: .6em 25px; display: block; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; position: relative; }
1381
+ .ui-btn-inner { padding: .6em 25px; display: block; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; position: relative; zoom: 1; }
1403
1382
  .ui-header .ui-btn-inner, .ui-footer .ui-btn-inner, .ui-bar .ui-btn-inner { padding: .4em 8px .5em; }
1404
1383
  .ui-btn-icon-notext { display: inline-block; width: 20px; height: 20px; padding: 2px 1px 2px 3px; text-indent: -9999px; }
1405
1384
  .ui-btn-icon-notext .ui-btn-inner { padding: 0; }
@@ -1517,7 +1496,7 @@ Built by David Kaneda and maintained by Jonathan Stark.
1517
1496
  * Copyright (c) jQuery Project
1518
1497
  * Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
1519
1498
  */
1520
- .ui-field-contain { background: none; padding: 1.5em 0; margin: 0; border-bottom-width: 1px; overflow: visible; }
1499
+ .ui-field-contain { padding: 1.5em 0; margin: 0; border-bottom-width: 1px; overflow: visible; }
1521
1500
  .ui-field-contain:first-child { border-top-width: 0; }
1522
1501
  @media all and (min-width: 450px){
1523
1502
  .ui-field-contain { border-width: 0; padding: 0; margin: 1em 0; }
@@ -1540,8 +1519,8 @@ Built by David Kaneda and maintained by Jonathan Stark.
1540
1519
  label.ui-select { font-size: 16px; line-height: 1.4; font-weight: normal; margin: 0 0 .3em; display: block; }
1541
1520
 
1542
1521
  /*listbox*/
1543
- .ui-select .ui-btn-text, .ui-selectmenu .ui-btn-text { display: inline-block; min-height: 1em; }
1544
- .ui-select .ui-btn-text { text-overflow: ellipsis; overflow: hidden; display: block;}
1522
+ .ui-select .ui-btn-text, .ui-selectmenu .ui-btn-text { display: block; min-height: 1em; }
1523
+ .ui-select .ui-btn-text { text-overflow: ellipsis; overflow: hidden;}
1545
1524
 
1546
1525
  .ui-selectmenu { position: absolute; padding: 0; z-index: 100 !important; width: 80%; max-width: 350px; padding: 6px; }
1547
1526
  .ui-selectmenu .ui-listview { margin: 0; }