rhodes 3.2.3 → 3.3.0.beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (368) hide show
  1. data/CHANGELOG +10 -0
  2. data/Rakefile +153 -46
  3. data/doc/build.txt +261 -102
  4. data/doc/configuration.txt +5 -2
  5. data/doc/device-caps.txt +134 -23
  6. data/doc/extensions.txt +922 -69
  7. data/doc/generator.txt +96 -39
  8. data/doc/install.txt +35 -19
  9. data/doc/jqt-jqm-transition.txt +17 -1
  10. data/doc/rhom.txt +23 -2
  11. data/doc/rhostudio-eclipse.txt +49 -0
  12. data/doc/rhostudio-test-plan.txt +440 -0
  13. data/doc/simulator.txt +1 -1
  14. data/doc/synchronization.txt +40 -1
  15. data/lib/build/jake.rb +108 -7
  16. data/lib/extensions/barcode/ext/barcode/platform/android/Rakefile +0 -35
  17. data/lib/extensions/barcode/ext/barcode/platform/iphone/Barcode.xcodeproj/project.pbxproj +8 -2
  18. data/lib/extensions/barcode/ext/barcode/platform/iphone/Classes/BarcodeCallbackHelper.mm +195 -195
  19. data/lib/extensions/barcode/ext/barcode/platform/iphone/Classes/BarcodeViewController.m +6 -0
  20. data/lib/extensions/barcode/ext/barcode/platform/iphone/Rakefile +5 -0
  21. data/lib/extensions/barcode/ext/barcode/shared/ruby/barcode_wrap.c +64 -20
  22. data/lib/extensions/debugger/CHANGELOG +3 -0
  23. data/lib/extensions/debugger/debugger.rb +26 -21
  24. data/lib/extensions/digest-md5/ext/Rakefile +5 -5
  25. data/lib/extensions/digest-md5/ext/build +10 -1
  26. data/lib/extensions/digest-md5/ext/defs.h +19 -0
  27. data/lib/extensions/digest-md5/ext/digest-md5.vcproj +317 -9
  28. data/lib/extensions/digest-md5/ext/iphone/Dmd5.xcodeproj/project.pbxproj +290 -0
  29. data/lib/extensions/digest-md5/ext/iphone/Dmd5_Prefix.pch +7 -0
  30. data/lib/extensions/digest-md5/ext/iphone/Rakefile +79 -0
  31. data/lib/extensions/digest-sha1/ext/Rakefile +5 -5
  32. data/lib/extensions/digest-sha1/ext/build +10 -1
  33. data/lib/extensions/digest-sha1/ext/defs.h +19 -0
  34. data/lib/extensions/digest-sha1/ext/digest-sha1.vcproj +317 -9
  35. data/lib/extensions/digest-sha1/ext/iphone/Dsha1.xcodeproj/project.pbxproj +278 -0
  36. data/lib/extensions/digest-sha1/ext/iphone/Dsha1_Prefix.pch +7 -0
  37. data/lib/extensions/digest-sha1/ext/iphone/Rakefile +79 -0
  38. data/lib/extensions/digest/ext/Rakefile +5 -5
  39. data/lib/extensions/digest/ext/build +10 -1
  40. data/lib/extensions/digest/ext/digest.vcproj +317 -9
  41. data/lib/extensions/digest/ext/iphone/Digest.xcodeproj/project.pbxproj +270 -0
  42. data/lib/extensions/digest/ext/iphone/Digest_Prefix.pch +7 -0
  43. data/lib/extensions/digest/ext/iphone/Rakefile +79 -0
  44. data/lib/extensions/esri/ext/esri/platform/iphone/ESRI.xcodeproj/project.pbxproj +10 -2
  45. data/lib/extensions/esri/ext/esri/platform/iphone/Rakefile +6 -0
  46. data/lib/extensions/fcntl/ext/Rakefile +5 -5
  47. data/lib/extensions/fcntl/ext/build +9 -1
  48. data/lib/extensions/fcntl/ext/iphone/Fcntl.xcodeproj/project.pbxproj +262 -0
  49. data/lib/extensions/fcntl/ext/iphone/Fcntl_Prefix.pch +7 -0
  50. data/lib/extensions/fcntl/ext/iphone/Rakefile +79 -0
  51. data/lib/extensions/net-http/net/http.rb +9 -7
  52. data/lib/extensions/nfc/ext/nfc/shared/ruby/nfc_wrap.c +64 -20
  53. data/lib/extensions/rhoxml/rexml/document.rb +3 -2
  54. data/lib/extensions/rhoxml/rexml/instruction.rb +70 -0
  55. data/lib/framework/builtinME.rb +9 -0
  56. data/lib/framework/date/format.rb +1 -1
  57. data/lib/framework/dateME.rb +19 -2
  58. data/lib/framework/rho/rho.rb +15 -4
  59. data/lib/framework/rho/rhoapplication.rb +1 -0
  60. data/lib/framework/rho/rhocontact.rb +10 -27
  61. data/lib/framework/rho/rhoevent_c.rb +8 -2
  62. data/lib/framework/rho/rhosupport.rb +25 -0
  63. data/lib/framework/rhodes.rb +1 -1
  64. data/lib/framework/rhoframework.rb +15 -0
  65. data/lib/framework/rholang/localization_simplified.rb +8 -10
  66. data/lib/framework/rhom/rhom_object_factory.rb +8 -2
  67. data/lib/framework/version.rb +1 -1
  68. data/lib/rhodes.rb +1 -1
  69. data/platform/android/Rhodes/jni/Application.mk +2 -1
  70. data/platform/android/Rhodes/jni/include/rhodes.h +9 -0
  71. data/platform/android/Rhodes/jni/src/callbacks.cpp +31 -1
  72. data/platform/android/Rhodes/jni/src/event.cpp +75 -31
  73. data/platform/android/Rhodes/jni/src/nativeview.cpp +1 -1
  74. data/platform/android/Rhodes/jni/src/phonebook.cpp +73 -9
  75. data/platform/android/Rhodes/jni/src/rhodes.cpp +21 -0
  76. data/platform/android/Rhodes/jni/src/rhodesapp.cpp +16 -24
  77. data/platform/android/Rhodes/jni/src/signature.cpp +27 -1
  78. data/platform/android/Rhodes/{default.properties → project.properties} +2 -2
  79. data/platform/android/Rhodes/src/com/rhomobile/rhodes/Capabilities.java +14 -12
  80. data/platform/android/Rhodes/src/com/rhomobile/rhodes/NativeBar.java +14 -12
  81. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhodesActivity.java +38 -115
  82. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhodesService.java +69 -52
  83. data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/Camera.java +9 -0
  84. data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/CameraNewService.java +21 -1
  85. data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/CameraOldService.java +1 -1
  86. data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/CameraSemiService.java +1 -1
  87. data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/CameraService.java +1 -1
  88. data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/ImageCapture.java +38 -6
  89. data/platform/android/Rhodes/src/com/rhomobile/rhodes/event/Event.java +212 -1
  90. data/platform/android/Rhodes/src/com/rhomobile/rhodes/event/EventStore.java +82 -125
  91. data/platform/android/Rhodes/src/com/rhomobile/rhodes/geolocation/GeoLocationImpl.java +1 -1
  92. data/platform/android/Rhodes/src/com/rhomobile/rhodes/mainview/MainView.java +2 -1
  93. data/platform/android/Rhodes/src/com/rhomobile/rhodes/mainview/SimpleMainView.java +39 -19
  94. data/platform/android/Rhodes/src/com/rhomobile/rhodes/mainview/SplashScreen.java +106 -136
  95. data/platform/android/Rhodes/src/com/rhomobile/rhodes/mainview/TabbedMainView.java +26 -25
  96. data/platform/android/Rhodes/src/com/rhomobile/rhodes/nativeview/RhoNativeViewManager.java +1 -1
  97. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality.java +40 -0
  98. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality01.java +47 -0
  99. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality02.java +33 -0
  100. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality03.java +33 -0
  101. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality04.java +34 -0
  102. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality05.java +75 -0
  103. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality06.java +34 -0
  104. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality07.java +34 -0
  105. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality08.java +44 -0
  106. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality09.java +34 -0
  107. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality10.java +34 -0
  108. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionalityManager.java +73 -0
  109. data/platform/android/Rhodes/src/com/rhomobile/rhodes/phonebook/Contact.java +57 -6
  110. data/platform/android/Rhodes/src/com/rhomobile/rhodes/phonebook/ContactAccessor.java +2 -2
  111. data/platform/android/Rhodes/src/com/rhomobile/rhodes/phonebook/ContactAccessorNew.java +322 -76
  112. data/platform/android/Rhodes/src/com/rhomobile/rhodes/phonebook/ContactAccessorOld.java +11 -6
  113. data/platform/android/Rhodes/src/com/rhomobile/rhodes/phonebook/Phonebook.java +5 -5
  114. data/platform/android/Rhodes/src/com/rhomobile/rhodes/webview/ChromeClientOld.java +2 -1
  115. data/platform/android/Rhodes/src/com/rhomobile/rhodes/webview/GoogleWebView.java +125 -0
  116. data/platform/android/Rhodes/src/com/rhomobile/rhodes/webview/RhoWebSettingsOld.java +2 -3
  117. data/platform/android/Rhodes/src/com/rhomobile/rhodes/webview/WebView.java +16 -0
  118. data/platform/android/build/RhodesSRC_build.files +14 -0
  119. data/platform/android/build/android.rake +149 -147
  120. data/platform/android/build/android_tools.rb +58 -0
  121. data/platform/android/build/librhocommon_build.files +1 -0
  122. data/platform/android/build/libruby_build.files +3 -0
  123. data/platform/bb/RubyVM/src/com/rho/RhoConf.java +11 -1
  124. data/platform/bb/RubyVM/src/com/rho/db/DBAdapter.java +11 -5
  125. data/platform/bb/RubyVM/src/com/rho/db/DBAttrManager.java +3 -2
  126. data/platform/bb/RubyVM/src/com/rho/file/RhoFile.java +2 -0
  127. data/platform/bb/RubyVM/src/com/rho/net/RhoConnection.java +20 -8
  128. data/platform/bb/RubyVM/src/com/rho/sync/SyncEngine.java +9 -6
  129. data/platform/bb/RubyVM/src/com/rho/sync/SyncSource.java +45 -18
  130. data/platform/bb/RubyVM/src/com/rho/sync/SyncThread.java +1 -2
  131. data/platform/bb/build/bb.rake +84 -70
  132. data/platform/bb/rhodes/platform/5.0/com/rho/BrowserAdapter5.java +106 -14
  133. data/platform/bb/rhodes/src/com/rho/BrowserAdapter.java +1 -1
  134. data/platform/bb/rhodes/src/com/rho/BrowserAdapter5.java +108 -16
  135. data/platform/bb/rhodes/src/rhomobile/RhodesApplication.java +10 -5
  136. data/platform/bb/rhodes/src/rhomobile/camera/CameraScreen.java +21 -4
  137. data/platform/bb/rhodes/src/rhomobile/mapview/Annotation.java +17 -0
  138. data/platform/bb/rhodes/src/rhomobile/mapview/MapView.java +8 -5
  139. data/platform/bb/rhodes/src/rhomobile/mapview/MapViewScreen.java +3 -1
  140. data/platform/iphone/Classes/AppManager/AppManager.m +15 -3
  141. data/platform/iphone/Classes/Event/Event.m +45 -2
  142. data/platform/iphone/Classes/MapView/MapViewController.m +8 -4
  143. data/platform/iphone/Classes/Phonebook/phonebook.m +30 -7
  144. data/platform/iphone/Classes/Rhodes.h +11 -1
  145. data/platform/iphone/Classes/Rhodes.m +141 -9
  146. data/platform/iphone/Classes/Signature/SignatureDelegate.m +27 -1
  147. data/platform/iphone/Classes/SimpleMainView.h +1 -0
  148. data/platform/iphone/Classes/SimpleMainView.m +4 -0
  149. data/platform/iphone/RhoLib/RhoLib.xcodeproj/project.pbxproj +31 -1
  150. data/platform/iphone/curl/curl.xcodeproj/project.pbxproj +10 -0
  151. data/platform/iphone/rbuild/iphone.rake +33 -6
  152. data/platform/iphone/rhoextlib/rhoextlib.xcodeproj/project.pbxproj +10 -2
  153. data/platform/iphone/rhorubylib/rhorubylib.xcodeproj/project.pbxproj +22 -2
  154. data/platform/iphone/rhorunner.xcodeproj/project.pbxproj +14 -0
  155. data/platform/iphone/rhosynclib/rhosynclib.xcodeproj/project.pbxproj +10 -0
  156. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Info.plist +1 -1
  157. data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/MacOS/RhoSimulator +0 -0
  158. data/platform/osx/build/osx.rake +58 -7
  159. data/platform/shared/RhoConnectClient/RhoConnectClient.cpp +427 -69
  160. data/platform/shared/RhoConnectClient/RhoConnectClient.h +21 -2
  161. data/platform/shared/common/Android.mk +2 -1
  162. data/platform/shared/common/AutoPointer.h +23 -0
  163. data/platform/shared/common/BundleManager.cpp +333 -0
  164. data/platform/shared/common/RhoFile.cpp +206 -23
  165. data/platform/shared/common/RhoFile.h +14 -4
  166. data/platform/shared/common/RhoFilePath.h +18 -0
  167. data/platform/shared/common/RhoStd.h +11 -1
  168. data/platform/shared/common/RhoThread.h +4 -1
  169. data/platform/shared/common/RhodesApp.cpp +31 -8
  170. data/platform/shared/common/RhodesApp.h +14 -0
  171. data/platform/shared/common/RhodesAppBase.cpp +6 -6
  172. data/platform/shared/common/RhodesAppBase.h +1 -1
  173. data/platform/shared/common/emml.h +34 -0
  174. data/platform/shared/common/iphone/RhoFileImpl.m +30 -2
  175. data/platform/shared/common/map/BaseMapEngine.cpp +3 -3
  176. data/platform/shared/common/map/GeocodingMapEngine.cpp +205 -14
  177. data/platform/shared/common/map/GeocodingMapEngine.h +25 -2
  178. data/platform/shared/common/map/MapEngine.cpp +24 -2
  179. data/platform/shared/common/map/MapEngine.h +23 -12
  180. data/platform/shared/common/phonebook/PhonebookParams.cpp +99 -0
  181. data/platform/shared/common/phonebook/PhonebookParams.h +52 -0
  182. data/platform/shared/common/rhoparams.cpp +14 -0
  183. data/platform/shared/common/rhoparams.h +1 -0
  184. data/platform/shared/db/DBAdapter.cpp +43 -24
  185. data/platform/shared/db/DBAdapter.h +6 -1
  186. data/platform/shared/db/DBAttrManager.cpp +50 -1
  187. data/platform/shared/logging/RhoLog.h +3 -0
  188. data/platform/shared/logging/RhoLogSink.cpp +5 -1
  189. data/platform/shared/net/CURLNetRequest.cpp +2 -0
  190. data/platform/shared/qt/rhodes/QtMainWindow.cpp +14 -1
  191. data/platform/shared/qt/rhodes/impl/PhonebookImpl.cpp +2 -2
  192. data/platform/shared/qt/rhodes/impl/RhoFileImpl.cpp +1 -1
  193. data/platform/shared/qt/rhodes/impl/SignatureImpl.cpp +14 -2
  194. data/platform/shared/qt/rhodes/impl/SystemImpl.cpp +16 -2
  195. data/platform/shared/qt/rhodes/main.cpp +28 -0
  196. data/platform/shared/qt/rhodes/rhodes.pro +3 -0
  197. data/platform/shared/qt/rholib/rholib.pro +2 -1
  198. data/platform/shared/qt/rubylib/rubylib.pro +2 -1
  199. data/platform/shared/ruby/Android.mk +3 -0
  200. data/platform/shared/ruby/class.c +7 -0
  201. data/platform/shared/ruby/compile.c +18 -10
  202. data/platform/shared/ruby/encdb.h +18 -8
  203. data/platform/shared/ruby/eval.c +108 -2
  204. data/platform/shared/ruby/ext/alert/alert_wrap.c +64 -20
  205. data/platform/shared/ruby/ext/asynchttp/asynchttp_wrap.c +64 -20
  206. data/platform/shared/ruby/ext/bluetooth/bluetooth_wrap.c +67 -23
  207. data/platform/shared/ruby/ext/calendar/calendar_wrap.c +64 -20
  208. data/platform/shared/ruby/ext/calendar/event_wrap.c +64 -20
  209. data/platform/shared/ruby/ext/camera/camera_wrap.c +64 -20
  210. data/platform/shared/ruby/ext/datetimepicker/datetimepicker_wrap.c +64 -20
  211. data/platform/shared/ruby/ext/geolocation/geolocation.i +16 -0
  212. data/platform/shared/ruby/ext/geolocation/geolocation_wrap.c +127 -26
  213. data/platform/shared/ruby/ext/mapview/mapview_wrap.c +64 -20
  214. data/platform/shared/ruby/ext/nativebar/nativebar_wrap.c +65 -21
  215. data/platform/shared/ruby/ext/nativeviewmanager/nativeviewmanager_wrap.c +64 -20
  216. data/platform/shared/ruby/ext/navbar/navbar_wrap.c +64 -20
  217. data/platform/shared/ruby/ext/phonebook/phonebook.i +7 -7
  218. data/platform/shared/ruby/ext/phonebook/phonebook_wrap.c +95 -120
  219. data/platform/shared/ruby/ext/rho/rhoruby.c +4 -4
  220. data/platform/shared/ruby/ext/rho/rhoruby.h +2 -0
  221. data/platform/shared/ruby/ext/rho/rhosupport.c +39 -6
  222. data/platform/shared/ruby/ext/rhoconf/rhoconf_wrap.c +65 -21
  223. data/platform/shared/ruby/ext/ringtones/ringtones_wrap.c +64 -20
  224. data/platform/shared/ruby/ext/signature/signature.i +37 -5
  225. data/platform/shared/ruby/ext/signature/signature_wrap.c +274 -45
  226. data/platform/shared/ruby/ext/syncengine/syncengine_wrap.c +65 -21
  227. data/platform/shared/ruby/ext/system/system.i +14 -2
  228. data/platform/shared/ruby/ext/system/system_wrap.c +146 -25
  229. data/platform/shared/ruby/ext/webview/webview_wrap.c +65 -21
  230. data/platform/shared/ruby/include/ruby/ruby.h +15 -4
  231. data/platform/shared/ruby/inits.c +1 -0
  232. data/platform/shared/ruby/io.c +13 -3
  233. data/platform/shared/ruby/win32/win32.c +3 -3
  234. data/platform/shared/ruby/wince/io_wce.c +2 -2
  235. data/platform/shared/rubyext/System.cpp +9 -5
  236. data/platform/shared/sync/ClientRegister.cpp +18 -8
  237. data/platform/shared/sync/SyncEngine.cpp +25 -11
  238. data/platform/shared/sync/SyncEngine.h +2 -0
  239. data/platform/shared/sync/SyncSource.cpp +40 -15
  240. data/platform/shared/sync/SyncSource.h +3 -2
  241. data/platform/shared/sync/SyncThread.cpp +9 -4
  242. data/platform/shared/sync/SyncThread.h +3 -1
  243. data/platform/symbian/build/symbian.rake +14 -9
  244. data/platform/symbian/rhodes/rhodes.pro +11 -8
  245. data/platform/symbian/rhodes/src/phonebook/ruby_phonebook.cpp +2 -2
  246. data/platform/symbian/rubylib/rubylib.pro +3 -0
  247. data/platform/win32/RhoSimulator/RhoSimulator.exe +0 -0
  248. data/platform/wm/RhoLib/RhoLib.vcproj +315 -2
  249. data/platform/wm/build/build_inf.js +235 -187
  250. data/platform/wm/build/wm.rake +388 -233
  251. data/platform/wm/rhodes.sln +56 -0
  252. data/platform/wm/rhodes/MainWindow.cpp +139 -77
  253. data/platform/wm/rhodes/MainWindow.h +27 -22
  254. data/platform/wm/rhodes/MapView/{Graphics.cpp → Bitmap.cpp} +15 -253
  255. data/platform/wm/rhodes/MapView/Bitmap.h +86 -0
  256. data/platform/wm/rhodes/MapView/MapViewManager.cpp +7 -2
  257. data/platform/wm/rhodes/MapView/MapViewManager.h +1 -1
  258. data/platform/wm/rhodes/MapView/Win32Graphics.cpp +263 -0
  259. data/platform/wm/rhodes/MapView/Win32Graphics.h +133 -0
  260. data/platform/wm/rhodes/MapView/WmGraphics.cpp +291 -0
  261. data/platform/wm/rhodes/MapView/{Graphics.h → WmGraphics.h} +14 -56
  262. data/platform/wm/rhodes/Rhodes.cpp +128 -32
  263. data/platform/wm/rhodes/Rhodes.rc +6 -2
  264. data/platform/wm/rhodes/camera/Camera.cpp +1 -0
  265. data/platform/wm/rhodes/phonebook/phonebook.cpp +2 -2
  266. data/platform/wm/rhodes/phonebook/phonebook.h +2 -2
  267. data/platform/wm/rhodes/resource.h +3 -2
  268. data/platform/wm/rhodes/rho/net/NetRequestImpl.cpp +6 -0
  269. data/platform/wm/rhodes/rho/rubyext/NativeToolbar.cpp +4 -0
  270. data/platform/wm/rhodes/rho/rubyext/RhoSignature.cpp +675 -0
  271. data/platform/wm/rhodes/rho/rubyext/RhoSignature.h +123 -0
  272. data/platform/wm/rhodes/rho/rubyext/SystemImpl.cpp +12 -2
  273. data/platform/wm/rhodes/rhodes.vcproj +2732 -1113
  274. data/platform/wm/rhodes/simulator/MainWindowQt.h +1 -1
  275. data/platform/wm/rhodes/stdafx.h +1 -0
  276. data/platform/wm/rhoelements.sln +118 -62
  277. data/platform/wm/rubylib/rubylib.vcproj +345 -16
  278. data/platform/wm/sqlite3/sqlite3.vcproj +305 -0
  279. data/platform/wm/syncengine/syncengine.vcproj +309 -0
  280. data/platform/wm/tools/detool/LogServer.cpp +19 -2
  281. data/platform/wm/tools/detool/detool.cpp +131 -6
  282. data/platform/wm/tools/detool/detool.vcproj +3 -1
  283. data/platform/wm/tools/detool/stdafx.h +1 -0
  284. data/platform/wp7/IronRuby/Languages/Ruby/Libraries/Builtins/RangeOps.cs +589 -0
  285. data/platform/wp7/IronRuby/Languages/Ruby/Ruby/Builtins/RubyEncoding.cs +678 -0
  286. data/platform/wp7/IronRuby/Languages/Ruby/Ruby/Runtime/RubyExceptionData.cs +271 -0
  287. data/platform/wp7/IronRuby/Languages/Ruby/Ruby/Runtime/RubyUtils.cs +31 -1
  288. data/platform/wp7/IronRuby/bin/Silverlight3Release/IronRuby.Libraries.dll +0 -0
  289. data/platform/wp7/IronRuby/bin/Silverlight3Release/IronRuby.dll +0 -0
  290. data/platform/wp7/RhoRubyLib/common/RhoStd.cs +6 -0
  291. data/platform/wp7/RhoRubyLib/common/RhodesApp.cs +16 -2
  292. data/platform/wp7/RhoRubyLib/net/NetRequest.cs +2 -0
  293. data/platform/wp7/RhoRubyLib/rubyext/RhoSyncEngine.cs +1 -2
  294. data/platform/wp7/RhoRubyLib/sync/SyncEngine.cs +13 -10
  295. data/platform/wp7/RhoRubyLib/sync/SyncSource.cs +30 -8
  296. data/platform/wp7/build/wp.rake +5 -0
  297. data/rakefile.rb +153 -46
  298. data/res/build-tools/detool.exe +0 -0
  299. data/res/build-tools/swig_patch/Lib/ruby/rubyerrors.swg +155 -0
  300. data/res/build-tools/swig_patch/Lib/ruby/rubyhead.swg +158 -0
  301. data/res/build-tools/swig_patch/Lib/ruby/rubyiterators.swg +932 -0
  302. data/res/build-tools/swig_patch/Lib/ruby/rubyrun.swg +448 -0
  303. data/res/build-tools/swig_patch/Lib/ruby/rubystdfunctors.swg +162 -0
  304. data/res/build-tools/swig_patch/Lib/ruby/rubytracking.swg +159 -0
  305. data/res/build-tools/swig_patch/Lib/ruby/std_basic_string.i +97 -0
  306. data/res/build-tools/swig_patch/Lib/ruby/std_map.i +418 -0
  307. data/res/build-tools/swig_patch/Lib/ruby/std_multimap.i +227 -0
  308. data/res/build-tools/swig_patch/Lib/swiginit.swg +269 -0
  309. data/res/build-tools/swig_patch/README +7 -0
  310. data/res/generators/templates/application/app/Settings/controller.rb +42 -1
  311. data/res/generators/templates/application/app/Settings/wait.erb +1 -1
  312. data/res/generators/templates/application/app/application.rb +1 -1
  313. data/res/generators/templates/application/app/layout.erb +8 -8
  314. data/res/generators/templates/application/build.yml +0 -1
  315. data/res/generators/templates/application/public/css/android.css +6 -0
  316. data/res/generators/templates/application/public/css/blackberry.css +6 -0
  317. data/res/generators/templates/application/public/css/iphone.css +6 -0
  318. data/res/generators/templates/application/public/css/jqmobile-patch.css +14 -0
  319. data/res/generators/templates/application/public/jqmobile/images/ajax-loader.png +0 -0
  320. data/res/generators/templates/application/public/jqmobile/images/icons-18-black.png +0 -0
  321. data/res/generators/templates/application/public/jqmobile/images/icons-18-white.png +0 -0
  322. data/res/generators/templates/application/public/jqmobile/images/icons-36-black.png +0 -0
  323. data/res/generators/templates/application/public/jqmobile/images/icons-36-white.png +0 -0
  324. data/res/generators/templates/application/public/jqmobile/{jquery.mobile-1.0rc1.css → jquery.mobile-1.0.css} +452 -354
  325. data/res/generators/templates/application/public/jqmobile/{jquery.mobile-1.0rc1.js → jquery.mobile-1.0.js} +629 -442
  326. data/res/generators/templates/application/public/jqmobile/jquery.mobile-1.0.min.css +2 -0
  327. data/res/generators/templates/application/public/jqmobile/jquery.mobile-1.0.min.js +172 -0
  328. data/res/generators/templates/application/public/jqmobile/jquery.mobile.structure-1.0.css +714 -0
  329. data/res/generators/templates/application/public/jqmobile/jquery.mobile.structure-1.0.min.css +2 -0
  330. data/res/generators/templates/application/public/js/jqmobile-patch.js +136 -7
  331. data/res/generators/templates/extension/app/MontanaTest/controller.rb +20 -20
  332. data/res/generators/templates/extension/app/MontanaTest/index.erb +17 -17
  333. data/res/generators/templates/extension/extensions/montana/ext/montana/platform/iphone/Montana.xcodeproj/project.pbxproj +8 -2
  334. data/res/generators/templates/extension/extensions/montana/ext/montana/platform/iphone/Rakefile +5 -0
  335. data/res/generators/templates/extension/extensions/montana/ext/montana/shared/ruby/montana_wrap.c +64 -20
  336. data/rhomobile-debug.gemspec +1 -1
  337. data/spec/framework_spec/app/layout.erb +1 -1
  338. data/spec/framework_spec/app/spec/core/rational/Rational_spec.rb +1 -1
  339. data/spec/framework_spec/app/spec/library/stringio/shared/each_char.rb +6 -2
  340. data/spec/framework_spec/app/spec/shared/rational/{Rational.rb → rational_main.rb} +0 -0
  341. data/spec/framework_spec/build.yml +0 -3
  342. data/spec/perfomance_spec/app/Benchmark/controller.rb +1 -1
  343. data/spec/perfomance_spec/app/layout.erb +1 -1
  344. data/spec/phone_spec/app/BlobTest_s/blob_test_s.rb +13 -0
  345. data/spec/phone_spec/app/BlobTest_s/test.png +0 -0
  346. data/spec/phone_spec/app/BlobTest_s/test2.png +0 -0
  347. data/spec/phone_spec/app/spec/blobsync_spec.rb +27 -15
  348. data/spec/phone_spec/app/spec/date_spec.rb +27 -1
  349. data/spec/phone_spec/app/spec/rho_spec.rb +6 -0
  350. data/spec/phone_spec/app/spec/rhom_object_spec.rb +64 -26
  351. data/spec/phone_spec/app/spec/syncengine_spec.rb +28 -7
  352. data/spec/phone_spec/app/spec/uri_spec.rb +4 -4
  353. data/spec/phone_spec/app/spec_runner.rb +4 -2
  354. data/spec/phone_spec/build.yml +7 -9
  355. data/spec/phone_spec/rhoconfig.txt +1 -0
  356. data/version +1 -1
  357. metadata +75 -22
  358. data/Manifest.txt +0 -7853
  359. data/platform/wm/rhodes/rhoelements/RhoWKBrowserEngine.cpp +0 -384
  360. data/platform/wm/rhodes/rhoelements/RhoWKBrowserEngine.h +0 -41
  361. data/platform/wm/rhodes/signature/Signature.cpp +0 -396
  362. data/platform/wm/rhodes/signature/Signature.h +0 -84
  363. data/platform/wm/rubylib/rubylib.vcproj.VLAD.Vladimir.user +0 -429
  364. data/platform/wm/sqlite3/sqlite3.vcproj.VLAD.Vladimir.user +0 -429
  365. data/platform/wm/syncengine/syncengine.vcproj.VLAD.Vladimir.user +0 -429
  366. data/res/generators/templates/application/public/jqmobile/jquery.mobile-1.0rc1.min.css +0 -12
  367. data/res/generators/templates/application/public/jqmobile/jquery.mobile-1.0rc1.min.js +0 -170
  368. data/rhomobile-debug-1.0.5.gem +0 -0
