qedproject 0.1.1 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/qedproject/libraries/jquery.rb +1 -1
- data/lib/qedproject/libraries/jquerymobile.rb +2 -2
- data/lib/qedproject/libraries/mustache.rb +9 -0
- data/lib/qedproject/libraries/skeleton.rb +1 -0
- data/lib/qedproject/version.rb +1 -1
- data/lib/qedproject.rb +2 -0
- data/vendor/jquery/VERSION +1 -1
- data/vendor/jquery/jquery-1.7.0.min.js +4 -0
- data/vendor/jquerymobile/{jquery.mobile-1.0rc1.css → jquery.mobile-1.0rc2.css} +211 -68
- data/vendor/jquerymobile/{jquery.mobile-1.0rc1.js → jquery.mobile-1.0rc2.js} +200 -150
- data/vendor/mustache/VERSION +1 -0
- data/vendor/mustache/mustache.js +324 -0
- data/vendor/skeleton/templates/index.html +0 -1
- metadata +11 -8
- data/vendor/jquery/jquery-1.6.4.min.js +0 -4
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* jQuery Mobile v1.
|
2
|
+
* jQuery Mobile v1.0rc2
|
3
3
|
* http://jquerymobile.com/
|
4
4
|
*
|
5
5
|
* Copyright 2010, jQuery Project
|
@@ -38,12 +38,25 @@
|
|
38
38
|
font-family: Helvetica, Arial, sans-serif /*{a-bar-font}*/;
|
39
39
|
}
|
40
40
|
.ui-bar-a .ui-link-inherit {
|
41
|
-
color:
|
41
|
+
color: #fff /*{a-bar-color}*/;
|
42
42
|
}
|
43
|
+
|
43
44
|
.ui-bar-a .ui-link {
|
44
|
-
color:
|
45
|
+
color: #7cc4e7 /*{a-bar-link-color}*/;
|
45
46
|
font-weight: bold;
|
46
47
|
}
|
48
|
+
|
49
|
+
.ui-bar-a .ui-link:hover {
|
50
|
+
color: #2489CE /*{a-bar-link-hover}*/;
|
51
|
+
}
|
52
|
+
|
53
|
+
.ui-bar-a .ui-link:active {
|
54
|
+
color: #2489CE /*{a-bar-link-active}*/;
|
55
|
+
}
|
56
|
+
|
57
|
+
.ui-bar-a .ui-link:visited {
|
58
|
+
color: #2489CE /*{a-bar-link-visited}*/;
|
59
|
+
}
|
47
60
|
.ui-body-a {
|
48
61
|
border: 1px solid #2A2A2A /*{a-body-border}*/;
|
49
62
|
background: #222222 /*{a-body-background-color}*/;
|
@@ -65,12 +78,26 @@
|
|
65
78
|
font-family: Helvetica, Arial, sans-serif /*{a-body-font}*/;
|
66
79
|
}
|
67
80
|
.ui-body-a .ui-link-inherit {
|
68
|
-
color:
|
81
|
+
color: #fff /*{a-body-color}*/;
|
69
82
|
}
|
83
|
+
|
70
84
|
.ui-body-a .ui-link {
|
71
|
-
color:
|
85
|
+
color: #2489CE /*{a-body-link-color}*/;
|
72
86
|
font-weight: bold;
|
73
87
|
}
|
88
|
+
|
89
|
+
.ui-body-a .ui-link:hover {
|
90
|
+
color: #2489CE /*{a-body-link-hover}*/;
|
91
|
+
}
|
92
|
+
|
93
|
+
.ui-body-a .ui-link:active {
|
94
|
+
color: #2489CE /*{a-body-link-active}*/;
|
95
|
+
}
|
96
|
+
|
97
|
+
.ui-body-a .ui-link:visited {
|
98
|
+
color: #2489CE /*{a-body-link-visited}*/;
|
99
|
+
}
|
100
|
+
|
74
101
|
.ui-br {
|
75
102
|
border-bottom: rgb(130,130,130);
|
76
103
|
border-bottom: rgba(130,130,130,.3);
|
@@ -157,13 +184,24 @@
|
|
157
184
|
font-family: Helvetica, Arial, sans-serif /*{b-bar-font}*/;
|
158
185
|
}
|
159
186
|
.ui-bar-b .ui-link-inherit {
|
160
|
-
color:
|
187
|
+
color: #fff /*{b-bar-color}*/;
|
161
188
|
}
|
162
189
|
.ui-bar-b .ui-link {
|
163
|
-
color:
|
190
|
+
color: #ddf0f8 /*{b-bar-link-color}*/;
|
164
191
|
font-weight: bold;
|
165
192
|
}
|
166
193
|
|
194
|
+
.ui-bar-b .ui-link:hover {
|
195
|
+
color: #ddf0f8 /*{b-bar-link-hover}*/;
|
196
|
+
}
|
197
|
+
|
198
|
+
.ui-bar-b .ui-link:active {
|
199
|
+
color: #ddf0f8 /*{b-bar-link-active}*/;
|
200
|
+
}
|
201
|
+
|
202
|
+
.ui-bar-b .ui-link:visited {
|
203
|
+
color: #ddf0f8 /*{b-bar-link-visited}*/;
|
204
|
+
}
|
167
205
|
.ui-body-b {
|
168
206
|
border: 1px solid #C6C6C6 /*{b-body-border}*/;
|
169
207
|
background: #cccccc /*{b-body-background-color}*/;
|
@@ -185,12 +223,26 @@
|
|
185
223
|
font-family: Helvetica, Arial, sans-serif /*{b-body-font}*/;
|
186
224
|
}
|
187
225
|
.ui-body-b .ui-link-inherit {
|
188
|
-
color:
|
226
|
+
color: #333333 /*{b-body-color}*/;
|
189
227
|
}
|
228
|
+
|
190
229
|
.ui-body-b .ui-link {
|
191
|
-
color:
|
230
|
+
color: #2489CE /*{b-body-link-color}*/;
|
192
231
|
font-weight: bold;
|
193
232
|
}
|
233
|
+
|
234
|
+
.ui-body-b .ui-link:hover {
|
235
|
+
color: #2489CE /*{b-body-link-hover}*/;
|
236
|
+
}
|
237
|
+
|
238
|
+
.ui-body-b .ui-link:active {
|
239
|
+
color: #2489CE /*{b-body-link-active}*/;
|
240
|
+
}
|
241
|
+
|
242
|
+
.ui-body-b .ui-link:visited {
|
243
|
+
color: #2489CE /*{b-body-link-visited}*/;
|
244
|
+
}
|
245
|
+
|
194
246
|
.ui-btn-up-b {
|
195
247
|
border: 1px solid #145072 /*{b-bup-border}*/;
|
196
248
|
background: #2567ab /*{b-bup-background-color}*/;
|
@@ -264,11 +316,26 @@
|
|
264
316
|
background-image: linear-gradient(top, #f0f0f0 /*{c-bar-background-start}*/, #e9eaeb /*{c-bar-background-end}*/);
|
265
317
|
}
|
266
318
|
|
319
|
+
.ui-bar-c .ui-link-inherit {
|
320
|
+
color: #3E3E3E /*{c-bar-color}*/;
|
321
|
+
}
|
267
322
|
.ui-bar-c .ui-link {
|
268
|
-
color:
|
323
|
+
color: #7cc4e7 /*{c-bar-link-color}*/;
|
269
324
|
font-weight: bold;
|
270
325
|
}
|
271
326
|
|
327
|
+
.ui-bar-c .ui-link:hover {
|
328
|
+
color: #2489CE /*{c-bar-link-hover}*/;
|
329
|
+
}
|
330
|
+
|
331
|
+
.ui-bar-c .ui-link:active {
|
332
|
+
color: #2489CE /*{c-bar-link-active}*/;
|
333
|
+
}
|
334
|
+
|
335
|
+
.ui-bar-c .ui-link:visited {
|
336
|
+
color: #2489CE /*{c-bar-link-visited}*/;
|
337
|
+
}
|
338
|
+
|
272
339
|
.ui-bar-c,
|
273
340
|
.ui-bar-c input,
|
274
341
|
.ui-bar-c select,
|
@@ -295,14 +362,28 @@
|
|
295
362
|
.ui-body-c button {
|
296
363
|
font-family: Helvetica, Arial, sans-serif /*{c-body-font}*/;
|
297
364
|
}
|
365
|
+
|
298
366
|
.ui-body-c .ui-link-inherit {
|
299
|
-
color:
|
367
|
+
color: #333333 /*{c-body-color}*/;
|
300
368
|
}
|
369
|
+
|
301
370
|
.ui-body-c .ui-link {
|
302
|
-
color:
|
371
|
+
color: #2489CE /*{c-body-link-color}*/;
|
303
372
|
font-weight: bold;
|
304
373
|
}
|
305
374
|
|
375
|
+
.ui-body-c .ui-link:hover {
|
376
|
+
color: #2489CE /*{c-body-link-hover}*/;
|
377
|
+
}
|
378
|
+
|
379
|
+
.ui-body-c .ui-link:active {
|
380
|
+
color: #2489CE /*{c-body-link-active}*/;
|
381
|
+
}
|
382
|
+
|
383
|
+
.ui-body-c .ui-link:visited {
|
384
|
+
color: #2489CE /*{c-body-link-visited}*/;
|
385
|
+
}
|
386
|
+
|
306
387
|
.ui-btn-up-c {
|
307
388
|
border: 1px solid #ccc /*{c-bup-border}*/;
|
308
389
|
background: #eee /*{c-bup-background-color}*/;
|
@@ -321,7 +402,7 @@
|
|
321
402
|
}
|
322
403
|
|
323
404
|
.ui-btn-hover-c {
|
324
|
-
border: 1px solid #
|
405
|
+
border: 1px solid #bbbbbb /*{c-bhover-border}*/;
|
325
406
|
background: #dadada /*{c-bhover-background-color}*/;
|
326
407
|
font-weight: bold;
|
327
408
|
color: #101010 /*{c-bhover-color}*/;
|
@@ -382,13 +463,27 @@
|
|
382
463
|
.ui-bar-d button {
|
383
464
|
font-family: Helvetica, Arial, sans-serif /*{d-bar-font}*/;
|
384
465
|
}
|
466
|
+
|
385
467
|
.ui-bar-d .ui-link-inherit {
|
386
|
-
color:
|
468
|
+
color: #333333 /*{d-bar-color}*/;
|
387
469
|
}
|
388
470
|
.ui-bar-d .ui-link {
|
389
|
-
color:
|
471
|
+
color: #2489CE /*{d-bar-link-color}*/;
|
390
472
|
font-weight: bold;
|
391
473
|
}
|
474
|
+
|
475
|
+
.ui-bar-d .ui-link:hover {
|
476
|
+
color: #2489CE /*{d-bar-link-hover}*/;
|
477
|
+
}
|
478
|
+
|
479
|
+
.ui-bar-d .ui-link:active {
|
480
|
+
color: #2489CE /*{d-bar-link-active}*/;
|
481
|
+
}
|
482
|
+
|
483
|
+
.ui-bar-d .ui-link:visited {
|
484
|
+
color: #2489CE /*{d-bar-link-visited}*/;
|
485
|
+
}
|
486
|
+
|
392
487
|
.ui-body-d {
|
393
488
|
border: 1px solid #ccc /*{d-body-border}*/;
|
394
489
|
color: #333333 /*{d-body-color}*/;
|
@@ -408,13 +503,28 @@
|
|
408
503
|
.ui-body-d button {
|
409
504
|
font-family: Helvetica, Arial, sans-serif /*{d-body-font}*/;
|
410
505
|
}
|
506
|
+
|
411
507
|
.ui-body-d .ui-link-inherit {
|
412
|
-
color:
|
508
|
+
color: #333333 /*{d-body-color}*/;
|
413
509
|
}
|
510
|
+
|
414
511
|
.ui-body-d .ui-link {
|
415
|
-
color:
|
512
|
+
color: #2489CE /*{d-body-link-color}*/;
|
416
513
|
font-weight: bold;
|
417
514
|
}
|
515
|
+
|
516
|
+
.ui-body-d .ui-link:hover {
|
517
|
+
color: #2489CE /*{d-body-link-hover}*/;
|
518
|
+
}
|
519
|
+
|
520
|
+
.ui-body-d .ui-link:active {
|
521
|
+
color: #2489CE /*{d-body-link-active}*/;
|
522
|
+
}
|
523
|
+
|
524
|
+
.ui-body-d .ui-link:visited {
|
525
|
+
color: #2489CE /*{d-body-link-visited}*/;
|
526
|
+
}
|
527
|
+
|
418
528
|
.ui-btn-up-d {
|
419
529
|
border: 1px solid #ccc /*{d-bup-border}*/;
|
420
530
|
background: #fff /*{d-bup-background-color}*/;
|
@@ -495,12 +605,25 @@
|
|
495
605
|
font-family: Helvetica, Arial, sans-serif /*{e-bar-font}*/;
|
496
606
|
}
|
497
607
|
.ui-bar-e .ui-link-inherit {
|
498
|
-
color:
|
608
|
+
color: #333333 /*{e-bar-color}*/;
|
499
609
|
}
|
500
610
|
.ui-bar-e .ui-link {
|
501
|
-
color:
|
611
|
+
color: #2489CE /*{e-bar-link-color}*/;
|
502
612
|
font-weight: bold;
|
503
613
|
}
|
614
|
+
|
615
|
+
.ui-bar-e .ui-link:hover {
|
616
|
+
color: #2489CE /*{e-bar-link-hover}*/;
|
617
|
+
}
|
618
|
+
|
619
|
+
.ui-bar-e .ui-link:active {
|
620
|
+
color: #2489CE /*{e-bar-link-active}*/;
|
621
|
+
}
|
622
|
+
|
623
|
+
.ui-bar-e .ui-link:visited {
|
624
|
+
color: #2489CE /*{e-bar-link-visited}*/;
|
625
|
+
}
|
626
|
+
|
504
627
|
.ui-body-e {
|
505
628
|
border: 1px solid #F7C942 /*{e-body-border}*/;
|
506
629
|
color: #333333 /*{e-body-color}*/;
|
@@ -521,12 +644,26 @@
|
|
521
644
|
font-family: Helvetica, Arial, sans-serif /*{e-body-font}*/;
|
522
645
|
}
|
523
646
|
.ui-body-e .ui-link-inherit {
|
524
|
-
color:
|
647
|
+
color: #333333 /*{e-body-color}*/;
|
525
648
|
}
|
649
|
+
|
526
650
|
.ui-body-e .ui-link {
|
527
|
-
color:
|
651
|
+
color: #2489CE /*{e-body-link-color}*/;
|
528
652
|
font-weight: bold;
|
529
653
|
}
|
654
|
+
|
655
|
+
.ui-body-e .ui-link:hover {
|
656
|
+
color: #2489CE /*{e-body-link-hover}*/;
|
657
|
+
}
|
658
|
+
|
659
|
+
.ui-body-e .ui-link:active {
|
660
|
+
color: #2489CE /*{e-body-link-active}*/;
|
661
|
+
}
|
662
|
+
|
663
|
+
.ui-body-e .ui-link:visited {
|
664
|
+
color: #2489CE /*{e-body-link-visited}*/;
|
665
|
+
}
|
666
|
+
|
530
667
|
.ui-btn-up-e {
|
531
668
|
border: 1px solid #F7C942 /*{e-bup-border}*/;
|
532
669
|
background: #fadb4e /*{e-bup-background-color}*/;
|
@@ -592,24 +729,6 @@ a.ui-link-inherit {
|
|
592
729
|
text-decoration: none !important;
|
593
730
|
}
|
594
731
|
|
595
|
-
/* links and their different states
|
596
|
-
-----------------------------------------------------------------------------------------------------------*/
|
597
|
-
|
598
|
-
.ui-link{
|
599
|
-
color: #2489CE /*{global-link-color}*/
|
600
|
-
}
|
601
|
-
|
602
|
-
.ui-link:hover{
|
603
|
-
color: #2489CE /*{global-link-hover}*/
|
604
|
-
}
|
605
|
-
|
606
|
-
.ui-link:active{
|
607
|
-
color: #2489CE /*{global-link-active}*/
|
608
|
-
}
|
609
|
-
|
610
|
-
.ui-link:visited{
|
611
|
-
color: #2489CE /*{global-link-visited}*/
|
612
|
-
}
|
613
732
|
|
614
733
|
/* Active class used as the "on" state across all themes
|
615
734
|
-----------------------------------------------------------------------------------------------------------*/
|
@@ -628,7 +747,6 @@ a.ui-link-inherit {
|
|
628
747
|
background-image: -ms-linear-gradient(top, #85bae4 /*{global-active-background-start}*/, #5393c5 /*{global-active-background-end}*/); /* IE10 */
|
629
748
|
background-image: -o-linear-gradient(top, #85bae4 /*{global-active-background-start}*/, #5393c5 /*{global-active-background-end}*/); /* Opera 11.10+ */
|
630
749
|
background-image: linear-gradient(top, #85bae4 /*{global-active-background-start}*/, #5393c5 /*{global-active-background-end}*/);
|
631
|
-
outline: none;
|
632
750
|
font-family: Helvetica, Arial, sans-serif /*{global-active-font}*/;
|
633
751
|
}
|
634
752
|
.ui-btn-active a.ui-link-inherit {
|
@@ -718,6 +836,7 @@ a.ui-link-inherit {
|
|
718
836
|
}
|
719
837
|
.ui-disabled,
|
720
838
|
.ui-disabled a {
|
839
|
+
pointer-events: none;
|
721
840
|
cursor: default;
|
722
841
|
}
|
723
842
|
|
@@ -1038,6 +1157,14 @@ a.ui-link-inherit {
|
|
1038
1157
|
/* on ios4, setting focus on the page element causes flashing during transitions when there is an outline, so we turn off outlines */
|
1039
1158
|
.ui-page { outline: none; }
|
1040
1159
|
|
1160
|
+
/*orientations from js are available */
|
1161
|
+
@media screen and (orientation: portrait){
|
1162
|
+
.ui-mobile, .ui-mobile .ui-page { min-height: 420px; }
|
1163
|
+
}
|
1164
|
+
@media screen and (orientation: landscape){
|
1165
|
+
.ui-mobile, .ui-mobile .ui-page { min-height: 300px; }
|
1166
|
+
}
|
1167
|
+
|
1041
1168
|
/* native overflow scrolling */
|
1042
1169
|
.ui-page.ui-mobile-touch-overflow,
|
1043
1170
|
.ui-mobile-touch-overflow.ui-native-fixed .ui-content {
|
@@ -1079,6 +1206,7 @@ a.ui-link-inherit {
|
|
1079
1206
|
.ui-header .ui-btn-left { position: absolute; left: 10px; top: .4em; }
|
1080
1207
|
.ui-header .ui-btn-right { position: absolute; right: 10px; top: .4em; }
|
1081
1208
|
.ui-header .ui-title, .ui-footer .ui-title { min-height: 1.1em; text-align: center; font-size: 16px; display: block; margin: .6em 90px .8em; padding: 0; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; outline: 0 !important; }
|
1209
|
+
.ui-footer .ui-title { margin: .6em 15px .8em; }
|
1082
1210
|
|
1083
1211
|
/*content area*/
|
1084
1212
|
.ui-content { border-width: 0; overflow: visible; overflow-x: hidden; padding: 15px; }
|
@@ -1130,6 +1258,10 @@ a.ui-link-inherit {
|
|
1130
1258
|
|
1131
1259
|
/* non-js content hiding */
|
1132
1260
|
.ui-nojs { position: absolute; left: -9999px; }
|
1261
|
+
|
1262
|
+
/* accessible content hiding */
|
1263
|
+
.ui-hide-label label,
|
1264
|
+
.ui-hidden-accessible { position: absolute !important; left: -9999px; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
|
1133
1265
|
/*
|
1134
1266
|
* jQuery Mobile Framework
|
1135
1267
|
* Copyright (c) jQuery Project
|
@@ -1470,14 +1602,15 @@ Built by David Kaneda and maintained by Jonathan Stark.
|
|
1470
1602
|
* Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
|
1471
1603
|
*/
|
1472
1604
|
.ui-btn { display: block; text-align: center; cursor:pointer; position: relative; margin: .5em 5px; padding: 0; }
|
1473
|
-
.ui-btn:focus, .ui-btn:active { outline: none; }
|
1474
1605
|
.ui-header .ui-btn, .ui-footer .ui-btn, .ui-bar .ui-btn { display: inline-block; font-size: 13px; margin: 0; }
|
1475
1606
|
.ui-btn-inline { display: inline-block; }
|
1476
1607
|
.ui-btn-inner { padding: .6em 25px; display: block; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; position: relative; zoom: 1; }
|
1608
|
+
.ui-btn input, .ui-btn button { z-index: 2; }
|
1477
1609
|
.ui-header .ui-btn-inner, .ui-footer .ui-btn-inner, .ui-bar .ui-btn-inner { padding: .4em 8px .5em; }
|
1478
1610
|
.ui-btn-icon-notext { width: 24px; height: 24px; }
|
1479
1611
|
.ui-btn-icon-notext .ui-btn-inner { padding: 2px 1px 2px 3px; }
|
1480
|
-
.ui-btn-
|
1612
|
+
.ui-btn-text { position: relative; z-index: 1; }
|
1613
|
+
.ui-btn-icon-notext .ui-btn-text { position: absolute; left: -9999px; }
|
1481
1614
|
.ui-btn-icon-left .ui-btn-inner { padding-left: 33px; }
|
1482
1615
|
.ui-header .ui-btn-icon-left .ui-btn-inner,
|
1483
1616
|
.ui-footer .ui-btn-icon-left .ui-btn-inner,
|
@@ -1496,7 +1629,7 @@ Built by David Kaneda and maintained by Jonathan Stark.
|
|
1496
1629
|
.ui-bar .ui-btn-icon-bottom .ui-btn-inner { padding-bottom: 27px; }
|
1497
1630
|
|
1498
1631
|
/*btn icon positioning*/
|
1499
|
-
.ui-btn-icon-notext .ui-icon { display: block; }
|
1632
|
+
.ui-btn-icon-notext .ui-icon { display: block; z-index: 0;}
|
1500
1633
|
.ui-btn-icon-left .ui-icon, .ui-btn-icon-right .ui-icon { position: absolute; top: 50%; margin-top: -9px; }
|
1501
1634
|
.ui-btn-icon-top .ui-icon, .ui-btn-icon-bottom .ui-icon { position: absolute; left: 50%; margin-left: -9px; }
|
1502
1635
|
.ui-btn-icon-left .ui-icon { left: 10px; }
|
@@ -1530,7 +1663,7 @@ Built by David Kaneda and maintained by Jonathan Stark.
|
|
1530
1663
|
.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; }
|
1531
1664
|
.ui-collapsible-heading a span.ui-btn .ui-btn-inner { padding: 10px 0; }
|
1532
1665
|
.ui-collapsible-heading a span.ui-btn .ui-icon { left: 0; margin-top: -10px; }
|
1533
|
-
.ui-collapsible-heading-status { position:
|
1666
|
+
.ui-collapsible-heading-status { position:fixed; left:-9999px; }
|
1534
1667
|
.ui-collapsible-content {
|
1535
1668
|
display: block;
|
1536
1669
|
margin: 0 -8px;
|
@@ -1551,13 +1684,15 @@ Built by David Kaneda and maintained by Jonathan Stark.
|
|
1551
1684
|
.ui-controlgroup, fieldset.ui-controlgroup { padding: 0; margin: .5em 0 1em; }
|
1552
1685
|
.ui-bar .ui-controlgroup { margin: 0 .3em; }
|
1553
1686
|
.ui-controlgroup-label { font-size: 16px; line-height: 1.4; font-weight: normal; margin: 0 0 .3em; }
|
1554
|
-
.ui-controlgroup-controls { display: block; width:
|
1687
|
+
.ui-controlgroup-controls { display: block; width: 100%;}
|
1555
1688
|
.ui-controlgroup li { list-style: none; }
|
1556
1689
|
.ui-controlgroup-vertical .ui-btn,
|
1557
1690
|
.ui-controlgroup-vertical .ui-checkbox, .ui-controlgroup-vertical .ui-radio { margin: 0; border-bottom-width: 0; }
|
1691
|
+
.ui-controlgroup-controls label.ui-select { position: absolute; left: -9999px; }
|
1692
|
+
|
1558
1693
|
.ui-controlgroup-vertical .ui-controlgroup-last { border-bottom-width: 1px; }
|
1559
1694
|
.ui-controlgroup-horizontal { padding: 0; }
|
1560
|
-
.ui-controlgroup-horizontal .ui-btn { display: inline-block; margin: 0 -5px 0 0; }
|
1695
|
+
.ui-controlgroup-horizontal .ui-btn, .ui-controlgroup-horizontal .ui-select { display: inline-block; margin: 0 -5px 0 0; }
|
1561
1696
|
.ui-controlgroup-horizontal .ui-checkbox, .ui-controlgroup-horizontal .ui-radio { float: left; margin: 0 -1px 0 0; }
|
1562
1697
|
.ui-controlgroup-horizontal .ui-checkbox .ui-btn, .ui-controlgroup-horizontal .ui-radio .ui-btn,
|
1563
1698
|
.ui-controlgroup-horizontal .ui-checkbox:last-child, .ui-controlgroup-horizontal .ui-radio:last-child { margin-right: 0; }
|
@@ -1569,16 +1704,19 @@ Built by David Kaneda and maintained by Jonathan Stark.
|
|
1569
1704
|
*/
|
1570
1705
|
|
1571
1706
|
@media all and (min-width: 450px){
|
1572
|
-
.ui-controlgroup-label { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0; }
|
1573
|
-
.ui-controlgroup-controls { width: 60%; display: inline-block; }
|
1707
|
+
.ui-field-contain .ui-controlgroup-label { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0; }
|
1708
|
+
.ui-field-contain .ui-controlgroup-controls { width: 60%; display: inline-block; }
|
1709
|
+
.ui-field-contain .ui-controlgroup .ui-select { width: 100%; }
|
1710
|
+
.ui-field-contain .ui-controlgroup-horizontal .ui-select { width: auto; }
|
1574
1711
|
} /*
|
1575
1712
|
* jQuery Mobile Framework
|
1576
1713
|
* Copyright (c) jQuery Project
|
1577
1714
|
* Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
|
1578
1715
|
*/
|
1579
1716
|
.ui-dialog { min-height: 480px; }
|
1580
|
-
.ui-dialog .ui-header, .ui-dialog .ui-content, .ui-dialog .ui-footer { margin: 15px; position: relative; }
|
1581
|
-
.ui-dialog .ui-header
|
1717
|
+
.ui-dialog .ui-header, .ui-dialog .ui-content, .ui-dialog .ui-footer { max-width: 500px; margin: 10% auto 0 auto; padding: 15px; width: 85%; position: relative; }
|
1718
|
+
.ui-dialog .ui-header { padding: 0 15px; }
|
1719
|
+
.ui-dialog .ui-header, .ui-dialog .ui-footer { z-index: 10; }
|
1582
1720
|
.ui-dialog .ui-content, .ui-dialog .ui-footer { margin-top: -15px; }/*
|
1583
1721
|
* jQuery Mobile Framework
|
1584
1722
|
* Copyright (c) jQuery Project
|
@@ -1621,8 +1759,8 @@ Built by David Kaneda and maintained by Jonathan Stark.
|
|
1621
1759
|
label.ui-select { font-size: 16px; line-height: 1.4; font-weight: normal; margin: 0 0 .3em; display: block; }
|
1622
1760
|
|
1623
1761
|
/*listbox*/
|
1624
|
-
.ui-select .ui-btn-text, .ui-selectmenu .ui-btn-text { display: block; min-height: 1em; }
|
1625
|
-
.ui-select .ui-btn-text { text-overflow: ellipsis;
|
1762
|
+
.ui-select .ui-btn-text, .ui-selectmenu .ui-btn-text { display: block; min-height: 1em; overflow: hidden; }
|
1763
|
+
.ui-select .ui-btn-text { text-overflow: ellipsis; }
|
1626
1764
|
|
1627
1765
|
.ui-selectmenu { position: absolute; padding: 0; z-index: 100 !important; width: 80%; max-width: 350px; padding: 6px; }
|
1628
1766
|
.ui-selectmenu .ui-listview { margin: 0; }
|
@@ -1634,9 +1772,9 @@ label.ui-select { font-size: 16px; line-height: 1.4; font-weight: normal; margi
|
|
1634
1772
|
.ui-li.ui-selectmenu-placeholder { display: none; }
|
1635
1773
|
.ui-selectmenu .ui-header .ui-title { margin: 0.6em 46px 0.8em; }
|
1636
1774
|
|
1637
|
-
@media all and (min-width: 450px){
|
1638
|
-
label.ui-select { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0; }
|
1639
|
-
.ui-select { width: 60%; display: inline-block; }
|
1775
|
+
@media all and (min-width: 450px){
|
1776
|
+
.ui-field-contain label.ui-select { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0; }
|
1777
|
+
.ui-field-contain .ui-select { width: 60%; display: inline-block; }
|
1640
1778
|
}
|
1641
1779
|
|
1642
1780
|
/* 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 */
|
@@ -1646,22 +1784,25 @@ label.ui-select { font-size: 16px; line-height: 1.4; font-weight: normal; margi
|
|
1646
1784
|
* Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
|
1647
1785
|
*/
|
1648
1786
|
label.ui-input-text { font-size: 16px; line-height: 1.4; display: block; font-weight: normal; margin: 0 0 .3em; }
|
1649
|
-
input.ui-input-text, textarea.ui-input-text { background-image: none; padding: .4em
|
1787
|
+
input.ui-input-text, textarea.ui-input-text { background-image: none; padding: .4em 1.5%; line-height: 1.4; font-size: 16px; display: block; width: 97%; }
|
1650
1788
|
input.ui-input-text { -webkit-appearance: none; }
|
1651
1789
|
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; }
|
1652
|
-
.ui-input-search { padding: 0 30px;
|
1790
|
+
.ui-input-search { padding: 0 30px; background-image: none; position: relative; }
|
1653
1791
|
.ui-icon-searchfield:after { position: absolute; left: 7px; top: 50%; margin-top: -9px; content: ""; width: 18px; height: 18px; opacity: .5; }
|
1654
1792
|
.ui-input-search input.ui-input-text { border: none; width: 98%; padding: .4em 0; margin: 0; display: block; background: transparent none; outline: 0 !important; }
|
1655
|
-
.ui-input-search .ui-input-clear { position: absolute; right: 0; top: 50%; margin-top: -
|
1793
|
+
.ui-input-search .ui-input-clear { position: absolute; right: 0; top: 50%; margin-top: -13px; }
|
1656
1794
|
.ui-input-search .ui-input-clear-hidden { display: none; }
|
1657
1795
|
|
1658
1796
|
/* orientation adjustments - incomplete!*/
|
1659
1797
|
@media all and (min-width: 450px){
|
1660
|
-
label.ui-input-text { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0 }
|
1661
|
-
input.ui-input-text,
|
1662
|
-
textarea.ui-input-text,
|
1663
|
-
.ui-input-search { width: 60%; display: inline-block; }
|
1664
|
-
.ui-input-search { width: 50%; }
|
1798
|
+
.ui-field-contain label.ui-input-text { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0 }
|
1799
|
+
.ui-field-contain input.ui-input-text,
|
1800
|
+
.ui-field-contain textarea.ui-input-text,
|
1801
|
+
.ui-field-contain .ui-input-search { width: 60%; display: inline-block; }
|
1802
|
+
.ui-field-contain .ui-input-search { width: 50%; }
|
1803
|
+
.ui-hide-label input.ui-input-text,
|
1804
|
+
.ui-hide-label textarea.ui-input-text,
|
1805
|
+
.ui-hide-label .ui-input-search { padding: .4em 1.5%; width: 97%; }
|
1665
1806
|
.ui-input-search input.ui-input-text { width: 98%; /*echos rule from above*/ }
|
1666
1807
|
}/*
|
1667
1808
|
* jQuery Mobile Framework
|
@@ -1673,7 +1814,6 @@ textarea.ui-input-text { height: 50px; -webkit-transition: height 200ms linear;
|
|
1673
1814
|
.ui-content .ui-listview-inset { margin: 1em 0; }
|
1674
1815
|
.ui-listview, .ui-li { list-style:none; padding:0; }
|
1675
1816
|
.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; }
|
1676
|
-
.ui-li .ui-btn-text { position: relative; z-index: 1; }
|
1677
1817
|
.ui-li .ui-btn-text a.ui-link-inherit { text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
|
1678
1818
|
.ui-li-divider, .ui-li-static { padding: .5em 15px; font-size: 14px; font-weight: bold; }
|
1679
1819
|
.ui-li-divider { counter-reset: listnumbering; }
|
@@ -1688,6 +1828,7 @@ ol.ui-listview .ui-li-jsnumbering:before { content: "" !important; } /* to avoid
|
|
1688
1828
|
.ui-li-has-count .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-count { padding-right: 45px; }
|
1689
1829
|
.ui-li-has-arrow .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-arrow { padding-right: 30px; }
|
1690
1830
|
.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; }
|
1831
|
+
.ui-li-has-count .ui-btn-text { padding-right: 15px; }
|
1691
1832
|
.ui-li-heading { font-size: 16px; font-weight: bold; display: block; margin: .6em 0; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
|
1692
1833
|
.ui-li-desc { font-size: 12px; font-weight: normal; display: block; margin: -.5em 0 .6em; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
|
1693
1834
|
.ui-li-thumb, .ui-li-icon { position: absolute; left: 1px; top: 0; max-height: 80px; max-width: 80px; }
|
@@ -1723,15 +1864,17 @@ ol.ui-listview .ui-li-jsnumbering:before { content: "" !important; } /* to avoid
|
|
1723
1864
|
* Copyright (c) jQuery Project
|
1724
1865
|
* Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
|
1725
1866
|
*/
|
1726
|
-
label.ui-slider { display: block; }
|
1727
|
-
input.ui-slider-input
|
1867
|
+
label.ui-slider { font-size: 16px; line-height: 1.4; font-weight: normal; margin: 0 0 .3em; display: block; }
|
1868
|
+
input.ui-slider-input,
|
1869
|
+
.ui-field-contain input.ui-slider-input { display: inline-block; width: 50px; }
|
1728
1870
|
select.ui-slider-switch { display: none; }
|
1729
1871
|
div.ui-slider { position: relative; display: inline-block; overflow: visible; height: 15px; padding: 0; margin: 0 2% 0 20px; top: 4px; width: 66%; }
|
1872
|
+
div.ui-slider-switch { width: 99.8%; }
|
1730
1873
|
a.ui-slider-handle { position: absolute; z-index: 10; top: 50%; width: 28px; height: 28px; margin-top: -15px; margin-left: -15px; }
|
1731
1874
|
a.ui-slider-handle .ui-btn-inner { padding-left: 0; padding-right: 0; }
|
1732
1875
|
@media all and (min-width: 480px){
|
1733
|
-
label.ui-slider { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0; }
|
1734
|
-
div.ui-slider { width:
|
1876
|
+
.ui-field-contain label.ui-slider { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0; }
|
1877
|
+
.ui-field-contain div.ui-slider { width: 43%; }
|
1735
1878
|
}
|
1736
1879
|
|
1737
1880
|
div.ui-slider-switch { height: 32px; overflow: hidden; margin-left: 0; }
|