rhodes 5.5.0.3 → 5.5.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (131) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +10 -0
  3. data/lib/commonAPI/coreapi/ext/platform/android/src/com/rho/notification/NotificationSingleton.java +20 -8
  4. data/lib/commonAPI/coreapi/ext/platform/iphone/cpp_based_impl/SystemImpl.mm +1 -2
  5. data/lib/commonAPI/coreapi/ext/system.xml +1 -1
  6. data/platform/android/build/android.rake +1 -0
  7. data/platform/iphone/Classes/AppManager/AppManager.m +44 -3
  8. data/platform/iphone/Classes/NativeView/RhoNativeViewManager.mm +4 -3
  9. data/platform/iphone/Classes/NativeView/RhoNativeViewManagerOC.h +1 -1
  10. data/platform/iphone/Classes/RhoMainView.h +8 -2
  11. data/platform/iphone/Classes/RhoUIWebView.h +75 -0
  12. data/platform/iphone/Classes/RhoUIWebView.m +142 -0
  13. data/platform/iphone/Classes/RhoWKWebView.h +87 -0
  14. data/platform/iphone/Classes/RhoWKWebView.m +187 -0
  15. data/platform/iphone/Classes/RhoWebView.h +72 -0
  16. data/platform/iphone/Classes/RhoWebViewFabrique.h +35 -0
  17. data/platform/iphone/Classes/RhoWebViewFabrique.m +87 -0
  18. data/platform/iphone/Classes/Rhodes.m +17 -6
  19. data/platform/iphone/Classes/Signature.old/SignatureDelegate.m +11 -4
  20. data/platform/iphone/Classes/Signature/SignatureDelegate.m +3 -4
  21. data/platform/iphone/Classes/SimpleMainView.h +7 -5
  22. data/platform/iphone/Classes/SimpleMainView.m +174 -179
  23. data/platform/iphone/Classes/SplitView/RightViewController.h +2 -2
  24. data/platform/iphone/Classes/SplitView/RightViewController.m +9 -10
  25. data/platform/iphone/Classes/SplitView/SplittedMainView.h +2 -3
  26. data/platform/iphone/Classes/SplitView/SplittedMainView.m +10 -7
  27. data/platform/iphone/Classes/TabbedMainView.h +2 -1
  28. data/platform/iphone/Classes/TabbedMainView.m +13 -10
  29. data/platform/iphone/Classes/URLProtocol/CRhoURLProtocol.m +21 -5
  30. data/platform/iphone/Classes/WebView.m +1 -1
  31. data/platform/iphone/RhoAppBaseLib/RhoAppBaseLib.xcodeproj/project.pbxproj +40 -3
  32. data/platform/iphone/RhoLib/RhoLib.xcodeproj/project.pbxproj +4 -0
  33. data/platform/iphone/rbuild/iphone.rake +51 -0
  34. data/platform/shared/common/RhoNativeViewManager.h +9 -9
  35. data/platform/shared/common/RhodesApp.cpp +13 -1
  36. data/platform/shared/net/HttpServer.cpp +12 -2
  37. data/platform/shared/qt/rhodes/ExternalWebView.ui +11 -2
  38. data/platform/shared/qt/rhodes/QtMainWindow.cpp +9 -7
  39. data/platform/shared/qt/rhodes/QtMainWindow.ui +13 -4
  40. data/platform/shared/qt/rhodes/qkineticscroller.cpp +1245 -0
  41. data/platform/shared/qt/rhodes/qkineticscroller.h +165 -0
  42. data/platform/shared/qt/rhodes/qkineticscroller_p.h +168 -0
  43. data/platform/shared/qt/rhodes/qtflickgesture.cpp +696 -0
  44. data/platform/shared/qt/rhodes/qtflickgesture_p.h +107 -0
  45. data/platform/shared/qt/rhodes/qtscroller.cpp +2080 -0
  46. data/platform/shared/qt/rhodes/qtscroller.h +138 -0
  47. data/platform/shared/qt/rhodes/qtscroller_p.h +205 -0
  48. data/platform/shared/qt/rhodes/qtscrollerfilter.cpp +350 -0
  49. data/platform/shared/qt/rhodes/qtscrollerfilter_p.h +110 -0
  50. data/platform/shared/qt/rhodes/qtscrollerproperties.cpp +412 -0
  51. data/platform/shared/qt/rhodes/qtscrollerproperties.h +135 -0
  52. data/platform/shared/qt/rhodes/qtscrollerproperties_p.h +90 -0
  53. data/platform/shared/qt/rhodes/qtscrollevent.cpp +190 -0
  54. data/platform/shared/qt/rhodes/qtscrollevent.h +100 -0
  55. data/platform/shared/qt/rhodes/qtscrollevent_p.h +33 -0
  56. data/platform/shared/qt/rhodes/qwebviewkineticscroller.cpp +347 -0
  57. data/platform/shared/qt/rhodes/qwebviewkineticscroller.h +90 -0
  58. data/platform/shared/qt/rhodes/qwebviewselectionsuppressor.h +113 -0
  59. data/platform/shared/qt/rhodes/rhodes.pro +19 -0
  60. data/res/generators/rhogen.rb +307 -15
  61. data/res/generators/templates/application/app/Settings/err_sync.erb +12 -6
  62. data/res/generators/templates/application/app/Settings/home.erb +32 -17
  63. data/res/generators/templates/application/app/Settings/index.erb +55 -26
  64. data/res/generators/templates/application/app/Settings/javascript_index.html +111 -0
  65. data/res/generators/templates/application/app/Settings/javascript_login.html +65 -0
  66. data/res/generators/templates/application/app/Settings/login.erb +25 -19
  67. data/res/generators/templates/application/app/Settings/reset.erb +18 -9
  68. data/res/generators/templates/application/app/Settings/wait.erb +10 -7
  69. data/res/generators/templates/application/app/index.erb +32 -20
  70. data/res/generators/templates/application/app/javascript_index.html +66 -0
  71. data/res/generators/templates/application/app/javascript_index.js +250 -0
  72. data/res/generators/templates/application/app/layout.erb +12 -67
  73. data/res/generators/templates/application/javascript_build.yml +41 -0
  74. data/res/generators/templates/application/javascript_rhoconfig.txt +123 -0
  75. data/res/generators/templates/application/public/bootstrap-3.3.7/css/bootstrap-theme.css +587 -0
  76. data/res/generators/templates/application/public/bootstrap-3.3.7/css/bootstrap-theme.css.map +1 -0
  77. data/res/generators/templates/application/public/bootstrap-3.3.7/css/bootstrap-theme.min.css +6 -0
  78. data/res/generators/templates/application/public/bootstrap-3.3.7/css/bootstrap-theme.min.css.map +1 -0
  79. data/res/generators/templates/application/public/bootstrap-3.3.7/css/bootstrap.css +6757 -0
  80. data/res/generators/templates/application/public/bootstrap-3.3.7/css/bootstrap.css.map +1 -0
  81. data/res/generators/templates/application/public/bootstrap-3.3.7/css/bootstrap.min.css +6 -0
  82. data/res/generators/templates/application/public/bootstrap-3.3.7/css/bootstrap.min.css.map +1 -0
  83. data/res/generators/templates/application/public/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.eot +0 -0
  84. data/res/generators/templates/application/public/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.svg +288 -0
  85. data/res/generators/templates/application/public/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.ttf +0 -0
  86. data/res/generators/templates/application/public/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.woff +0 -0
  87. data/res/generators/templates/application/public/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.woff2 +0 -0
  88. data/res/generators/templates/application/public/bootstrap-3.3.7/js/bootstrap.js +2377 -0
  89. data/res/generators/templates/application/public/bootstrap-3.3.7/js/bootstrap.min.js +7 -0
  90. data/res/generators/templates/application/public/bootstrap-3.3.7/js/npm.js +13 -0
  91. data/res/generators/templates/application/public/css/style.css +3 -0
  92. data/res/generators/templates/application/public/jquery/jquery-3.1.1.min.js +4 -0
  93. data/res/generators/templates/application/public/jquery/jquery-3.1.1.min.map +1 -0
  94. data/res/generators/templates/application/rhoconfig.txt +16 -0
  95. data/res/generators/templates/iphone_project/Bremen7.xcodeproj/project.pbxproj +4 -0
  96. data/res/generators/templates/model/edit.erb +22 -21
  97. data/res/generators/templates/model/index.erb +24 -22
  98. data/res/generators/templates/model/javascript_edit.html +65 -0
  99. data/res/generators/templates/model/javascript_index.html +56 -0
  100. data/res/generators/templates/model/javascript_index.js +83 -0
  101. data/res/generators/templates/model/javascript_model.js +16 -0
  102. data/res/generators/templates/model/javascript_new.html +64 -0
  103. data/res/generators/templates/model/javascript_show.html +66 -0
  104. data/res/generators/templates/model/new.erb +22 -19
  105. data/res/generators/templates/model/show.erb +22 -14
  106. data/res/prebuild_base_app/app/index.erb +31 -18
  107. data/res/prebuild_base_app/app/layout.erb +11 -56
  108. data/version +1 -1
  109. metadata +59 -24
  110. data/res/generators/templates/application/public/css/android.css +0 -418
  111. data/res/generators/templates/application/public/css/iphone.css +0 -378
  112. data/res/generators/templates/application/public/css/jqmobile-patch.css +0 -62
  113. data/res/generators/templates/application/public/css/re_webkit.css +0 -736
  114. data/res/generators/templates/application/public/css/re_webkit_flat.css +0 -753
  115. data/res/generators/templates/application/public/css/windows_mobile.css +0 -327
  116. data/res/generators/templates/application/public/jqmobile/images/ajax-loader.gif +0 -0
  117. data/res/generators/templates/application/public/jqmobile/images/icon-search-black.png +0 -0
  118. data/res/generators/templates/application/public/jqmobile/images/icons-18-black.png +0 -0
  119. data/res/generators/templates/application/public/jqmobile/images/icons-18-white.png +0 -0
  120. data/res/generators/templates/application/public/jqmobile/images/icons-36-black.png +0 -0
  121. data/res/generators/templates/application/public/jqmobile/images/icons-36-white.png +0 -0
  122. data/res/generators/templates/application/public/jqmobile/jquery.mobile-1.4.5.min.css +0 -3
  123. data/res/generators/templates/application/public/jqmobile/jquery.mobile-1.4.5.min.js +0 -10
  124. data/res/generators/templates/application/public/jqmobile/jquery.mobile-1.4.5.min.map +0 -1
  125. data/res/generators/templates/application/public/jqmobile/jquery.mobile.structure-1.4.5.min.css +0 -3
  126. data/res/generators/templates/application/public/jqmobile/jquery.mobile.theme-1.4.5.min.css +0 -3
  127. data/res/generators/templates/application/public/jquery/jquery-1.9.1.min.js +0 -5
  128. data/res/generators/templates/application/public/jquery/jquery-1.9.1.min.map +0 -1
  129. data/res/generators/templates/application/public/js/application.js +0 -1
  130. data/res/generators/templates/application/public/js/jqmobile-patch.js +0 -466
  131. data/res/generators/templates/application/public/js/syncengine.js +0 -504