@@ -0,0 +1,7 @@
1
+ This is patch for SWIG.
2
+ Fixed issue with reinitialization of generated Ruby-C wrapper.
3
+ Copy this files into SWIG sources folder before build and install SWIG.
4
+ Or copy all files and folder from Lib folder into SWIG library folder (for already installed SWIG)
5
+ On Mac OS X is (2.0.4 is version of SWIG - may be another):
6
+ /Volumes/Macintosh HD/usr/share/swig/2.0.4/
7
+
@@ -13,7 +13,7 @@ class SettingsController < Rho::RhoController
13
13
 
14
14
  def login
15
15
  @msg = @params['msg']
16
- render :action => :login, :back => '/app'
16
+ render :action => :login
17
17
  end
18
18
 
19
19
  def login_callback
@@ -73,4 +73,45 @@ class SettingsController < Rho::RhoController
73
73
  @msg = "Sync has been triggered."
74
74
  redirect :action => :index, :query => {:msg => @msg}
75
75
  end
76
+
77
+ def sync_notify
78
+ status = @params['status'] ? @params['status'] : ""
79
+
80
+ # un-comment to show a debug status pop-up
81
+ #Alert.show_status( "Status", "#{@params['source_name']} : #{status}", Rho::RhoMessages.get_message('hide'))
82
+
83
+ if status == "in_progress"
84
+ # do nothing
85
+ elsif status == "complete"
86
+ WebView.navigate Rho::RhoConfig.start_path if @params['sync_type'] != 'bulk'
87
+ elsif status == "error"
88
+
89
+ if @params['server_errors'] && @params['server_errors']['create-error']
90
+ SyncEngine.on_sync_create_error(
91
+ @params['source_name'], @params['server_errors']['create-error'].keys, :delete )
92
+ end
93
+
94
+ if @params['server_errors'] && @params['server_errors']['update-error']
95
+ SyncEngine.on_sync_update_error(
96
+ @params['source_name'], @params['server_errors']['update-error'], :retry )
97
+ end
98
+
99
+ err_code = @params['error_code'].to_i
100
+ rho_error = Rho::RhoError.new(err_code)
101
+
102
+ @msg = @params['error_message'] if err_code == Rho::RhoError::ERR_CUSTOMSYNCSERVER
103
+ @msg = rho_error.message unless @msg && @msg.length > 0
104
+
105
+ if rho_error.unknown_client?( @params['error_message'] )
106
+ Rhom::Rhom.database_client_reset
107
+ SyncEngine.dosync
108
+ elsif err_code == Rho::RhoError::ERR_UNATHORIZED
109
+ WebView.navigate(
110
+ url_for :action => :login,
111
+ :query => {:msg => "Server credentials are expired"} )
112
+ else
113
+ WebView.navigate( url_for :action => :err_sync, :query => { :msg => @msg } )
114
+ end
115
+ end
116
+ end
76
117
  end
@@ -1,4 +1,4 @@
1
- <div data-role="page">
1
+ <div data-role="page" data-rho-wait-page="true">
2
2
 
3
3
  <div data-role="header" data-position="inline">
4
4
  <h1>Wait</h1>
@@ -11,6 +11,6 @@ class AppApplication < Rho::RhoApplication
11
11
 
12
12
  # Uncomment to set sync notification callback to /app/Settings/sync_notify.
13
13
  # SyncEngine::set_objectnotify_url("/app/Settings/sync_notify")
14
- # SyncEngine.set_notification(-1, "/app/Settings/sync_notify", '')
14
+ SyncEngine.set_notification(-1, "/app/Settings/sync_notify", '')
15
15
  end
16
16
  end
@@ -9,19 +9,19 @@
9
9
  <%% is_bb6 = System::get_property('platform') == 'Blackberry' && (System::get_property('os_version').split('.')[0].to_i >= 6) %>
10
10
 
11
11
  <%% if is_bb6 %>
12
- <meta name="viewport" content="width=device-width; height=device-height; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"/>
12
+ <meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
13
13
  <%% else %>
14
- <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"/>
14
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
15
15
  <%% end %>
16
16
 
17
17
  <%% if System::get_property('platform') == 'WP7' %>
18
18
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
19
19
  <%% end %>
20
20
 
21
- <%% if System::get_property('platform') == 'APPLE' || System::get_property('platform') == 'ANDROID' || is_bb6 || ( System::get_property('platform') == 'UNKNOWN' && System::get_property('webview_framework') =~ /^WEBKIT/) %>
21
+ <%% if System::get_property('platform') == 'APPLE' || System::get_property('platform') == 'ANDROID' || is_bb6 || System::get_property('webview_framework') =~ /^WEBKIT/ %>
22
22
  <script src="/public/jquery/jquery-1.6.4.min.js" type="text/javascript"></script>
23
23
 
24
- <link rel="stylesheet" href="/public/jqmobile/jquery.mobile-1.0rc1.min.css">
24
+ <link rel="stylesheet" href="/public/jqmobile/jquery.mobile-1.0.min.css">
25
25
  <link rel="stylesheet" href="/public/css/jqmobile-patch.css">
26
26
  <%% if System::get_property('platform') == 'APPLE' %>
27
27
  <link href="/public/jqmobile/jquery-mobile-iphone.css" type="text/css" rel="stylesheet"/>
@@ -38,7 +38,7 @@
38
38
  //$.mobile.loadingMessage = "loading"; // it is default value
39
39
 
40
40
  // For documented init options look here:
41
- // http://jquerymobile.com/demos/1.0rc1/#/demos/1.0rc1/docs/api/globalconfig.html
41
+ // http://jquerymobile.com/demos/1.0/docs/api/globalconfig.html
42
42
 
43
43
  // For poorly documented options search for ".prototype.options"
44
44
  // in the jQuery Mobile source code
@@ -48,7 +48,7 @@
48
48
  $.mobile.loadingMessageDelay = 300; // in ms
49
49
  });
50
50
  </script>
51
- <script type="text/javascript" charset="utf-8" src="/public/jqmobile/jquery.mobile-1.0rc1.min.js"></script>
51
+ <script type="text/javascript" charset="utf-8" src="/public/jqmobile/jquery.mobile-1.0.min.js"></script>
52
52
  <script type="text/javascript" charset="utf-8" src="/public/js/jqmobile-patch.js"></script>
53
53
 
54
54
  <%% end %>
@@ -64,10 +64,10 @@
64
64
  <%% elsif System::get_property('platform') == 'WP7' %>
65
65
  <link href="/public/css/windows_mobile.css" type="text/css" rel="stylesheet"/>
66
66
  <script src="/public/js/wp7.js" type="text/javascript"></script>
67
- <%% elsif System::get_property('platform') == 'WINDOWS' %>
68
- <link href="/public/css/windows_mobile.css" type="text/css" rel="stylesheet"/>
69
67
  <%% elsif System::get_property('webview_framework') =~ /^WEBKIT/ %>
