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,753 +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
- background: #404040;
66
- display: table;
67
- text-align: center;
68
- border-spacing: 10px;
69
- }
70
-
71
- .toolbar .leftItem,
72
- .toolbar .centerItem,
73
- .toolbar .rightItem {
74
- display: table-cell;
75
- }
76
-
77
- .toolbar a {
78
- line-height: 40px;
79
- color: black;
80
- display: block;
81
- }
82
-
83
- .toolbar .deleteButton,
84
- .toolbar .regularButton,
85
- .toolbar .blueButton,
86
- .toolbar .backButton {
87
- /* background: -webkit-gradient(linear, left top, left bottom, color-stop(0.0, white), color-stop(0.5, #ccc), color-stop(1.0, #bdbebd)); */
88
- background: #ccc;
89
- -webkit-border-radius: 5px;
90
- font-size: .9em;
91
- border: 1px solid white;
92
- }
93
-
94
- /* Header */
95
-
96
- .pageTitle {
97
- height: 25px;
98
- margin: 0;
99
- width: 100%;
100
- display: none;
101
- }
102
-
103
- .pageTitle h1 {
104
- position: absolute;
105
- top: 0;
106
- text-align: left;
107
- width: 100%;
108
- margin: 0;
109
- padding-left: 5px;
110
- color: white;
111
- text-shadow: 1px 1px 1px #000;
112
- line-height: 25px;
113
- /* background: -webkit-gradient(linear, left top, left bottom, color-stop(0.0, #999), color-stop(0.5, #848684)); */
114
- background: #848684;
115
- }
116
-
117
- /* lists */
118
-
119
- .content ul {
120
- background: black;
121
- }
122
-
123
- .content ul li {
124
- border-bottom: 1px solid #666;
125
- font-size: 20px;
126
- }
127
-
128
- .content ul li a {
129
- display: block;
130
- text-decoration: none;
131
- color: white;
132
- font-size: 20px;
133
- height: 100%;
134
- width: 100%;
135
- padding: 15px 0 15px 0;
136
- background: url("../images/android/disclosure.png") no-repeat center right;
137
- }
138
-
139
- .content ul li a:hover {
140
- background-color: #3399cc;
141
- }
142
-
143
- .content ul li a img {
144
- float: left;
145
- height: 100%;
146
- max-width: 100px;
147
- }
148
-
149
- .content ul li span.title {
150
- padding: 0 50px 0 10px;
151
- }
152
-
153
- .content ul li span.disclosure_indicator {
154
- display: none;
155
- }
156
-
157
- .content ul li div.itemLabel {
158
- float: left;
159
- width: 45%;
160
- padding: 15px 0 15px 10px;
161
- }
162
-
163
- .content ul li div.itemValue {
164
- float: right;
165
- width: 45%;
166
- padding: 15px 10px 15px 0;
167
- }
168
-
169
- /* Forms */
170
-
171
- .content form button {
172
- -webkit-appearance: push-button;
173
- width: 300px;
174
- height: 40px;
175
- margin-left: 10px;
176
- }
177
-
178
- .content form ul {
179
- font-size: 20px;
180
- list-style-type: none;
181
- padding: 0;
182
- margin: 0;
183
- }
184
-
185
- .content form ul li {
186
- border-bottom: 1px solid #666;
187
- display: block;
188
- list-style-type: none;
189
- }
190
-
191
- .content form label {
192
- float: left;
193
- display: block;
194
- color: white;
195
- line-height: 64px;
196
- padding: 0 10px 0 5px;
197
- margin: 0;
198
- width: 40%;
199
- overflow: hidden;
200
- text-overflow: ellipsis;
201
- white-space: nowrap;
202
- }
203
-
204
- .content h2 {
205
- margin: 0;
206
- }
207
-
208
- .content h2.groupTitle {
209
- width: inherit;
210
- margin: 0;
211
- padding: 8px 0 8px 8px;
212
- font-size: 10px;
213
- color: white;
214
- background-color: #666;
215
- }
216
-
217
- .content form {
218
- background-color: black;
219
- }
220
-
221
- .content form input[type="checkbox"] {
222
- -webkit-appearance: none;
223
- background: url(/public/images/android/btn_check_off.png) no-repeat;
224
- float: right;
225
- height: 31px;
226
- width: 31px;
227
- margin-top: 15px;
228
- margin-right: 20px;
229
- }
230
-
231
- .content form input[type="checkbox"]:checked {
232
- background: url(/public/images/android/btn_check_on.png) no-repeat;
233
- float: right;
234
- height: 31px;
235
- width: 31px;
236
- margin-top: 15px;
237
- margin-right: 20px;
238
- }
239
-
240
- .content form input[type="radio"] {
241
- background: url(/public/images/android/btn_radio_off.png) no-repeat;
242
- -webkit-appearance: none;
243
- -webkit-box-sizing: border-box;
244
- border: none;
245
- height: 32px;
246
- margin: 0px;
247
- width: 32px;
248
- float: right;
249
- margin-right: 20px;
250
- margin-top: 15px;
251
- }
252
-
253
- .content form input[type="radio"]:checked {
254
- background: url(/public/images/android/btn_radio_on.png) no-repeat;
255
- margin-top: 15px;
256
- margin-right: 20px;
257
- }
258
-
259
- .content form select {
260
- -webkit-appearance: none;
261
- border: 0px;
262
- width: 100%;
263
- padding-left: 20px;
264
- height: 60px;
265
- color: white;
266
- background: url('/public/images/android/ic_menu_more.png') no-repeat center right;
267
- }
268
-
269
- .content form textarea {
270
- -webkit-appearance: none;
271
- /* 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)); */
272
- background: #efefef;
273
- border: 1px solid #d6d7d6;
274
- -webkit-border-radius: 4px;
275
- margin: 10px 0 2px 10px;
276
- font-size: 0.9em;
277
- padding: 5px 0 2px 2px;
278
- box-shadow: 0 -1px 3px #000000;
279
- }
280
-
281
- .content form input[type="text"],
282
- .content form input[type="number"],
283
- .content form input[type="password"] {
284
- float: right;
285
- height: 40px;
286
- margin: 10px 10px 10px 0;
287
- padding-left: 5px;
288
- font-size: 26px;
289
- width: 150px;
290
- -webkit-appearance: none;
291
- /* 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)); */
292
- background: #efefef;
293
- border: 1px solid #d6d7d6;
294
- -webkit-border-radius: 4px;
295
- box-shadow: 0 -1px 3px #000000;
296
- }
297
-
298
- .content form input.standardButton {
299
- height: 45px;
300
- margin: 2px 0 2px 0;
301
- -webkit-border: 2px;
302
- width: 100%;
303
- }
304
-
305
- /* Settings */
306
-
307
- .content ul.settings {
308
- padding: 0;
309
- margin: 0;
310
- }
311
-
312
- .content .reset h4 {
313
- margin: 20px;
314
- color: white;
315
- }
316
-
317
- .content div.standardButton {
318
- margin: 10px 10px 10px 10px;
319
- height: 45px;
320
- width: 284px;
321
- line-height: 45px;
322
- -webkit-appearance: push-button;
323
- }
324
-
325
- .content div.standardButton a {
326
- display: block;
327
- width: 100%;
328
- color: black;
329
- text-align: center;
330
- }
331
-
332
- .content ul.settings li.alertMessage {
333
- text-align: center;
334
- height: 45px;
335
- line-height: 45px;
336
- }
337
-
338
- .content ul.settings li.alertMessage span.message {
339
- color: red;
340
- }
341
-
342
- div.itemLabel {
343
- font-weight: bold;
344
- }
345
- div.itemValue {
346
- font-weight: normal;
347
- }
348
-
349
- /*
350
- .ui-page,
351
- .ui-content,
352
- .ui-content ul li,
353
- .ui-content form,
354
- .ui-btn a.ui-link-inherit {
355
- font-family: "Droid", sans-serif;
356
- background: black;
357
- color: white;
358
- }
359
-
360
- .ui-header h1 {
361
- font-size: 2em;
362
-
363
- }
364
-
365
- .ui-header {
366
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0.0, #2B2B2B), color-stop(0.2, #585858), color-stop(1.0, #2B2B2B));
367
- }
368
-
369
- .ui-header h1 {
370
- color: white;
371
- line-height: 25px;
372
- text-shadow: 1px 1px 1px #000;
373
- }
374
-
375
- */
376
-
377
-
378
- .ui-bar-a {
379
- border: 1px solid #2A2A2A;
380
- /* background: #111111; */
381
- color: #ffffff;
382
- font-weight: bold;
383
- text-shadow: 0 -1px 1px #000000;
384
- /* background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0.0, #2B2B2B), color-stop(0.2, #585858), color-stop(1.0, #2B2B2B)); */
385
- background: #404040;
386
- }
387
- .ui-bar-a,
388
- .ui-bar-a input,
389
- .ui-bar-a select,
390
- .ui-bar-a textarea,
391
- .ui-bar-a button {
392
- font-family: "Droid", sans-serif;
393
- /*
394
- font-family: Helvetica, Arial, sans-serif;
395
- */
396
- }
397
- .ui-bar-a .ui-link-inherit {
398
- color: #fff;
399
- }
400
- .ui-bar-a .ui-link {
401
- color: #7cc4e7;
402
- font-weight: bold;
403
- }
404
- .ui-body-c {
405
- border: 1px solid #2A2A2A;
406
- background: #000;
407
- color: #fff;
408
- text-shadow: 0 1px 0 #000;
409
- font-weight: normal;
410
- /*
411
- background: #222222;
412
- background-image: -webkit-gradient(linear, left top, left bottom, from(#666), to(#222));
413
- */
414
- }
415
- .ui-body-c,
416
- .ui-body-c input,
417
- .ui-body-c select,
418
- .ui-body-c textarea,
419
- .ui-body-c button {
420
- font-family: "Droid", sans-serif;
421
- /*
422
- font-family: Helvetica, Arial, sans-serif;
423
- */
424
- }
425
- .ui-body-c .ui-link-inherit {
426
- color: #fff;
427
- }
428
- .ui-body-c .ui-link {
429
- color: #2489CE;
430
- font-weight: bold;
431
- }
432
- .ui-br {
433
- border-bottom: rgb(130,130,130);
434
- border-bottom: rgba(130,130,130,.3);
435
- border-bottom-width: 1px;
436
- border-bottom-style: solid;
437
- }
438
-
439
-
440
- .ui-btn-up-a, .ui-btn-down-a {
441
- background: #444;
442
- }
443
-
444
- .ui-btn-hover-a {
445
- background: #555;
446
- }
447
-
448
- li.ui-btn-up-c {
449
- border: 1px solid #222;
450
- background: #000;
451
- font-weight: bold;
452
- color: #fff;
453
- text-shadow: 0 -1px 1px #000;
454
- /*
455
- background: #333333;
456
- background-image: -webkit-gradient(linear, left top, left bottom, from(#555), to(#333));
457
- */
458
- }
459
-
460
-
461
- .ui-btn-up-c {
462
- border: 1px solid #222;
463
- /*background: #333333;*/
464
- font-weight: bold;
465
- color: #000;
466
- text-shadow: 0 -1px 1px #fff;
467
- /* background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0.0, white), color-stop(0.5, #ccc), color-stop(1.0, #bdbebd)); */
468
- background: #ccc;
469
- /*
470
- border: 1px solid #222;
471
- background: #333333;
472
- font-weight: bold;
473
- color: #fff;
474
- text-shadow: 0 -1px 1px #000;
475
- background-image: -webkit-gradient(linear, left top, left bottom, from(#555), to(#333));
476
- */
477
- }
478
- .ui-btn-up-c a.ui-link-inherit {
479
- color: #fff;
480
- }
481
- .ui-btn-hover-c {
482
- border: 1px solid #000;
483
- background: #f73923;
484
- font-weight: bold;
485
- color: #000;
486
- text-shadow: none;
487
- /*text-shadow: 0 -1px 1px #fff;*/
488
- /*
489
- background: #F76922;
490
- background-image: -webkit-gradient(linear, left top, left bottom, from(#F76922), to(#F73932));
491
- */
492
- /*
493
- border: 1px solid #000;
494
- background: #444444;
495
- font-weight: bold;
496
- color: #fff;
497
- text-shadow: 0 -1px 1px #000;
498
- background-image: -webkit-gradient(linear, left top, left bottom, from(#666), to(#444));
499
- */
500
- }
501
- .ui-btn-hover-c a.ui-link-inherit {
502
- color: #000;
503
- }
504
- .ui-btn-down-c {
505
- border: 1px solid #000;
506
- background: #f76933;
507
- font-weight: bold;
508
- color: #000;
509
- text-shadow: none;
510
- /*text-shadow: 0 -1px 1px #fff;*/
511
- /*
512
- background-image: -webkit-gradient(linear, left top, left bottom, from(#F76922), to(#fadb4e));
513
- */
514
- /*
515
- border: 1px solid #000;
516
- background: #3d3d3d;
517
- font-weight: bold;
518
- color: #fff;
519
- text-shadow: 0 -1px 1px #000;
520
- background-image: -webkit-gradient(linear, left top, left bottom, from(#333), to(#5a5a5a));
521
- */
522
- }
523
- .ui-slider-switch.ui-btn-down-c {
524
- border: 1px solid #000;
525
- font-weight: bold;
526
- color: #fff;
527
- text-shadow: 0 -1px 1px #000;
528
- /* background-image: -webkit-gradient(linear, left top, left bottom, from(#333), to(#5a5a5a)); */
529
- background: #3d3d3d;
530
- }
531
- .ui-btn-down-c a.ui-link-inherit {
532
- color: #000;
533
- }
534
- .ui-btn-up-c,
535
- .ui-btn-hover-c,
536
- .ui-btn-down-c {
537
- font-family: "Droid", sans-serif;
538
- /*
539
- font-family: Helvetica, Arial, sans-serif;
540
- */
541
- text-decoration: none;
542
- }
543
-
544
- .ui-field-contain {
545
- border-bottom: 0;
546
- }
547
-
548
-
549
-
550
-
551
- .ui-field-contain input[type="text"],
552
- .ui-field-contain input[type="number"],
553
- .ui-field-contain input[type="password"],
554
- .ui-field-contain input[type="true"],
555
- .ui-field-contain textarea {
556
- -webkit-appearance: none;
557
- color: #000000;
558
- text-shadow: none;
559
- font-size: 0.9em;
560
-
561
- /* 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)); */
562
- background: #efefef;
563
- border: 1px solid #d6d7d6;
564
- box-shadow: 0 -1px 3px #000000;
565
-
566
- }
567
-
568
- .ui-input-search {
569
- /* 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)); */
570
- background: #efefef;
571
- /*
572
- background: #666 -webkit-gradient(linear, 0% 0%, 0% 100%, from(#666), to(#222));
573
- */
574
- background-image: url(../jqmobile/images/icon-search-black.png);
575
- background-position: 8px 50%;
576
- background-repeat: no-repeat;
577
-
578
- border: 1px solid #666;
579
- box-shadow: 0 -1px 3px #000000;
580
- }
581
- .ui-input-search .ui-input-clear {
582
- margin: -12px 4px;
583
- }
584
-
585
-
586
- .ui-bar-a select,
587
- .ui-body-c select {
588
- -webkit-appearance: none;
589
- border: 0;
590
- padding-left: 20px;
591
- /*
592
- width: 100%;
593
- height: 60px;
594
- */
595
- color: white;
596
- background: url('/public/images/android/ic_menu_more.png') no-repeat center right;
597
- }
598
-
599
-
600
- .ui-li-static {
601
- font-size: 16px;
602
- /*font-size: 0.9em;*/
603
- background: black;
604
- /*color: white;*/
605
- border-bottom: 1px solid #666;
606
- /*
607
- color: #000000;
608
- text-shadow: none;
609
- font-size: 0.9em;
610
-
611
- 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));
612
- border: 1px solid #d6d7d6;
613
- box-shadow: 0 -1px 3px #000000;
614
- */
615
- }
616
-
617
-
618
- .ui-corner-tl {
619
- -moz-border-radius-topleft: 4px;
620
- -webkit-border-top-left-radius: 4px;
621
- border-top-left-radius: 4px;
622
- }
623
- .ui-corner-tr {
624
- -moz-border-radius-topright: 4px;
625
- -webkit-border-top-right-radius: 4px;
626
- border-top-right-radius: 4px;
627
- }
628
- .ui-corner-bl {
629
- -moz-border-radius-bottomleft: 4px;
630
- -webkit-border-bottom-left-radius: 4px;
631
- border-bottom-left-radius: 4px;
632
- }
633
- .ui-corner-br {
634
- -moz-border-radius-bottomright: 4px;
635
- -webkit-border-bottom-right-radius: 4px;
636
- border-bottom-right-radius: 4px;
637
- }
638
- .ui-corner-top {
639
- -moz-border-radius-topleft: 4px;
640
- -webkit-border-top-left-radius: 4px;
641
- border-top-left-radius: 4px;
642
- -moz-border-radius-topright: 4px;
643
- -webkit-border-top-right-radius: 4px;
644
- border-top-right-radius: 4px;
645
- }
646
- .ui-corner-bottom {
647
- -moz-border-radius-bottomleft: 4px;
648
- -webkit-border-bottom-left-radius: 4px;
649
- border-bottom-left-radius: 4px;
650
- -moz-border-radius-bottomright: 4px;
651
- -webkit-border-bottom-right-radius: 4px;
652
- border-bottom-right-radius: 4px;
653
- }
654
- .ui-corner-right {
655
- -moz-border-radius-topright: 4px;
656
- -webkit-border-top-right-radius: 4px;
657
- border-top-right-radius: 4px;
658
- -moz-border-radius-bottomright: 4px;
659
- -webkit-border-bottom-right-radius: 4px;
660
- border-bottom-right-radius: 4px;
661
- }
662
- .ui-corner-left {
663
- -moz-border-radius-topleft: 4px;
664
- -webkit-border-top-left-radius: 4px;
665
- border-top-left-radius: 4px;
666
- -moz-border-radius-bottomleft: 4px;
667
- -webkit-border-bottom-left-radius: 4px;
668
- border-bottom-left-radius: 4px;
669
- }
670
- .ui-corner-all {
671
- -moz-border-radius: 4px;
672
- -webkit-border-radius: 4px;
673
- border-radius: 4px;
674
- }
675
-
676
-
677
-
678
- .ui-btn-corner-tl {
679
- -moz-border-radius-topleft: 5px;
680
- -webkit-border-top-left-radius: 5px;
681
- border-top-left-radius: 5px;
682
- }
683
- .ui-btn-corner-tr {
684
- -moz-border-radius-topright: 5px;
685
- -webkit-border-top-right-radius: 5px;
686
- border-top-right-radius: 5px;
687
- }
688
- .ui-btn-corner-bl {
689
- -moz-border-radius-bottomleft: 5px;
690
- -webkit-border-bottom-left-radius: 5px;
691
- border-bottom-left-radius: 5px;
692
- }
693
- .ui-btn-corner-br {
694
- -moz-border-radius-bottomright: 5px;
695
- -webkit-border-bottom-right-radius: 5px;
696
- border-bottom-right-radius: 5px;
697
- }
698
- .ui-btn-corner-top {
699
- -moz-border-radius-topleft: 5px;
700
- -webkit-border-top-left-radius: 5px;
701
- border-top-left-radius: 5px;
702
- -moz-border-radius-topright: 5px;
703
- -webkit-border-top-right-radius: 5px;
704
- border-top-right-radius: 5px;
705
- }
706
- .ui-btn-corner-bottom {
707
- -moz-border-radius-bottomleft: 5px;
708
- -webkit-border-bottom-left-radius: 5px;
709
- border-bottom-left-radius: 5px;
710
- -moz-border-radius-bottomright: 5px;
711
- -webkit-border-bottom-right-radius: 5px;
712
- border-bottom-right-radius: 5px;
713
- }
714
- .ui-btn-corner-right {
715
- -moz-border-radius-topright: 5px;
716
- -webkit-border-top-right-radius: 5px;
717
- border-top-right-radius: 5px;
718
- -moz-border-radius-bottomright: 5px;
719
- -webkit-border-bottom-right-radius: 5px;
720
- border-bottom-right-radius: 5px;
721
- }
722
- .ui-btn-corner-left {
723
- -moz-border-radius-topleft: 5px;
724
- -webkit-border-top-left-radius: 5px;
725
- border-top-left-radius: 5px;
726
- -moz-border-radius-bottomleft: 5px;
727
- -webkit-border-bottom-left-radius: 5px;
728
- border-bottom-left-radius: 5px;
729
- }
730
- .ui-btn-corner-all {
731
- -moz-border-radius: 5px;
732
- -webkit-border-radius: 5px;
733
- border-radius: 5px;
734
- }
735
-
736
-
737
- @media all and (min-width: 320px){
738
- .ui-content ul li div.itemLabel {
739
- display: inline-block;
740
- width: 50%;
741
- overflow: hidden;
742
- }
743
-
744
- .ui-content ul li div.itemValue {
745
- display: inline-block;
746
- overflow: hidden;
747
- }
748
- }
749
-
750
- .errorMessage {
751
- color: red;
752
- text-align: center
753
- }