@@ -1,378 +0,0 @@
1
- a {
2
- text-decoration: none;
3
- }
4
-
5
- body {
6
- margin: 0;
7
- font-family: Helvetica;
8
- }
9
-
10
- h1 {
11
- font-size: 1.4em;
12
- }
13
-
14
- /* ---------- JQM theme customization ------------- */
15
-
16
- .ui-bar-a {
17
- border: 1px solid #ccc;
18
- background: #bbb;
19
- color: white;
20
- text-shadow: 1px 1px 1px #000;
21
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0.0, #aebbcb), color-stop(0.5, #8094ae), color-stop(1.0, #6e84a2));
22
- /*
23
- background-image: -webkit-gradient(linear, left top, left bottom, from(#ddd), to(#bbb));
24
- */
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;
32
- }
33
- .ui-bar-a .ui-link-inherit {
34
- color: #333;
35
- }
36
- .ui-bar-a .ui-link {
37
- color: #2489CE;
38
- font-weight: bold;
39
- }
40
-
41
-
42
-
43
- .ui-btn-up-a {
44
-
45
- /*
46
- -webkit-border-radius: 5px;
47
- overflow: hidden;
48
- text-align: center;
49
- width: auto;
50
- height: 30px;
51
- font-size: .9em;
52
- border-left: #5e7088 1px solid;
53
- border-right: #5e7088 1px solid;
54
- border-top: #34404e 1px solid;
55
- border-bottom: #34404e 1px solid;
56
- padding: 0 2px 0 2px;
57
- */
58
-
59
-
60
- border: 1px solid #222;
61
- background: #333333;
62
- font-weight: bold;
63
- color: #fff;
64
- text-shadow: 0 -1px 1px #000;
65
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0.0, #92a4bc), color-stop(0.5, #476997), color-stop(1.0, #4e6c92));
66
- /*
67
- background-image: -webkit-gradient(linear, left top, left bottom, from(#777), to(#555));
68
- */
69
- }
70
- .ui-btn-up-a a.ui-link-inherit {
71
- color: #fff;
72
- }
73
- .ui-btn-hover-a {
74
- border: 1px solid #000;
75
- background: #444444;
76
- font-weight: bold;
77
- color: #fff;
78
- text-shadow: 0 -1px 1px #000;
79
- background-image: -webkit-gradient(linear, left top, left bottom, from(#888), to(#666));
80
- }
81
- .ui-btn-hover-a a.ui-link-inherit {
82
- color: #fff;
83
- }
84
- .ui-btn-down-a {
85
- border: 1px solid #000;
86
- background: #3d3d3d;
87
- font-weight: bold;
88
- color: #fff;
89
- text-shadow: 0 -1px 1px #000;
90
- background-image: -webkit-gradient(linear, left top, left bottom, from(#555), to(#7a7a7a));
91
- }
92
- .ui-btn-down-a a.ui-link-inherit {
93
- color: #fff;
94
- }
95
- .ui-btn-up-a,
96
- .ui-btn-hover-a,
97
- .ui-btn-down-a {
98
- font-family: Helvetica, Arial, sans-serif;
99
- text-decoration: none;
100
- }
101
-
102
-
103
- .ui-body-c {
104
- border: 1px solid #B3B3B3;
105
- color: #333333;
106
- text-shadow: 0 1px 0 #fff;
107
- background: #f0f0f0;
108
- background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#ddd));
109
- }
110
- .ui-body-c,
111
- .ui-body-c input,
112
- .ui-body-c select,
113
- .ui-body-c textarea,
114
- .ui-body-c button {
115
- font-family: Helvetica, Arial, sans-serif;
116
- }
117
- .ui-body-c .ui-link-inherit {
118
- color: #333333;
119
- }
120
- .ui-body-c .ui-link {
121
- color: #2489CE;
122
- font-weight: bold;
123
- }
124
-
125
- .ui-btn-up-c {
126
- border: 1px solid #ccc;
127
- background: #eee;
128
- font-weight: bold;
129
- color: #444;
130
- text-shadow: 0 1px 1px #f6f6f6;
131
- background-image: -webkit-gradient(linear, left top, left bottom, from(#fdfdfd), to(#eee));
132
- }
133
- .ui-btn-up-c a.ui-link-inherit {
134
- color: #2F3E46;
135
- }
136
-
137
- .ui-btn-hover-c {
138
- border: 1px solid #bbb;
139
- background: #dadada;
140
- font-weight: bold;
141
- color: #101010;
142
- text-shadow: 0 1px 1px #fff;
143
- background-image: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#dadada));
144
- }
145
- .ui-btn-hover-c a.ui-link-inherit {
146
- color: #2F3E46;
147
- }
148
- .ui-btn-down-c {
149
- border: 1px solid #808080;
150
- background: #fdfdfd;
151
- font-weight: bold;
152
- color: #111111;
153
- text-shadow: 0 1px 1px #ffffff;
154
- background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#fdfdfd));
155
- }
156
- .ui-btn-down-c a.ui-link-inherit {
157
- color: #2F3E46;
158
- }
159
- .ui-btn-up-c,
160
- .ui-btn-hover-c,
161
- .ui-btn-down-c {
162
- font-family: Helvetica, Arial, sans-serif;
163
- text-decoration: none;
164
- }
165
-
166
-
167
- .ui-corner-tl {
168
- -moz-border-radius-topleft: 4px;
169
- -webkit-border-top-left-radius: 4px;
170
- border-top-left-radius: 4px;
171
- }
172
- .ui-corner-tr {
173
- -moz-border-radius-topright: 4px;
174
- -webkit-border-top-right-radius: 4px;
175
- border-top-right-radius: 4px;
176
- }
177
- .ui-corner-bl {
178
- -moz-border-radius-bottomleft: 4px;
179
- -webkit-border-bottom-left-radius: 4px;
180
- border-bottom-left-radius: 4px;
181
- }
182
- .ui-corner-br {
183
- -moz-border-radius-bottomright: 4px;
184
- -webkit-border-bottom-right-radius: 4px;
185
- border-bottom-right-radius: 4px;
186
- }
187
- .ui-corner-top {
188
- -moz-border-radius-topleft: 4px;
189
- -webkit-border-top-left-radius: 4px;
190
- border-top-left-radius: 4px;
191
- -moz-border-radius-topright: 4px;
192
- -webkit-border-top-right-radius: 4px;
193
- border-top-right-radius: 4px;
194
- }
195
- .ui-corner-bottom {
196
- -moz-border-radius-bottomleft: 4px;
197
- -webkit-border-bottom-left-radius: 4px;
198
- border-bottom-left-radius: 4px;
199
- -moz-border-radius-bottomright: 4px;
200
- -webkit-border-bottom-right-radius: 4px;
201
- border-bottom-right-radius: 4px;
202
- }
203
- .ui-corner-right {
204
- -moz-border-radius-topright: 4px;
205
- -webkit-border-top-right-radius: 4px;
206
- border-top-right-radius: 4px;
207
- -moz-border-radius-bottomright: 4px;
208
- -webkit-border-bottom-right-radius: 4px;
209
- border-bottom-right-radius: 4px;
210
- }
211
- .ui-corner-left {
212
- -moz-border-radius-topleft: 4px;
213
- -webkit-border-top-left-radius: 4px;
214
- border-top-left-radius: 4px;
215
- -moz-border-radius-bottomleft: 4px;
216
- -webkit-border-bottom-left-radius: 4px;
217
- border-bottom-left-radius: 4px;
218
- }
219
- .ui-corner-all {
220
- -moz-border-radius: 4px;
221
- -webkit-border-radius: 4px;
222
- border-radius: 4px;
223
- }
224
-
225
-
226
-
227
- .ui-btn-corner-tl {
228
- -moz-border-radius-topleft: 7px;
229
- -webkit-border-top-left-radius: 7px;
230
- border-top-left-radius: 7px;
231
- }
232
- .ui-btn-corner-tr {
233
- -moz-border-radius-topright: 7px;
234
- -webkit-border-top-right-radius: 7px;
235
- border-top-right-radius: 7px;
236
- }
237
- .ui-btn-corner-bl {
238
- -moz-border-radius-bottomleft: 7px;
239
- -webkit-border-bottom-left-radius: 7px;
240
- border-bottom-left-radius: 7px;
241
- }
242
- .ui-btn-corner-br {
243
- -moz-border-radius-bottomright: 7px;
244
- -webkit-border-bottom-right-radius: 7px;
245
- border-bottom-right-radius: 7px;
246
- }
247
- .ui-btn-corner-top {
248
- -moz-border-radius-topleft: 7px;
249
- -webkit-border-top-left-radius: 7px;
250
- border-top-left-radius: 7px;
251
- -moz-border-radius-topright: 7px;
252
- -webkit-border-top-right-radius: 7px;
253
- border-top-right-radius: 7px;
254
- }
255
- .ui-btn-corner-bottom {
256
- -moz-border-radius-bottomleft: 7px;
257
- -webkit-border-bottom-left-radius: 7px;
258
- border-bottom-left-radius: 7px;
259
- -moz-border-radius-bottomright: 7px;
260
- -webkit-border-bottom-right-radius: 7px;
261
- border-bottom-right-radius: 7px;
262
- }
263
- .ui-btn-corner-right {
264
- -moz-border-radius-topright: 7px;
265
- -webkit-border-top-right-radius: 7px;
266
- border-top-right-radius: 7px;
267
- -moz-border-radius-bottomright: 7px;
268
- -webkit-border-bottom-right-radius: 7px;
269
- border-bottom-right-radius: 7px;
270
- }
271
- .ui-btn-corner-left {
272
- -moz-border-radius-topleft: 7px;
273
- -webkit-border-top-left-radius: 7px;
274
- border-top-left-radius: 7px;
275
- -moz-border-radius-bottomleft: 7px;
276
- -webkit-border-bottom-left-radius: 7px;
277
- border-bottom-left-radius: 7px;
278
- }
279
- .ui-btn-corner-all {
280
- -moz-border-radius: 7px;
281
- -webkit-border-radius: 7px;
282
- border-radius: 7px;
283
- }
284
-
285
- /* ---------- Custom fixes ------------- */
286
-
287
- .ui-btn-left[data-rel="back"] .ui-btn-inner,
288
- .ui-btn-left[data-icon="back"] .ui-btn-inner,
289
- .ui-btn-left[data-icon="arrow-l"] .ui-btn-inner {
290
- border-radius: 0;
291
- padding-left: 5px;
292
- }
293
- .ui-btn-left[data-rel="back"],
294
- .ui-btn-left[data-icon="back"],
295
- .ui-btn-left[data-icon="arrow-l"] {
296
- margin-top: 2px;
297
- -webkit-box-shadow: none;
298
- /*
299
- -webkit-border-bottom-left-radius: 200px 50px;
300
- -webkit-border-top-left-radius: 200px 50px;
301
- */
302
- border-color: transparent;
303
- background-color: transparent;
304
- background-image: none;
305
-
306
- -webkit-border-bottom-right-radius: 7px 7px;
307
- -webkit-border-top-right-radius: 7px 7px;
308
- -webkit-border-image: url(../images/backButton.png) 2 7 2 13 stretch stretch;
309
- border-width: 1px 5px 2px 13px;
310
- width: auto;
311
- }
312
-
313
- a.ui-btn-left[data-rel="back"] .ui-icon,
314
- a.ui-btn-left[data-icon="back"] .ui-icon,
315
- a.ui-btn-left[data-icon="arrow-l"] .ui-icon {
316
- display: none;
317
- }
318
-
319
- /*
320
- .ui-btn-left[data-icon="home"] .ui-btn-inner {
321
- border-radius: 0;
322
- padding-left: 5px;
323
- }
324
- .ui-btn-left[data-icon="home"] {
325
- margin-top: 2px;
326
- -webkit-box-shadow: none;
327
- -webkit-border-bottom-left-radius: 16px 16px;
328
- -webkit-border-bottom-right-radius: 6px 6px;
329
- -webkit-border-image: url(../images/backButton.png) 0 5 0 13 stretch stretch;
330
- -webkit-border-top-left-radius: 16px 16px;
331
- -webkit-border-top-right-radius: 6px 6px;
332
- border-width: 0 5px 0 13px;
333
- width: auto;
334
- }
335
- a.ui-btn-left[data-icon="home"] {
336
- display: none;
337
- }
338
- */
339
-
340
- div.itemLabel {
341
- font-weight: bold;
342
- font-size: 16px;
343
- }
344
- div.itemValue {
345
- font-weight: normal;
346
- font-size: 16px;
347
- }
348
-
349
- .ui-content {
350
- /*min-height: 480px;*/
351
- background-image: url(../images/pinstripes.png);
352
- }
353
-
354
- .ui-header .ui-title {
355
- font-size: 18px;
356
- }
357
-
358
- .ui-header .ui-btn {
359
- margin-top: 2px;
360
- }
361
-
362
- @media all and (min-width: 320px){
363
- .ui-content ul li div.itemLabel {
364
- display: inline-block;
365
- width: 50%;
366
- overflow: hidden;
367
- }
368
-
369
- .ui-content ul li div.itemValue {
370
- display: inline-block;
371
- overflow: hidden;
372
- }
373
- }
374
-
375
- .errorMessage {
376
- color: red;
377
- text-align: center
378
- }
@@ -1,62 +0,0 @@
1
- @media all and (min-width: 320px){
2
- .ui-controlgroup-label { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0; }
3
- .ui-controlgroup-controls { width: 60%; display: inline-block; }
4
- }
5
-
6
- @media all and (min-width: 320px){
7
- .ui-field-contain { border-width: 0; padding: 0; margin: 1em 0; }
8
- }
9
-
10
- @media all and (min-width: 320px){
11
- label.ui-select { display: inline-block; width: 20%; margin: 0 2% 0 0; }
12
- .ui-select { width: 60%; display: inline-block; }
13
- }
14
-
15
- @media all and (min-width: 320px){
16
- label.ui-input-text { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0 }
17
- input.ui-input-text,
18
- textarea.ui-input-text,
19
- .ui-input-search { width: 60%; display: inline-block; }
20
- .ui-input-search { width: 50%; }
21
- .ui-input-search input.ui-input-text { width: 98%; /*echos rule from above*/ }
22
- }
23
-
24
-
25
- @media all and (min-width: 320px){
26
- .ui-controlgroup-controls,
27
- .ui-select,
28
- input.ui-input-text,
29
- textarea.ui-input-text,
30
- .ui-input-search { margin-left: 20px; }
31
- }
32
-
33
- /* fix for https://www.pivotaltracker.com/story/show/19794687 */
34
- @media all and (min-width: 320px){
35
- .ui-content ul li div.itemLabel {
36
- float: left; /* float the label left, rather than floating the item right */
37
- width: 40%; /* A width MUST be specified when floating. */
38
- }
39
-
40
- .ui-content ul li div.itemValue {
41
- width: 60%;
42
- float: none; /* Un-do the default float */
43
- word-wrap: break-word; /* breaks-up long strings with no spaces */
44
- }
45
- }
46
-
47
- /* endless scrolling feature support */
48
- div.ui-page-active ul.endless.loading li.loadingMessage {
49
- display: block;
50
- }
51
- div.ui-page-active ul.endless li.loadingMessage {
52
- display: none;
53
- }
54
-
55
- /*
56
- Fix for flying screen (horizontal axis motions) issue
57
- proposed here: https://groups.google.com/d/msg/rhomobile/ZfGetqYv-JI/KpncA9zHAlQJ
58
- */
59
-
60
- div.ui-header {
61
- border-style: solid none;
62
- }
@@ -1,736 +0,0 @@
1
- body {
2
- font-size: 150%;
3
- }
4
-
5
- a {
6
- text-decoration: none;
7
- }
8
-
9
- .content {
10
- width: inherit;
11
- height: 100%;
12
- }
13
-
14
- .toolbar .noButton {
15
- display: none;
16
- }
17
-
18
- .content ul {
19
- -webkit-padding-start: 0;
20
- margin: 0;
21
- padding: 0;
22
- list-style-type: none;
23
- }
24
-
25
- .content ul li {
26
- overflow: hidden;
27
- clear: both;
28
- }
29
-
30
- .content ul li span {
31
- display: block;
32
- }
33
-
34
- .content ul.settings li div.itemLabel span.title {
35
- padding: 0;
36
- margin: 0;
37
- }
38
-
39
- body {
40
- margin: 0;
41
- height: 100%;
42
- width: inherit;
43
- font-family: "Droid", sans-serif;
44
- background: black;
45
- color: white;
46
- }
47
-
48
- h1 {
49
- font-size: 1em;
50
- }
51
-
52
- .content {
53
- background-color: black;
54
- width: 100%;
55
- padding: 0;
56
- margin: 0;
57
- }
58
-
59
- /* Toolbar */
60
-
61
- .toolbar {
62
- height: 60px;
63
- width: 100%;
64
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0.0, #2B2B2B), color-stop(0.2, #585858), color-stop(1.0, #2B2B2B));
65
- display: table;
66
- text-align: center;
67
- border-spacing: 10px;
68
- }
69
-
70
- .toolbar .leftItem,
71
- .toolbar .centerItem,
72
- .toolbar .rightItem {
73
- display: table-cell;
74
- }
75
-
76
- .toolbar a {
77
- line-height: 40px;
78
- color: black;
79
- display: block;
80
- }
81
-
82
- .toolbar .deleteButton,
83
- .toolbar .regularButton,
84
- .toolbar .blueButton,
85
- .toolbar .backButton {
86
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0.0, white), color-stop(0.5, #ccc), color-stop(1.0, #bdbebd));
87
- -webkit-border-radius: 5px;
88
- font-size: .9em;
89
- border: 1px solid white;
90
- }
91
-
92
- /* Header */
93
-
94
- .pageTitle {
95
- height: 25px;
96
- margin: 0;
97
- width: 100%;
98
- display: none;
99
- }
100
-
101
- .pageTitle h1 {
102
- position: absolute;
103
- top: 0;
104
- text-align: left;
105
- width: 100%;
106
- margin: 0;
107
- padding-left: 5px;
108
- color: white;
109
- text-shadow: 1px 1px 1px #000;
110
- line-height: 25px;
111
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0.0, #999), color-stop(0.5, #848684));
112
- }
113
-
114
- /* lists */
115
-
116
- .content ul {
117
- background: black;
118
- }
119
-
120
- .content ul li {
121
- border-bottom: 1px solid #666;
122
- font-size: 20px;
123
- }
124
-
125
- .content ul li a {
126
- display: block;
127
- text-decoration: none;
128
- color: white;
129
- font-size: 20px;
130
- height: 100%;
131
- width: 100%;
132
- padding: 15px 0 15px 0;
133
- background: url("../images/android/disclosure.png") no-repeat center right;
134
- }
135
-
136
- .content ul li a:hover {
137
- background-color: #3399cc;
138
- }
139
-
140
- .content ul li a img {
141
- float: left;
142
- height: 100%;
143
- max-width: 100px;
144
- }
145
-
146
- .content ul li span.title {
147
- padding: 0 50px 0 10px;
148
- }
149
-
150
- .content ul li span.disclosure_indicator {
151
- display: none;
152
- }
153
-
154
- .content ul li div.itemLabel {
155
- float: left;
156
- width: 45%;
157
- padding: 15px 0 15px 10px;
158
- }
159
-
160
- .content ul li div.itemValue {
161
- float: right;
162
- width: 45%;
163
- padding: 15px 10px 15px 0;
164
- }
165
-
166
- /* Forms */
167
-
168
- .content form button {
169
- -webkit-appearance: push-button;
170
- width: 300px;
171
- height: 40px;
172
- margin-left: 10px;
173
- }
174
-
175
- .content form ul {
176
- font-size: 20px;
177
- list-style-type: none;
178
- padding: 0;
179
- margin: 0;
180
- }
181
-
182
- .content form ul li {
183
- border-bottom: 1px solid #666;
184
- display: block;
185
- list-style-type: none;
186
- }
187
-
188
- .content form label {
189
- float: left;
190
- display: block;
191
- color: white;
192
- line-height: 64px;
193
- padding: 0 10px 0 5px;
194
- margin: 0;
195
- width: 40%;
196
- overflow: hidden;
197
- text-overflow: ellipsis;
198
- white-space: nowrap;
199
- }
200
-
201
- .content h2 {
202
- margin: 0;
203
- }
204
-
205
- .content h2.groupTitle {
206
- width: inherit;
207
- margin: 0;
208
- padding: 8px 0 8px 8px;
209
- font-size: 10px;
210
- color: white;
211
- background-color: #666;
212
- }
213
-
214
- .content form {
215
- background-color: black;
216
- }
217
-
218
- .content form input[type="checkbox"] {
219
- -webkit-appearance: none;
220
- background: url(/public/images/android/btn_check_off.png) no-repeat;
221
- float: right;
222
- height: 31px;
223
- width: 31px;
224
- margin-top: 15px;
225
- margin-right: 20px;
226
- }
227
-
228
- .content form input[type="checkbox"]:checked {
229
- background: url(/public/images/android/btn_check_on.png) no-repeat;
230
- float: right;
231
- height: 31px;
232
- width: 31px;
233
- margin-top: 15px;
234
- margin-right: 20px;
235
- }
236
-
237
- .content form input[type="radio"] {
238
- background: url(/public/images/android/btn_radio_off.png) no-repeat;
239
- -webkit-appearance: none;
240
- -webkit-box-sizing: border-box;
241
- border: none;
242
- height: 32px;
243
- margin: 0px;
244
- width: 32px;
245
- float: right;
246
- margin-right: 20px;
247
- margin-top: 15px;
248
- }
249
-
250
- .content form input[type="radio"]:checked {
251
- background: url(/public/images/android/btn_radio_on.png) no-repeat;
252
- margin-top: 15px;
253
- margin-right: 20px;
254
- }
255
-
256
- .content form select {
257
- -webkit-appearance: none;
258
- border: 0px;
259
- width: 100%;
260
- padding-left: 20px;
261
- height: 60px;
262
- color: white;
263
- background: url('/public/images/android/ic_menu_more.png') no-repeat center right;
264
- }
265
-
266
- .content form textarea {
267
- -webkit-appearance: none;
268
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0.0125, #d6d7d6), color-stop(0.25, #efefef), color-stop(0.95, #f7f7f7), color-stop(1.0, #f7f3f7));
269
- border: 1px solid #d6d7d6;
270
- -webkit-border-radius: 4px;
271
- margin: 10px 0 2px 10px;
272
- font-size: 0.9em;
273
- padding: 5px 0 2px 2px;
274
- box-shadow: 0 -1px 3px #000000;
275
- }
276
-
277
- .content form input[type="text"],
278
- .content form input[type="number"],
279
- .content form input[type="password"] {
280
- float: right;
281
- height: 40px;
282
- margin: 10px 10px 10px 0;
283
- padding-left: 5px;
284
- font-size: 26px;
285
- width: 150px;
286
- -webkit-appearance: none;
287
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0.0125, #d6d7d6), color-stop(0.25, #efefef), color-stop(0.95, #f7f7f7), color-stop(1.0, #f7f3f7));
288
- border: 1px solid #d6d7d6;
289
- -webkit-border-radius: 4px;
290
- box-shadow: 0 -1px 3px #000000;
291
- }
292
-
293
- .content form input.standardButton {
294
- height: 45px;
295
- margin: 2px 0 2px 0;
296
- -webkit-border: 2px;
297
- width: 100%;
298
- }
299
-
300
- /* Settings */
301
-
302
- .content ul.settings {
303
- padding: 0;
304
- margin: 0;
305
- }
306
-
307
- .content .reset h4 {
308
- margin: 20px;
309
- color: white;
310
- }
311
-
312
- .content div.standardButton {
313
- margin: 10px 10px 10px 10px;
314
- height: 45px;
315
- width: 284px;
316
- line-height: 45px;
317
- -webkit-appearance: push-button;
318
- }
319
-
320
- .content div.standardButton a {
321
- display: block;
322
- width: 100%;
323
- color: black;
324
- text-align: center;
325
- }
326
-
327
- .content ul.settings li.alertMessage {
328
- text-align: center;
329
- height: 45px;
330
- line-height: 45px;
331
- }
332
-
333
- .content ul.settings li.alertMessage span.message {
334
- color: red;
335
- }
336
-
337
- div.itemLabel {
338
- font-weight: bold;
339
- }
340
- div.itemValue {
341
- font-weight: normal;
342
- }
343
-
344
- /*
345
- .ui-page,
346
- .ui-content,
347
- .ui-content ul li,
348
- .ui-content form,
349
- .ui-btn a.ui-link-inherit {
350
- font-family: "Droid", sans-serif;
351
- background: black;
352
- color: white;
353
- }
354
-
355
- .ui-header h1 {
356
- font-size: 2em;
357
-
358
- }
359
-
360
- .ui-header {
361
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0.0, #2B2B2B), color-stop(0.2, #585858), color-stop(1.0, #2B2B2B));
362
- }
363
-
364
- .ui-header h1 {
365
- color: white;
366
- line-height: 25px;
367
- text-shadow: 1px 1px 1px #000;
368
- }
369
-
370
- */
371
-
372
-
373
- .ui-bar-a {
374
- border: 1px solid #2A2A2A;
375
- background: #111111;
376
- color: #ffffff;
377
- font-weight: bold;
378
- text-shadow: 0 -1px 1px #000000;
379
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0.0, #2B2B2B), color-stop(0.2, #585858), color-stop(1.0, #2B2B2B));
380
- }
381
- .ui-bar-a,
382
- .ui-bar-a input,
383
- .ui-bar-a select,
384
- .ui-bar-a textarea,
385
- .ui-bar-a button {
386
- font-family: "Droid", sans-serif;
387
- /*
388
- font-family: Helvetica, Arial, sans-serif;
389
- */
390
- }
391
- .ui-bar-a .ui-link-inherit {
392
- color: #fff;
393
- }
394
- .ui-bar-a .ui-link {
395
- color: #7cc4e7;
396
- font-weight: bold;
397
- }
398
- .ui-body-c {
399
- border: 1px solid #2A2A2A;
400
- background: #000;
401
- color: #fff;
402
- text-shadow: 0 1px 0 #000;
403
- font-weight: normal;
404
- /*
405
- background: #222222;
406
- background-image: -webkit-gradient(linear, left top, left bottom, from(#666), to(#222));
407
- */
408
- }
409
- .ui-body-c,
410
- .ui-body-c input,
411
- .ui-body-c select,
412
- .ui-body-c textarea,
413
- .ui-body-c button {
414
- font-family: "Droid", sans-serif;
415
- /*
416
- font-family: Helvetica, Arial, sans-serif;
417
- */
418
- }
419
- .ui-body-c .ui-link-inherit {
420
- color: #fff;
421
- }
422
- .ui-body-c .ui-link {
423
- color: #2489CE;
424
- font-weight: bold;
425
- }
426
- .ui-br {
427
- border-bottom: rgb(130,130,130);
428
- border-bottom: rgba(130,130,130,.3);
429
- border-bottom-width: 1px;
430
- border-bottom-style: solid;
431
- }
432
-
433
-
434
- li.ui-btn-up-c {
435
- border: 1px solid #222;
436
- background: #000;
437
- font-weight: bold;
438
- color: #fff;
439
- text-shadow: 0 -1px 1px #000;
440
- /*
441
- background: #333333;
442
- background-image: -webkit-gradient(linear, left top, left bottom, from(#555), to(#333));
443
- */
444
- }
445
-
446
-
447
- .ui-btn-up-c {
448
- border: 1px solid #222;
449
- background: #333333;
450
- font-weight: bold;
451
- color: #000;
452
- text-shadow: 0 -1px 1px #fff;
453
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0.0, white), color-stop(0.5, #ccc), color-stop(1.0, #bdbebd));
454
- /*
455
- border: 1px solid #222;
456
- background: #333333;
457
- font-weight: bold;
458
- color: #fff;
459
- text-shadow: 0 -1px 1px #000;
460
- background-image: -webkit-gradient(linear, left top, left bottom, from(#555), to(#333));
461
- */
462
- }
463
- .ui-btn-up-c a.ui-link-inherit {
464
- color: #fff;
465
- }
466
- .ui-btn-hover-c {
467
- border: 1px solid #000;
468
- background: #f73923;
469
- font-weight: bold;
470
- color: #000;
471
- text-shadow: none;
472
- /*text-shadow: 0 -1px 1px #fff;*/
473
- /*
474
- background: #F76922;
475
- background-image: -webkit-gradient(linear, left top, left bottom, from(#F76922), to(#F73932));
476
- */
477
- /*
478
- border: 1px solid #000;
479
- background: #444444;
480
- font-weight: bold;
481
- color: #fff;
482
- text-shadow: 0 -1px 1px #000;
483
- background-image: -webkit-gradient(linear, left top, left bottom, from(#666), to(#444));
484
- */
485
- }
486
- .ui-btn-hover-c a.ui-link-inherit {
487
- color: #000;
488
- }
489
- .ui-btn-down-c {
490
- border: 1px solid #000;
491
- background: #f76933;
492
- font-weight: bold;
493
- color: #000;
494
- text-shadow: none;
495
- /*text-shadow: 0 -1px 1px #fff;*/
496
- /*
497
- background-image: -webkit-gradient(linear, left top, left bottom, from(#F76922), to(#fadb4e));
498
- */
499
- /*
500
- border: 1px solid #000;
501
- background: #3d3d3d;
502
- font-weight: bold;
503
- color: #fff;
504
- text-shadow: 0 -1px 1px #000;
505
- background-image: -webkit-gradient(linear, left top, left bottom, from(#333), to(#5a5a5a));
506
- */
507
- }
508
- .ui-slider-switch.ui-btn-down-c {
509
- border: 1px solid #000;
510
- background: #3d3d3d;
511
- font-weight: bold;
512
- color: #fff;
513
- text-shadow: 0 -1px 1px #000;
514
- background-image: -webkit-gradient(linear, left top, left bottom, from(#333), to(#5a5a5a));
515
- }
516
- .ui-btn-down-c a.ui-link-inherit {
517
- color: #000;
518
- }
519
- .ui-btn-up-c,
520
- .ui-btn-hover-c,
521
- .ui-btn-down-c {
522
- font-family: "Droid", sans-serif;
523
- /*
524
- font-family: Helvetica, Arial, sans-serif;
525
- */
526
- text-decoration: none;
527
- }
528
-
529
- .ui-field-contain {
530
- border-bottom: 0;
531
- }
532
-
533
-
534
-
535
-
536
- .ui-field-contain input[type="text"],
537
- .ui-field-contain input[type="number"],
538
- .ui-field-contain input[type="password"],
539
- .ui-field-contain input[type="true"],
540
- .ui-field-contain textarea {
541
- -webkit-appearance: none;
542
- color: #000000;
543
- text-shadow: none;
544
- font-size: 0.9em;
545
-
546
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0.0125, #d6d7d6), color-stop(0.25, #efefef), color-stop(0.95, #f7f7f7), color-stop(1.0, #f7f3f7));
547
- border: 1px solid #d6d7d6;
548
- box-shadow: 0 -1px 3px #000000;
549
-
550
- }
551
-
552
- .ui-input-search {
553
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0.0125, #d6d7d6), color-stop(0.25, #efefef), color-stop(0.95, #f7f7f7), color-stop(1.0, #f7f3f7));
554
- /*
555
- background: #666 -webkit-gradient(linear, 0% 0%, 0% 100%, from(#666), to(#222));
556
- */
557
- background-image: url(../jqmobile/images/icon-search-black.png);
558
- background-position: 8px 50%;
559
- background-repeat: no-repeat;
560
-
561
- border: 1px solid #666;
562
- box-shadow: 0 -1px 3px #000000;
563
- }
564
- .ui-input-search .ui-input-clear {
565
- margin: -12px 4px;
566
- }
567
-
568
-
569
- .ui-bar-a select,
570
- .ui-body-c select {
571
- -webkit-appearance: none;
572
- border: 0;
573
- padding-left: 20px;
574
- /*
575
- width: 100%;
576
- height: 60px;
577
- */
578
- color: white;
579
- background: url('/public/images/android/ic_menu_more.png') no-repeat center right;
580
- }
581
-
582
-
583
- .ui-li-static {
584
- font-size: 16px;
585
- /*font-size: 0.9em;*/
586
- background: black;
587
- /*color: white;*/
588
- border-bottom: 1px solid #666;
589
- /*
590
- color: #000000;
591
- text-shadow: none;
592
- font-size: 0.9em;
593
-
594
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0.0125, #d6d7d6), color-stop(0.25, #efefef), color-stop(0.95, #f7f7f7), color-stop(1.0, #f7f3f7));
595
- border: 1px solid #d6d7d6;
596
- box-shadow: 0 -1px 3px #000000;
597
- */
598
- }
599
-
600
-
601
- .ui-corner-tl {
602
- -moz-border-radius-topleft: 4px;
603
- -webkit-border-top-left-radius: 4px;
604
- border-top-left-radius: 4px;
605
- }
606
- .ui-corner-tr {
607
- -moz-border-radius-topright: 4px;
608
- -webkit-border-top-right-radius: 4px;
609
- border-top-right-radius: 4px;
610
- }
611
- .ui-corner-bl {
612
- -moz-border-radius-bottomleft: 4px;
613
- -webkit-border-bottom-left-radius: 4px;
614
- border-bottom-left-radius: 4px;
615
- }
616
- .ui-corner-br {
617
- -moz-border-radius-bottomright: 4px;
618
- -webkit-border-bottom-right-radius: 4px;
619
- border-bottom-right-radius: 4px;
620
- }
621
- .ui-corner-top {
622
- -moz-border-radius-topleft: 4px;
623
- -webkit-border-top-left-radius: 4px;
624
- border-top-left-radius: 4px;
625
- -moz-border-radius-topright: 4px;
626
- -webkit-border-top-right-radius: 4px;
627
- border-top-right-radius: 4px;
628
- }
629
- .ui-corner-bottom {
630
- -moz-border-radius-bottomleft: 4px;
631
- -webkit-border-bottom-left-radius: 4px;
632
- border-bottom-left-radius: 4px;
633
- -moz-border-radius-bottomright: 4px;
634
- -webkit-border-bottom-right-radius: 4px;
635
- border-bottom-right-radius: 4px;
636
- }
637
- .ui-corner-right {
638
- -moz-border-radius-topright: 4px;
639
- -webkit-border-top-right-radius: 4px;
640
- border-top-right-radius: 4px;
641
- -moz-border-radius-bottomright: 4px;
642
- -webkit-border-bottom-right-radius: 4px;
643
- border-bottom-right-radius: 4px;
644
- }
645
- .ui-corner-left {
646
- -moz-border-radius-topleft: 4px;
647
- -webkit-border-top-left-radius: 4px;
648
- border-top-left-radius: 4px;
649
- -moz-border-radius-bottomleft: 4px;
650
- -webkit-border-bottom-left-radius: 4px;
651
- border-bottom-left-radius: 4px;
652
- }
653
- .ui-corner-all {
654
- -moz-border-radius: 4px;
655
- -webkit-border-radius: 4px;
656
- border-radius: 4px;
657
- }
658
-
659
-
660
-
661
- .ui-btn-corner-tl {
662
- -moz-border-radius-topleft: 5px;
663
- -webkit-border-top-left-radius: 5px;
664
- border-top-left-radius: 5px;
665
- }
666
- .ui-btn-corner-tr {
667
- -moz-border-radius-topright: 5px;
668
- -webkit-border-top-right-radius: 5px;
669
- border-top-right-radius: 5px;
670
- }
671
- .ui-btn-corner-bl {
672
- -moz-border-radius-bottomleft: 5px;
673
- -webkit-border-bottom-left-radius: 5px;
674
- border-bottom-left-radius: 5px;
675
- }
676
- .ui-btn-corner-br {
677
- -moz-border-radius-bottomright: 5px;
678
- -webkit-border-bottom-right-radius: 5px;
679
- border-bottom-right-radius: 5px;
680
- }
681
- .ui-btn-corner-top {
682
- -moz-border-radius-topleft: 5px;
683
- -webkit-border-top-left-radius: 5px;
684
- border-top-left-radius: 5px;
685
- -moz-border-radius-topright: 5px;
686
- -webkit-border-top-right-radius: 5px;
687
- border-top-right-radius: 5px;
688
- }
689
- .ui-btn-corner-bottom {
690
- -moz-border-radius-bottomleft: 5px;
691
- -webkit-border-bottom-left-radius: 5px;
692
- border-bottom-left-radius: 5px;
693
- -moz-border-radius-bottomright: 5px;
694
- -webkit-border-bottom-right-radius: 5px;
695
- border-bottom-right-radius: 5px;
696
- }
697
- .ui-btn-corner-right {
698
- -moz-border-radius-topright: 5px;
699
- -webkit-border-top-right-radius: 5px;
700
- border-top-right-radius: 5px;
701
- -moz-border-radius-bottomright: 5px;
702
- -webkit-border-bottom-right-radius: 5px;
703
- border-bottom-right-radius: 5px;
704
- }
705
- .ui-btn-corner-left {
706
- -moz-border-radius-topleft: 5px;
707
- -webkit-border-top-left-radius: 5px;
708
- border-top-left-radius: 5px;
709
- -moz-border-radius-bottomleft: 5px;
710
- -webkit-border-bottom-left-radius: 5px;
711
- border-bottom-left-radius: 5px;
712
- }
713
- .ui-btn-corner-all {
714
- -moz-border-radius: 5px;
715
- -webkit-border-radius: 5px;
716
- border-radius: 5px;
717
- }
718
-
719
-
720
- @media all and (min-width: 320px){
721
- .ui-content ul li div.itemLabel {
722
- display: inline-block;
723
- width: 50%;
724
- overflow: hidden;
725
- }
726
-
727
- .ui-content ul li div.itemValue {
728
- display: inline-block;
729
- overflow: hidden;
730
- }
731
- }
732
-
733
- .errorMessage {
734
- color: red;
735
- text-align: center
736
- }