70
68
  <link href="/public/css/android.css" type="text/css" rel="stylesheet"/>
69
+ <%% elsif System::get_property('platform') == 'WINDOWS' %>
70
+ <link href="/public/css/windows_mobile.css" type="text/css" rel="stylesheet"/>
71
71
  <%% end %>
72
72
  </head>
73
73
 
@@ -5,7 +5,6 @@ version: 1.0
5
5
  vendor: rhomobile
6
6
  build: debug
7
7
  bbver: 4.6
8
- wmsdk: "Windows Mobile 6 Professional SDK (ARMV4I)"
9
8
  applog: rholog.txt
10
9
  iphone:
11
10
  configuration: Release
@@ -704,3 +704,9 @@ div.itemValue {
704
704
  color: red;
705
705
  text-align: center
706
706
  }
707
+
708
+ .ui-page {
709
+ -webkit-transform-style: flat;
710
+ -webkit-backface-visibility: hidden;
711
+ -webkit-perspective: 800;
712
+ }
@@ -138,3 +138,9 @@ div.itemValue {
138
138
  color: red;
139
139
  text-align: center
140
140
  }
141
+
142
+ .ui-page {
143
+ -webkit-transform-style: flat;
144
+ -webkit-backface-visibility: hidden;
145
+ -webkit-perspective: 800;
146
+ }
@@ -868,3 +868,9 @@ div.itemValue {
868
868
  color: red;
869
869
  text-align: center
870
870
  }
871
+
872
+ .ui-page {
873
+ -webkit-transform-style: flat;
874
+ -webkit-backface-visibility: hidden;
875
+ -webkit-perspective: 800;
876
+ }
@@ -33,3 +33,17 @@
33
33
  textarea.ui-input-text,
34
34
  .ui-input-search { margin-left: 20px; }
35
35
  }
36
+
37
+ /* fix for https://www.pivotaltracker.com/story/show/19794687 */
38
+ @media all and (min-width: 320px){
39
+ .ui-content ul li div.itemLabel {
40
+ float: left; /* float the label left, rather than floating the item right */
41
+ width: 40%; /* A width MUST be specified when floating. */
42
+ }
43
+
44
+ .ui-content ul li div.itemValue {
45
+ width: 60%;
46
+ float: none; /* Un-do the default float */
47
+ word-wrap: break-word; /* breaks-up long strings with no spaces */
48
+ }
49
+ }
@@ -1,17 +1,12 @@
1
- /*!
2
- * jQuery Mobile v1.0rc1
3
- * http://jquerymobile.com/
4
- *
5
- * Copyright 2010, jQuery Project
6
- * Dual licensed under the MIT or GPL Version 2 licenses.
7
- * http://jquery.org/license
8
- */
9
- /*!
10
- * jQuery Mobile Framework
11
- * Copyright (c) jQuery Project
12
- * Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.
1
+ /*
2
+ * jQuery Mobile Framework 1.0
3
+ * http://jquerymobile.com
4
+ *
5
+ * Copyright 2011 (c) jQuery Project
6
+ * Dual licensed under the MIT or GPL Version 2 licenses.
7
+ * http://jquery.org/license
8
+ *
13
9
  */
14
-
15
10
  /* Swatches */
16
11
 
17
12
  /* A
@@ -23,72 +18,94 @@
23
18
  color: #ffffff /*{a-bar-color}*/;
24
19
  font-weight: bold;
25
20
  text-shadow: 0 /*{a-bar-shadow-x}*/ -1px /*{a-bar-shadow-y}*/ 1px /*{a-bar-shadow-radius}*/ #000000 /*{a-bar-shadow-color}*/;
