qedproject 0.0.8 → 0.0.9
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/qedproject/helpers.rb +5 -0
- data/lib/qedproject/libraries/jquery.rb +1 -1
- data/lib/qedproject/project.rb +12 -2
- data/lib/qedproject/version.rb +1 -1
- data/templates/assets.yml +11 -1
- data/templates/index.html +24 -2
- data/vendor/jquery/jquery-1.6.4.js +9046 -0
- data/vendor/jquerymobile/{jquery.mobile-1.0b2.css → jquery.mobile-1.0b3.css} +64 -5
- data/vendor/jquerymobile/{jquery.mobile-1.0b2.js → jquery.mobile-1.0b3.js} +1125 -727
- data/vendor/skeleton/templates/index.html +13 -1
- metadata +7 -7
- data/vendor/jquery/jquery-1.6.2.min.js +0 -18
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* jQuery Mobile v1.
|
2
|
+
* jQuery Mobile v1.0b3
|
3
3
|
* http://jquerymobile.com/
|
4
4
|
*
|
5
5
|
* Copyright 2010, jQuery Project
|
@@ -666,8 +666,11 @@ a.ui-link-inherit {
|
|
666
666
|
-webkit-border-radius: .6em;
|
667
667
|
border-radius: .6em;
|
668
668
|
}
|
669
|
-
|
670
|
-
|
669
|
+
.ui-corner-none {
|
670
|
+
-moz-border-radius: 0;
|
671
|
+
-webkit-border-radius: 0;
|
672
|
+
border-radius: 0;
|
673
|
+
}
|
671
674
|
|
672
675
|
/* Interaction cues
|
673
676
|
-----------------------------------------------------------------------------------------------------------*/
|
@@ -811,6 +814,7 @@ a.ui-link-inherit {
|
|
811
814
|
.ui-icon-radio-off {
|
812
815
|
background-color: transparent;
|
813
816
|
}
|
817
|
+
.ui-icon-checkbox-on,
|
814
818
|
.ui-checkbox-on .ui-icon,
|
815
819
|
.ui-radio-on .ui-icon {
|
816
820
|
background-color: #4596ce; /* NOTE: this hex should match the active state color. It's repeated here for cascade */
|
@@ -1002,6 +1006,21 @@ a.ui-link-inherit {
|
|
1002
1006
|
.landscape,
|
1003
1007
|
.landscape .ui-page { min-height: 300px; }
|
1004
1008
|
|
1009
|
+
/* native overflow scrolling */
|
1010
|
+
.ui-page.ui-mobile-touch-overflow,
|
1011
|
+
.ui-mobile-touch-overflow.ui-native-fixed .ui-content {
|
1012
|
+
overflow: auto;
|
1013
|
+
height: 100%;
|
1014
|
+
-webkit-overflow-scrolling: touch;
|
1015
|
+
-moz-overflow-scrolling: touch;
|
1016
|
+
-o-overflow-scrolling: touch;
|
1017
|
+
-ms-overflow-scrolling: touch;
|
1018
|
+
overflow-scrolling: touch;
|
1019
|
+
}
|
1020
|
+
.ui-page.ui-mobile-pre-transition {
|
1021
|
+
display: block;
|
1022
|
+
}
|
1023
|
+
|
1005
1024
|
/* loading screen */
|
1006
1025
|
.ui-loading .ui-mobile-viewport { overflow: hidden !important; }
|
1007
1026
|
.ui-loading .ui-loader { display: block; }
|
@@ -1028,6 +1047,43 @@ a.ui-link-inherit {
|
|
1028
1047
|
.ui-content { border-width: 0; overflow: visible; overflow-x: hidden; padding: 15px; }
|
1029
1048
|
.ui-page-fullscreen .ui-content { padding:0; }
|
1030
1049
|
|
1050
|
+
/* native fixed headers and footers */
|
1051
|
+
.ui-mobile-touch-overflow.ui-page.ui-native-fixed,
|
1052
|
+
.ui-mobile-touch-overflow.ui-page.ui-native-fullscreen {
|
1053
|
+
overflow: visible;
|
1054
|
+
}
|
1055
|
+
.ui-mobile-touch-overflow.ui-native-fixed .ui-header,
|
1056
|
+
.ui-mobile-touch-overflow.ui-native-fixed .ui-footer {
|
1057
|
+
position: fixed;
|
1058
|
+
left: 0;
|
1059
|
+
right: 0;
|
1060
|
+
top: 0;
|
1061
|
+
z-index: 200;
|
1062
|
+
}
|
1063
|
+
.ui-mobile-touch-overflow.ui-page.ui-native-fixed .ui-footer {
|
1064
|
+
top: auto;
|
1065
|
+
bottom: 0;
|
1066
|
+
}
|
1067
|
+
.ui-mobile-touch-overflow.ui-native-fixed .ui-content {
|
1068
|
+
padding-top: 2.5em;
|
1069
|
+
padding-bottom: 3em;
|
1070
|
+
top: 0;
|
1071
|
+
bottom: 0;
|
1072
|
+
height: auto;
|
1073
|
+
position: absolute;
|
1074
|
+
}
|
1075
|
+
.ui-mobile-touch-overflow.ui-native-fullscreen .ui-content {
|
1076
|
+
padding-top: 0;
|
1077
|
+
padding-bottom: 0;
|
1078
|
+
}
|
1079
|
+
.ui-mobile-touch-overflow.ui-native-fullscreen .ui-header,
|
1080
|
+
.ui-mobile-touch-overflow.ui-native-fullscreen .ui-footer {
|
1081
|
+
opacity: .9;
|
1082
|
+
}
|
1083
|
+
.ui-native-bars-hidden {
|
1084
|
+
display: none;
|
1085
|
+
}
|
1086
|
+
|
1031
1087
|
/* icons sizing */
|
1032
1088
|
.ui-icon { width: 18px; height: 18px; }
|
1033
1089
|
|
@@ -1578,9 +1634,12 @@ ol.ui-listview .ui-li-jsnumbering:before { content: "" !important; } /* to avoid
|
|
1578
1634
|
.ui-listview-inset .ui-li { border-right-width: 1px; border-left-width: 1px; }
|
1579
1635
|
.ui-li:last-child, .ui-li.ui-field-contain:last-child { border-bottom-width: 1px; }
|
1580
1636
|
.ui-li>.ui-btn-inner { display: block; position: relative; padding: 0; }
|
1581
|
-
.ui-li .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li { padding: .7em
|
1637
|
+
.ui-li .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li { padding: .7em 15px .7em 15px; display: block; }
|
1582
1638
|
.ui-li-has-thumb .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-thumb { min-height: 60px; padding-left: 100px; }
|
1583
1639
|
.ui-li-has-icon .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-icon { min-height: 20px; padding-left: 40px; }
|
1640
|
+
.ui-li-has-count .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-count { padding-right: 45px; }
|
1641
|
+
.ui-li-has-arrow .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-arrow { padding-right: 30px; }
|
1642
|
+
.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; }
|
1584
1643
|
.ui-li-heading { font-size: 16px; font-weight: bold; display: block; margin: .6em 0; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
|
1585
1644
|
.ui-li-desc { font-size: 12px; font-weight: normal; display: block; margin: -.5em 0 .6em; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
|
1586
1645
|
.ui-li-thumb, .ui-li-icon { position: absolute; left: 1px; top: 0; max-height: 80px; max-width: 80px; }
|
@@ -1627,7 +1686,7 @@ a.ui-slider-handle .ui-btn-inner { padding-left: 0; padding-right: 0; }
|
|
1627
1686
|
|
1628
1687
|
div.ui-slider-switch { height: 32px; overflow: hidden; margin-left: 0; }
|
1629
1688
|
div.ui-slider-inneroffset { margin-left: 50%; position: absolute; top: 1px; height: 100%; width: 50%; }
|
1630
|
-
|
1689
|
+
a.ui-slider-handle-snapping { -webkit-transition: left 100ms linear; }
|
1631
1690
|
div.ui-slider-labelbg { position: absolute; top:0; margin: 0; border-width: 0; }
|
1632
1691
|
div.ui-slider-switch div.ui-slider-labelbg-a { width: 60%; height: 100%; left: 0; }
|
1633
1692
|
div.ui-slider-switch div.ui-slider-labelbg-b { width: 60%; height: 100%; right: 0; }
|