26
- background-image: -webkit-gradient(linear, left top, left bottom, from(#3c3c3c /*{a-bar-background-start}*/), to(#111 /*{a-bar-background-end}*/)); /* Saf4+, Chrome */
27
- background-image: -webkit-linear-gradient(top, #3c3c3c /*{a-bar-background-start}*/, #111 /*{a-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */
28
- background-image: -moz-linear-gradient(top, #3c3c3c /*{a-bar-background-start}*/, #111 /*{a-bar-background-end}*/); /* FF3.6 */
29
- background-image: -ms-linear-gradient(top, #3c3c3c /*{a-bar-background-start}*/, #111 /*{a-bar-background-end}*/); /* IE10 */
30
- background-image: -o-linear-gradient(top, #3c3c3c /*{a-bar-background-start}*/, #111 /*{a-bar-background-end}*/); /* Opera 11.10+ */
31
- background-image: linear-gradient(top, #3c3c3c /*{a-bar-background-start}*/, #111 /*{a-bar-background-end}*/);
21
+ background-image: -webkit-gradient(linear, left top, left bottom, from( #3c3c3c /*{a-bar-background-start}*/), to( #111 /*{a-bar-background-end}*/)); /* Saf4+, Chrome */
22
+ background-image: -webkit-linear-gradient(#3c3c3c /*{a-bar-background-start}*/, #111 /*{a-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */
23
+ background-image: -moz-linear-gradient(#3c3c3c /*{a-bar-background-start}*/, #111 /*{a-bar-background-end}*/); /* FF3.6 */
24
+ background-image: -ms-linear-gradient(#3c3c3c /*{a-bar-background-start}*/, #111 /*{a-bar-background-end}*/); /* IE10 */
25
+ background-image: -o-linear-gradient(#3c3c3c /*{a-bar-background-start}*/, #111 /*{a-bar-background-end}*/); /* Opera 11.10+ */
26
+ background-image: linear-gradient(#3c3c3c /*{a-bar-background-start}*/, #111 /*{a-bar-background-end}*/);
32
27
  }
33
28
  .ui-bar-a,
34
29
  .ui-bar-a input,
35
30
  .ui-bar-a select,
36
31
  .ui-bar-a textarea,
37
32
  .ui-bar-a button {
38
- font-family: Helvetica, Arial, sans-serif /*{a-bar-font}*/;
33
+ font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
39
34
  }
40
35
  .ui-bar-a .ui-link-inherit {
41
- color: #fff /*{a-bar-color}*/;
36
+ color: #fff /*{a-bar-color}*/;
42
37
  }
38
+
43
39
  .ui-bar-a .ui-link {
44
- color: #7cc4e7 /*{global-link-color}*/;
40
+ color: #7cc4e7 /*{a-bar-link-color}*/;
45
41
  font-weight: bold;
46
42
  }
47
- .ui-body-a {
43
+
44
+ .ui-bar-a .ui-link:hover {
45
+ color: #2489CE /*{a-bar-link-hover}*/;
46
+ }
47
+
48
+ .ui-bar-a .ui-link:active {
49
+ color: #2489CE /*{a-bar-link-active}*/;
50
+ }
51
+
52
+ .ui-bar-a .ui-link:visited {
53
+ color: #2489CE /*{a-bar-link-visited}*/;
54
+ }
55
+ .ui-body-a,
56
+ .ui-dialog.ui-overlay-a {
48
57
  border: 1px solid #2A2A2A /*{a-body-border}*/;
49
58
  background: #222222 /*{a-body-background-color}*/;
50
59
  color: #fff /*{a-body-color}*/;
51
60
  text-shadow: 0 /*{a-body-shadow-x}*/ 1px /*{a-body-shadow-y}*/ 0 /*{a-body-shadow-radius}*/ #000 /*{a-body-shadow-color}*/;
52
61
  font-weight: normal;
53
- background-image: -webkit-gradient(linear, left top, left bottom, from(#666 /*{a-body-background-start}*/), to(#222 /*{a-body-background-end}*/)); /* Saf4+, Chrome */
54
- background-image: -webkit-linear-gradient(top, #666 /*{a-body-background-start}*/, #222 /*{a-body-background-end}*/); /* Chrome 10+, Saf5.1+ */
55
- background-image: -moz-linear-gradient(top, #666 /*{a-body-background-start}*/, #222 /*{a-body-background-end}*/); /* FF3.6 */
56
- background-image: -ms-linear-gradient(top, #666 /*{a-body-background-start}*/, #222 /*{a-body-background-end}*/); /* IE10 */
57
- background-image: -o-linear-gradient(top, #666 /*{a-body-background-start}*/, #222 /*{a-body-background-end}*/); /* Opera 11.10+ */
58
- background-image: linear-gradient(top, #666 /*{a-body-background-start}*/, #222 /*{a-body-background-end}*/);
62
+ background-image: -webkit-gradient(linear, left top, left bottom, from( #666 /*{a-body-background-start}*/), to( #222 /*{a-body-background-end}*/)); /* Saf4+, Chrome */
63
+ background-image: -webkit-linear-gradient(#666 /*{a-body-background-start}*/, #222 /*{a-body-background-end}*/); /* Chrome 10+, Saf5.1+ */
64
+ background-image: -moz-linear-gradient(#666 /*{a-body-background-start}*/, #222 /*{a-body-background-end}*/); /* FF3.6 */
65
+ background-image: -ms-linear-gradient(#666 /*{a-body-background-start}*/, #222 /*{a-body-background-end}*/); /* IE10 */
66
+ background-image: -o-linear-gradient(#666 /*{a-body-background-start}*/, #222 /*{a-body-background-end}*/); /* Opera 11.10+ */
67
+ background-image: linear-gradient(#666 /*{a-body-background-start}*/, #222 /*{a-body-background-end}*/);
59
68
  }
60
69
  .ui-body-a,
61
70
  .ui-body-a input,
62
71
  .ui-body-a select,
63
72
  .ui-body-a textarea,
64
73
  .ui-body-a button {
65
- font-family: Helvetica, Arial, sans-serif /*{a-body-font}*/;
74
+ font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
66
75
  }
67
76
  .ui-body-a .ui-link-inherit {
68
- color: #fff /*{a-body-color}*/;
77
+ color: #fff /*{a-body-color}*/;
69
78
  }
79
+
70
80
  .ui-body-a .ui-link {
71
- color: #2489CE /*{global-link-color}*/;
81
+ color: #2489CE /*{a-body-link-color}*/;
72
82
  font-weight: bold;
73
83
  }
74
- .ui-br {
75
- border-bottom: rgb(130,130,130);
76
- border-bottom: rgba(130,130,130,.3);
77
- border-bottom-width: 1px;
78
- border-bottom-style: solid;
84
+
85
+ .ui-body-a .ui-link:hover {
86
+ color: #2489CE /*{a-body-link-hover}*/;
79
87
  }
88
+
89
+ .ui-body-a .ui-link:active {
90
+ color: #2489CE /*{a-body-link-active}*/;
91
+ }
92
+
93
+ .ui-body-a .ui-link:visited {
94
+ color: #2489CE /*{a-body-link-visited}*/;
95
+ }
96
+
80
97
  .ui-btn-up-a {
81
98
  border: 1px solid #222 /*{a-bup-border}*/;
82
99
  background: #333333 /*{a-bup-background-color}*/;
83
100
  font-weight: bold;
84
101
  color: #fff /*{a-bup-color}*/;
85
102
  text-shadow: 0 /*{a-bup-shadow-x}*/ -1px /*{a-bup-shadow-y}*/ 1px /*{a-bup-shadow-radius}*/ #000 /*{a-bup-shadow-color}*/;
86
- background-image: -webkit-gradient(linear, left top, left bottom, from(#555 /*{a-bup-background-start}*/), to(#333 /*{a-bup-background-end}*/)); /* Saf4+, Chrome */
87
- background-image: -webkit-linear-gradient(top, #555 /*{a-bup-background-start}*/, #333 /*{a-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */
88
- background-image: -moz-linear-gradient(top, #555 /*{a-bup-background-start}*/, #333 /*{a-bup-background-end}*/); /* FF3.6 */
89
- background-image: -ms-linear-gradient(top, #555 /*{a-bup-background-start}*/, #333 /*{a-bup-background-end}*/); /* IE10 */
90
- background-image: -o-linear-gradient(top, #555 /*{a-bup-background-start}*/, #333 /*{a-bup-background-end}*/); /* Opera 11.10+ */
91
- background-image: linear-gradient(top, #555 /*{a-bup-background-start}*/, #333 /*{a-bup-background-end}*/);
103
+ background-image: -webkit-gradient(linear, left top, left bottom, from( #555 /*{a-bup-background-start}*/), to( #333 /*{a-bup-background-end}*/)); /* Saf4+, Chrome */
104
+ background-image: -webkit-linear-gradient(#555 /*{a-bup-background-start}*/, #333 /*{a-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */
105
+ background-image: -moz-linear-gradient(#555 /*{a-bup-background-start}*/, #333 /*{a-bup-background-end}*/); /* FF3.6 */
106
+ background-image: -ms-linear-gradient(#555 /*{a-bup-background-start}*/, #333 /*{a-bup-background-end}*/); /* IE10 */
107
+ background-image: -o-linear-gradient(#555 /*{a-bup-background-start}*/, #333 /*{a-bup-background-end}*/); /* Opera 11.10+ */
108
+ background-image: linear-gradient(#555 /*{a-bup-background-start}*/, #333 /*{a-bup-background-end}*/);
92
109
  }
93
110
  .ui-btn-up-a a.ui-link-inherit {
94
111
  color: #fff /*{a-bup-color}*/;
@@ -99,12 +116,12 @@
99
116
  font-weight: bold;
100
117
  color: #fff /*{a-bhover-color}*/;
101
118
  text-shadow: 0 /*{a-bhover-shadow-x}*/ -1px /*{a-bhover-shadow-y}*/ 1px /*{a-bhover-shadow-radius}*/ #000 /*{a-bhover-shadow-color}*/;
102
- background-image: -webkit-gradient(linear, left top, left bottom, from(#666 /*{a-bhover-background-start}*/), to(#444 /*{a-bhover-background-end}*/)); /* Saf4+, Chrome */
103
- background-image: -webkit-linear-gradient(top, #666 /*{a-bhover-background-start}*/, #444 /*{a-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */
104
- background-image: -moz-linear-gradient(top, #666 /*{a-bhover-background-start}*/, #444 /*{a-bhover-background-end}*/); /* FF3.6 */
105
- background-image: -ms-linear-gradient(top, #666 /*{a-bhover-background-start}*/, #444 /*{a-bhover-background-end}*/); /* IE10 */
106
- background-image: -o-linear-gradient(top, #666 /*{a-bhover-background-start}*/, #444 /*{a-bhover-background-end}*/); /* Opera 11.10+ */
107
- background-image: linear-gradient(top, #666 /*{a-bhover-background-start}*/, #444 /*{a-bhover-background-end}*/);
119
+ background-image: -webkit-gradient(linear, left top, left bottom, from( #666 /*{a-bhover-background-start}*/), to( #444 /*{a-bhover-background-end}*/)); /* Saf4+, Chrome */
120
+ background-image: -webkit-linear-gradient(#666 /*{a-bhover-background-start}*/, #444 /*{a-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */
121
+ background-image: -moz-linear-gradient(#666 /*{a-bhover-background-start}*/, #444 /*{a-bhover-background-end}*/); /* FF3.6 */
122
+ background-image: -ms-linear-gradient(#666 /*{a-bhover-background-start}*/, #444 /*{a-bhover-background-end}*/); /* IE10 */
123
+ background-image: -o-linear-gradient(#666 /*{a-bhover-background-start}*/, #444 /*{a-bhover-background-end}*/); /* Opera 11.10+ */
124
+ background-image: linear-gradient(#666 /*{a-bhover-background-start}*/, #444 /*{a-bhover-background-end}*/);
108
125
  }
109
126
  .ui-btn-hover-a a.ui-link-inherit {
110
127
  color: #fff /*{a-bhover-color}*/;
@@ -115,12 +132,12 @@
115
132
  font-weight: bold;
116
133
  color: #fff /*{a-bdown-color}*/;
117
134
  text-shadow: 0 /*{a-bdown-shadow-x}*/ -1px /*{a-bdown-shadow-y}*/ 1px /*{a-bdown-shadow-radius}*/ #000 /*{a-bdown-shadow-color}*/;
118
- background-image: -webkit-gradient(linear, left top, left bottom, from(#333 /*{a-bdown-background-start}*/), to(#5a5a5a /*{a-bdown-background-end}*/)); /* Saf4+, Chrome */
119
- background-image: -webkit-linear-gradient(top, #333 /*{a-bdown-background-start}*/, #5a5a5a /*{a-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */
120
- background-image: -moz-linear-gradient(top, #333 /*{a-bdown-background-start}*/, #5a5a5a /*{a-bdown-background-end}*/); /* FF3.6 */
121
- background-image: -ms-linear-gradient(top, #333 /*{a-bdown-background-start}*/, #5a5a5a /*{a-bdown-background-end}*/); /* IE10 */
122
- background-image: -o-linear-gradient(top, #333 /*{a-bdown-background-start}*/, #5a5a5a /*{a-bdown-background-end}*/); /* Opera 11.10+ */
123
- background-image: linear-gradient(top, #333 /*{a-bdown-background-start}*/, #5a5a5a /*{a-bdown-background-end}*/);
135
+ background-image: -webkit-gradient(linear, left top, left bottom, from( #333 /*{a-bdown-background-start}*/), to( #5a5a5a /*{a-bdown-background-end}*/)); /* Saf4+, Chrome */
136
+ background-image: -webkit-linear-gradient(#333 /*{a-bdown-background-start}*/, #5a5a5a /*{a-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */
137
+ background-image: -moz-linear-gradient(#333 /*{a-bdown-background-start}*/, #5a5a5a /*{a-bdown-background-end}*/); /* FF3.6 */
138
+ background-image: -ms-linear-gradient(#333 /*{a-bdown-background-start}*/, #5a5a5a /*{a-bdown-background-end}*/); /* IE10 */
139
+ background-image: -o-linear-gradient(#333 /*{a-bdown-background-start}*/, #5a5a5a /*{a-bdown-background-end}*/); /* Opera 11.10+ */
140
+ background-image: linear-gradient(#333 /*{a-bdown-background-start}*/, #5a5a5a /*{a-bdown-background-end}*/);
124
141
  }
125
142
  .ui-btn-down-a a.ui-link-inherit {
126
143
  color: #fff /*{a-bdown-color}*/;
@@ -128,7 +145,7 @@
128
145
  .ui-btn-up-a,
129
146
  .ui-btn-hover-a,
130
147
  .ui-btn-down-a {
131
- font-family: Helvetica, Arial, sans-serif /*{a-button-font}*/;
148
+ font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
132
149
  text-decoration: none;
133
150
  }
134
151
 
@@ -142,67 +159,93 @@
142
159
  color: #fff /*{b-bar-color}*/;
143
160
  font-weight: bold;
144
161
  text-shadow: 0 /*{b-bar-shadow-x}*/ -1px /*{b-bar-shadow-y}*/ 1px /*{b-bar-shadow-radius}*/ #254f7a /*{b-bar-shadow-color}*/;
145
- background-image: -webkit-gradient(linear, left top, left bottom, from(#81a8ce /*{b-bar-background-start}*/), to(#5e87b0 /*{b-bar-background-end}*/)); /* Saf4+, Chrome */
146
- background-image: -webkit-linear-gradient(top, #81a8ce /*{b-bar-background-start}*/, #5e87b0 /*{b-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */
147
- background-image: -moz-linear-gradient(top, #81a8ce /*{b-bar-background-start}*/, #5e87b0 /*{b-bar-background-end}*/); /* FF3.6 */
148
- background-image: -ms-linear-gradient(top, #81a8ce /*{b-bar-background-start}*/, #5e87b0 /*{b-bar-background-end}*/); /* IE10 */
149
- background-image: -o-linear-gradient(top, #81a8ce /*{b-bar-background-start}*/, #5e87b0 /*{b-bar-background-end}*/); /* Opera 11.10+ */
150
- background-image: linear-gradient(top, #81a8ce /*{b-bar-background-start}*/, #5e87b0 /*{b-bar-background-end}*/);
162
+ background-image: -webkit-gradient(linear, left top, left bottom, from( #81a8ce /*{b-bar-background-start}*/), to( #5e87b0 /*{b-bar-background-end}*/)); /* Saf4+, Chrome */
163
+ background-image: -webkit-linear-gradient(#81a8ce /*{b-bar-background-start}*/, #5e87b0 /*{b-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */
164
+ background-image: -moz-linear-gradient(#81a8ce /*{b-bar-background-start}*/, #5e87b0 /*{b-bar-background-end}*/); /* FF3.6 */
165
+ background-image: -ms-linear-gradient(#81a8ce /*{b-bar-background-start}*/, #5e87b0 /*{b-bar-background-end}*/); /* IE10 */
166
+ background-image: -o-linear-gradient(#81a8ce /*{b-bar-background-start}*/, #5e87b0 /*{b-bar-background-end}*/); /* Opera 11.10+ */
167
+ background-image: linear-gradient(#81a8ce /*{b-bar-background-start}*/, #5e87b0 /*{b-bar-background-end}*/);
151
168
  }
152
169
  .ui-bar-b,
153
170
  .ui-bar-b input,
154
171
  .ui-bar-b select,
155
172
  .ui-bar-b textarea,
156
173
  .ui-bar-b button {
157
- font-family: Helvetica, Arial, sans-serif /*{b-bar-font}*/;
174
+ font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
158
175
  }
159
176
  .ui-bar-b .ui-link-inherit {
160
- color: #fff /*{b-bar-color}*/;
177
+ color: #fff /*{b-bar-color}*/;
161
178
  }
162
179
  .ui-bar-b .ui-link {
163
- color: #7cc4e7 /*{global-link-color}*/;
180
+ color: #ddf0f8 /*{b-bar-link-color}*/;
164
181
  font-weight: bold;
165
182
  }
166
183
 
167
- .ui-body-b {
184
+ .ui-bar-b .ui-link:hover {
185
+ color: #ddf0f8 /*{b-bar-link-hover}*/;
186
+ }
187
+
188
+ .ui-bar-b .ui-link:active {
189
+ color: #ddf0f8 /*{b-bar-link-active}*/;
190
+ }
191
+
192
+ .ui-bar-b .ui-link:visited {
193
+ color: #ddf0f8 /*{b-bar-link-visited}*/;
194
+ }
195
+ .ui-body-b,
196
+ .ui-dialog.ui-overlay-b {
168
197
  border: 1px solid #C6C6C6 /*{b-body-border}*/;
169
198
  background: #cccccc /*{b-body-background-color}*/;
170
199
  color: #333333 /*{b-body-color}*/;
171
200
  text-shadow: 0 /*{b-body-shadow-x}*/ 1px /*{b-body-shadow-y}*/ 0 /*{b-body-shadow-radius}*/ #fff /*{b-body-shadow-color}*/;
172
201
  font-weight: normal;
173
- background-image: -webkit-gradient(linear, left top, left bottom, from(#e6e6e6 /*{b-body-background-start}*/), to(#ccc /*{b-body-background-end}*/)); /* Saf4+, Chrome */
174
- background-image: -webkit-linear-gradient(top, #e6e6e6 /*{b-body-background-start}*/, #ccc /*{b-body-background-end}*/); /* Chrome 10+, Saf5.1+ */
175
- background-image: -moz-linear-gradient(top, #e6e6e6 /*{b-body-background-start}*/, #ccc /*{b-body-background-end}*/); /* FF3.6 */
176
- background-image: -ms-linear-gradient(top, #e6e6e6 /*{b-body-background-start}*/, #ccc /*{b-body-background-end}*/); /* IE10 */
177
- background-image: -o-linear-gradient(top, #e6e6e6 /*{b-body-background-start}*/, #ccc /*{b-body-background-end}*/); /* Opera 11.10+ */
178
- background-image: linear-gradient(top, #e6e6e6 /*{b-body-background-start}*/, #ccc /*{b-body-background-end}*/);
202
+ background-image: -webkit-gradient(linear, left top, left bottom, from( #e6e6e6 /*{b-body-background-start}*/), to( #ccc /*{b-body-background-end}*/)); /* Saf4+, Chrome */
203
+ background-image: -webkit-linear-gradient(#e6e6e6 /*{b-body-background-start}*/, #ccc /*{b-body-background-end}*/); /* Chrome 10+, Saf5.1+ */
204
+ background-image: -moz-linear-gradient(#e6e6e6 /*{b-body-background-start}*/, #ccc /*{b-body-background-end}*/); /* FF3.6 */
205
+ background-image: -ms-linear-gradient(#e6e6e6 /*{b-body-background-start}*/, #ccc /*{b-body-background-end}*/); /* IE10 */
206
+ background-image: -o-linear-gradient(#e6e6e6 /*{b-body-background-start}*/, #ccc /*{b-body-background-end}*/); /* Opera 11.10+ */
207
+ background-image: linear-gradient(#e6e6e6 /*{b-body-background-start}*/, #ccc /*{b-body-background-end}*/);
179
208
  }
180
209
  .ui-body-b,
181
210
  .ui-body-b input,
182
211
  .ui-body-b select,
183
212
  .ui-body-b textarea,
184
213
  .ui-body-b button {
185
- font-family: Helvetica, Arial, sans-serif /*{b-body-font}*/;
214
+ font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
186
215
  }
187
216
  .ui-body-b .ui-link-inherit {
188
- color: #333333 /*{b-body-color}*/;
217
+ color: #333333 /*{b-body-color}*/;
189
218
  }
219
+
190
220
  .ui-body-b .ui-link {
191
- color: #2489CE /*{global-link-color}*/;
221
+ color: #2489CE /*{b-body-link-color}*/;
192
222
  font-weight: bold;
193
223
  }
224
+
225
+ .ui-body-b .ui-link:hover {
226
+ color: #2489CE /*{b-body-link-hover}*/;
227
+ }
228
+
229
+ .ui-body-b .ui-link:active {
230
+ color: #2489CE /*{b-body-link-active}*/;
231
+ }
232
+
233
+ .ui-body-b .ui-link:visited {
234
+ color: #2489CE /*{b-body-link-visited}*/;
235
+ }
236
+
194
237
  .ui-btn-up-b {
195
238
  border: 1px solid #145072 /*{b-bup-border}*/;
196
239
  background: #2567ab /*{b-bup-background-color}*/;
197
240
  font-weight: bold;
198
241
  color: #fff /*{b-bup-color}*/;
199
242
  text-shadow: 0 /*{b-bup-shadow-x}*/ -1px /*{b-bup-shadow-y}*/ 1px /*{b-bup-shadow-radius}*/ #145072 /*{b-bup-shadow-color}*/;
200
- background-image: -webkit-gradient(linear, left top, left bottom, from(#5f9cc5 /*{b-bup-background-start}*/), to(#396b9e /*{b-bup-background-end}*/)); /* Saf4+, Chrome */
201
- background-image: -webkit-linear-gradient(top, #5f9cc5 /*{b-bup-background-start}*/, #396b9e /*{b-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */
202
- background-image: -moz-linear-gradient(top, #5f9cc5 /*{b-bup-background-start}*/, #396b9e /*{b-bup-background-end}*/); /* FF3.6 */
203
- background-image: -ms-linear-gradient(top, #5f9cc5 /*{b-bup-background-start}*/, #396b9e /*{b-bup-background-end}*/); /* IE10 */
204
- background-image: -o-linear-gradient(top, #5f9cc5 /*{b-bup-background-start}*/, #396b9e /*{b-bup-background-end}*/); /* Opera 11.10+ */
205
- background-image: linear-gradient(top, #5f9cc5 /*{b-bup-background-start}*/, #396b9e /*{b-bup-background-end}*/);
243
+ background-image: -webkit-gradient(linear, left top, left bottom, from( #5f9cc5 /*{b-bup-background-start}*/), to( #396b9e /*{b-bup-background-end}*/)); /* Saf4+, Chrome */
244
+ background-image: -webkit-linear-gradient(#5f9cc5 /*{b-bup-background-start}*/, #396b9e /*{b-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */
245
+ background-image: -moz-linear-gradient(#5f9cc5 /*{b-bup-background-start}*/, #396b9e /*{b-bup-background-end}*/); /* FF3.6 */
246
+ background-image: -ms-linear-gradient(#5f9cc5 /*{b-bup-background-start}*/, #396b9e /*{b-bup-background-end}*/); /* IE10 */
247
+ background-image: -o-linear-gradient(#5f9cc5 /*{b-bup-background-start}*/, #396b9e /*{b-bup-background-end}*/); /* Opera 11.10+ */
248
+ background-image: linear-gradient(#5f9cc5 /*{b-bup-background-start}*/, #396b9e /*{b-bup-background-end}*/);
206
249
  }
207
250
  .ui-btn-up-b a.ui-link-inherit {
208
251
  color: #fff /*{b-bup-color}*/;
@@ -213,12 +256,12 @@
213
256
  font-weight: bold;
214
257
  color: #fff /*{b-bhover-color}*/;
215
258
  text-shadow: 0 /*{b-bhover-shadow-x}*/ -1px /*{b-bhover-shadow-y}*/ 1px /*{b-bhover-shadow-radius}*/ #014D68 /*{b-bhover-shadow-color}*/;
216
- background-image: -webkit-gradient(linear, left top, left bottom, from(#72b0d4 /*{b-bhover-background-start}*/), to(#4b88b6 /*{b-bhover-background-end}*/)); /* Saf4+, Chrome */
217
- background-image: -webkit-linear-gradient(top, #72b0d4 /*{b-bhover-background-start}*/, #4b88b6 /*{b-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */
218
- background-image: -moz-linear-gradient(top, #72b0d4 /*{b-bhover-background-start}*/, #4b88b6 /*{b-bhover-background-end}*/); /* FF3.6 */
219
- background-image: -ms-linear-gradient(top, #72b0d4 /*{b-bhover-background-start}*/, #4b88b6 /*{b-bhover-background-end}*/); /* IE10 */
220
- background-image: -o-linear-gradient(top, #72b0d4 /*{b-bhover-background-start}*/, #4b88b6 /*{b-bhover-background-end}*/); /* Opera 11.10+ */
221
- background-image: linear-gradient(top, #72b0d4 /*{b-bhover-background-start}*/, #4b88b6 /*{b-bhover-background-end}*/);
259
+ background-image: -webkit-gradient(linear, left top, left bottom, from( #72b0d4 /*{b-bhover-background-start}*/), to( #4b88b6 /*{b-bhover-background-end}*/)); /* Saf4+, Chrome */
260
+ background-image: -webkit-linear-gradient(#72b0d4 /*{b-bhover-background-start}*/, #4b88b6 /*{b-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */
261
+ background-image: -moz-linear-gradient(#72b0d4 /*{b-bhover-background-start}*/, #4b88b6 /*{b-bhover-background-end}*/); /* FF3.6 */
262
+ background-image: -ms-linear-gradient(#72b0d4 /*{b-bhover-background-start}*/, #4b88b6 /*{b-bhover-background-end}*/); /* IE10 */
263
+ background-image: -o-linear-gradient(#72b0d4 /*{b-bhover-background-start}*/, #4b88b6 /*{b-bhover-background-end}*/); /* Opera 11.10+ */
264
+ background-image: linear-gradient(#72b0d4 /*{b-bhover-background-start}*/, #4b88b6 /*{b-bhover-background-end}*/);
222
265
  }
223
266
  .ui-btn-hover-b a.ui-link-inherit {
224
267
  color: #fff /*{b-bhover-color}*/;
@@ -229,12 +272,12 @@
229
272
  font-weight: bold;
230
273
  color: #fff /*{b-bdown-color}*/;
231
274
  text-shadow: 0 /*{b-bdown-shadow-x}*/ -1px /*{b-bdown-shadow-y}*/ 1px /*{b-bdown-shadow-radius}*/ #225377 /*{b-bdown-shadow-color}*/;
232
- background-image: -webkit-gradient(linear, left top, left bottom, from(#396b9e /*{b-bdown-background-start}*/), to(#4e89c5 /*{b-bdown-background-end}*/)); /* Saf4+, Chrome */
233
- background-image: -webkit-linear-gradient(top, #396b9e /*{b-bdown-background-start}*/, #4e89c5 /*{b-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */
234
- background-image: -moz-linear-gradient(top, #396b9e /*{b-bdown-background-start}*/, #4e89c5 /*{b-bdown-background-end}*/); /* FF3.6 */
235
- background-image: -ms-linear-gradient(top, #396b9e /*{b-bdown-background-start}*/, #4e89c5 /*{b-bdown-background-end}*/); /* IE10 */
236
- background-image: -o-linear-gradient(top, #396b9e /*{b-bdown-background-start}*/, #4e89c5 /*{b-bdown-background-end}*/); /* Opera 11.10+ */
237
- background-image: linear-gradient(top, #396b9e /*{b-bdown-background-start}*/, #4e89c5 /*{b-bdown-background-end}*/);
275
+ background-image: -webkit-gradient(linear, left top, left bottom, from( #396b9e /*{b-bdown-background-start}*/), to( #4e89c5 /*{b-bdown-background-end}*/)); /* Saf4+, Chrome */
276
+ background-image: -webkit-linear-gradient(#396b9e /*{b-bdown-background-start}*/, #4e89c5 /*{b-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */
277
+ background-image: -moz-linear-gradient(#396b9e /*{b-bdown-background-start}*/, #4e89c5 /*{b-bdown-background-end}*/); /* FF3.6 */
278
+ background-image: -ms-linear-gradient(#396b9e /*{b-bdown-background-start}*/, #4e89c5 /*{b-bdown-background-end}*/); /* IE10 */
279
+ background-image: -o-linear-gradient(#396b9e /*{b-bdown-background-start}*/, #4e89c5 /*{b-bdown-background-end}*/); /* Opera 11.10+ */
280
+ background-image: linear-gradient(#396b9e /*{b-bdown-background-start}*/, #4e89c5 /*{b-bdown-background-end}*/);
238
281
  }
239
282
  .ui-btn-down-b a.ui-link-inherit {
240
283
  color: #fff /*{b-bdown-color}*/;
@@ -242,7 +285,7 @@
242
285
  .ui-btn-up-b,
243
286
  .ui-btn-hover-b,
244
287
  .ui-btn-down-b {
245
- font-family: Helvetica, Arial, sans-serif /*{b-button-font}*/;
288
+ font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
246
289
  text-decoration: none;
247
290
  }
248
291
 
@@ -256,82 +299,112 @@
256
299
  color: #3E3E3E /*{c-bar-color}*/;
257
300
  font-weight: bold;
258
301
  text-shadow: 0 /*{c-bar-shadow-x}*/ 1px /*{c-bar-shadow-y}*/ 1px /*{c-bar-shadow-radius}*/ #fff /*{c-bar-shadow-color}*/;
259
- background-image: -webkit-gradient(linear, left top, left bottom, from(#f0f0f0 /*{c-bar-background-start}*/), to(#e9eaeb /*{c-bar-background-end}*/)); /* Saf4+, Chrome */
260
- background-image: -webkit-linear-gradient(top, #f0f0f0 /*{c-bar-background-start}*/, #e9eaeb /*{c-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */
261
- background-image: -moz-linear-gradient(top, #f0f0f0 /*{c-bar-background-start}*/, #e9eaeb /*{c-bar-background-end}*/); /* FF3.6 */
262
- background-image: -ms-linear-gradient(top, #f0f0f0 /*{c-bar-background-start}*/, #e9eaeb /*{c-bar-background-end}*/); /* IE10 */
263
- background-image: -o-linear-gradient(top, #f0f0f0 /*{c-bar-background-start}*/, #e9eaeb /*{c-bar-background-end}*/); /* Opera 11.10+ */
264
- background-image: linear-gradient(top, #f0f0f0 /*{c-bar-background-start}*/, #e9eaeb /*{c-bar-background-end}*/);
302
+ background-image: -webkit-gradient(linear, left top, left bottom, from( #f0f0f0 /*{c-bar-background-start}*/), to( #e9eaeb /*{c-bar-background-end}*/)); /* Saf4+, Chrome */
303
+ background-image: -webkit-linear-gradient(#f0f0f0 /*{c-bar-background-start}*/, #e9eaeb /*{c-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */
304
+ background-image: -moz-linear-gradient(#f0f0f0 /*{c-bar-background-start}*/, #e9eaeb /*{c-bar-background-end}*/); /* FF3.6 */
305
+ background-image: -ms-linear-gradient(#f0f0f0 /*{c-bar-background-start}*/, #e9eaeb /*{c-bar-background-end}*/); /* IE10 */
306
+ background-image: -o-linear-gradient(#f0f0f0 /*{c-bar-background-start}*/, #e9eaeb /*{c-bar-background-end}*/); /* Opera 11.10+ */
307
+ background-image: linear-gradient(#f0f0f0 /*{c-bar-background-start}*/, #e9eaeb /*{c-bar-background-end}*/);
265
308
  }
266
309
 
310
+ .ui-bar-c .ui-link-inherit {
311
+ color: #3E3E3E /*{c-bar-color}*/;
312
+ }
267
313
  .ui-bar-c .ui-link {
268
- color: #2489CE /*{global-link-color}*/;
314
+ color: #7cc4e7 /*{c-bar-link-color}*/;
269
315
  font-weight: bold;
270
316
  }
271
317
 
318
+ .ui-bar-c .ui-link:hover {
319
+ color: #2489CE /*{c-bar-link-hover}*/;
320
+ }
321
+
322
+ .ui-bar-c .ui-link:active {
323
+ color: #2489CE /*{c-bar-link-active}*/;
324
+ }
325
+
326
+ .ui-bar-c .ui-link:visited {
327
+ color: #2489CE /*{c-bar-link-visited}*/;
328
+ }
329
+
272
330
  .ui-bar-c,
273
331
  .ui-bar-c input,
274
332
  .ui-bar-c select,
275
333
  .ui-bar-c textarea,
276
334
  .ui-bar-c button {
277
- font-family: Helvetica, Arial, sans-serif /*{c-bar-font}*/;
335
+ font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
278
336
  }
279
- .ui-body-c {
337
+ .ui-body-c,
338
+ .ui-dialog.ui-overlay-c {
280
339
  border: 1px solid #B3B3B3 /*{c-body-border}*/;
281
340
  color: #333333 /*{c-body-color}*/;
282
341
  text-shadow: 0 /*{c-body-shadow-x}*/ 1px /*{c-body-shadow-y}*/ 0 /*{c-body-shadow-radius}*/ #fff /*{c-body-shadow-color}*/;
283
342
  background: #f0f0f0 /*{c-body-background-color}*/;
284
- background-image: -webkit-gradient(linear, left top, left bottom, from(#eee /*{c-body-background-start}*/), to(#ddd /*{c-body-background-end}*/)); /* Saf4+, Chrome */
285
- background-image: -webkit-linear-gradient(top, #eee /*{c-body-background-start}*/, #ddd /*{c-body-background-end}*/); /* Chrome 10+, Saf5.1+ */
286
- background-image: -moz-linear-gradient(top, #eee /*{c-body-background-start}*/, #ddd /*{c-body-background-end}*/); /* FF3.6 */
287
- background-image: -ms-linear-gradient(top, #eee /*{c-body-background-start}*/, #ddd /*{c-body-background-end}*/); /* IE10 */
288
- background-image: -o-linear-gradient(top, #eee /*{c-body-background-start}*/, #ddd /*{c-body-background-end}*/); /* Opera 11.10+ */
289
- background-image: linear-gradient(top, #eee /*{c-body-background-start}*/, #ddd /*{c-body-background-end}*/);
343
+ background-image: -webkit-gradient(linear, left top, left bottom, from( #eee /*{c-body-background-start}*/), to( #ddd /*{c-body-background-end}*/)); /* Saf4+, Chrome */
344
+ background-image: -webkit-linear-gradient(#eee /*{c-body-background-start}*/, #ddd /*{c-body-background-end}*/); /* Chrome 10+, Saf5.1+ */
345
+ background-image: -moz-linear-gradient(#eee /*{c-body-background-start}*/, #ddd /*{c-body-background-end}*/); /* FF3.6 */
346
+ background-image: -ms-linear-gradient(#eee /*{c-body-background-start}*/, #ddd /*{c-body-background-end}*/); /* IE10 */
347
+ background-image: -o-linear-gradient(#eee /*{c-body-background-start}*/, #ddd /*{c-body-background-end}*/); /* Opera 11.10+ */
348
+ background-image: linear-gradient(#eee /*{c-body-background-start}*/, #ddd /*{c-body-background-end}*/);
290
349
  }
291
350
  .ui-body-c,
292
351
  .ui-body-c input,
293
352
  .ui-body-c select,
294
353
  .ui-body-c textarea,
295
354
  .ui-body-c button {
296
- font-family: Helvetica, Arial, sans-serif /*{c-body-font}*/;
355
+ font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
297
356
  }
357
+
298
358
  .ui-body-c .ui-link-inherit {
299
- color: #333333 /*{c-body-color}*/;
359
+ color: #333333 /*{c-body-color}*/;
300
360
  }
361
+
301
362
  .ui-body-c .ui-link {
302
- color: #2489CE /*{global-link-color}*/;
363
+ color: #2489CE /*{c-body-link-color}*/;
303
364
  font-weight: bold;
304
365
  }
305
366
 
367
+ .ui-body-c .ui-link:hover {
368
+ color: #2489CE /*{c-body-link-hover}*/;
369
+ }
370
+
371
+ .ui-body-c .ui-link:active {
372
+ color: #2489CE /*{c-body-link-active}*/;
373
+ }
374
+
375
+ .ui-body-c .ui-link:visited {
376
+ color: #2489CE /*{c-body-link-visited}*/;
377
+ }
378
+
306
379
  .ui-btn-up-c {
307
380
  border: 1px solid #ccc /*{c-bup-border}*/;
308
381
  background: #eee /*{c-bup-background-color}*/;
309
382
  font-weight: bold;
310
383
  color: #444 /*{c-bup-color}*/;
311
384
  text-shadow: 0 /*{c-bup-shadow-x}*/ 1px /*{c-bup-shadow-y}*/ 1px /*{c-bup-shadow-radius}*/ #f6f6f6 /*{c-bup-shadow-color}*/;
312
- background-image: -webkit-gradient(linear, left top, left bottom, from(#fdfdfd /*{c-bup-background-start}*/), to(#eee /*{c-bup-background-end}*/)); /* Saf4+, Chrome */
313
- background-image: -webkit-linear-gradient(top, #fdfdfd /*{c-bup-background-start}*/, #eee /*{c-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */
314
- background-image: -moz-linear-gradient(top, #fdfdfd /*{c-bup-background-start}*/, #eee /*{c-bup-background-end}*/); /* FF3.6 */
315
- background-image: -ms-linear-gradient(top, #fdfdfd /*{c-bup-background-start}*/, #eee /*{c-bup-background-end}*/); /* IE10 */
316
- background-image: -o-linear-gradient(top, #fdfdfd /*{c-bup-background-start}*/, #eee /*{c-bup-background-end}*/); /* Opera 11.10+ */
317
- background-image: linear-gradient(top, #fdfdfd /*{c-bup-background-start}*/, #eee /*{c-bup-background-end}*/);
385
+ background-image: -webkit-gradient(linear, left top, left bottom, from( #fdfdfd /*{c-bup-background-start}*/), to( #eee /*{c-bup-background-end}*/)); /* Saf4+, Chrome */
386
+ background-image: -webkit-linear-gradient(#fdfdfd /*{c-bup-background-start}*/, #eee /*{c-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */
387
+ background-image: -moz-linear-gradient(#fdfdfd /*{c-bup-background-start}*/, #eee /*{c-bup-background-end}*/); /* FF3.6 */
388
+ background-image: -ms-linear-gradient(#fdfdfd /*{c-bup-background-start}*/, #eee /*{c-bup-background-end}*/); /* IE10 */
389
+ background-image: -o-linear-gradient(#fdfdfd /*{c-bup-background-start}*/, #eee /*{c-bup-background-end}*/); /* Opera 11.10+ */
390
+ background-image: linear-gradient(#fdfdfd /*{c-bup-background-start}*/, #eee /*{c-bup-background-end}*/);
318
391
  }
319
392
  .ui-btn-up-c a.ui-link-inherit {
320
393
  color: #2F3E46 /*{c-bup-color}*/;
321
394
  }
322
395
 
323
396
  .ui-btn-hover-c {
324
- border: 1px solid #bbb /*{c-bhover-border}*/;
397
+ border: 1px solid #bbbbbb /*{c-bhover-border}*/;
325
398
  background: #dadada /*{c-bhover-background-color}*/;
326
399
  font-weight: bold;
327
400
  color: #101010 /*{c-bhover-color}*/;
328
401
  text-shadow: 0 /*{c-bhover-shadow-x}*/ 1px /*{c-bhover-shadow-y}*/ 1px /*{c-bhover-shadow-radius}*/ #fff /*{c-bhover-shadow-color}*/;
329
- background-image: -webkit-gradient(linear, left top, left bottom, from(#ededed /*{c-bhover-background-start}*/), to(#dadada /*{c-bhover-background-end}*/)); /* Saf4+, Chrome */
330
- background-image: -webkit-linear-gradient(top, #ededed /*{c-bhover-background-start}*/, #dadada /*{c-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */
331
- background-image: -moz-linear-gradient(top, #ededed /*{c-bhover-background-start}*/, #dadada /*{c-bhover-background-end}*/); /* FF3.6 */
332
- background-image: -ms-linear-gradient(top, #ededed /*{c-bhover-background-start}*/, #dadada /*{c-bhover-background-end}*/); /* IE10 */
333
- background-image: -o-linear-gradient(top, #ededed /*{c-bhover-background-start}*/, #dadada /*{c-bhover-background-end}*/); /* Opera 11.10+ */
334
- background-image: linear-gradient(top, #ededed /*{c-bhover-background-start}*/, #dadada /*{c-bhover-background-end}*/);
402
+ background-image: -webkit-gradient(linear, left top, left bottom, from( #ededed /*{c-bhover-background-start}*/), to( #dadada /*{c-bhover-background-end}*/)); /* Saf4+, Chrome */
403
+ background-image: -webkit-linear-gradient(#ededed /*{c-bhover-background-start}*/, #dadada /*{c-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */
404
+ background-image: -moz-linear-gradient(#ededed /*{c-bhover-background-start}*/, #dadada /*{c-bhover-background-end}*/); /* FF3.6 */
405
+ background-image: -ms-linear-gradient(#ededed /*{c-bhover-background-start}*/, #dadada /*{c-bhover-background-end}*/); /* IE10 */
406
+ background-image: -o-linear-gradient(#ededed /*{c-bhover-background-start}*/, #dadada /*{c-bhover-background-end}*/); /* Opera 11.10+ */
407
+ background-image: linear-gradient(#ededed /*{c-bhover-background-start}*/, #dadada /*{c-bhover-background-end}*/);
335
408
  }
336
409
  .ui-btn-hover-c a.ui-link-inherit {
337
410
  color: #2F3E46 /*{c-bhover-color}*/;
@@ -342,12 +415,12 @@
342
415
  font-weight: bold;
343
416
  color: #111111 /*{c-bdown-color}*/;
344
417
  text-shadow: 0 /*{c-bdown-shadow-x}*/ 1px /*{c-bdown-shadow-y}*/ 1px /*{c-bdown-shadow-radius}*/ #ffffff /*{c-bdown-shadow-color}*/;
345
- background-image: -webkit-gradient(linear, left top, left bottom, from(#eee /*{c-bdown-background-start}*/), to(#fdfdfd /*{c-bdown-background-end}*/)); /* Saf4+, Chrome */
346
- background-image: -webkit-linear-gradient(top, #eee /*{c-bdown-background-start}*/, #fdfdfd /*{c-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */
347
- background-image: -moz-linear-gradient(top, #eee /*{c-bdown-background-start}*/, #fdfdfd /*{c-bdown-background-end}*/); /* FF3.6 */
348
- background-image: -ms-linear-gradient(top, #eee /*{c-bdown-background-start}*/, #fdfdfd /*{c-bdown-background-end}*/); /* IE10 */
349
- background-image: -o-linear-gradient(top, #eee /*{c-bdown-background-start}*/, #fdfdfd /*{c-bdown-background-end}*/); /* Opera 11.10+ */
350
- background-image: linear-gradient(top, #eee /*{c-bdown-background-start}*/, #fdfdfd /*{c-bdown-background-end}*/);
418
+ background-image: -webkit-gradient(linear, left top, left bottom, from( #eee /*{c-bdown-background-start}*/), to( #fdfdfd /*{c-bdown-background-end}*/)); /* Saf4+, Chrome */
419
+ background-image: -webkit-linear-gradient(#eee /*{c-bdown-background-start}*/, #fdfdfd /*{c-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */
420
+ background-image: -moz-linear-gradient(#eee /*{c-bdown-background-start}*/, #fdfdfd /*{c-bdown-background-end}*/); /* FF3.6 */
421
+ background-image: -ms-linear-gradient(#eee /*{c-bdown-background-start}*/, #fdfdfd /*{c-bdown-background-end}*/); /* IE10 */
422
+ background-image: -o-linear-gradient(#eee /*{c-bdown-background-start}*/, #fdfdfd /*{c-bdown-background-end}*/); /* Opera 11.10+ */
423
+ background-image: linear-gradient(#eee /*{c-bdown-background-start}*/, #fdfdfd /*{c-bdown-background-end}*/);
351
424
  }
352
425
  .ui-btn-down-c a.ui-link-inherit {
353
426
  color: #2F3E46 /*{c-bdown-color}*/;
@@ -355,7 +428,7 @@
355
428
  .ui-btn-up-c,
356
429
  .ui-btn-hover-c,
357
430
  .ui-btn-down-c {
358
- font-family: Helvetica, Arial, sans-serif /*{c-button-font}*/;
431
+ font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
359
432
  text-decoration: none;
360
433
  }
361
434
 
@@ -368,65 +441,95 @@
368
441
  background: #bbb /*{d-bar-background-color}*/;
369
442
  color: #333 /*{d-bar-color}*/;
370
443
  text-shadow: 0 /*{d-bar-shadow-x}*/ 1px /*{d-bar-shadow-y}*/ 0 /*{d-bar-shadow-radius}*/ #eee /*{d-bar-shadow-color}*/;
371
- background-image: -webkit-gradient(linear, left top, left bottom, from(#ddd /*{d-bar-background-start}*/), to(#bbb /*{d-bar-background-end}*/)); /* Saf4+, Chrome */
372
- background-image: -webkit-linear-gradient(top, #ddd /*{d-bar-background-start}*/, #bbb /*{d-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */
373
- background-image: -moz-linear-gradient(top, #ddd /*{d-bar-background-start}*/, #bbb /*{d-bar-background-end}*/); /* FF3.6 */
374
- background-image: -ms-linear-gradient(top, #ddd /*{d-bar-background-start}*/, #bbb /*{d-bar-background-end}*/); /* IE10 */
375
- background-image: -o-linear-gradient(top, #ddd /*{d-bar-background-start}*/, #bbb /*{d-bar-background-end}*/); /* Opera 11.10+ */
376
- background-image: linear-gradient(top, #ddd /*{d-bar-background-start}*/, #bbb /*{d-bar-background-end}*/);
444
+ background-image: -webkit-gradient(linear, left top, left bottom, from( #ddd /*{d-bar-background-start}*/), to( #bbb /*{d-bar-background-end}*/)); /* Saf4+, Chrome */
445
+ background-image: -webkit-linear-gradient(#ddd /*{d-bar-background-start}*/, #bbb /*{d-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */
446
+ background-image: -moz-linear-gradient(#ddd /*{d-bar-background-start}*/, #bbb /*{d-bar-background-end}*/); /* FF3.6 */
447
+ background-image: -ms-linear-gradient(#ddd /*{d-bar-background-start}*/, #bbb /*{d-bar-background-end}*/); /* IE10 */
448
+ background-image: -o-linear-gradient(#ddd /*{d-bar-background-start}*/, #bbb /*{d-bar-background-end}*/); /* Opera 11.10+ */
449
+ background-image: linear-gradient(#ddd /*{d-bar-background-start}*/, #bbb /*{d-bar-background-end}*/);
377
450
  }
378
451
  .ui-bar-d,
379
452
  .ui-bar-d input,
380
453
  .ui-bar-d select,
381
454
  .ui-bar-d textarea,
382
455
  .ui-bar-d button {
383
- font-family: Helvetica, Arial, sans-serif /*{d-bar-font}*/;
456
+ font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
384
457
  }
458
+
385
459
  .ui-bar-d .ui-link-inherit {
386
- color: #333 /*{d-bar-color}*/;
460
+ color: #333333 /*{d-bar-color}*/;
387
461
  }
388
462
  .ui-bar-d .ui-link {
389
- color: #2489CE /*{global-link-color}*/;
463
+ color: #2489CE /*{d-bar-link-color}*/;
390
464
  font-weight: bold;
391
465
  }
392
- .ui-body-d {
466
+
467
+ .ui-bar-d .ui-link:hover {
468
+ color: #2489CE /*{d-bar-link-hover}*/;
469
+ }
470
+
471
+ .ui-bar-d .ui-link:active {
472
+ color: #2489CE /*{d-bar-link-active}*/;
473
+ }
474
+
475
+ .ui-bar-d .ui-link:visited {
476
+ color: #2489CE /*{d-bar-link-visited}*/;
477
+ }
478
+
479
+ .ui-body-d,
480
+ .ui-dialog.ui-overlay-d {
393
481
  border: 1px solid #ccc /*{d-body-border}*/;
394
482
  color: #333333 /*{d-body-color}*/;
395
483
  text-shadow: 0 /*{d-body-shadow-x}*/ 1px /*{d-body-shadow-y}*/ 0 /*{d-body-shadow-radius}*/ #fff /*{d-body-shadow-color}*/;
396
484
  background: #ffffff /*{d-body-background-color}*/;
397
- background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff /*{d-body-background-end}*/)); /* Saf4+, Chrome */
398
- background-image: -webkit-linear-gradient(top, #fff /*{d-body-background-start}*/, #fff /*{d-body-background-end}*/); /* Chrome 10+, Saf5.1+ */
399
- background-image: -moz-linear-gradient(top, #fff /*{d-body-background-start}*/, #fff /*{d-body-background-end}*/); /* FF3.6 */
400
- background-image: -ms-linear-gradient(top, #fff /*{d-body-background-start}*/, #fff /*{d-body-background-end}*/); /* IE10 */
401
- background-image: -o-linear-gradient(top, #fff /*{d-body-background-start}*/, #fff /*{d-body-background-end}*/); /* Opera 11.10+ */
402
- background-image: linear-gradient(top, #fff /*{d-body-background-start}*/, #fff /*{d-body-background-end}*/);
485
+ background-image: -webkit-gradient(linear, left top, left bottom, from( #fff), to( #fff /*{d-body-background-end}*/)); /* Saf4+, Chrome */
486
+ background-image: -webkit-linear-gradient(#fff /*{d-body-background-start}*/, #fff /*{d-body-background-end}*/); /* Chrome 10+, Saf5.1+ */
487
+ background-image: -moz-linear-gradient(#fff /*{d-body-background-start}*/, #fff /*{d-body-background-end}*/); /* FF3.6 */
488
+ background-image: -ms-linear-gradient(#fff /*{d-body-background-start}*/, #fff /*{d-body-background-end}*/); /* IE10 */
489
+ background-image: -o-linear-gradient(#fff /*{d-body-background-start}*/, #fff /*{d-body-background-end}*/); /* Opera 11.10+ */
490
+ background-image: linear-gradient(#fff /*{d-body-background-start}*/, #fff /*{d-body-background-end}*/);
403
491
  }
404
492
  .ui-body-d,
405
493
  .ui-body-d input,
406
494
  .ui-body-d select,
407
495
  .ui-body-d textarea,
408
496
  .ui-body-d button {
409
- font-family: Helvetica, Arial, sans-serif /*{d-body-font}*/;
497
+ font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
410
498
  }
499
+
411
500
  .ui-body-d .ui-link-inherit {
412
- color: #333333 /*{d-body-color}*/;
501
+ color: #333333 /*{d-body-color}*/;
413
502
  }
503
+
414
504
  .ui-body-d .ui-link {
415
- color: #2489CE /*{global-link-color}*/;
505
+ color: #2489CE /*{d-body-link-color}*/;
416
506
  font-weight: bold;
417
507
  }
508
+
509
+ .ui-body-d .ui-link:hover {
510
+ color: #2489CE /*{d-body-link-hover}*/;
511
+ }
512
+
513
+ .ui-body-d .ui-link:active {
514
+ color: #2489CE /*{d-body-link-active}*/;
515
+ }
516
+
517
+ .ui-body-d .ui-link:visited {
518
+ color: #2489CE /*{d-body-link-visited}*/;
519
+ }
520
+
418
521
  .ui-btn-up-d {
419
522
  border: 1px solid #ccc /*{d-bup-border}*/;
420
523
  background: #fff /*{d-bup-background-color}*/;
421
524
  font-weight: bold;
422
525
  color: #444 /*{d-bup-color}*/;
423
526
  text-shadow: 0 /*{d-bup-shadow-x}*/ 1px /*{d-bup-shadow-y}*/ 1px /*{d-bup-shadow-radius}*/ #fff /*{d-bup-shadow-color}*/;
424
- background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff /*{d-bup-background-end}*/)); /* Saf4+, Chrome */
425
- background-image: -webkit-linear-gradient(top, #fff /*{d-bup-background-start}*/, #fff /*{d-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */
426
- background-image: -moz-linear-gradient(top, #fff /*{d-bup-background-start}*/, #fff /*{d-bup-background-end}*/); /* FF3.6 */
427
- background-image: -ms-linear-gradient(top, #fff /*{d-bup-background-start}*/, #fff /*{d-bup-background-end}*/); /* IE10 */
428
- background-image: -o-linear-gradient(top, #fff /*{d-bup-background-start}*/, #fff /*{d-bup-background-end}*/); /* Opera 11.10+ */
429
- background-image: linear-gradient(top, #fff /*{d-bup-background-start}*/, #fff /*{d-bup-background-end}*/);
527
+ background-image: -webkit-gradient(linear, left top, left bottom, from( #fff), to( #fff /*{d-bup-background-end}*/)); /* Saf4+, Chrome */
528
+ background-image: -webkit-linear-gradient(#fff /*{d-bup-background-start}*/, #fff /*{d-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */
529
+ background-image: -moz-linear-gradient(#fff /*{d-bup-background-start}*/, #fff /*{d-bup-background-end}*/); /* FF3.6 */
530
+ background-image: -ms-linear-gradient(#fff /*{d-bup-background-start}*/, #fff /*{d-bup-background-end}*/); /* IE10 */
531
+ background-image: -o-linear-gradient(#fff /*{d-bup-background-start}*/, #fff /*{d-bup-background-end}*/); /* Opera 11.10+ */
532
+ background-image: linear-gradient(#fff /*{d-bup-background-start}*/, #fff /*{d-bup-background-end}*/);
430
533
  }
431
534
  .ui-btn-up-d a.ui-link-inherit {
432
535
  color: #333 /*{d-bup-color}*/;
@@ -438,12 +541,12 @@
438
541
  color: #222 /*{d-bhover-color}*/;
439
542
  cursor: pointer;
440
543
  text-shadow: 0 /*{d-bhover-shadow-x}*/ 1px /*{d-bhover-shadow-y}*/ 1px /*{d-bhover-shadow-radius}*/ #fff /*{d-bhover-shadow-color}*/;
441
- background-image: -webkit-gradient(linear, left top, left bottom, from(#fdfdfd), to(#eee /*{d-bhover-background-end}*/)); /* Saf4+, Chrome */
442
- background-image: -webkit-linear-gradient(top, #fdfdfd /*{d-bhover-background-start}*/, #eee /*{d-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */
443
- background-image: -moz-linear-gradient(top, #fdfdfd /*{d-bhover-background-start}*/, #eee /*{d-bhover-background-end}*/); /* FF3.6 */
444
- background-image: -ms-linear-gradient(top, #fdfdfd /*{d-bhover-background-start}*/, #eee /*{d-bhover-background-end}*/); /* IE10 */
445
- background-image: -o-linear-gradient(top, #fdfdfd /*{d-bhover-background-start}*/, #eee /*{d-bhover-background-end}*/); /* Opera 11.10+ */
446
- background-image: linear-gradient(top, #fdfdfd /*{d-bhover-background-start}*/, #eee /*{d-bhover-background-end}*/);
544
+ background-image: -webkit-gradient(linear, left top, left bottom, from( #fdfdfd), to( #eee /*{d-bhover-background-end}*/)); /* Saf4+, Chrome */
545
+ background-image: -webkit-linear-gradient(#fdfdfd /*{d-bhover-background-start}*/, #eee /*{d-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */
546
+ background-image: -moz-linear-gradient(#fdfdfd /*{d-bhover-background-start}*/, #eee /*{d-bhover-background-end}*/); /* FF3.6 */
547
+ background-image: -ms-linear-gradient(#fdfdfd /*{d-bhover-background-start}*/, #eee /*{d-bhover-background-end}*/); /* IE10 */
548
+ background-image: -o-linear-gradient(#fdfdfd /*{d-bhover-background-start}*/, #eee /*{d-bhover-background-end}*/); /* Opera 11.10+ */
549
+ background-image: linear-gradient(#fdfdfd /*{d-bhover-background-start}*/, #eee /*{d-bhover-background-end}*/);
447
550
  }
448
551
  .ui-btn-hover-d a.ui-link-inherit {
449
552
  color: #222 /*{d-bhover-color}*/;
@@ -454,12 +557,12 @@
454
557
  font-weight: bold;
455
558
  color: #111 /*{d-bdown-color}*/;
456
559
  text-shadow: 0 /*{d-bdown-shadow-x}*/ 1px /*{d-bdown-shadow-y}*/ 1px /*{d-bdown-shadow-radius}*/ #ffffff /*{d-bdown-shadow-color}*/;
457
- background-image: -webkit-gradient(linear, left top, left bottom, from(#eee /*{d-bdown-background-start}*/), to(#fff /*{d-bdown-background-end}*/)); /* Saf4+, Chrome */
458
- background-image: -webkit-linear-gradient(top, #eee /*{d-bdown-background-start}*/, #fff /*{d-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */
459
- background-image: -moz-linear-gradient(top, #eee /*{d-bdown-background-start}*/, #fff /*{d-bdown-background-end}*/); /* FF3.6 */
460
- background-image: -ms-linear-gradient(top, #eee /*{d-bdown-background-start}*/, #fff /*{d-bdown-background-end}*/); /* IE10 */
461
- background-image: -o-linear-gradient(top, #eee /*{d-bdown-background-start}*/, #fff /*{d-bdown-background-end}*/); /* Opera 11.10+ */
462
- background-image: linear-gradient(top, #eee /*{d-bdown-background-start}*/, #fff /*{d-bdown-background-end}*/);
560
+ background-image: -webkit-gradient(linear, left top, left bottom, from( #eee /*{d-bdown-background-start}*/), to( #fff /*{d-bdown-background-end}*/)); /* Saf4+, Chrome */
561
+ background-image: -webkit-linear-gradient(#eee /*{d-bdown-background-start}*/, #fff /*{d-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */
562
+ background-image: -moz-linear-gradient(#eee /*{d-bdown-background-start}*/, #fff /*{d-bdown-background-end}*/); /* FF3.6 */
563
+ background-image: -ms-linear-gradient(#eee /*{d-bdown-background-start}*/, #fff /*{d-bdown-background-end}*/); /* IE10 */
564
+ background-image: -o-linear-gradient(#eee /*{d-bdown-background-start}*/, #fff /*{d-bdown-background-end}*/); /* Opera 11.10+ */
565
+ background-image: linear-gradient(#eee /*{d-bdown-background-start}*/, #fff /*{d-bdown-background-end}*/);
463
566
  }
464
567
  .ui-btn-down-d a.ui-link-inherit {
465
568
  color: #111 /*{d-bdown-color}*/;
@@ -467,7 +570,7 @@
467
570
  .ui-btn-up-d,
468
571
  .ui-btn-hover-d,
469
572
  .ui-btn-down-d {
470
- font-family: Helvetica, Arial, sans-serif /*{d-button-font}*/;
573
+ font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
471
574
  text-decoration: none;
472
575
  }
473
576
 
@@ -480,65 +583,93 @@
480
583
  background: #fadb4e /*{e-bar-background-color}*/;
481
584
  color: #333 /*{e-bar-color}*/;
482
585
  text-shadow: 0 /*{e-bar-shadow-x}*/ 1px /*{e-bar-shadow-y}*/ 0 /*{e-bar-shadow-radius}*/ #fff /*{e-bar-shadow-color}*/;
483
- background-image: -webkit-gradient(linear, left top, left bottom, from(#fceda7 /*{e-bar-background-start}*/), to(#fadb4e /*{e-bar-background-end}*/)); /* Saf4+, Chrome */
484
- background-image: -webkit-linear-gradient(top, #fceda7 /*{e-bar-background-start}*/, #fadb4e /*{e-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */
485
- background-image: -moz-linear-gradient(top, #fceda7 /*{e-bar-background-start}*/, #fadb4e /*{e-bar-background-end}*/); /* FF3.6 */
486
- background-image: -ms-linear-gradient(top, #fceda7 /*{e-bar-background-start}*/, #fadb4e /*{e-bar-background-end}*/); /* IE10 */
487
- background-image: -o-linear-gradient(top, #fceda7 /*{e-bar-background-start}*/, #fadb4e /*{e-bar-background-end}*/); /* Opera 11.10+ */
488
- background-image: linear-gradient(top, #fceda7 /*{e-bar-background-start}*/, #fadb4e /*{e-bar-background-end}*/);
586
+ background-image: -webkit-gradient(linear, left top, left bottom, from( #fceda7 /*{e-bar-background-start}*/), to( #fadb4e /*{e-bar-background-end}*/)); /* Saf4+, Chrome */
587
+ background-image: -webkit-linear-gradient(#fceda7 /*{e-bar-background-start}*/, #fadb4e /*{e-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */
588
+ background-image: -moz-linear-gradient(#fceda7 /*{e-bar-background-start}*/, #fadb4e /*{e-bar-background-end}*/); /* FF3.6 */
589
+ background-image: -ms-linear-gradient(#fceda7 /*{e-bar-background-start}*/, #fadb4e /*{e-bar-background-end}*/); /* IE10 */
590
+ background-image: -o-linear-gradient(#fceda7 /*{e-bar-background-start}*/, #fadb4e /*{e-bar-background-end}*/); /* Opera 11.10+ */
591
+ background-image: linear-gradient(#fceda7 /*{e-bar-background-start}*/, #fadb4e /*{e-bar-background-end}*/);
489
592
  }
490
593
  .ui-bar-e,
491
594
  .ui-bar-e input,
492
595
  .ui-bar-e select,
493
596
  .ui-bar-e textarea,
494
597
  .ui-bar-e button {
495
- font-family: Helvetica, Arial, sans-serif /*{e-bar-font}*/;
598
+ font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
496
599
  }
497
600
  .ui-bar-e .ui-link-inherit {
498
- color: #333 /*{e-bar-color}*/;
601
+ color: #333333 /*{e-bar-color}*/;
499
602
  }
500
603
  .ui-bar-e .ui-link {
501
- color: #2489CE /*{global-link-color}*/;
604
+ color: #2489CE /*{e-bar-link-color}*/;
502
605
  font-weight: bold;
503
606
  }
504
- .ui-body-e {
607
+
608
+ .ui-bar-e .ui-link:hover {
609
+ color: #2489CE /*{e-bar-link-hover}*/;
610
+ }
611
+
612
+ .ui-bar-e .ui-link:active {
613
+ color: #2489CE /*{e-bar-link-active}*/;
614
+ }
615
+
616
+ .ui-bar-e .ui-link:visited {
617
+ color: #2489CE /*{e-bar-link-visited}*/;
618
+ }
619
+
620
+ .ui-body-e,
621
+ .ui-dialog.ui-overlay-e {
505
622
  border: 1px solid #F7C942 /*{e-body-border}*/;
506
623
  color: #333333 /*{e-body-color}*/;
507
624
  text-shadow: 0 /*{e-body-shadow-x}*/ 1px /*{e-body-shadow-y}*/ 0 /*{e-body-shadow-radius}*/ #fff /*{e-body-shadow-color}*/;
508
625
  background: #faeb9e /*{e-body-background-color}*/;
509
- background-image: -webkit-gradient(linear, left top, left bottom, from(#fff /*{e-body-background-start}*/), to(#faeb9e /*{e-body-background-end}*/)); /* Saf4+, Chrome */
510
- background-image: -webkit-linear-gradient(top, #fff /*{e-body-background-start}*/, #faeb9e /*{e-body-background-end}*/); /* Chrome 10+, Saf5.1+ */
511
- background-image: -moz-linear-gradient(top, #fff /*{e-body-background-start}*/, #faeb9e /*{e-body-background-end}*/); /* FF3.6 */
512
- background-image: -ms-linear-gradient(top, #fff /*{e-body-background-start}*/, #faeb9e /*{e-body-background-end}*/); /* IE10 */
513
- background-image: -o-linear-gradient(top, #fff /*{e-body-background-start}*/, #faeb9e /*{e-body-background-end}*/); /* Opera 11.10+ */
514
- background-image: linear-gradient(top, #fff /*{e-body-background-start}*/, #faeb9e /*{e-body-background-end}*/);
626
+ background-image: -webkit-gradient(linear, left top, left bottom, from( #fff /*{e-body-background-start}*/), to( #faeb9e /*{e-body-background-end}*/)); /* Saf4+, Chrome */
627
+ background-image: -webkit-linear-gradient(#fff /*{e-body-background-start}*/, #faeb9e /*{e-body-background-end}*/); /* Chrome 10+, Saf5.1+ */
628
+ background-image: -moz-linear-gradient(#fff /*{e-body-background-start}*/, #faeb9e /*{e-body-background-end}*/); /* FF3.6 */
629
+ background-image: -ms-linear-gradient(#fff /*{e-body-background-start}*/, #faeb9e /*{e-body-background-end}*/); /* IE10 */
630
+ background-image: -o-linear-gradient(#fff /*{e-body-background-start}*/, #faeb9e /*{e-body-background-end}*/); /* Opera 11.10+ */
631
+ background-image: linear-gradient(#fff /*{e-body-background-start}*/, #faeb9e /*{e-body-background-end}*/);
515
632
  }
516
633
  .ui-body-e,
517
634
  .ui-body-e input,
518
635
  .ui-body-e select,
519
636
  .ui-body-e textarea,
520
637
  .ui-body-e button {
521
- font-family: Helvetica, Arial, sans-serif /*{e-body-font}*/;
638
+ font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
522
639
  }
523
640
  .ui-body-e .ui-link-inherit {
524
- color: #333333 /*{e-body-color}*/;
641
+ color: #333333 /*{e-body-color}*/;
525
642
  }
643
+
526
644
  .ui-body-e .ui-link {
527
- color: #2489CE /*{global-link-color}*/;
645
+ color: #2489CE /*{e-body-link-color}*/;
528
646
  font-weight: bold;
529
647
  }
648
+
649
+ .ui-body-e .ui-link:hover {
650
+ color: #2489CE /*{e-body-link-hover}*/;
651
+ }
652
+
653
+ .ui-body-e .ui-link:active {
654
+ color: #2489CE /*{e-body-link-active}*/;
655
+ }
656
+
657
+ .ui-body-e .ui-link:visited {
658
+ color: #2489CE /*{e-body-link-visited}*/;
659
+ }
660
+
530
661
  .ui-btn-up-e {
531
662
  border: 1px solid #F7C942 /*{e-bup-border}*/;
532
663
  background: #fadb4e /*{e-bup-background-color}*/;
533
664
  font-weight: bold;
534
665
  color: #333 /*{e-bup-color}*/;
535
666
  text-shadow: 0 /*{e-bup-shadow-x}*/ 1px /*{e-bup-shadow-y}*/ 0 /*{e-bup-shadow-radius}*/ #fff /*{e-bup-shadow-color}*/;
536
- background-image: -webkit-gradient(linear, left top, left bottom, from(#fceda7 /*{e-bup-background-start}*/), to(#fadb4e /*{e-bup-background-end}*/)); /* Saf4+, Chrome */
537
- background-image: -webkit-linear-gradient(top, #fceda7 /*{e-bup-background-start}*/, #fadb4e /*{e-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */
538
- background-image: -moz-linear-gradient(top, #fceda7 /*{e-bup-background-start}*/, #fadb4e /*{e-bup-background-end}*/); /* FF3.6 */
539
- background-image: -ms-linear-gradient(top, #fceda7 /*{e-bup-background-start}*/, #fadb4e /*{e-bup-background-end}*/); /* IE10 */
540
- background-image: -o-linear-gradient(top, #fceda7 /*{e-bup-background-start}*/, #fadb4e /*{e-bup-background-end}*/); /* Opera 11.10+ */
541
- background-image: linear-gradient(top, #fceda7 /*{e-bup-background-start}*/, #fadb4e /*{e-bup-background-end}*/);
667
+ background-image: -webkit-gradient(linear, left top, left bottom, from( #fceda7 /*{e-bup-background-start}*/), to( #fadb4e /*{e-bup-background-end}*/)); /* Saf4+, Chrome */
668
+ background-image: -webkit-linear-gradient(#fceda7 /*{e-bup-background-start}*/, #fadb4e /*{e-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */
669
+ background-image: -moz-linear-gradient(#fceda7 /*{e-bup-background-start}*/, #fadb4e /*{e-bup-background-end}*/); /* FF3.6 */
670
+ background-image: -ms-linear-gradient(#fceda7 /*{e-bup-background-start}*/, #fadb4e /*{e-bup-background-end}*/); /* IE10 */
671
+ background-image: -o-linear-gradient(#fceda7 /*{e-bup-background-start}*/, #fadb4e /*{e-bup-background-end}*/); /* Opera 11.10+ */
672
+ background-image: linear-gradient(#fceda7 /*{e-bup-background-start}*/, #fadb4e /*{e-bup-background-end}*/);
542
673
  }
543
674
  .ui-btn-up-e a.ui-link-inherit {
544
675
  color: #333 /*{e-bup-color}*/;
@@ -549,12 +680,12 @@
549
680
  font-weight: bold;
550
681
  color: #111 /*{e-bhover-color}*/;
551
682
  text-shadow: 0 /*{e-bhover-shadow-x}*/ 1px /*{e-bhover-shadow-y}*/ 1px /*{e-bhover-shadow-radius}*/ #fff /*{e-bhover-shadow-color}*/;
552
- background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf0b5 /*{e-bhover-background-start}*/), to(#fbe26f /*{e-bhover-background-end}*/)); /* Saf4+, Chrome */
553
- background-image: -webkit-linear-gradient(top, #fcf0b5 /*{e-bhover-background-start}*/, #fbe26f /*{e-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */
554
- background-image: -moz-linear-gradient(top, #fcf0b5 /*{e-bhover-background-start}*/, #fbe26f /*{e-bhover-background-end}*/); /* FF3.6 */
555
- background-image: -ms-linear-gradient(top, #fcf0b5 /*{e-bhover-background-start}*/, #fbe26f /*{e-bhover-background-end}*/); /* IE10 */
556
- background-image: -o-linear-gradient(top, #fcf0b5 /*{e-bhover-background-start}*/, #fbe26f /*{e-bhover-background-end}*/); /* Opera 11.10+ */
557
- background-image: linear-gradient(top, #fcf0b5 /*{e-bhover-background-start}*/, #fbe26f /*{e-bhover-background-end}*/);
683
+ background-image: -webkit-gradient(linear, left top, left bottom, from( #fcf0b5 /*{e-bhover-background-start}*/), to( #fbe26f /*{e-bhover-background-end}*/)); /* Saf4+, Chrome */
684
+ background-image: -webkit-linear-gradient(#fcf0b5 /*{e-bhover-background-start}*/, #fbe26f /*{e-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */
685
+ background-image: -moz-linear-gradient(#fcf0b5 /*{e-bhover-background-start}*/, #fbe26f /*{e-bhover-background-end}*/); /* FF3.6 */
686
+ background-image: -ms-linear-gradient(#fcf0b5 /*{e-bhover-background-start}*/, #fbe26f /*{e-bhover-background-end}*/); /* IE10 */
687
+ background-image: -o-linear-gradient(#fcf0b5 /*{e-bhover-background-start}*/, #fbe26f /*{e-bhover-background-end}*/); /* Opera 11.10+ */
688
+ background-image: linear-gradient(#fcf0b5 /*{e-bhover-background-start}*/, #fbe26f /*{e-bhover-background-end}*/);
558
689
  }
559
690
 
560
691
  .ui-btn-hover-e a.ui-link-inherit {
@@ -566,12 +697,12 @@
566
697
  font-weight: bold;
567
698
  color: #111 /*{e-bdown-color}*/;
568
699
  text-shadow: 0 /*{e-bdown-shadow-x}*/ 1px /*{e-bdown-shadow-y}*/ 1px /*{e-bdown-shadow-radius}*/ #ffffff /*{e-bdown-shadow-color}*/;
569
- background-image: -webkit-gradient(linear, left top, left bottom, from(#fadb4e /*{e-bdown-background-start}*/), to(#fceda7 /*{e-bdown-background-end}*/)); /* Saf4+, Chrome */
570
- background-image: -webkit-linear-gradient(top, #fadb4e /*{e-bdown-background-start}*/, #fceda7 /*{e-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */
571
- background-image: -moz-linear-gradient(top, #fadb4e /*{e-bdown-background-start}*/, #fceda7 /*{e-bdown-background-end}*/); /* FF3.6 */
572
- background-image: -ms-linear-gradient(top, #fadb4e /*{e-bdown-background-start}*/, #fceda7 /*{e-bdown-background-end}*/); /* IE10 */
573
- background-image: -o-linear-gradient(top, #fadb4e /*{e-bdown-background-start}*/, #fceda7 /*{e-bdown-background-end}*/); /* Opera 11.10+ */
574
- background-image: linear-gradient(top, #fadb4e /*{e-bdown-background-start}*/, #fceda7 /*{e-bdown-background-end}*/);
700
+ background-image: -webkit-gradient(linear, left top, left bottom, from( #fadb4e /*{e-bdown-background-start}*/), to( #fceda7 /*{e-bdown-background-end}*/)); /* Saf4+, Chrome */
701
+ background-image: -webkit-linear-gradient(#fadb4e /*{e-bdown-background-start}*/, #fceda7 /*{e-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */
702
+ background-image: -moz-linear-gradient(#fadb4e /*{e-bdown-background-start}*/, #fceda7 /*{e-bdown-background-end}*/); /* FF3.6 */
703
+ background-image: -ms-linear-gradient(#fadb4e /*{e-bdown-background-start}*/, #fceda7 /*{e-bdown-background-end}*/); /* IE10 */
704
+ background-image: -o-linear-gradient(#fadb4e /*{e-bdown-background-start}*/, #fceda7 /*{e-bdown-background-end}*/); /* Opera 11.10+ */
705
+ background-image: linear-gradient(#fadb4e /*{e-bdown-background-start}*/, #fceda7 /*{e-bdown-background-end}*/);
575
706
  }
576
707
  .ui-btn-down-e a.ui-link-inherit {
577
708
  color: #333 /*{e-bdown-color}*/;
@@ -579,7 +710,7 @@
579
710
  .ui-btn-up-e,
580
711
  .ui-btn-hover-e,
581
712
  .ui-btn-down-e {
582
- font-family: Helvetica, Arial, sans-serif /*{e-button-font}*/;
713
+ font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
583
714
  text-decoration: none;
584
715
  }
585
716
 
@@ -592,24 +723,6 @@ a.ui-link-inherit {
592
723
  text-decoration: none !important;
593
724
  }
594
725
 
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
726
 
614
727
  /* Active class used as the "on" state across all themes
615
728
  -----------------------------------------------------------------------------------------------------------*/
@@ -622,14 +735,13 @@ a.ui-link-inherit {
622
735
  cursor: pointer;
623
736
  text-shadow: 0 /*{global-active-shadow-x}*/ -1px /*{global-active-shadow-y}*/ 1px /*{global-active-shadow-radius}*/ #145072 /*{global-active-shadow-color}*/;
624
737
  text-decoration: none;
625
- background-image: -webkit-gradient(linear, left top, left bottom, from(#85bae4 /*{global-active-background-start}*/), to(#5393c5 /*{global-active-background-end}*/)); /* Saf4+, Chrome */
626
- background-image: -webkit-linear-gradient(top, #85bae4 /*{global-active-background-start}*/, #5393c5 /*{global-active-background-end}*/); /* Chrome 10+, Saf5.1+ */
627
- background-image: -moz-linear-gradient(top, #85bae4 /*{global-active-background-start}*/, #5393c5 /*{global-active-background-end}*/); /* FF3.6 */
628
- background-image: -ms-linear-gradient(top, #85bae4 /*{global-active-background-start}*/, #5393c5 /*{global-active-background-end}*/); /* IE10 */
629
- background-image: -o-linear-gradient(top, #85bae4 /*{global-active-background-start}*/, #5393c5 /*{global-active-background-end}*/); /* Opera 11.10+ */
630
- background-image: linear-gradient(top, #85bae4 /*{global-active-background-start}*/, #5393c5 /*{global-active-background-end}*/);
631
- outline: none;
632
- font-family: Helvetica, Arial, sans-serif /*{global-active-font}*/;
738
+ background-image: -webkit-gradient(linear, left top, left bottom, from( #85bae4 /*{global-active-background-start}*/), to( #5393c5 /*{global-active-background-end}*/)); /* Saf4+, Chrome */
739
+ background-image: -webkit-linear-gradient(#85bae4 /*{global-active-background-start}*/, #5393c5 /*{global-active-background-end}*/); /* Chrome 10+, Saf5.1+ */
740
+ background-image: -moz-linear-gradient(#85bae4 /*{global-active-background-start}*/, #5393c5 /*{global-active-background-end}*/); /* FF3.6 */
741
+ background-image: -ms-linear-gradient(#85bae4 /*{global-active-background-start}*/, #5393c5 /*{global-active-background-end}*/); /* IE10 */
742
+ background-image: -o-linear-gradient(#85bae4 /*{global-active-background-start}*/, #5393c5 /*{global-active-background-end}*/); /* Opera 11.10+ */
743
+ background-image: linear-gradient(#85bae4 /*{global-active-background-start}*/, #5393c5 /*{global-active-background-end}*/);
744
+ font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
633
745
  }
634
746
  .ui-btn-active a.ui-link-inherit {
635
747
  color: #fff /*{global-active-color}*/;
@@ -711,6 +823,15 @@ a.ui-link-inherit {
711
823
  border-radius: 0;
712
824
  }
713
825
 
826
+ /* Form field separator
827
+ -----------------------------------------------------------------------------------------------------------*/
828
+ .ui-br {
829
+ border-bottom: rgb(130,130,130);
830
+ border-bottom: rgba(130,130,130,.3);
831
+ border-bottom-width: 1px;
832
+ border-bottom-style: solid;
833
+ }
834
+
714
835
  /* Interaction cues
715
836
  -----------------------------------------------------------------------------------------------------------*/
716
837
  .ui-disabled {
@@ -718,6 +839,7 @@ a.ui-link-inherit {
718
839
  }
719
840
  .ui-disabled,
720
841
  .ui-disabled a {
842
+ pointer-events: none;
721
843
  cursor: default;
722
844
  }
723
845
 
@@ -1017,27 +1139,33 @@ a.ui-link-inherit {
1017
1139
  /* ...and bring back focus */
1018
1140
  .ui-mobile-nosupport-boxshadow .ui-focus {
1019
1141
  outline-width: 2px;
1020
- }/*
1021
- * jQuery Mobile Framework
1022
- * Copyright (c) jQuery Project
1023
- * Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.
1024
- */
1025
-
1142
+ }
1026
1143
  /* some unsets - more probably needed */
1027
1144
  .ui-mobile, .ui-mobile body { height: 100%; }
1028
1145
  .ui-mobile fieldset, .ui-page { padding: 0; margin: 0; }
1029
1146
  .ui-mobile a img, .ui-mobile fieldset { border: 0; }
1030
1147
 
1031
1148
  /* responsive page widths */
1032
- .ui-mobile-viewport { margin: 0; overflow-x: hidden; -webkit-text-size-adjust: none; -ms-text-size-adjust:none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
1149
+ .ui-mobile-viewport { margin: 0; overflow-x: visible; -webkit-text-size-adjust: none; -ms-text-size-adjust:none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
1150
+ /* Issue #2066 */
1151
+ body.ui-mobile-viewport,
1152
+ div.ui-mobile-viewport { overflow-x: hidden; }
1033
1153
 
1034
1154
  /* "page" containers - full-screen views, one should always be in view post-pageload */
1035
- .ui-mobile [data-role=page], .ui-mobile [data-role=dialog], .ui-page { top: 0; left: 0; width: 100%; min-height: 100%; position: absolute; display: none; border: 0; }
1155
+ .ui-mobile [data-role=page], .ui-mobile [data-role=dialog], .ui-page { top: 0; left: 0; width: 100%; min-height: 100%; position: absolute; display: none; border: 0; }
1036
1156
  .ui-mobile .ui-page-active { display: block; overflow: visible; }
1037
1157
 
1038
1158
  /* on ios4, setting focus on the page element causes flashing during transitions when there is an outline, so we turn off outlines */
1039
1159
  .ui-page { outline: none; }
1040
1160
 
1161
+ /*orientations from js are available */
1162
+ @media screen and (orientation: portrait){
1163
+ .ui-mobile, .ui-mobile .ui-page { min-height: 420px; }
1164
+ }
1165
+ @media screen and (orientation: landscape){
1166
+ .ui-mobile, .ui-mobile .ui-page { min-height: 300px; }
1167
+ }
1168
+
1041
1169
  /* native overflow scrolling */
1042
1170
  .ui-page.ui-mobile-touch-overflow,
1043
1171
  .ui-mobile-touch-overflow.ui-native-fixed .ui-content {
@@ -1079,6 +1207,7 @@ a.ui-link-inherit {
1079
1207
  .ui-header .ui-btn-left { position: absolute; left: 10px; top: .4em; }
1080
1208
  .ui-header .ui-btn-right { position: absolute; right: 10px; top: .4em; }
1081
1209
  .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; }
1210
+ .ui-footer .ui-title { margin: .6em 15px .8em; }
1082
1211
 
1083
1212
  /*content area*/
1084
1213
  .ui-content { border-width: 0; overflow: visible; overflow-x: hidden; padding: 15px; }
@@ -1130,11 +1259,10 @@ a.ui-link-inherit {
1130
1259
 
1131
1260
  /* non-js content hiding */
1132
1261
  .ui-nojs { position: absolute; left: -9999px; }
1133
- /*
1134
- * jQuery Mobile Framework
1135
- * Copyright (c) jQuery Project
1136
- * Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
1137
- */
1262
+
1263
+ /* accessible content hiding */
1264
+ .ui-hide-label label,
1265
+ .ui-hidden-accessible { position: absolute !important; left: -9999px; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
1138
1266
  .spin {
1139
1267
  -webkit-transform: rotate(360deg);
1140
1268
  -webkit-animation-name: spin;
@@ -1397,13 +1525,7 @@ Built by David Kaneda and maintained by Jonathan Stark.
1397
1525
  -webkit-transform: scale(.2);
1398
1526
  opacity: 0;
1399
1527
  }
1400
- }/*
1401
- * jQuery Mobile Framework
1402
- * Copyright (c) jQuery Project
1403
- * Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
1404
- */
1405
-
1406
- /* content configurations. */
1528
+ }/* content configurations. */
1407
1529
  .ui-grid-a, .ui-grid-b, .ui-grid-c, .ui-grid-d { overflow: hidden; }
1408
1530
  .ui-block-a, .ui-block-b, .ui-block-c, .ui-block-d, .ui-block-e { margin: 0; padding: 0; border: 0; float: left; min-height:1px;}
1409
1531
 
@@ -1425,11 +1547,6 @@ Built by David Kaneda and maintained by Jonathan Stark.
1425
1547
  /* grid d: 20/20/20/20/20 */
1426
1548
  .ui-grid-d .ui-block-a, .ui-grid-d .ui-block-b, .ui-grid-d .ui-block-c, .ui-grid-d .ui-block-d, .ui-grid-d .ui-block-e { width: 20%; }
1427
1549
  .ui-grid-d .ui-block-a { clear: left; }
1428
- /*
1429
- * jQuery Mobile Framework
1430
- * Copyright (c) jQuery Project
1431
- * Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
1432
- */
1433
1550
  /* fixed page header & footer configuration */
1434
1551
  .ui-header, .ui-footer, .ui-page-fullscreen .ui-header, .ui-page-fullscreen .ui-footer { position: absolute; overflow: hidden; width: 100%; border-left-width: 0; border-right-width: 0; }
1435
1552
  .ui-header-fixed, .ui-footer-fixed {
@@ -1438,11 +1555,6 @@ Built by David Kaneda and maintained by Jonathan Stark.
1438
1555
  }
1439
1556
  .ui-footer-duplicate, .ui-page-fullscreen .ui-fixed-inline { display: none; }
1440
1557
  .ui-page-fullscreen .ui-header, .ui-page-fullscreen .ui-footer { opacity: .9; }
1441
- /*
1442
- * jQuery Mobile Framework
1443
- * Copyright (c) jQuery Project
1444
- * Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
1445
- */
1446
1558
  .ui-navbar { overflow: hidden; }
1447
1559
  .ui-navbar ul, .ui-navbar-expanded ul { list-style:none; padding: 0; margin: 0; position: relative; display: block; border: 0;}
1448
1560
  .ui-navbar-collapsed ul { float: left; width: 75%; margin-right: -2px; }
@@ -1464,20 +1576,16 @@ Built by David Kaneda and maintained by Jonathan Stark.
1464
1576
  .ui-navbar-expanded .ui-btn-icon-bottom .ui-icon { bottom: 15px; }
1465
1577
  .ui-navbar-expanded li .ui-btn .ui-btn-inner { min-height: 2.5em; }
1466
1578
  .ui-navbar-expanded .ui-navbar-noicons .ui-btn .ui-btn-inner { padding-top: 1.8em; padding-bottom: 1.9em; }
1467
- /*
1468
- * jQuery Mobile Framework
1469
- * Copyright (c) jQuery Project
1470
- * Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
1471
- */
1472
1579
  .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
1580
  .ui-header .ui-btn, .ui-footer .ui-btn, .ui-bar .ui-btn { display: inline-block; font-size: 13px; margin: 0; }
1475
1581
  .ui-btn-inline { display: inline-block; }
1476
1582
  .ui-btn-inner { padding: .6em 25px; display: block; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; position: relative; zoom: 1; }
1583
+ .ui-btn input, .ui-btn button { z-index: 2; }
1477
1584
  .ui-header .ui-btn-inner, .ui-footer .ui-btn-inner, .ui-bar .ui-btn-inner { padding: .4em 8px .5em; }
1478
1585
  .ui-btn-icon-notext { width: 24px; height: 24px; }
1479
1586
  .ui-btn-icon-notext .ui-btn-inner { padding: 2px 1px 2px 3px; }
1480
- .ui-btn-icon-notext .ui-btn-text { position: absolute; left: -999px; }
1587
+ .ui-btn-text { position: relative; z-index: 1; }
1588
+ .ui-btn-icon-notext .ui-btn-text { position: absolute; left: -9999px; }
1481
1589
  .ui-btn-icon-left .ui-btn-inner { padding-left: 33px; }
1482
1590
  .ui-header .ui-btn-icon-left .ui-btn-inner,
1483
1591
  .ui-footer .ui-btn-icon-left .ui-btn-inner,
@@ -1496,7 +1604,7 @@ Built by David Kaneda and maintained by Jonathan Stark.
1496
1604
  .ui-bar .ui-btn-icon-bottom .ui-btn-inner { padding-bottom: 27px; }
1497
1605
 
1498
1606
  /*btn icon positioning*/
1499
- .ui-btn-icon-notext .ui-icon { display: block; }
1607
+ .ui-btn-icon-notext .ui-icon { display: block; z-index: 0;}
1500
1608
  .ui-btn-icon-left .ui-icon, .ui-btn-icon-right .ui-icon { position: absolute; top: 50%; margin-top: -9px; }
1501
1609
  .ui-btn-icon-top .ui-icon, .ui-btn-icon-bottom .ui-icon { position: absolute; left: 50%; margin-left: -9px; }
1502
1610
  .ui-btn-icon-left .ui-icon { left: 10px; }
@@ -1517,12 +1625,7 @@ Built by David Kaneda and maintained by Jonathan Stark.
1517
1625
  .ui-bar .ui-btn-icon-bottom .ui-icon { bottom: 4px; }
1518
1626
 
1519
1627
  /*hiding native button,inputs */
1520
- .ui-btn-hidden { position: absolute; top: 0; left: 0; width: 100%; height: 100%; -webkit-appearance: button; opacity: .1; cursor: pointer; background: transparent; font-size: 1px; border: none; line-height: 999px; }
1521
- /*
1522
- * jQuery Mobile Framework
1523
- * Copyright (c) jQuery Project
1524
- * Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
1525
- */
1628
+ .ui-btn-hidden { position: absolute; top: 0; left: 0; width: 100%; height: 100%; -webkit-appearance: button; opacity: .1; cursor: pointer; background: #fff; background: rgba(255,255,255,0); filter: Alpha(Opacity=.0001); font-size: 1px; border: none; line-height: 999px; }
1526
1629
  .ui-collapsible { margin: .5em 0; }
1527
1630
  .ui-collapsible-heading { font-size: 16px; display: block; margin: 0 -8px; padding: 0; border-width: 0 0 1px 0; position: relative; }
1528
1631
  .ui-collapsible-heading a { text-align: left; margin: 0; }
@@ -1530,7 +1633,7 @@ Built by David Kaneda and maintained by Jonathan Stark.
1530
1633
  .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
1634
  .ui-collapsible-heading a span.ui-btn .ui-btn-inner { padding: 10px 0; }
1532
1635
  .ui-collapsible-heading a span.ui-btn .ui-icon { left: 0; margin-top: -10px; }
1533
- .ui-collapsible-heading-status { position:absolute; left:-9999px; }
1636
+ .ui-collapsible-heading-status { position: absolute; top: -9999px; left:0px; }
1534
1637
  .ui-collapsible-content {
1535
1638
  display: block;
1536
1639
  margin: 0 -8px;
@@ -1543,21 +1646,18 @@ Built by David Kaneda and maintained by Jonathan Stark.
1543
1646
 
1544
1647
  .ui-collapsible-set { margin: .5em 0; }
1545
1648
  .ui-collapsible-set .ui-collapsible { margin: -1px 0 0; }
1546
- /*
1547
- * jQuery Mobile Framework
1548
- * Copyright (c) jQuery Project
1549
- * Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
1550
- */
1551
1649
  .ui-controlgroup, fieldset.ui-controlgroup { padding: 0; margin: .5em 0 1em; }
1552
1650
  .ui-bar .ui-controlgroup { margin: 0 .3em; }
1553
1651
  .ui-controlgroup-label { font-size: 16px; line-height: 1.4; font-weight: normal; margin: 0 0 .3em; }
1554
- .ui-controlgroup-controls { display: block; width: 95%;}
1652
+ .ui-controlgroup-controls { display: block; width: 100%;}
1555
1653
  .ui-controlgroup li { list-style: none; }
1556
1654
  .ui-controlgroup-vertical .ui-btn,
1557
1655
  .ui-controlgroup-vertical .ui-checkbox, .ui-controlgroup-vertical .ui-radio { margin: 0; border-bottom-width: 0; }
1656
+ .ui-controlgroup-controls label.ui-select { position: absolute; left: -9999px; }
1657
+
1558
1658
  .ui-controlgroup-vertical .ui-controlgroup-last { border-bottom-width: 1px; }
1559
1659
  .ui-controlgroup-horizontal { padding: 0; }
1560
- .ui-controlgroup-horizontal .ui-btn { display: inline-block; margin: 0 -5px 0 0; }
1660
+ .ui-controlgroup-horizontal .ui-btn, .ui-controlgroup-horizontal .ui-select { display: inline-block; margin: 0 -5px 0 0; }
1561
1661
  .ui-controlgroup-horizontal .ui-checkbox, .ui-controlgroup-horizontal .ui-radio { float: left; margin: 0 -1px 0 0; }
1562
1662
  .ui-controlgroup-horizontal .ui-checkbox .ui-btn, .ui-controlgroup-horizontal .ui-radio .ui-btn,
1563
1663
  .ui-controlgroup-horizontal .ui-checkbox:last-child, .ui-controlgroup-horizontal .ui-radio:last-child { margin-right: 0; }
@@ -1569,21 +1669,31 @@ Built by David Kaneda and maintained by Jonathan Stark.
1569
1669
  */
1570
1670
 
1571
1671
  @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; }
1574
- } /*
1575
- * jQuery Mobile Framework
1576
- * Copyright (c) jQuery Project
1577
- * Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
1578
- */
1579
- .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, .ui-dialog .ui-footer { z-index: 10; width: auto; }
1582
- .ui-dialog .ui-content, .ui-dialog .ui-footer { margin-top: -15px; }/*
1583
- * jQuery Mobile Framework
1584
- * Copyright (c) jQuery Project
1585
- * Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
1586
- */
1672
+ .ui-field-contain .ui-controlgroup-label { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0; }
1673
+ .ui-field-contain .ui-controlgroup-controls { width: 60%; display: inline-block; }
1674
+ .ui-field-contain .ui-controlgroup .ui-select { width: 100%; }
1675
+ .ui-field-contain .ui-controlgroup-horizontal .ui-select { width: auto; }
1676
+ } .ui-dialog { min-height: 480px; }
1677
+ .ui-dialog .ui-header,
1678
+ .ui-dialog .ui-content,
1679
+ .ui-dialog .ui-footer {
1680
+ max-width: 500px;
1681
+ margin: 10% auto 15px auto;
1682
+ width: 85%;
1683
+ position: relative;
1684
+ }
1685
+ .ui-dialog .ui-header,
1686
+ .ui-dialog .ui-footer {
1687
+ padding: 0 15px;
1688
+ z-index: 10;
1689
+ }
1690
+ .ui-dialog .ui-content {
1691
+ padding: 15px;
1692
+ }
1693
+ .ui-dialog .ui-content,
1694
+ .ui-dialog .ui-footer {
1695
+ margin-top: -15px;
1696
+ }
1587
1697
  .ui-checkbox, .ui-radio { position:relative; margin: .2em 0 .5em; z-index: 1; }
1588
1698
  .ui-checkbox .ui-btn, .ui-radio .ui-btn { margin: 0; text-align: left; z-index: 2; }
1589
1699
  .ui-checkbox .ui-btn-inner, .ui-radio .ui-btn-inner { white-space: normal; }
@@ -1593,24 +1703,22 @@ Built by David Kaneda and maintained by Jonathan Stark.
1593
1703
  .ui-checkbox .ui-btn-icon-left .ui-icon, .ui-radio .ui-btn-icon-left .ui-icon {left: 15px; }
1594
1704
  .ui-checkbox .ui-btn-icon-right .ui-icon, .ui-radio .ui-btn-icon-right .ui-icon {right: 15px; }
1595
1705
  /* input, label positioning */
1596
- .ui-checkbox input,.ui-radio input { position:absolute; left:20px; top:50%; width: 10px; height: 10px; margin:-5px 0 0 0; outline: 0 !important; z-index: 1; }/*
1597
- * jQuery Mobile Framework
1598
- * Copyright (c) jQuery Project
1599
- * Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
1600
- */
1601
- .ui-field-contain { padding: 1.5em 0; margin: 0; border-bottom-width: 1px; overflow: visible; }
1706
+ .ui-checkbox input,.ui-radio input { position:absolute; left:20px; top:50%; width: 10px; height: 10px; margin:-5px 0 0 0; outline: 0 !important; z-index: 1; }.ui-field-contain { padding: 1.5em 0; margin: 0; border-bottom-width: 1px; overflow: visible; }
1602
1707
  .ui-field-contain:first-child { border-top-width: 0; }
1603
1708
  @media all and (min-width: 450px){
1604
1709
  .ui-field-contain { border-width: 0; padding: 0; margin: 1em 0; }
1605
- } /*
1606
- * jQuery Mobile Framework
1607
- * Copyright (c) jQuery Project
1608
- * Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
1609
- */
1610
- .ui-select { display: block; position: relative; }
1710
+ } .ui-select { display: block; position: relative; }
1611
1711
  .ui-select select { position: absolute; left: -9999px; top: -9999px; }
1612
1712
  .ui-select .ui-btn { overflow: hidden; }
1713
+
1714
+
1715
+ .ui-select .ui-btn { opacity: 1; }
1716
+
1717
+ /* Fixes #2588 — When Windows Phone 7.5 (Mango) tries to calculate a numeric opacity for a select—including “inherit”—without explicitly specifying an opacity on the parent to give it context, a bug appears where clicking elsewhere on the page after opening the select will open the select again. */
1613
1718
  .ui-select .ui-btn select { cursor: pointer; -webkit-appearance: button; left: 0; top:0; width: 100%; min-height: 1.5em; min-height: 100%; height: 3em; max-height: 100%; opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); z-index: 2; }
1719
+
1720
+ .ui-select .ui-disabled { opacity: .3; }
1721
+
1614
1722
  @-moz-document url-prefix() {.ui-select .ui-btn select { opacity: 0.0001; }}
1615
1723
  .ui-select .ui-btn select.ui-select-nativeonly { opacity: 1; text-indent: 0; }
1616
1724
 
@@ -1621,10 +1729,10 @@ Built by David Kaneda and maintained by Jonathan Stark.
1621
1729
  label.ui-select { font-size: 16px; line-height: 1.4; font-weight: normal; margin: 0 0 .3em; display: block; }
1622
1730
 
1623
1731
  /*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; overflow: hidden;}
1732
+ .ui-select .ui-btn-text, .ui-selectmenu .ui-btn-text { display: block; min-height: 1em; overflow: hidden; }
1733
+ .ui-select .ui-btn-text { text-overflow: ellipsis; }
1626
1734
 
1627
- .ui-selectmenu { position: absolute; padding: 0; z-index: 100 !important; width: 80%; max-width: 350px; padding: 6px; }
1735
+ .ui-selectmenu { position: absolute; padding: 0; z-index: 1100 !important; width: 80%; max-width: 350px; padding: 6px; }
1628
1736
  .ui-selectmenu .ui-listview { margin: 0; }
1629
1737
  .ui-selectmenu .ui-btn.ui-li-divider { cursor: default; }
1630
1738
  .ui-selectmenu-hidden { top: -9999px; left: -9999px; }
@@ -1634,46 +1742,38 @@ label.ui-select { font-size: 16px; line-height: 1.4; font-weight: normal; margi
1634
1742
  .ui-li.ui-selectmenu-placeholder { display: none; }
1635
1743
  .ui-selectmenu .ui-header .ui-title { margin: 0.6em 46px 0.8em; }
1636
1744
 
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; }
1745
+ @media all and (min-width: 450px){
1746
+ .ui-field-contain label.ui-select { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0; }
1747
+ .ui-field-contain .ui-select { width: 60%; display: inline-block; }
1640
1748
  }
1641
1749
 
1642
1750
  /* 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 */
1643
- .ui-selectmenu .ui-header h1:after { content: '.'; visibility: hidden; }/*
1644
- * jQuery Mobile Framework
1645
- * Copyright (c) jQuery Project
1646
- * Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
1647
- */
1648
- 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; line-height: 1.4; font-size: 16px; display: block; width: 95%; }
1751
+ .ui-selectmenu .ui-header h1:after { content: '.'; visibility: hidden; }label.ui-input-text { font-size: 16px; line-height: 1.4; display: block; font-weight: normal; margin: 0 0 .3em; }
1752
+ input.ui-input-text, textarea.ui-input-text { background-image: none; padding: .4em; line-height: 1.4; font-size: 16px; display: block; width: 97%; }
1650
1753
  input.ui-input-text { -webkit-appearance: none; }
1651
1754
  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; width: 77%; background-image: none; position: relative; }
1755
+ .ui-input-search { padding: 0 30px; background-image: none; position: relative; }
1653
1756
  .ui-icon-searchfield:after { position: absolute; left: 7px; top: 50%; margin-top: -9px; content: ""; width: 18px; height: 18px; opacity: .5; }
1654
1757
  .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: -14px; }
1758
+ .ui-input-search .ui-input-clear { position: absolute; right: 0; top: 50%; margin-top: -13px; }
1656
1759
  .ui-input-search .ui-input-clear-hidden { display: none; }
1657
1760
 
1658
1761
  /* orientation adjustments - incomplete!*/
1659
1762
  @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%; }
1763
+ .ui-field-contain label.ui-input-text { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0 }
1764
+ .ui-field-contain input.ui-input-text,
1765
+ .ui-field-contain textarea.ui-input-text,
1766
+ .ui-field-contain .ui-input-search { width: 60%; display: inline-block; }
1767
+ .ui-field-contain .ui-input-search { width: 50%; }
1768
+ .ui-hide-label input.ui-input-text,
1769
+ .ui-hide-label textarea.ui-input-text,
1770
+ .ui-hide-label .ui-input-search { padding: .4em; width: 97%; }
1665
1771
  .ui-input-search input.ui-input-text { width: 98%; /*echos rule from above*/ }
1666
- }/*
1667
- * jQuery Mobile Framework
1668
- * Copyright (c) jQuery Project
1669
- * Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
1670
- */
1671
- .ui-listview { margin: 0; counter-reset: listnumbering; }
1772
+ }.ui-listview { margin: 0; counter-reset: listnumbering; }
1672
1773
  .ui-content .ui-listview { margin: -15px; }
1673
1774
  .ui-content .ui-listview-inset { margin: 1em 0; }
1674
1775
  .ui-listview, .ui-li { list-style:none; padding:0; }
1675
1776
  .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
1777
  .ui-li .ui-btn-text a.ui-link-inherit { text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
1678
1778
  .ui-li-divider, .ui-li-static { padding: .5em 15px; font-size: 14px; font-weight: bold; }
1679
1779
  .ui-li-divider { counter-reset: listnumbering; }
@@ -1688,11 +1788,12 @@ ol.ui-listview .ui-li-jsnumbering:before { content: "" !important; } /* to avoid
1688
1788
  .ui-li-has-count .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-count { padding-right: 45px; }
1689
1789
  .ui-li-has-arrow .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-arrow { padding-right: 30px; }
1690
1790
  .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; }
1791
+ .ui-li-has-count .ui-btn-text { padding-right: 15px; }
1691
1792
  .ui-li-heading { font-size: 16px; font-weight: bold; display: block; margin: .6em 0; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
1692
1793
  .ui-li-desc { font-size: 12px; font-weight: normal; display: block; margin: -.5em 0 .6em; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
1693
- .ui-li-thumb, .ui-li-icon { position: absolute; left: 1px; top: 0; max-height: 80px; max-width: 80px; }
1694
- .ui-li-icon { max-height: 40px; max-width: 40px; left: 10px; top: .9em; }
1695
- .ui-li-thumb, .ui-li-icon, .ui-li-content { float: left; margin-right: 10px; }
1794
+ .ui-li-thumb, .ui-listview .ui-li-icon { position: absolute; left: 1px; top: 0; max-height: 80px; max-width: 80px; }
1795
+ .ui-listview .ui-li-icon { max-height: 40px; max-width: 40px; left: 10px; top: .9em; }
1796
+ .ui-li-thumb, .ui-listview .ui-li-icon, .ui-li-content { float: left; margin-right: 10px; }
1696
1797
 
1697
1798
  .ui-li-aside { float: right; width: 50%; text-align: right; margin: .3em 0; }
1698
1799
  @media all and (min-width: 480px){
@@ -1718,25 +1819,22 @@ ol.ui-listview .ui-li-jsnumbering:before { content: "" !important; } /* to avoid
1718
1819
  /* Odd iPad positioning issue. */
1719
1820
  @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
1720
1821
  .ui-li .ui-btn-text { overflow: visible; }
1721
- }/*
1722
- * jQuery Mobile Framework
1723
- * Copyright (c) jQuery Project
1724
- * Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
1725
- */
1726
- label.ui-slider { display: block; }
1727
- input.ui-slider-input { display: inline-block; width: 50px; }
1822
+ }label.ui-slider { font-size: 16px; line-height: 1.4; font-weight: normal; margin: 0 0 .3em; display: block; }
1823
+ input.ui-slider-input,
1824
+ .ui-field-contain input.ui-slider-input { display: inline-block; width: 50px; }
1728
1825
  select.ui-slider-switch { display: none; }
1729
- div.ui-slider { position: relative; display: inline-block; overflow: visible; height: 15px; padding: 0; margin: 0 2% 0 20px; top: 4px; width: 66%; }
1826
+ div.ui-slider { position: relative; display: inline-block; overflow: visible; height: 15px; padding: 0; margin: 0 2% 0 20px; top: 4px; width: 60%; }
1827
+ div.ui-slider-switch { width: 99.8%; }
1730
1828
  a.ui-slider-handle { position: absolute; z-index: 10; top: 50%; width: 28px; height: 28px; margin-top: -15px; margin-left: -15px; }
1731
1829
  a.ui-slider-handle .ui-btn-inner { padding-left: 0; padding-right: 0; }
1732
1830
  @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: 45%; }
1831
+ .ui-field-contain label.ui-slider { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0; }
1832
+ .ui-field-contain div.ui-slider { width: 43%; }
1735
1833
  }
1736
1834
 
1737
1835
  div.ui-slider-switch { height: 32px; overflow: hidden; margin-left: 0; }
1738
1836
  div.ui-slider-inneroffset { margin-left: 50%; position: absolute; top: 1px; height: 100%; width: 50%; }
1739
- a.ui-slider-handle-snapping { -webkit-transition: left 100ms linear; }
1837
+ a.ui-slider-handle-snapping { -webkit-transition: left 70ms linear; }
1740
1838
  div.ui-slider-labelbg { position: absolute; top:0; margin: 0; border-width: 0; }
1741
1839
  div.ui-slider-switch div.ui-slider-labelbg-a { width: 60%; height: 100%; left: 0; }
1742
1840
  div.ui-slider-switch div.ui-slider-labelbg-b { width: 60%; height: 100%; right: 0; }