mobile_template 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +28 -0
- data/Rakefile +3 -0
- data/bin/mobile_template +71 -0
- data/lib/mobile_template/version.rb +4 -0
- data/lib/mobile_template.rb +5 -0
- data/mobile_template.gemspec +21 -0
- data/templates/assets/Gemfile +4 -0
- data/templates/assets/config.rb +96 -0
- data/templates/assets/config.ru +4 -0
- data/templates/assets/source/images/vendor/ajax-loader.gif +0 -0
- data/templates/assets/source/images/vendor/ajax-loader.png +0 -0
- data/templates/assets/source/images/vendor/icons-18-black.png +0 -0
- data/templates/assets/source/images/vendor/icons-18-white.png +0 -0
- data/templates/assets/source/images/vendor/icons-36-black.png +0 -0
- data/templates/assets/source/images/vendor/icons-36-white.png +0 -0
- data/templates/assets/source/index.html.erb +2 -0
- data/templates/assets/source/javascripts/app/index.js.coffee +2 -0
- data/templates/assets/source/javascripts/application.js.coffee +5 -0
- data/templates/assets/source/javascripts/vendor/cordova.js +4841 -0
- data/templates/assets/source/javascripts/vendor/jquery.js +9267 -0
- data/templates/assets/source/javascripts/vendor/jquery.mobile.js +7410 -0
- data/templates/assets/source/layout.erb +24 -0
- data/templates/assets/source/stylesheets/application.css.scss +2 -0
- data/templates/assets/source/stylesheets/vendor/jquery.mobile.css.scss +1872 -0
- data/templates/cordova_android/.gitignore +18 -0
- data/templates/cordova_android/LICENSE +202 -0
- data/templates/cordova_android/NOTICE +5 -0
- data/templates/cordova_android/README.md +95 -0
- data/templates/cordova_android/VERSION +1 -0
- data/templates/cordova_android/bin/BOOM +4 -0
- data/templates/cordova_android/bin/autotest +2 -0
- data/templates/cordova_android/bin/bench +29 -0
- data/templates/cordova_android/bin/create +46 -0
- data/templates/cordova_android/bin/create.bat +1 -0
- data/templates/cordova_android/bin/create.js +88 -0
- data/templates/cordova_android/bin/create.xml +79 -0
- data/templates/cordova_android/bin/node_modules/.bin/cake +7 -0
- data/templates/cordova_android/bin/node_modules/.bin/coffee +7 -0
- data/templates/cordova_android/bin/node_modules/.bin/nodeunit +120 -0
- data/templates/cordova_android/bin/node_modules/coffee-script/.npmignore +11 -0
- data/templates/cordova_android/bin/node_modules/coffee-script/LICENSE +22 -0
- data/templates/cordova_android/bin/node_modules/coffee-script/README +48 -0
- data/templates/cordova_android/bin/node_modules/coffee-script/Rakefile +78 -0
- data/templates/cordova_android/bin/node_modules/coffee-script/bin/cake +7 -0
- data/templates/cordova_android/bin/node_modules/coffee-script/bin/coffee +7 -0
- data/templates/cordova_android/bin/node_modules/coffee-script/extras/jsl.conf +44 -0
- data/templates/cordova_android/bin/node_modules/coffee-script/lib/browser.js +75 -0
- data/templates/cordova_android/bin/node_modules/coffee-script/lib/cake.js +76 -0
- data/templates/cordova_android/bin/node_modules/coffee-script/lib/coffee-script.js +135 -0
- data/templates/cordova_android/bin/node_modules/coffee-script/lib/command.js +301 -0
- data/templates/cordova_android/bin/node_modules/coffee-script/lib/grammar.js +591 -0
- data/templates/cordova_android/bin/node_modules/coffee-script/lib/helpers.js +66 -0
- data/templates/cordova_android/bin/node_modules/coffee-script/lib/index.js +8 -0
- data/templates/cordova_android/bin/node_modules/coffee-script/lib/lexer.js +656 -0
- data/templates/cordova_android/bin/node_modules/coffee-script/lib/nodes.js +2289 -0
- data/templates/cordova_android/bin/node_modules/coffee-script/lib/optparse.js +111 -0
- data/templates/cordova_android/bin/node_modules/coffee-script/lib/parser.js +676 -0
- data/templates/cordova_android/bin/node_modules/coffee-script/lib/repl.js +123 -0
- data/templates/cordova_android/bin/node_modules/coffee-script/lib/rewriter.js +363 -0
- data/templates/cordova_android/bin/node_modules/coffee-script/lib/scope.js +120 -0
- data/templates/cordova_android/bin/node_modules/coffee-script/package.json +27 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/.gitignore +5 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/.npmignore +3 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/CONTRIBUTORS.md +60 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/LICENSE +19 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/Makefile +126 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/README.md +432 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/bin/nodeunit +120 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/bin/nodeunit.json +10 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/deps/async.js +623 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/deps/console.log.js +55 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/deps/ejs.js +125 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/deps/json2.js +483 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/examples/browser/nodeunit.js +1757 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/examples/browser/suite1.js +12 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/examples/browser/suite2.js +13 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/examples/browser/test.html +16 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/img/example_fail.png +0 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/img/example_pass.png +0 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/index.js +3 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/lib/assert.js +316 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/lib/core.js +260 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/lib/nodeunit.js +82 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/lib/reporters/browser.js +119 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/lib/reporters/default.js +123 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/lib/reporters/html.js +107 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/lib/reporters/index.js +9 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/lib/reporters/junit.js +183 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/lib/reporters/minimal.js +112 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/lib/reporters/skip_passed.js +105 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/lib/track.js +48 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/lib/types.js +187 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/lib/utils.js +209 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/man1/nodeunit.1 +95 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/nodelint.cfg +4 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/package.json +56 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/share/junit.xml.ejs +19 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/share/license.js +11 -0
- data/templates/cordova_android/bin/node_modules/nodeunit/share/nodeunit.css +70 -0
- data/templates/cordova_android/bin/templates/project/.cordova/android/readme.md +1 -0
- data/templates/cordova_android/bin/templates/project/.cordova/readme.md +3 -0
- data/templates/cordova_android/bin/templates/project/cordova/create +36 -0
- data/templates/cordova_android/bin/templates/project/cordova/debug +9 -0
- data/templates/cordova_android/bin/templates/project/cordova/emulate +12 -0
- data/templates/cordova_android/bin/templates/project/cordova/log +3 -0
- data/templates/cordova_android/bin/templates/project/cordova/templates/Activity.java +16 -0
- data/templates/cordova_android/bin/templates/project/cordova/templates/project/AndroidManifest.xml +50 -0
- data/templates/cordova_android/bin/templates/project/cordova/templates/project/assets/www/index.html +42 -0
- data/templates/cordova_android/bin/templates/project/cordova/templates/project/assets/www/main.js +146 -0
- data/templates/cordova_android/bin/templates/project/cordova/templates/project/assets/www/master.css +96 -0
- data/templates/cordova_android/bin/templates/project/cordova/templates/project/res/drawable/icon.png +0 -0
- data/templates/cordova_android/bin/templates/project/cordova/templates/project/res/xml/cordova.xml +5 -0
- data/templates/cordova_android/bin/templates/project/cordova/templates/project/res/xml/plugins.xml +19 -0
- data/templates/cordova_android/bin/test +26 -0
- data/templates/cordova_android/bin/tests/autotest.coffee +4 -0
- data/templates/cordova_android/bin/tests/create.coffee +21 -0
- data/templates/cordova_android/bin/tests/debug.coffee +0 -0
- data/templates/cordova_android/bin/tests/test.coffee +0 -0
- data/templates/cordova_android/framework/.classpath +8 -0
- data/templates/cordova_android/framework/.project +33 -0
- data/templates/cordova_android/framework/AndroidManifest.xml +68 -0
- data/templates/cordova_android/framework/ant.properties +34 -0
- data/templates/cordova_android/framework/assets/js/accelerometer.js +137 -0
- data/templates/cordova_android/framework/assets/js/app.js +89 -0
- data/templates/cordova_android/framework/assets/js/battery.js +134 -0
- data/templates/cordova_android/framework/assets/js/camera.js +168 -0
- data/templates/cordova_android/framework/assets/js/capture.js +203 -0
- data/templates/cordova_android/framework/assets/js/compass.js +168 -0
- data/templates/cordova_android/framework/assets/js/contact.js +310 -0
- data/templates/cordova_android/framework/assets/js/cordova.android.js +4841 -0
- data/templates/cordova_android/framework/assets/js/cordova.js.base +924 -0
- data/templates/cordova_android/framework/assets/js/crypto.js +54 -0
- data/templates/cordova_android/framework/assets/js/device.js +83 -0
- data/templates/cordova_android/framework/assets/js/file.js +1082 -0
- data/templates/cordova_android/framework/assets/js/filetransfer.js +125 -0
- data/templates/cordova_android/framework/assets/js/geolocation.js +209 -0
- data/templates/cordova_android/framework/assets/js/header.txt +19 -0
- data/templates/cordova_android/framework/assets/js/media.js +233 -0
- data/templates/cordova_android/framework/assets/js/network.js +100 -0
- data/templates/cordova_android/framework/assets/js/notification.js +133 -0
- data/templates/cordova_android/framework/assets/js/position.js +100 -0
- data/templates/cordova_android/framework/assets/js/storage.js +439 -0
- data/templates/cordova_android/framework/assets/www/index.html +27 -0
- data/templates/cordova_android/framework/build.xml +216 -0
- data/templates/cordova_android/framework/libs/commons-codec-1.3.jar +0 -0
- data/templates/cordova_android/framework/proguard-project.txt +20 -0
- data/templates/cordova_android/framework/project.properties +14 -0
- data/templates/cordova_android/framework/res/drawable/icon.png +0 -0
- data/templates/cordova_android/framework/res/drawable/splash.png +0 -0
- data/templates/cordova_android/framework/res/layout/main.xml +29 -0
- data/templates/cordova_android/framework/res/values/strings.xml +23 -0
- data/templates/cordova_android/framework/res/xml/cordova.xml +37 -0
- data/templates/cordova_android/framework/res/xml/plugins.xml +37 -0
- data/templates/cordova_android/framework/src/com/phonegap/api/IPlugin.java +27 -0
- data/templates/cordova_android/framework/src/com/phonegap/api/LOG.java +28 -0
- data/templates/cordova_android/framework/src/com/phonegap/api/PhonegapActivity.java +28 -0
- data/templates/cordova_android/framework/src/com/phonegap/api/Plugin.java +27 -0
- data/templates/cordova_android/framework/src/com/phonegap/api/PluginManager.java +35 -0
- data/templates/cordova_android/framework/src/com/phonegap/api/PluginResult.java +53 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/AccelListener.java +311 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/App.java +198 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/AudioHandler.java +364 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/AudioPlayer.java +450 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/AuthenticationToken.java +69 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/BatteryListener.java +156 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/CallbackServer.java +431 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/CameraLauncher.java +500 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/Capture.java +400 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/CompassListener.java +308 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/ContactAccessor.java +198 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/ContactAccessorSdk5.java +1934 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/ContactManager.java +113 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/CordovaChromeClient.java +314 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/CordovaWebViewClient.java +306 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/Device.java +219 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/DirectoryManager.java +161 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/DroidGap.java +1417 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/ExifHelper.java +165 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/FileTransfer.java +458 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/FileUploadResult.java +63 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/FileUtils.java +1048 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/GeoBroker.java +165 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/GeoListener.java +133 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/GpsListener.java +163 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/HttpHandler.java +80 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/LinearLayoutSoftKeyboardDetect.java +104 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/NetworkListener.java +153 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/NetworkManager.java +248 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/Notification.java +366 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/PreferenceNode.java +34 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/PreferenceSet.java +62 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/StandAlone.java +35 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/Storage.java +239 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/TempListener.java +112 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/api/CordovaInterface.java +145 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/api/IPlugin.java +116 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/api/LOG.java +234 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/api/Plugin.java +210 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/api/PluginManager.java +359 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/api/PluginResult.java +119 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/file/EncodingException.java +28 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/file/FileExistsException.java +28 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/file/InvalidModificationException.java +29 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/file/NoModificationAllowedException.java +28 -0
- data/templates/cordova_android/framework/src/org/apache/cordova/file/TypeMismatchException.java +29 -0
- data/templates/cordova_android/framework/test/org/apache/cordova/PreferenceNodeTest.java +53 -0
- data/templates/cordova_android/framework/test/org/apache/cordova/PreferenceSetTest.java +73 -0
- metadata +279 -0
@@ -0,0 +1,1872 @@
|
|
1
|
+
/*
|
2
|
+
* jQuery Mobile Framework 1.1.0-rc.1
|
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
|
+
*
|
9
|
+
*/
|
10
|
+
|
11
|
+
.ui-bar-a {
|
12
|
+
border: 1px solid #333 ;
|
13
|
+
background: #111111 ;
|
14
|
+
color: #ffffff ;
|
15
|
+
font-weight: bold;
|
16
|
+
text-shadow: 0 -1px 1px #000000 ;
|
17
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #3c3c3c ), to( #111 ));
|
18
|
+
background-image: -webkit-linear-gradient( #3c3c3c , #111 );
|
19
|
+
background-image: -moz-linear-gradient( #3c3c3c , #111 );
|
20
|
+
background-image: -ms-linear-gradient( #3c3c3c , #111 );
|
21
|
+
background-image: -o-linear-gradient( #3c3c3c , #111 );
|
22
|
+
background-image: linear-gradient( #3c3c3c , #111 );
|
23
|
+
}
|
24
|
+
.ui-bar-a,
|
25
|
+
.ui-bar-a input,
|
26
|
+
.ui-bar-a select,
|
27
|
+
.ui-bar-a textarea,
|
28
|
+
.ui-bar-a button {
|
29
|
+
font-family: Helvetica, Arial, sans-serif ;
|
30
|
+
}
|
31
|
+
.ui-bar-a .ui-link-inherit {
|
32
|
+
color: #fff ;
|
33
|
+
}
|
34
|
+
.ui-bar-a .ui-link {
|
35
|
+
color: #7cc4e7 ;
|
36
|
+
font-weight: bold;
|
37
|
+
}
|
38
|
+
.ui-bar-a .ui-link:hover {
|
39
|
+
color: #2489CE ;
|
40
|
+
}
|
41
|
+
.ui-bar-a .ui-link:active {
|
42
|
+
color: #2489CE ;
|
43
|
+
}
|
44
|
+
.ui-bar-a .ui-link:visited {
|
45
|
+
color: #2489CE ;
|
46
|
+
}
|
47
|
+
.ui-body-a,
|
48
|
+
.ui-overlay-a {
|
49
|
+
border: 1px solid #444 ;
|
50
|
+
background: #111 ;
|
51
|
+
color: #fff ;
|
52
|
+
text-shadow: 0 1px 1px #000 ;
|
53
|
+
font-weight: normal;
|
54
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #666 ), to( #222 ));
|
55
|
+
background-image: -webkit-linear-gradient( #444 , #222 );
|
56
|
+
background-image: -moz-linear-gradient( #444 , #222 );
|
57
|
+
background-image: -ms-linear-gradient( #444 , #222 );
|
58
|
+
background-image: -o-linear-gradient( #444 , #222 );
|
59
|
+
background-image: linear-gradient( #444 , #222 );
|
60
|
+
}
|
61
|
+
.ui-overlay-a {
|
62
|
+
background-image: none;
|
63
|
+
border-width: 0;
|
64
|
+
}
|
65
|
+
.ui-body-a,
|
66
|
+
.ui-body-a input,
|
67
|
+
.ui-body-a select,
|
68
|
+
.ui-body-a textarea,
|
69
|
+
.ui-body-a button {
|
70
|
+
font-family: Helvetica, Arial, sans-serif ;
|
71
|
+
}
|
72
|
+
.ui-body-a .ui-link-inherit {
|
73
|
+
color: #fff ;
|
74
|
+
}
|
75
|
+
.ui-body-a .ui-link {
|
76
|
+
color: #2489CE ;
|
77
|
+
font-weight: bold;
|
78
|
+
}
|
79
|
+
.ui-body-a .ui-link:hover {
|
80
|
+
color: #2489CE ;
|
81
|
+
}
|
82
|
+
.ui-body-a .ui-link:active {
|
83
|
+
color: #2489CE ;
|
84
|
+
}
|
85
|
+
.ui-body-a .ui-link:visited {
|
86
|
+
color: #2489CE ;
|
87
|
+
}
|
88
|
+
.ui-btn-up-a {
|
89
|
+
border: 1px solid #111 ;
|
90
|
+
background: #333 ;
|
91
|
+
font-weight: bold;
|
92
|
+
color: #fff ;
|
93
|
+
text-shadow: 0 1px 1px #000 ;
|
94
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #4f4f4f ), to( #2d2d2d ));
|
95
|
+
background-image: -webkit-linear-gradient( #4f4f4f , #2d2d2d );
|
96
|
+
background-image: -moz-linear-gradient( #4f4f4f , #2d2d2d );
|
97
|
+
background-image: -ms-linear-gradient( #4f4f4f , #2d2d2d );
|
98
|
+
background-image: -o-linear-gradient( #4f4f4f , #2d2d2d );
|
99
|
+
background-image: linear-gradient( #4f4f4f , #2d2d2d );
|
100
|
+
}
|
101
|
+
.ui-btn-up-a a.ui-link-inherit {
|
102
|
+
color: #fff ;
|
103
|
+
}
|
104
|
+
.ui-btn-hover-a {
|
105
|
+
border: 1px solid #000 ;
|
106
|
+
background: #444444 ;
|
107
|
+
font-weight: bold;
|
108
|
+
color: #fff ;
|
109
|
+
text-shadow: 0 1px 1px #000 ;
|
110
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #555555 ), to( #383838 ));
|
111
|
+
background-image: -webkit-linear-gradient( #555555 , #383838 );
|
112
|
+
background-image: -moz-linear-gradient( #555555 , #383838 );
|
113
|
+
background-image: -ms-linear-gradient( #555555 , #383838 );
|
114
|
+
background-image: -o-linear-gradient( #555555 , #383838 );
|
115
|
+
background-image: linear-gradient( #555555 , #383838 );
|
116
|
+
}
|
117
|
+
.ui-btn-hover-a a.ui-link-inherit {
|
118
|
+
color: #fff ;
|
119
|
+
}
|
120
|
+
.ui-btn-down-a {
|
121
|
+
border: 1px solid #000 ;
|
122
|
+
background: #222 ;
|
123
|
+
font-weight: bold;
|
124
|
+
color: #fff ;
|
125
|
+
text-shadow: 0 1px 1px #000 ;
|
126
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #202020 ), to( #2c2c2c ));
|
127
|
+
background-image: -webkit-linear-gradient( #202020 , #2c2c2c );
|
128
|
+
background-image: -moz-linear-gradient( #202020 , #2c2c2c );
|
129
|
+
background-image: -ms-linear-gradient( #202020 , #2c2c2c );
|
130
|
+
background-image: -o-linear-gradient( #202020 , #2c2c2c );
|
131
|
+
background-image: linear-gradient( #202020 , #2c2c2c );
|
132
|
+
}
|
133
|
+
.ui-btn-down-a a.ui-link-inherit {
|
134
|
+
color: #fff ;
|
135
|
+
}
|
136
|
+
.ui-btn-up-a,
|
137
|
+
.ui-btn-hover-a,
|
138
|
+
.ui-btn-down-a {
|
139
|
+
font-family: Helvetica, Arial, sans-serif ;
|
140
|
+
text-decoration: none;
|
141
|
+
}
|
142
|
+
.ui-bar-b {
|
143
|
+
border: 1px solid #456f9a ;
|
144
|
+
background: #5e87b0 ;
|
145
|
+
color: #fff ;
|
146
|
+
font-weight: bold;
|
147
|
+
text-shadow: 0 1px 1px #254f7a ;
|
148
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #81a8ce ), to( #5e87b0 ));
|
149
|
+
background-image: -webkit-linear-gradient( #6facd5 , #497bae );
|
150
|
+
background-image: -moz-linear-gradient( #81a8ce , #5e87b0 );
|
151
|
+
background-image: -ms-linear-gradient( #81a8ce , #5e87b0 );
|
152
|
+
background-image: -o-linear-gradient( #81a8ce , #5e87b0 );
|
153
|
+
background-image: linear-gradient( #81a8ce , #5e87b0 );
|
154
|
+
}
|
155
|
+
.ui-bar-b,
|
156
|
+
.ui-bar-b input,
|
157
|
+
.ui-bar-b select,
|
158
|
+
.ui-bar-b textarea,
|
159
|
+
.ui-bar-b button {
|
160
|
+
font-family: Helvetica, Arial, sans-serif ;
|
161
|
+
}
|
162
|
+
.ui-bar-b .ui-link-inherit {
|
163
|
+
color: #fff ;
|
164
|
+
}
|
165
|
+
.ui-bar-b .ui-link {
|
166
|
+
color: #ddf0f8 ;
|
167
|
+
font-weight: bold;
|
168
|
+
}
|
169
|
+
.ui-bar-b .ui-link:hover {
|
170
|
+
color: #ddf0f8 ;
|
171
|
+
}
|
172
|
+
.ui-bar-b .ui-link:active {
|
173
|
+
color: #ddf0f8 ;
|
174
|
+
}
|
175
|
+
.ui-bar-b .ui-link:visited {
|
176
|
+
color: #ddf0f8 ;
|
177
|
+
}
|
178
|
+
.ui-body-b,
|
179
|
+
.ui-overlay-b {
|
180
|
+
border: 1px solid #999 ;
|
181
|
+
background: #f3f3f3 ;
|
182
|
+
color: #222222 ;
|
183
|
+
text-shadow: 0 1px 0 #fff ;
|
184
|
+
font-weight: normal;
|
185
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #ddd ), to( #ccc ));
|
186
|
+
background-image: -webkit-linear-gradient( #ddd , #ccc );
|
187
|
+
background-image: -moz-linear-gradient( #ddd , #ccc );
|
188
|
+
background-image: -ms-linear-gradient( #ddd , #ccc );
|
189
|
+
background-image: -o-linear-gradient( #ddd , #ccc );
|
190
|
+
background-image: linear-gradient( #ddd , #ccc );
|
191
|
+
}
|
192
|
+
.ui-overlay-b {
|
193
|
+
background-image: none;
|
194
|
+
border-width: 0;
|
195
|
+
}
|
196
|
+
.ui-body-b,
|
197
|
+
.ui-body-b input,
|
198
|
+
.ui-body-b select,
|
199
|
+
.ui-body-b textarea,
|
200
|
+
.ui-body-b button {
|
201
|
+
font-family: Helvetica, Arial, sans-serif ;
|
202
|
+
}
|
203
|
+
.ui-body-b .ui-link-inherit {
|
204
|
+
color: #333333 ;
|
205
|
+
}
|
206
|
+
.ui-body-b .ui-link {
|
207
|
+
color: #2489CE ;
|
208
|
+
font-weight: bold;
|
209
|
+
}
|
210
|
+
.ui-body-b .ui-link:hover {
|
211
|
+
color: #2489CE ;
|
212
|
+
}
|
213
|
+
.ui-body-b .ui-link:active {
|
214
|
+
color: #2489CE ;
|
215
|
+
}
|
216
|
+
.ui-body-b .ui-link:visited {
|
217
|
+
color: #2489CE ;
|
218
|
+
}
|
219
|
+
.ui-btn-up-b {
|
220
|
+
border: 1px solid #044062 ;
|
221
|
+
background: #396b9e ;
|
222
|
+
font-weight: bold;
|
223
|
+
color: #fff ;
|
224
|
+
text-shadow: 0 1px 1px #044062 ;
|
225
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #5f9cc5 ), to( #396b9e ));
|
226
|
+
background-image: -webkit-linear-gradient( #5f9cc5 , #396b9e );
|
227
|
+
background-image: -moz-linear-gradient( #5f9cc5 , #396b9e );
|
228
|
+
background-image: -ms-linear-gradient( #5f9cc5 , #396b9e );
|
229
|
+
background-image: -o-linear-gradient( #5f9cc5 , #396b9e );
|
230
|
+
background-image: linear-gradient( #5f9cc5 , #396b9e );
|
231
|
+
}
|
232
|
+
.ui-btn-up-b a.ui-link-inherit {
|
233
|
+
color: #fff ;
|
234
|
+
}
|
235
|
+
.ui-btn-hover-b {
|
236
|
+
border: 1px solid #00415e ;
|
237
|
+
background: #4b88b6 ;
|
238
|
+
font-weight: bold;
|
239
|
+
color: #fff ;
|
240
|
+
text-shadow: 0 1px 1px #014D68 ;
|
241
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #72b0d4 ), to( #4272a4 ));
|
242
|
+
background-image: -webkit-linear-gradient( #6facd5 , #4272a4 );
|
243
|
+
background-image: -moz-linear-gradient( #6facd5 , #4272a4 );
|
244
|
+
background-image: -ms-linear-gradient( #6facd5 , #4272a4 );
|
245
|
+
background-image: -o-linear-gradient( #6facd5 , #4272a4 );
|
246
|
+
background-image: linear-gradient( #6facd5 , #4272a4 );
|
247
|
+
}
|
248
|
+
.ui-btn-hover-b a.ui-link-inherit {
|
249
|
+
color: #fff ;
|
250
|
+
}
|
251
|
+
.ui-btn-down-b {
|
252
|
+
border: 1px solid #225377 ;
|
253
|
+
background: #4e89c5 ;
|
254
|
+
font-weight: bold;
|
255
|
+
color: #fff ;
|
256
|
+
text-shadow: 0 1px 1px #225377 ;
|
257
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #396b9e ), to( #295b8e ));
|
258
|
+
background-image: -webkit-linear-gradient( #295b8e , #3e79b5 );
|
259
|
+
background-image: -moz-linear-gradient( #295b8e , #3e79b5 );
|
260
|
+
background-image: -ms-linear-gradient( #295b8e , #3e79b5 );
|
261
|
+
background-image: -o-linear-gradient( #295b8e , #3e79b5 );
|
262
|
+
background-image: linear-gradient( #295b8e , #3e79b5 );
|
263
|
+
}
|
264
|
+
.ui-btn-down-b a.ui-link-inherit {
|
265
|
+
color: #fff ;
|
266
|
+
}
|
267
|
+
.ui-btn-up-b,
|
268
|
+
.ui-btn-hover-b,
|
269
|
+
.ui-btn-down-b {
|
270
|
+
font-family: Helvetica, Arial, sans-serif ;
|
271
|
+
text-decoration: none;
|
272
|
+
}
|
273
|
+
.ui-bar-c {
|
274
|
+
border: 1px solid #B3B3B3 ;
|
275
|
+
background: #eeeeee ;
|
276
|
+
color: #3E3E3E ;
|
277
|
+
font-weight: bold;
|
278
|
+
text-shadow: 0 1px 1px #fff ;
|
279
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #f0f0f0 ), to( #ddd ));
|
280
|
+
background-image: -webkit-linear-gradient( #f0f0f0 , #ddd );
|
281
|
+
background-image: -moz-linear-gradient( #f0f0f0 , #ddd );
|
282
|
+
background-image: -ms-linear-gradient( #f0f0f0 , #ddd );
|
283
|
+
background-image: -o-linear-gradient( #f0f0f0 , #ddd );
|
284
|
+
background-image: linear-gradient( #f0f0f0 , #ddd );
|
285
|
+
}
|
286
|
+
.ui-bar-c .ui-link-inherit {
|
287
|
+
color: #3E3E3E ;
|
288
|
+
}
|
289
|
+
.ui-bar-c .ui-link {
|
290
|
+
color: #7cc4e7 ;
|
291
|
+
font-weight: bold;
|
292
|
+
}
|
293
|
+
.ui-bar-c .ui-link:hover {
|
294
|
+
color: #2489CE ;
|
295
|
+
}
|
296
|
+
.ui-bar-c .ui-link:active {
|
297
|
+
color: #2489CE ;
|
298
|
+
}
|
299
|
+
.ui-bar-c .ui-link:visited {
|
300
|
+
color: #2489CE ;
|
301
|
+
}
|
302
|
+
.ui-bar-c,
|
303
|
+
.ui-bar-c input,
|
304
|
+
.ui-bar-c select,
|
305
|
+
.ui-bar-c textarea,
|
306
|
+
.ui-bar-c button {
|
307
|
+
font-family: Helvetica, Arial, sans-serif ;
|
308
|
+
}
|
309
|
+
.ui-body-c,
|
310
|
+
.ui-overlay-c {
|
311
|
+
border: 1px solid #aaa ;
|
312
|
+
color: #333333 ;
|
313
|
+
text-shadow: 0 1px 0 #fff ;
|
314
|
+
background: #f9f9f9 ;
|
315
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #f9f9f9 ), to( #eeeeee ));
|
316
|
+
background-image: -webkit-linear-gradient( #f9f9f9 , #eeeeee );
|
317
|
+
background-image: -moz-linear-gradient( #f9f9f9 , #eeeeee );
|
318
|
+
background-image: -ms-linear-gradient( #f9f9f9 , #eeeeee );
|
319
|
+
background-image: -o-linear-gradient( #f9f9f9 , #eeeeee );
|
320
|
+
background-image: linear-gradient( #f9f9f9 , #eeeeee );
|
321
|
+
}
|
322
|
+
.ui-overlay-c {
|
323
|
+
background-image: none;
|
324
|
+
border-width: 0;
|
325
|
+
}
|
326
|
+
.ui-body-c,
|
327
|
+
.ui-body-c input,
|
328
|
+
.ui-body-c select,
|
329
|
+
.ui-body-c textarea,
|
330
|
+
.ui-body-c button {
|
331
|
+
font-family: Helvetica, Arial, sans-serif ;
|
332
|
+
}
|
333
|
+
.ui-body-c .ui-link-inherit {
|
334
|
+
color: #333333 ;
|
335
|
+
}
|
336
|
+
.ui-body-c .ui-link {
|
337
|
+
color: #2489CE ;
|
338
|
+
font-weight: bold;
|
339
|
+
}
|
340
|
+
.ui-body-c .ui-link:hover {
|
341
|
+
color: #2489CE ;
|
342
|
+
}
|
343
|
+
.ui-body-c .ui-link:active {
|
344
|
+
color: #2489CE ;
|
345
|
+
}
|
346
|
+
.ui-body-c .ui-link:visited {
|
347
|
+
color: #2489CE ;
|
348
|
+
}
|
349
|
+
.ui-btn-up-c {
|
350
|
+
border: 1px solid #ccc ;
|
351
|
+
background: #eee ;
|
352
|
+
font-weight: bold;
|
353
|
+
color: #222 ;
|
354
|
+
text-shadow: 0 1px 0 #ffffff ;
|
355
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #ffffff ), to( #f1f1f1 ));
|
356
|
+
background-image: -webkit-linear-gradient( #ffffff , #f1f1f1 );
|
357
|
+
background-image: -moz-linear-gradient( #ffffff , #f1f1f1 );
|
358
|
+
background-image: -ms-linear-gradient( #ffffff , #f1f1f1 );
|
359
|
+
background-image: -o-linear-gradient( #ffffff , #f1f1f1 );
|
360
|
+
background-image: linear-gradient( #ffffff , #f1f1f1 );
|
361
|
+
}
|
362
|
+
.ui-btn-up-c a.ui-link-inherit {
|
363
|
+
color: #2F3E46 ;
|
364
|
+
}
|
365
|
+
.ui-btn-hover-c {
|
366
|
+
border: 1px solid #bbb ;
|
367
|
+
background: #dfdfdf ;
|
368
|
+
font-weight: bold;
|
369
|
+
color: #222 ;
|
370
|
+
text-shadow: 0 1px 0 #ffffff ;
|
371
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #f6f6f6 ), to( #e0e0e0 ));
|
372
|
+
background-image: -webkit-linear-gradient( #f9f9f9 , #e0e0e0 );
|
373
|
+
background-image: -moz-linear-gradient( #f6f6f6 , #e0e0e0 );
|
374
|
+
background-image: -ms-linear-gradient( #f6f6f6 , #e0e0e0 );
|
375
|
+
background-image: -o-linear-gradient( #f6f6f6 , #e0e0e0 );
|
376
|
+
background-image: linear-gradient( #f6f6f6 , #e0e0e0 );
|
377
|
+
}
|
378
|
+
.ui-btn-hover-c a.ui-link-inherit {
|
379
|
+
color: #2F3E46 ;
|
380
|
+
}
|
381
|
+
.ui-btn-down-c {
|
382
|
+
border: 1px solid #bbb ;
|
383
|
+
background: #d6d6d6 ;
|
384
|
+
font-weight: bold;
|
385
|
+
color: #222 ;
|
386
|
+
text-shadow: 0 1px 0 #ffffff ;
|
387
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #d0d0d0 ), to( #dfdfdf ));
|
388
|
+
background-image: -webkit-linear-gradient( #d0d0d0 , #dfdfdf );
|
389
|
+
background-image: -moz-linear-gradient( #d0d0d0 , #dfdfdf );
|
390
|
+
background-image: -ms-linear-gradient( #d0d0d0 , #dfdfdf );
|
391
|
+
background-image: -o-linear-gradient( #d0d0d0 , #dfdfdf );
|
392
|
+
background-image: linear-gradient( #d0d0d0 , #dfdfdf );
|
393
|
+
}
|
394
|
+
.ui-btn-down-c a.ui-link-inherit {
|
395
|
+
color: #2F3E46 ;
|
396
|
+
}
|
397
|
+
.ui-btn-up-c,
|
398
|
+
.ui-btn-hover-c,
|
399
|
+
.ui-btn-down-c {
|
400
|
+
font-family: Helvetica, Arial, sans-serif ;
|
401
|
+
text-decoration: none;
|
402
|
+
}
|
403
|
+
.ui-bar-d {
|
404
|
+
border: 1px solid #bbb ;
|
405
|
+
background: #bbb ;
|
406
|
+
color: #333 ;
|
407
|
+
text-shadow: 0 1px 0 #eee ;
|
408
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #ddd ), to( #bbb ));
|
409
|
+
background-image: -webkit-linear-gradient( #ddd , #bbb );
|
410
|
+
background-image: -moz-linear-gradient( #ddd , #bbb );
|
411
|
+
background-image: -ms-linear-gradient( #ddd , #bbb );
|
412
|
+
background-image: -o-linear-gradient( #ddd , #bbb );
|
413
|
+
background-image: linear-gradient( #ddd , #bbb );
|
414
|
+
}
|
415
|
+
.ui-bar-d,
|
416
|
+
.ui-bar-d input,
|
417
|
+
.ui-bar-d select,
|
418
|
+
.ui-bar-d textarea,
|
419
|
+
.ui-bar-d button {
|
420
|
+
font-family: Helvetica, Arial, sans-serif ;
|
421
|
+
}
|
422
|
+
.ui-bar-d .ui-link-inherit {
|
423
|
+
color: #333333 ;
|
424
|
+
}
|
425
|
+
.ui-bar-d .ui-link {
|
426
|
+
color: #2489CE ;
|
427
|
+
font-weight: bold;
|
428
|
+
}
|
429
|
+
.ui-bar-d .ui-link:hover {
|
430
|
+
color: #2489CE ;
|
431
|
+
}
|
432
|
+
.ui-bar-d .ui-link:active {
|
433
|
+
color: #2489CE ;
|
434
|
+
}
|
435
|
+
.ui-bar-d .ui-link:visited {
|
436
|
+
color: #2489CE ;
|
437
|
+
}
|
438
|
+
.ui-body-d,
|
439
|
+
.ui-overlay-d {
|
440
|
+
border: 1px solid #bbb ;
|
441
|
+
color: #333333 ;
|
442
|
+
text-shadow: 0 1px 0 #fff ;
|
443
|
+
background: #ffffff ;
|
444
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #fff), to( #fff ));
|
445
|
+
background-image: -webkit-linear-gradient( #fff , #fff );
|
446
|
+
background-image: -moz-linear-gradient( #fff , #fff );
|
447
|
+
background-image: -ms-linear-gradient( #fff , #fff );
|
448
|
+
background-image: -o-linear-gradient( #fff , #fff );
|
449
|
+
background-image: linear-gradient( #fff , #fff );
|
450
|
+
}
|
451
|
+
.ui-overlay-d {
|
452
|
+
background-image: none;
|
453
|
+
border-width: 0;
|
454
|
+
}
|
455
|
+
.ui-body-d,
|
456
|
+
.ui-body-d input,
|
457
|
+
.ui-body-d select,
|
458
|
+
.ui-body-d textarea,
|
459
|
+
.ui-body-d button {
|
460
|
+
font-family: Helvetica, Arial, sans-serif ;
|
461
|
+
}
|
462
|
+
.ui-body-d .ui-link-inherit {
|
463
|
+
color: #333333 ;
|
464
|
+
}
|
465
|
+
.ui-body-d .ui-link {
|
466
|
+
color: #2489CE ;
|
467
|
+
font-weight: bold;
|
468
|
+
}
|
469
|
+
.ui-body-d .ui-link:hover {
|
470
|
+
color: #2489CE ;
|
471
|
+
}
|
472
|
+
.ui-body-d .ui-link:active {
|
473
|
+
color: #2489CE ;
|
474
|
+
}
|
475
|
+
.ui-body-d .ui-link:visited {
|
476
|
+
color: #2489CE ;
|
477
|
+
}
|
478
|
+
.ui-btn-up-d {
|
479
|
+
border: 1px solid #bbb ;
|
480
|
+
background: #fff ;
|
481
|
+
font-weight: bold;
|
482
|
+
color: #333 ;
|
483
|
+
text-shadow: 0 1px 0 #fff ;
|
484
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #fafafa), to( #f6f6f6 ));
|
485
|
+
background-image: -webkit-linear-gradient( #fafafa , #fff );
|
486
|
+
background-image: -moz-linear-gradient( #fafafa , #f6f6f6 );
|
487
|
+
background-image: -ms-linear-gradient( #fafafa , #f6f6f6 );
|
488
|
+
background-image: -o-linear-gradient( #fafafa , #f6f6f6 );
|
489
|
+
background-image: linear-gradient( #fafafa , #f6f6f6 );
|
490
|
+
}
|
491
|
+
.ui-btn-up-d a.ui-link-inherit {
|
492
|
+
color: #333 ;
|
493
|
+
}
|
494
|
+
.ui-btn-hover-d {
|
495
|
+
border: 1px solid #aaa ;
|
496
|
+
background: #eeeeee ;
|
497
|
+
font-weight: bold;
|
498
|
+
color: #333 ;
|
499
|
+
cursor: pointer;
|
500
|
+
text-shadow: 0 1px 0 #fff ;
|
501
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #eee), to( #fff ));
|
502
|
+
background-image: -webkit-linear-gradient( #eee , #fff );
|
503
|
+
background-image: -moz-linear-gradient( #eee , #fff );
|
504
|
+
background-image: -ms-linear-gradient( #eee , #fff );
|
505
|
+
background-image: -o-linear-gradient( #eee , #fff );
|
506
|
+
background-image: linear-gradient( #eee , #fff );
|
507
|
+
}
|
508
|
+
.ui-btn-hover-d a.ui-link-inherit {
|
509
|
+
color: #333 ;
|
510
|
+
}
|
511
|
+
.ui-btn-down-d {
|
512
|
+
border: 1px solid #aaa ;
|
513
|
+
background: #eee ;
|
514
|
+
font-weight: bold;
|
515
|
+
color: #333 ;
|
516
|
+
text-shadow: 0 1px 0 #ffffff ;
|
517
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #e5e5e5 ), to( #f2f2f2 ));
|
518
|
+
background-image: -webkit-linear-gradient( #e5e5e5 , #f2f2f2 );
|
519
|
+
background-image: -moz-linear-gradient( #e5e5e5 , #f2f2f2 );
|
520
|
+
background-image: -ms-linear-gradient( #e5e5e5 , #f2f2f2 );
|
521
|
+
background-image: -o-linear-gradient( #e5e5e5 , #f2f2f2 );
|
522
|
+
background-image: linear-gradient( #e5e5e5 , #f2f2f2 );
|
523
|
+
}
|
524
|
+
.ui-btn-down-d a.ui-link-inherit {
|
525
|
+
color: #333 ;
|
526
|
+
}
|
527
|
+
.ui-btn-up-d,
|
528
|
+
.ui-btn-hover-d,
|
529
|
+
.ui-btn-down-d {
|
530
|
+
font-family: Helvetica, Arial, sans-serif ;
|
531
|
+
text-decoration: none;
|
532
|
+
}
|
533
|
+
.ui-bar-e {
|
534
|
+
border: 1px solid #F7C942 ;
|
535
|
+
background: #fadb4e ;
|
536
|
+
color: #333 ;
|
537
|
+
text-shadow: 0 1px 0 #fff ;
|
538
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #fceda7 ), to( #fbef7e ));
|
539
|
+
background-image: -webkit-linear-gradient( #fceda7 , #fbef7e );
|
540
|
+
background-image: -moz-linear-gradient( #fceda7 , #fbef7e );
|
541
|
+
background-image: -ms-linear-gradient( #fceda7 , #fbef7e );
|
542
|
+
background-image: -o-linear-gradient( #fceda7 , #fbef7e );
|
543
|
+
background-image: linear-gradient( #fceda7 , #fbef7e );
|
544
|
+
}
|
545
|
+
.ui-bar-e,
|
546
|
+
.ui-bar-e input,
|
547
|
+
.ui-bar-e select,
|
548
|
+
.ui-bar-e textarea,
|
549
|
+
.ui-bar-e button {
|
550
|
+
font-family: Helvetica, Arial, sans-serif ;
|
551
|
+
}
|
552
|
+
.ui-bar-e .ui-link-inherit {
|
553
|
+
color: #333333 ;
|
554
|
+
}
|
555
|
+
.ui-bar-e .ui-link {
|
556
|
+
color: #2489CE ;
|
557
|
+
font-weight: bold;
|
558
|
+
}
|
559
|
+
.ui-bar-e .ui-link:hover {
|
560
|
+
color: #2489CE ;
|
561
|
+
}
|
562
|
+
.ui-bar-e .ui-link:active {
|
563
|
+
color: #2489CE ;
|
564
|
+
}
|
565
|
+
.ui-bar-e .ui-link:visited {
|
566
|
+
color: #2489CE ;
|
567
|
+
}
|
568
|
+
.ui-body-e,
|
569
|
+
.ui-overlay-e {
|
570
|
+
border: 1px solid #F7C942 ;
|
571
|
+
color: #222222 ;
|
572
|
+
text-shadow: 0 1px 0 #fff ;
|
573
|
+
background: #fff9df ;
|
574
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #fffadf ), to( #fff3a5 ));
|
575
|
+
background-image: -webkit-linear-gradient( #fffadf , #fff3a5 );
|
576
|
+
background-image: -moz-linear-gradient( #fffadf , #fff3a5 );
|
577
|
+
background-image: -ms-linear-gradient( #fffadf , #fff3a5 );
|
578
|
+
background-image: -o-linear-gradient( #fffadf , #fff3a5 );
|
579
|
+
background-image: linear-gradient( #fffadf , #fff3a5 );
|
580
|
+
}
|
581
|
+
.ui-overlay-e {
|
582
|
+
background-image: none;
|
583
|
+
border-width: 0;
|
584
|
+
}
|
585
|
+
.ui-body-e,
|
586
|
+
.ui-body-e input,
|
587
|
+
.ui-body-e select,
|
588
|
+
.ui-body-e textarea,
|
589
|
+
.ui-body-e button {
|
590
|
+
font-family: Helvetica, Arial, sans-serif ;
|
591
|
+
}
|
592
|
+
.ui-body-e .ui-link-inherit {
|
593
|
+
color: #333333 ;
|
594
|
+
}
|
595
|
+
.ui-body-e .ui-link {
|
596
|
+
color: #2489CE ;
|
597
|
+
font-weight: bold;
|
598
|
+
}
|
599
|
+
.ui-body-e .ui-link:hover {
|
600
|
+
color: #2489CE ;
|
601
|
+
}
|
602
|
+
.ui-body-e .ui-link:active {
|
603
|
+
color: #2489CE ;
|
604
|
+
}
|
605
|
+
.ui-body-e .ui-link:visited {
|
606
|
+
color: #2489CE ;
|
607
|
+
}
|
608
|
+
.ui-btn-up-e {
|
609
|
+
border: 1px solid #F4C63f ;
|
610
|
+
background: #fadb4e ;
|
611
|
+
font-weight: bold;
|
612
|
+
color: #222 ;
|
613
|
+
text-shadow: 0 1px 0 #fff ;
|
614
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #ffefaa ), to( #ffe155 ));
|
615
|
+
background-image: -webkit-linear-gradient( #ffefaa , #ffe155 );
|
616
|
+
background-image: -moz-linear-gradient( #ffefaa , #ffe155 );
|
617
|
+
background-image: -ms-linear-gradient( #ffefaa , #ffe155 );
|
618
|
+
background-image: -o-linear-gradient( #ffefaa , #ffe155 );
|
619
|
+
background-image: linear-gradient( #ffefaa , #ffe155 );
|
620
|
+
}
|
621
|
+
.ui-btn-up-e a.ui-link-inherit {
|
622
|
+
color: #222 ;
|
623
|
+
}
|
624
|
+
.ui-btn-hover-e {
|
625
|
+
border: 1px solid #F2C43d ;
|
626
|
+
background: #fbe26f ;
|
627
|
+
font-weight: bold;
|
628
|
+
color: #111 ;
|
629
|
+
text-shadow: 0 1px 0 #fff ;
|
630
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #fff5ba ), to( #fbdd52 ));
|
631
|
+
background-image: -webkit-linear-gradient( #fff5ba , #fbdd52 );
|
632
|
+
background-image: -moz-linear-gradient( #fff5ba , #fbdd52 );
|
633
|
+
background-image: -ms-linear-gradient( #fff5ba , #fbdd52 );
|
634
|
+
background-image: -o-linear-gradient( #fff5ba , #fbdd52 );
|
635
|
+
background-image: linear-gradient( #fff5ba , #fbdd52 );
|
636
|
+
}
|
637
|
+
.ui-btn-hover-e a.ui-link-inherit {
|
638
|
+
color: #333 ;
|
639
|
+
}
|
640
|
+
.ui-btn-down-e {
|
641
|
+
border: 1px solid #F2C43d ;
|
642
|
+
background: #fceda7 ;
|
643
|
+
font-weight: bold;
|
644
|
+
color: #111 ;
|
645
|
+
text-shadow: 0 1px 0 #ffffff ;
|
646
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #f8d94c ), to( #fadb4e ));
|
647
|
+
background-image: -webkit-linear-gradient( #f8d94c , #fadb4e );
|
648
|
+
background-image: -moz-linear-gradient( #f8d94c , #fadb4e );
|
649
|
+
background-image: -ms-linear-gradient( #f8d94c , #fadb4e );
|
650
|
+
background-image: -o-linear-gradient( #f8d94c , #fadb4e );
|
651
|
+
background-image: linear-gradient( #f8d94c , #fadb4e );
|
652
|
+
}
|
653
|
+
.ui-btn-down-e a.ui-link-inherit {
|
654
|
+
color: #333 ;
|
655
|
+
}
|
656
|
+
.ui-btn-up-e,
|
657
|
+
.ui-btn-hover-e,
|
658
|
+
.ui-btn-down-e {
|
659
|
+
font-family: Helvetica, Arial, sans-serif ;
|
660
|
+
text-decoration: none;
|
661
|
+
}
|
662
|
+
a.ui-link-inherit {
|
663
|
+
text-decoration: none !important;
|
664
|
+
}
|
665
|
+
.ui-btn-active {
|
666
|
+
border: 1px solid #2373a5 ;
|
667
|
+
background: #5393c5 ;
|
668
|
+
font-weight: bold;
|
669
|
+
color: #fff ;
|
670
|
+
cursor: pointer;
|
671
|
+
text-shadow: 0 1px 1px #145072 ;
|
672
|
+
text-decoration: none;
|
673
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from( #5393c5 ), to( #6facd5 ));
|
674
|
+
background-image: -webkit-linear-gradient( #5393c5 , #6facd5 );
|
675
|
+
background-image: -moz-linear-gradient( #5393c5 , #6facd5 );
|
676
|
+
background-image: -ms-linear-gradient( #5393c5 , #6facd5 );
|
677
|
+
background-image: -o-linear-gradient( #5393c5 , #6facd5 );
|
678
|
+
background-image: linear-gradient( #5393c5 , #6facd5 );
|
679
|
+
font-family: Helvetica, Arial, sans-serif ;
|
680
|
+
}
|
681
|
+
.ui-btn-active a.ui-link-inherit {
|
682
|
+
color: #fff ;
|
683
|
+
}
|
684
|
+
.ui-btn-inner {
|
685
|
+
border-top: 1px solid #fff;
|
686
|
+
border-color: rgba(255,255,255,.3);
|
687
|
+
}
|
688
|
+
.ui-corner-tl {
|
689
|
+
-moz-border-radius-topleft: .6em ;
|
690
|
+
-webkit-border-top-left-radius: .6em ;
|
691
|
+
border-top-left-radius: .6em ;
|
692
|
+
}
|
693
|
+
.ui-corner-tr {
|
694
|
+
-moz-border-radius-topright: .6em ;
|
695
|
+
-webkit-border-top-right-radius: .6em ;
|
696
|
+
border-top-right-radius: .6em ;
|
697
|
+
}
|
698
|
+
.ui-corner-bl {
|
699
|
+
-moz-border-radius-bottomleft: .6em ;
|
700
|
+
-webkit-border-bottom-left-radius: .6em ;
|
701
|
+
border-bottom-left-radius: .6em ;
|
702
|
+
}
|
703
|
+
.ui-corner-br {
|
704
|
+
-moz-border-radius-bottomright: .6em ;
|
705
|
+
-webkit-border-bottom-right-radius: .6em ;
|
706
|
+
border-bottom-right-radius: .6em ;
|
707
|
+
}
|
708
|
+
.ui-corner-top {
|
709
|
+
-moz-border-radius-topleft: .6em ;
|
710
|
+
-webkit-border-top-left-radius: .6em ;
|
711
|
+
border-top-left-radius: .6em ;
|
712
|
+
-moz-border-radius-topright: .6em ;
|
713
|
+
-webkit-border-top-right-radius: .6em ;
|
714
|
+
border-top-right-radius: .6em ;
|
715
|
+
}
|
716
|
+
.ui-corner-bottom {
|
717
|
+
-moz-border-radius-bottomleft: .6em ;
|
718
|
+
-webkit-border-bottom-left-radius: .6em ;
|
719
|
+
border-bottom-left-radius: .6em ;
|
720
|
+
-moz-border-radius-bottomright: .6em ;
|
721
|
+
-webkit-border-bottom-right-radius: .6em ;
|
722
|
+
border-bottom-right-radius: .6em ;
|
723
|
+
}
|
724
|
+
.ui-corner-right {
|
725
|
+
-moz-border-radius-topright: .6em ;
|
726
|
+
-webkit-border-top-right-radius: .6em ;
|
727
|
+
border-top-right-radius: .6em ;
|
728
|
+
-moz-border-radius-bottomright: .6em ;
|
729
|
+
-webkit-border-bottom-right-radius: .6em ;
|
730
|
+
border-bottom-right-radius: .6em ;
|
731
|
+
}
|
732
|
+
.ui-corner-left {
|
733
|
+
-moz-border-radius-topleft: .6em ;
|
734
|
+
-webkit-border-top-left-radius: .6em ;
|
735
|
+
border-top-left-radius: .6em ;
|
736
|
+
-moz-border-radius-bottomleft: .6em ;
|
737
|
+
-webkit-border-bottom-left-radius: .6em ;
|
738
|
+
border-bottom-left-radius: .6em ;
|
739
|
+
}
|
740
|
+
.ui-corner-all {
|
741
|
+
-moz-border-radius: .6em ;
|
742
|
+
-webkit-border-radius: .6em ;
|
743
|
+
border-radius: .6em ;
|
744
|
+
}
|
745
|
+
.ui-corner-none {
|
746
|
+
-moz-border-radius: 0;
|
747
|
+
-webkit-border-radius: 0;
|
748
|
+
border-radius: 0;
|
749
|
+
}
|
750
|
+
.ui-br {
|
751
|
+
border-bottom: rgb(130,130,130);
|
752
|
+
border-bottom: rgba(130,130,130,.3);
|
753
|
+
border-bottom-width: 1px;
|
754
|
+
border-bottom-style: solid;
|
755
|
+
}
|
756
|
+
.ui-disabled {
|
757
|
+
opacity: .3;
|
758
|
+
}
|
759
|
+
.ui-disabled,
|
760
|
+
.ui-disabled a {
|
761
|
+
cursor: default !important;
|
762
|
+
pointer-events: none;
|
763
|
+
}
|
764
|
+
.ui-disabled .ui-btn-text {
|
765
|
+
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=30)";
|
766
|
+
filter: alpha(opacity=30);
|
767
|
+
zoom: 1;
|
768
|
+
}
|
769
|
+
.ui-icon,
|
770
|
+
.ui-icon-searchfield:after {
|
771
|
+
background: #666 ;
|
772
|
+
background: rgba(0,0,0,.4) ;
|
773
|
+
background-image: url(../../images/vendor/icons-18-white.png) ;
|
774
|
+
background-repeat: no-repeat;
|
775
|
+
-moz-border-radius: 9px;
|
776
|
+
-webkit-border-radius: 9px;
|
777
|
+
border-radius: 9px;
|
778
|
+
}
|
779
|
+
.ui-icon-alt {
|
780
|
+
background: #fff;
|
781
|
+
background: rgba(255,255,255,.3);
|
782
|
+
background-image: url(../../images/vendor/icons-18-black.png);
|
783
|
+
background-repeat: no-repeat;
|
784
|
+
}
|
785
|
+
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
|
786
|
+
only screen and (min--moz-device-pixel-ratio: 1.5),
|
787
|
+
only screen and (min-resolution: 240dpi) {
|
788
|
+
|
789
|
+
.ui-icon-plus, .ui-icon-minus, .ui-icon-delete, .ui-icon-arrow-r,
|
790
|
+
.ui-icon-arrow-l, .ui-icon-arrow-u, .ui-icon-arrow-d, .ui-icon-check,
|
791
|
+
.ui-icon-gear, .ui-icon-refresh, .ui-icon-forward, .ui-icon-back,
|
792
|
+
.ui-icon-grid, .ui-icon-star, .ui-icon-alert, .ui-icon-info, .ui-icon-home, .ui-icon-search, .ui-icon-searchfield:after,
|
793
|
+
.ui-icon-checkbox-off, .ui-icon-checkbox-on, .ui-icon-radio-off, .ui-icon-radio-on {
|
794
|
+
background-image: url(../../images/vendor/icons-36-white.png);
|
795
|
+
-moz-background-size: 776px 18px;
|
796
|
+
-o-background-size: 776px 18px;
|
797
|
+
-webkit-background-size: 776px 18px;
|
798
|
+
background-size: 776px 18px;
|
799
|
+
}
|
800
|
+
.ui-icon-alt {
|
801
|
+
background-image: url(../../images/vendor/icons-36-black.png);
|
802
|
+
}
|
803
|
+
}
|
804
|
+
.ui-icon-plus {
|
805
|
+
background-position: -0 50%;
|
806
|
+
}
|
807
|
+
.ui-icon-minus {
|
808
|
+
background-position: -36px 50%;
|
809
|
+
}
|
810
|
+
.ui-icon-delete {
|
811
|
+
background-position: -72px 50%;
|
812
|
+
}
|
813
|
+
.ui-icon-arrow-r {
|
814
|
+
background-position: -108px 50%;
|
815
|
+
}
|
816
|
+
.ui-icon-arrow-l {
|
817
|
+
background-position: -144px 50%;
|
818
|
+
}
|
819
|
+
.ui-icon-arrow-u {
|
820
|
+
background-position: -180px 50%;
|
821
|
+
}
|
822
|
+
.ui-icon-arrow-d {
|
823
|
+
background-position: -216px 50%;
|
824
|
+
}
|
825
|
+
.ui-icon-check {
|
826
|
+
background-position: -252px 50%;
|
827
|
+
}
|
828
|
+
.ui-icon-gear {
|
829
|
+
background-position: -288px 50%;
|
830
|
+
}
|
831
|
+
.ui-icon-refresh {
|
832
|
+
background-position: -324px 50%;
|
833
|
+
}
|
834
|
+
.ui-icon-forward {
|
835
|
+
background-position: -360px 50%;
|
836
|
+
}
|
837
|
+
.ui-icon-back {
|
838
|
+
background-position: -396px 50%;
|
839
|
+
}
|
840
|
+
.ui-icon-grid {
|
841
|
+
background-position: -432px 50%;
|
842
|
+
}
|
843
|
+
.ui-icon-star {
|
844
|
+
background-position: -468px 50%;
|
845
|
+
}
|
846
|
+
.ui-icon-alert {
|
847
|
+
background-position: -504px 50%;
|
848
|
+
}
|
849
|
+
.ui-icon-info {
|
850
|
+
background-position: -540px 50%;
|
851
|
+
}
|
852
|
+
.ui-icon-home {
|
853
|
+
background-position: -576px 50%;
|
854
|
+
}
|
855
|
+
.ui-icon-search,
|
856
|
+
.ui-icon-searchfield:after {
|
857
|
+
background-position: -612px 50%;
|
858
|
+
}
|
859
|
+
.ui-icon-checkbox-off {
|
860
|
+
background-position: -684px 50%;
|
861
|
+
}
|
862
|
+
.ui-icon-checkbox-on {
|
863
|
+
background-position: -648px 50%;
|
864
|
+
}
|
865
|
+
.ui-icon-radio-off {
|
866
|
+
background-position: -756px 50%;
|
867
|
+
}
|
868
|
+
.ui-icon-radio-on {
|
869
|
+
background-position: -720px 50%;
|
870
|
+
}
|
871
|
+
.ui-checkbox .ui-icon {
|
872
|
+
-moz-border-radius: 3px;
|
873
|
+
-webkit-border-radius: 3px;
|
874
|
+
border-radius: 3px;
|
875
|
+
}
|
876
|
+
.ui-icon-checkbox-off,
|
877
|
+
.ui-icon-radio-off {
|
878
|
+
background-color: transparent;
|
879
|
+
}
|
880
|
+
.ui-checkbox-on .ui-icon,
|
881
|
+
.ui-radio-on .ui-icon {
|
882
|
+
background-color: #4596ce ;
|
883
|
+
}
|
884
|
+
.ui-icon-loading {
|
885
|
+
background: url(../../images/vendor/ajax-loader.gif);
|
886
|
+
background-size: 46px 46px;
|
887
|
+
}
|
888
|
+
.ui-btn-corner-tl {
|
889
|
+
-moz-border-radius-topleft: 1em ;
|
890
|
+
-webkit-border-top-left-radius: 1em ;
|
891
|
+
border-top-left-radius: 1em ;
|
892
|
+
}
|
893
|
+
.ui-btn-corner-tr {
|
894
|
+
-moz-border-radius-topright: 1em ;
|
895
|
+
-webkit-border-top-right-radius: 1em ;
|
896
|
+
border-top-right-radius: 1em ;
|
897
|
+
}
|
898
|
+
.ui-btn-corner-bl {
|
899
|
+
-moz-border-radius-bottomleft: 1em ;
|
900
|
+
-webkit-border-bottom-left-radius: 1em ;
|
901
|
+
border-bottom-left-radius: 1em ;
|
902
|
+
}
|
903
|
+
.ui-btn-corner-br {
|
904
|
+
-moz-border-radius-bottomright: 1em ;
|
905
|
+
-webkit-border-bottom-right-radius: 1em ;
|
906
|
+
border-bottom-right-radius: 1em ;
|
907
|
+
}
|
908
|
+
.ui-btn-corner-top {
|
909
|
+
-moz-border-radius-topleft: 1em ;
|
910
|
+
-webkit-border-top-left-radius: 1em ;
|
911
|
+
border-top-left-radius: 1em ;
|
912
|
+
-moz-border-radius-topright: 1em ;
|
913
|
+
-webkit-border-top-right-radius: 1em ;
|
914
|
+
border-top-right-radius: 1em ;
|
915
|
+
}
|
916
|
+
.ui-btn-corner-bottom {
|
917
|
+
-moz-border-radius-bottomleft: 1em ;
|
918
|
+
-webkit-border-bottom-left-radius: 1em ;
|
919
|
+
border-bottom-left-radius: 1em ;
|
920
|
+
-moz-border-radius-bottomright: 1em ;
|
921
|
+
-webkit-border-bottom-right-radius: 1em ;
|
922
|
+
border-bottom-right-radius: 1em ;
|
923
|
+
}
|
924
|
+
.ui-btn-corner-right {
|
925
|
+
-moz-border-radius-topright: 1em ;
|
926
|
+
-webkit-border-top-right-radius: 1em ;
|
927
|
+
border-top-right-radius: 1em ;
|
928
|
+
-moz-border-radius-bottomright: 1em ;
|
929
|
+
-webkit-border-bottom-right-radius: 1em ;
|
930
|
+
border-bottom-right-radius: 1em ;
|
931
|
+
}
|
932
|
+
.ui-btn-corner-left {
|
933
|
+
-moz-border-radius-topleft: 1em ;
|
934
|
+
-webkit-border-top-left-radius: 1em ;
|
935
|
+
border-top-left-radius: 1em ;
|
936
|
+
-moz-border-radius-bottomleft: 1em ;
|
937
|
+
-webkit-border-bottom-left-radius: 1em ;
|
938
|
+
border-bottom-left-radius: 1em ;
|
939
|
+
}
|
940
|
+
.ui-btn-corner-all {
|
941
|
+
-moz-border-radius: 1em ;
|
942
|
+
-webkit-border-radius: 1em ;
|
943
|
+
border-radius: 1em ;
|
944
|
+
}
|
945
|
+
.ui-corner-tl,
|
946
|
+
.ui-corner-tr,
|
947
|
+
.ui-corner-bl,
|
948
|
+
.ui-corner-br,
|
949
|
+
.ui-corner-top,
|
950
|
+
.ui-corner-bottom,
|
951
|
+
.ui-corner-right,
|
952
|
+
.ui-corner-left,
|
953
|
+
.ui-corner-all,
|
954
|
+
.ui-btn-corner-tl,
|
955
|
+
.ui-btn-corner-tr,
|
956
|
+
.ui-btn-corner-bl,
|
957
|
+
.ui-btn-corner-br,
|
958
|
+
.ui-btn-corner-top,
|
959
|
+
.ui-btn-corner-bottom,
|
960
|
+
.ui-btn-corner-right,
|
961
|
+
.ui-btn-corner-left,
|
962
|
+
.ui-btn-corner-all {
|
963
|
+
-webkit-background-clip: padding-box;
|
964
|
+
-moz-background-clip: padding;
|
965
|
+
background-clip: padding-box;
|
966
|
+
}
|
967
|
+
.ui-overlay {
|
968
|
+
background: #666;
|
969
|
+
opacity: .5;
|
970
|
+
filter: Alpha(Opacity=50);
|
971
|
+
position: absolute;
|
972
|
+
width: 100%;
|
973
|
+
height: 100%;
|
974
|
+
}
|
975
|
+
.ui-overlay-shadow {
|
976
|
+
-moz-box-shadow: 0px 0px 12px rgba(0,0,0,.6);
|
977
|
+
-webkit-box-shadow: 0px 0px 12px rgba(0,0,0,.6);
|
978
|
+
box-shadow: 0px 0px 12px rgba(0,0,0,.6);
|
979
|
+
}
|
980
|
+
.ui-shadow {
|
981
|
+
-moz-box-shadow: 0px 1px 4px rgba(0,0,0,.3) ;
|
982
|
+
-webkit-box-shadow: 0px 1px 4px rgba(0,0,0,.3) ;
|
983
|
+
box-shadow: 0px 1px 4px rgba(0,0,0,.3) ;
|
984
|
+
}
|
985
|
+
.ui-bar-a .ui-shadow,
|
986
|
+
.ui-bar-b .ui-shadow ,
|
987
|
+
.ui-bar-c .ui-shadow {
|
988
|
+
-moz-box-shadow: 0px 1px 0 rgba(255,255,255,.3);
|
989
|
+
-webkit-box-shadow: 0px 1px 0 rgba(255,255,255,.3);
|
990
|
+
box-shadow: 0px 1px 0 rgba(255,255,255,.3);
|
991
|
+
}
|
992
|
+
.ui-shadow-inset {
|
993
|
+
-moz-box-shadow: inset 0px 1px 4px rgba(0,0,0,.2);
|
994
|
+
-webkit-box-shadow: inset 0px 1px 4px rgba(0,0,0,.2);
|
995
|
+
box-shadow: inset 0px 1px 4px rgba(0,0,0,.2);
|
996
|
+
}
|
997
|
+
.ui-icon-shadow {
|
998
|
+
-moz-box-shadow: 0px 1px 0 rgba(255,255,255,.4) ;
|
999
|
+
-webkit-box-shadow: 0px 1px 0 rgba(255,255,255,.4) ;
|
1000
|
+
box-shadow: 0px 1px 0 rgba(255,255,255,.4) ;
|
1001
|
+
}
|
1002
|
+
.ui-btn:focus {
|
1003
|
+
outline: 0;
|
1004
|
+
}
|
1005
|
+
.ui-focus,
|
1006
|
+
.ui-btn:focus {
|
1007
|
+
-moz-box-shadow: 0px 0px 12px #387bbe ;
|
1008
|
+
-webkit-box-shadow: 0px 0px 12px #387bbe ;
|
1009
|
+
box-shadow: 0px 0px 12px #387bbe ;
|
1010
|
+
}
|
1011
|
+
.ui-mobile-nosupport-boxshadow * {
|
1012
|
+
-moz-box-shadow: none !important;
|
1013
|
+
-webkit-box-shadow: none !important;
|
1014
|
+
box-shadow: none !important;
|
1015
|
+
}
|
1016
|
+
.ui-mobile-nosupport-boxshadow .ui-focus,
|
1017
|
+
.ui-mobile-nosupport-boxshadow .ui-btn:focus {
|
1018
|
+
outline-width: 1px;
|
1019
|
+
outline-style: dotted;
|
1020
|
+
}
|
1021
|
+
.ui-mobile, .ui-mobile body { height: 99.9%; }
|
1022
|
+
.ui-mobile fieldset, .ui-page { padding: 0; margin: 0; }
|
1023
|
+
.ui-mobile a img, .ui-mobile fieldset { border-width: 0; }
|
1024
|
+
.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); }
|
1025
|
+
body.ui-mobile-viewport,
|
1026
|
+
div.ui-mobile-viewport { overflow-x: hidden; }
|
1027
|
+
.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; }
|
1028
|
+
.ui-mobile .ui-page-active { display: block; overflow: visible; }
|
1029
|
+
.ui-page { outline: none; }
|
1030
|
+
@media screen and (orientation: portrait){
|
1031
|
+
.ui-mobile, .ui-mobile .ui-page { min-height: 420px; }
|
1032
|
+
}
|
1033
|
+
@media screen and (orientation: landscape){
|
1034
|
+
.ui-mobile, .ui-mobile .ui-page { min-height: 300px; }
|
1035
|
+
}
|
1036
|
+
.ui-loading .ui-loader { display: block; }
|
1037
|
+
.ui-loader { display: none; z-index: 9999999; position: fixed; top: 50%; box-shadow: 0 1px 1px -1px #fff; left: 50%; border:0; }
|
1038
|
+
.ui-loader-default { background: none; opacity: .18; width: 46px; height: 46px; margin-left: -23px; margin-top: -23px; }
|
1039
|
+
.ui-loader-verbose { width: 200px; opacity: .88; height: auto; margin-left: -110px; margin-top: -43px; padding: 10px; }
|
1040
|
+
.ui-loader-default h1 { font-size: 0; width: 0; height: 0; overflow: hidden; }
|
1041
|
+
.ui-loader-verbose h1 { font-size: 16px; margin: 0; text-align: center; }
|
1042
|
+
.ui-loader .ui-icon { background-color: #000; display: block; margin: 0; width: 44px; height: 44px; padding: 1px; -webkit-border-radius: 36px; -moz-border-radius: 36px; border-radius: 36px; }
|
1043
|
+
.ui-loader-verbose .ui-icon { margin: 0 auto 10px; opacity: .75; }
|
1044
|
+
.ui-loader-textonly { padding: 15px; margin-left: -115px; }
|
1045
|
+
.ui-loader-textonly .ui-icon { display: none; }
|
1046
|
+
.ui-loader-fakefix { position: absolute; }
|
1047
|
+
.ui-mobile-rendering > * { visibility: hidden; }
|
1048
|
+
.ui-bar, .ui-body { position: relative; padding: .4em 15px; overflow: hidden; display: block; clear:both; }
|
1049
|
+
.ui-bar { font-size: 16px; margin: 0; }
|
1050
|
+
.ui-bar h1, .ui-bar h2, .ui-bar h3, .ui-bar h4, .ui-bar h5, .ui-bar h6 { margin: 0; padding: 0; font-size: 16px; display: inline-block; }
|
1051
|
+
.ui-header, .ui-footer { position: relative; overflow: hidden; border-left-width: 0; border-right-width: 0; }
|
1052
|
+
.ui-header .ui-btn-left,
|
1053
|
+
.ui-header .ui-btn-right { position: absolute; top: -5px; }
|
1054
|
+
.ui-header .ui-btn-left,
|
1055
|
+
.ui-footer .ui-btn-left { left: 5px; }
|
1056
|
+
.ui-header .ui-btn-right,
|
1057
|
+
.ui-footer .ui-btn-right { right: 5px; }
|
1058
|
+
.ui-footer .ui-btn-icon-notext,
|
1059
|
+
.ui-header .ui-btn-icon-notext { top: -1px; }
|
1060
|
+
.ui-header .ui-title, .ui-footer .ui-title { min-height: 1.1em; text-align: center; font-size: 16px; display: block; margin: .6em 30% .8em; padding: 0; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; outline: 0 !important; }
|
1061
|
+
.ui-footer .ui-title { margin: .6em 15px .8em; }
|
1062
|
+
.ui-content { border-width: 0; overflow: visible; overflow-x: hidden; padding: 15px; }
|
1063
|
+
.ui-icon { width: 18px; height: 18px; }
|
1064
|
+
.ui-mobile img {
|
1065
|
+
max-width: 100%;
|
1066
|
+
}
|
1067
|
+
.ui-nojs { position: absolute; left: -9999px; }
|
1068
|
+
.ui-hide-label label,
|
1069
|
+
.ui-hidden-accessible { position: absolute !important; left: -9999px; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
|
1070
|
+
.ui-mobile-viewport-transitioning,
|
1071
|
+
.ui-mobile-viewport-transitioning .ui-page {
|
1072
|
+
width: 100%;
|
1073
|
+
height: 100%;
|
1074
|
+
overflow: hidden;
|
1075
|
+
}
|
1076
|
+
.in {
|
1077
|
+
-webkit-animation-timing-function: ease-out;
|
1078
|
+
-webkit-animation-duration: 350ms;
|
1079
|
+
-moz-animation-timing-function: ease-out;
|
1080
|
+
-moz-animation-duration: 350ms;
|
1081
|
+
}
|
1082
|
+
.out {
|
1083
|
+
-webkit-animation-timing-function: ease-in;
|
1084
|
+
-webkit-animation-duration: 225ms;
|
1085
|
+
-moz-animation-timing-function: ease-in;
|
1086
|
+
-moz-animation-duration: 225;
|
1087
|
+
}
|
1088
|
+
@-webkit-keyframes fadein {
|
1089
|
+
from { opacity: 0; }
|
1090
|
+
to { opacity: 1; }
|
1091
|
+
}
|
1092
|
+
@-moz-keyframes fadein {
|
1093
|
+
from { opacity: 0; }
|
1094
|
+
to { opacity: 1; }
|
1095
|
+
}
|
1096
|
+
@-webkit-keyframes fadeout {
|
1097
|
+
from { opacity: 1; }
|
1098
|
+
to { opacity: 0; }
|
1099
|
+
}
|
1100
|
+
@-moz-keyframes fadeout {
|
1101
|
+
from { opacity: 1; }
|
1102
|
+
to { opacity: 0; }
|
1103
|
+
}
|
1104
|
+
.fade.out {
|
1105
|
+
opacity: 0;
|
1106
|
+
-webkit-animation-duration: 125ms;
|
1107
|
+
-webkit-animation-name: fadeout;
|
1108
|
+
-moz-animation-duration: 125ms;
|
1109
|
+
-moz-animation-name: fadeout;
|
1110
|
+
}
|
1111
|
+
.fade.in {
|
1112
|
+
opacity: 1;
|
1113
|
+
-webkit-animation-duration: 225ms;
|
1114
|
+
-webkit-animation-name: fadein;
|
1115
|
+
-moz-animation-duration: 225ms;
|
1116
|
+
-moz-animation-name: fadein;
|
1117
|
+
}
|
1118
|
+
.pop {
|
1119
|
+
-webkit-transform-origin: 50% 50%;
|
1120
|
+
-moz-transform-origin: 50% 50%;
|
1121
|
+
}
|
1122
|
+
.pop.in {
|
1123
|
+
-webkit-transform: scale(1);
|
1124
|
+
-moz-transform: scale(1);
|
1125
|
+
opacity: 1;
|
1126
|
+
-webkit-animation-name: popin;
|
1127
|
+
-moz-animation-name: popin;
|
1128
|
+
-webkit-animation-duration: 350ms;
|
1129
|
+
-moz-animation-duration: 350ms;
|
1130
|
+
}
|
1131
|
+
.pop.out {
|
1132
|
+
-webkit-animation-name: fadeout;
|
1133
|
+
-moz-animation-name: fadeout;
|
1134
|
+
opacity: 0;
|
1135
|
+
-webkit-animation-duration: 100ms;
|
1136
|
+
-moz-animation-duration: 100ms;
|
1137
|
+
}
|
1138
|
+
.pop.in.reverse {
|
1139
|
+
-webkit-animation-name: fadein;
|
1140
|
+
-moz-animation-name: fadein;
|
1141
|
+
}
|
1142
|
+
.pop.out.reverse {
|
1143
|
+
-webkit-transform: scale(.8);
|
1144
|
+
-moz-transform: scale(.8);
|
1145
|
+
-webkit-animation-name: popout;
|
1146
|
+
-moz-animation-name: popout;
|
1147
|
+
}
|
1148
|
+
@-webkit-keyframes popin {
|
1149
|
+
from {
|
1150
|
+
-webkit-transform: scale(.8);
|
1151
|
+
opacity: 0;
|
1152
|
+
}
|
1153
|
+
to {
|
1154
|
+
-webkit-transform: scale(1);
|
1155
|
+
opacity: 1;
|
1156
|
+
}
|
1157
|
+
}
|
1158
|
+
@-moz-keyframes popin {
|
1159
|
+
from {
|
1160
|
+
-moz-transform: scale(.8);
|
1161
|
+
opacity: 0;
|
1162
|
+
}
|
1163
|
+
to {
|
1164
|
+
-moz-transform: scale(1);
|
1165
|
+
opacity: 1;
|
1166
|
+
}
|
1167
|
+
}
|
1168
|
+
@-webkit-keyframes popout {
|
1169
|
+
from {
|
1170
|
+
-webkit-transform: scale(1);
|
1171
|
+
opacity: 1;
|
1172
|
+
}
|
1173
|
+
to {
|
1174
|
+
-webkit-transform: scale(.8);
|
1175
|
+
opacity: 0;
|
1176
|
+
}
|
1177
|
+
}
|
1178
|
+
@-moz-keyframes popout {
|
1179
|
+
from {
|
1180
|
+
-moz-transform: scale(1);
|
1181
|
+
opacity: 1;
|
1182
|
+
}
|
1183
|
+
to {
|
1184
|
+
-moz-transform: scale(.8);
|
1185
|
+
opacity: 0;
|
1186
|
+
}
|
1187
|
+
}
|
1188
|
+
.slide.out {
|
1189
|
+
-webkit-transform: translateX(-100%);
|
1190
|
+
-webkit-animation-name: slideouttoleft;
|
1191
|
+
-moz-transform: translateX(-100%);
|
1192
|
+
-moz-animation-name: slideouttoleft;
|
1193
|
+
-webkit-animation-duration: 225ms;
|
1194
|
+
-moz-animation-duration: 225ms;
|
1195
|
+
}
|
1196
|
+
.slide.in {
|
1197
|
+
-webkit-transform: translateX(0);
|
1198
|
+
-webkit-animation-name: fadein;
|
1199
|
+
-moz-transform: translateX(0);
|
1200
|
+
-moz-animation-name: fadein;
|
1201
|
+
-webkit-animation-duration: 200ms;
|
1202
|
+
-moz-animation-duration: 200ms;
|
1203
|
+
}
|
1204
|
+
.slide.out.reverse {
|
1205
|
+
-webkit-transform: translateX(100%);
|
1206
|
+
-webkit-animation-name: slideouttoright;
|
1207
|
+
-moz-transform: translateX(100%);
|
1208
|
+
-moz-animation-name: slideouttoright;
|
1209
|
+
-webkit-animation-duration: 200ms;
|
1210
|
+
-moz-animation-duration: 200ms;
|
1211
|
+
}
|
1212
|
+
.slide.in.reverse {
|
1213
|
+
-webkit-transform: translateX(0);
|
1214
|
+
-webkit-animation-name: fadein;
|
1215
|
+
-moz-transform: translateX(0);
|
1216
|
+
-moz-animation-name: fadein;
|
1217
|
+
-webkit-animation-duration: 200ms;
|
1218
|
+
-moz-animation-duration: 200ms;
|
1219
|
+
}
|
1220
|
+
@-webkit-keyframes slideouttoleft {
|
1221
|
+
from { -webkit-transform: translateX(0); }
|
1222
|
+
to { -webkit-transform: translateX(-100%); }
|
1223
|
+
}
|
1224
|
+
@-moz-keyframes slideouttoleft {
|
1225
|
+
from { -moz-transform: translateX(0); }
|
1226
|
+
to { -moz-transform: translateX(-100%); }
|
1227
|
+
}
|
1228
|
+
@-webkit-keyframes slideouttoright {
|
1229
|
+
from { -webkit-transform: translateX(0); }
|
1230
|
+
to { -webkit-transform: translateX(100%); }
|
1231
|
+
}
|
1232
|
+
@-moz-keyframes slideouttoright {
|
1233
|
+
from { -moz-transform: translateX(0); }
|
1234
|
+
to { -moz-transform: translateX(100%); }
|
1235
|
+
}
|
1236
|
+
.slidedown.out {
|
1237
|
+
-webkit-animation-name: fadeout;
|
1238
|
+
-moz-animation-name: fadeout;
|
1239
|
+
-webkit-animation-duration: 100ms;
|
1240
|
+
-moz-animation-duration: 100ms;
|
1241
|
+
}
|
1242
|
+
.slidedown.in {
|
1243
|
+
-webkit-transform: translateY(0);
|
1244
|
+
-webkit-animation-name: slideinfromtop;
|
1245
|
+
-moz-transform: translateY(0);
|
1246
|
+
-moz-animation-name: slideinfromtop;
|
1247
|
+
-webkit-animation-duration: 250ms;
|
1248
|
+
-moz-animation-duration: 250ms;
|
1249
|
+
}
|
1250
|
+
.slidedown.in.reverse {
|
1251
|
+
-webkit-animation-name: fadein;
|
1252
|
+
-moz-animation-name: fadein;
|
1253
|
+
-webkit-animation-duration: 150ms;
|
1254
|
+
-moz-animation-duration: 150ms;
|
1255
|
+
}
|
1256
|
+
.slidedown.out.reverse {
|
1257
|
+
-webkit-transform: translateY(-100%);
|
1258
|
+
-moz-transform: translateY(-100%);
|
1259
|
+
-webkit-animation-name: slideouttotop;
|
1260
|
+
-moz-animation-name: slideouttotop;
|
1261
|
+
-webkit-animation-duration: 200ms;
|
1262
|
+
-moz-animation-duration: 200ms;
|
1263
|
+
}
|
1264
|
+
@-webkit-keyframes slideinfromtop {
|
1265
|
+
from { -webkit-transform: translateY(-100%); }
|
1266
|
+
to { -webkit-transform: translateY(0); }
|
1267
|
+
}
|
1268
|
+
@-moz-keyframes slideinfromtop {
|
1269
|
+
from { -moz-transform: translateY(-100%); }
|
1270
|
+
to { -moz-transform: translateY(0); }
|
1271
|
+
}
|
1272
|
+
@-webkit-keyframes slideouttotop {
|
1273
|
+
from { -webkit-transform: translateY(0); }
|
1274
|
+
to { -webkit-transform: translateY(-100%); }
|
1275
|
+
}
|
1276
|
+
@-moz-keyframes slideouttotop {
|
1277
|
+
from { -moz-transform: translateY(0); }
|
1278
|
+
to { -moz-transform: translateY(-100%); }
|
1279
|
+
}
|
1280
|
+
.slideup.out {
|
1281
|
+
-webkit-animation-name: fadeout;
|
1282
|
+
-moz-animation-name: fadeout;
|
1283
|
+
-webkit-animation-duration: 100ms;
|
1284
|
+
-moz-animation-duration: 100ms;
|
1285
|
+
}
|
1286
|
+
.slideup.in {
|
1287
|
+
-webkit-transform: translateY(0);
|
1288
|
+
-webkit-animation-name: slideinfrombottom;
|
1289
|
+
-moz-transform: translateY(0);
|
1290
|
+
-moz-animation-name: slideinfrombottom;
|
1291
|
+
-webkit-animation-duration: 250ms;
|
1292
|
+
-moz-animation-duration: 250ms;
|
1293
|
+
}
|
1294
|
+
.slideup.in.reverse {
|
1295
|
+
-webkit-animation-name: fadein;
|
1296
|
+
-moz-animation-name: fadein;
|
1297
|
+
-webkit-animation-duration: 150ms;
|
1298
|
+
-moz-animation-duration: 150ms;
|
1299
|
+
}
|
1300
|
+
.slideup.out.reverse {
|
1301
|
+
-webkit-transform: translateY(100%);
|
1302
|
+
-moz-transform: translateY(100%);
|
1303
|
+
-webkit-animation-name: slideouttobottom;
|
1304
|
+
-moz-animation-name: slideouttobottom;
|
1305
|
+
-webkit-animation-duration: 200ms;
|
1306
|
+
-moz-animation-duration: 200ms;
|
1307
|
+
}
|
1308
|
+
@-webkit-keyframes slideinfrombottom {
|
1309
|
+
from { -webkit-transform: translateY(100%); }
|
1310
|
+
to { -webkit-transform: translateY(0); }
|
1311
|
+
}
|
1312
|
+
@-moz-keyframes slideinfrombottom {
|
1313
|
+
from { -moz-transform: translateY(100%); }
|
1314
|
+
to { -moz-transform: translateY(0); }
|
1315
|
+
}
|
1316
|
+
@-webkit-keyframes slideouttobottom {
|
1317
|
+
from { -webkit-transform: translateY(0); }
|
1318
|
+
to { -webkit-transform: translateY(100%); }
|
1319
|
+
}
|
1320
|
+
@-moz-keyframes slideouttobottom {
|
1321
|
+
from { -moz-transform: translateY(0); }
|
1322
|
+
to { -moz-transform: translateY(100%); }
|
1323
|
+
}
|
1324
|
+
.viewport-flip {
|
1325
|
+
-webkit-perspective: 1000;
|
1326
|
+
-moz-perspective: 1000;
|
1327
|
+
position: absolute;
|
1328
|
+
}
|
1329
|
+
.flip {
|
1330
|
+
-webkit-backface-visibility:hidden;
|
1331
|
+
-webkit-transform:translateX(0);
|
1332
|
+
-moz-backface-visibility:hidden;
|
1333
|
+
-moz-transform:translateX(0);
|
1334
|
+
}
|
1335
|
+
.flip.out {
|
1336
|
+
-webkit-transform: rotateY(-90deg) scale(.9);
|
1337
|
+
-webkit-animation-name: flipouttoleft;
|
1338
|
+
-webkit-animation-duration: 175ms;
|
1339
|
+
-moz-transform: rotateY(-90deg) scale(.9);
|
1340
|
+
-moz-animation-name: flipouttoleft;
|
1341
|
+
-moz-animation-duration: 175ms;
|
1342
|
+
}
|
1343
|
+
.flip.in {
|
1344
|
+
-webkit-animation-name: flipintoright;
|
1345
|
+
-webkit-animation-duration: 225ms;
|
1346
|
+
-moz-animation-name: flipintoright;
|
1347
|
+
-moz-animation-duration: 225ms;
|
1348
|
+
}
|
1349
|
+
.flip.out.reverse {
|
1350
|
+
-webkit-transform: rotateY(90deg) scale(.9);
|
1351
|
+
-webkit-animation-name: flipouttoright;
|
1352
|
+
-moz-transform: rotateY(90deg) scale(.9);
|
1353
|
+
-moz-animation-name: flipouttoright;
|
1354
|
+
}
|
1355
|
+
.flip.in.reverse {
|
1356
|
+
-webkit-animation-name: flipintoleft;
|
1357
|
+
-moz-animation-name: flipintoleft;
|
1358
|
+
}
|
1359
|
+
@-webkit-keyframes flipouttoleft {
|
1360
|
+
from { -webkit-transform: rotateY(0); }
|
1361
|
+
to { -webkit-transform: rotateY(-90deg) scale(.9); }
|
1362
|
+
}
|
1363
|
+
@-moz-keyframes flipouttoleft {
|
1364
|
+
from { -moz-transform: rotateY(0); }
|
1365
|
+
to { -moz-transform: rotateY(-90deg) scale(.9); }
|
1366
|
+
}
|
1367
|
+
@-webkit-keyframes flipouttoright {
|
1368
|
+
from { -webkit-transform: rotateY(0) ; }
|
1369
|
+
to { -webkit-transform: rotateY(90deg) scale(.9); }
|
1370
|
+
}
|
1371
|
+
@-moz-keyframes flipouttoright {
|
1372
|
+
from { -moz-transform: rotateY(0); }
|
1373
|
+
to { -moz-transform: rotateY(90deg) scale(.9); }
|
1374
|
+
}
|
1375
|
+
@-webkit-keyframes flipintoleft {
|
1376
|
+
from { -webkit-transform: rotateY(-90deg) scale(.9); }
|
1377
|
+
to { -webkit-transform: rotateY(0); }
|
1378
|
+
}
|
1379
|
+
@-moz-keyframes flipintoleft {
|
1380
|
+
from { -moz-transform: rotateY(-90deg) scale(.9); }
|
1381
|
+
to { -moz-transform: rotateY(0); }
|
1382
|
+
}
|
1383
|
+
@-webkit-keyframes flipintoright {
|
1384
|
+
from { -webkit-transform: rotateY(90deg) scale(.9); }
|
1385
|
+
to { -webkit-transform: rotateY(0); }
|
1386
|
+
}
|
1387
|
+
@-moz-keyframes flipintoright {
|
1388
|
+
from { -moz-transform: rotateY(90deg) scale(.9); }
|
1389
|
+
to { -moz-transform: rotateY(0); }
|
1390
|
+
}
|
1391
|
+
.viewport-turn {
|
1392
|
+
-webkit-perspective: 1000;
|
1393
|
+
-moz-perspective: 1000;
|
1394
|
+
position: absolute;
|
1395
|
+
}
|
1396
|
+
.turn {
|
1397
|
+
-webkit-backface-visibility:hidden;
|
1398
|
+
-webkit-transform:translateX(0);
|
1399
|
+
-webkit-transform-origin: 0;
|
1400
|
+
|
1401
|
+
-moz-backface-visibility:hidden;
|
1402
|
+
-moz-transform:translateX(0);
|
1403
|
+
-moz-transform-origin: 0;
|
1404
|
+
}
|
1405
|
+
.turn.out {
|
1406
|
+
-webkit-transform: rotateY(-90deg) scale(.9);
|
1407
|
+
-webkit-animation-name: flipouttoleft;
|
1408
|
+
-moz-transform: rotateY(-90deg) scale(.9);
|
1409
|
+
-moz-animation-name: flipouttoleft;
|
1410
|
+
-webkit-animation-duration: 125ms;
|
1411
|
+
-moz-animation-duration: 125ms;
|
1412
|
+
}
|
1413
|
+
.turn.in {
|
1414
|
+
-webkit-animation-name: flipintoright;
|
1415
|
+
-moz-animation-name: flipintoright;
|
1416
|
+
-webkit-animation-duration: 250ms;
|
1417
|
+
-moz-animation-duration: 250ms;
|
1418
|
+
|
1419
|
+
}
|
1420
|
+
.turn.out.reverse {
|
1421
|
+
-webkit-transform: rotateY(90deg) scale(.9);
|
1422
|
+
-webkit-animation-name: flipouttoright;
|
1423
|
+
-moz-transform: rotateY(90deg) scale(.9);
|
1424
|
+
-moz-animation-name: flipouttoright;
|
1425
|
+
}
|
1426
|
+
.turn.in.reverse {
|
1427
|
+
-webkit-animation-name: flipintoleft;
|
1428
|
+
-moz-animation-name: flipintoleft;
|
1429
|
+
}
|
1430
|
+
@-webkit-keyframes flipouttoleft {
|
1431
|
+
from { -webkit-transform: rotateY(0); }
|
1432
|
+
to { -webkit-transform: rotateY(-90deg) scale(.9); }
|
1433
|
+
}
|
1434
|
+
@-moz-keyframes flipouttoleft {
|
1435
|
+
from { -moz-transform: rotateY(0); }
|
1436
|
+
to { -moz-transform: rotateY(-90deg) scale(.9); }
|
1437
|
+
}
|
1438
|
+
@-webkit-keyframes flipouttoright {
|
1439
|
+
from { -webkit-transform: rotateY(0) ; }
|
1440
|
+
to { -webkit-transform: rotateY(90deg) scale(.9); }
|
1441
|
+
}
|
1442
|
+
@-moz-keyframes flipouttoright {
|
1443
|
+
from { -moz-transform: rotateY(0); }
|
1444
|
+
to { -moz-transform: rotateY(90deg) scale(.9); }
|
1445
|
+
}
|
1446
|
+
@-webkit-keyframes flipintoleft {
|
1447
|
+
from { -webkit-transform: rotateY(-90deg) scale(.9); }
|
1448
|
+
to { -webkit-transform: rotateY(0); }
|
1449
|
+
}
|
1450
|
+
@-moz-keyframes flipintoleft {
|
1451
|
+
from { -moz-transform: rotateY(-90deg) scale(.9); }
|
1452
|
+
to { -moz-transform: rotateY(0); }
|
1453
|
+
}
|
1454
|
+
@-webkit-keyframes flipintoright {
|
1455
|
+
from { -webkit-transform: rotateY(90deg) scale(.9); }
|
1456
|
+
to { -webkit-transform: rotateY(0); }
|
1457
|
+
}
|
1458
|
+
@-moz-keyframes flipintoright {
|
1459
|
+
from { -moz-transform: rotateY(90deg) scale(.9); }
|
1460
|
+
to { -moz-transform: rotateY(0); }
|
1461
|
+
}
|
1462
|
+
.flow {
|
1463
|
+
-webkit-transform-origin: 50% 30%;
|
1464
|
+
-moz-transform-origin: 50% 30%;
|
1465
|
+
-webkit-box-shadow: 0 0 20px rgba(0,0,0,.4);
|
1466
|
+
-moz-box-shadow: 0 0 20px rgba(0,0,0,.4);
|
1467
|
+
}
|
1468
|
+
.ui-dialog.flow {
|
1469
|
+
-webkit-transform-origin: none;
|
1470
|
+
-moz-transform-origin: none;
|
1471
|
+
-webkit-box-shadow: none;
|
1472
|
+
-moz-box-shadow: none;
|
1473
|
+
}
|
1474
|
+
.flow.out {
|
1475
|
+
-webkit-transform: translateX(-100%) scale(.7);
|
1476
|
+
-webkit-animation-name: flowouttoleft;
|
1477
|
+
-webkit-animation-timing-function: ease;
|
1478
|
+
-webkit-animation-duration: 350ms;
|
1479
|
+
-moz-transform: translateX(-100%) scale(.7);
|
1480
|
+
-moz-animation-name: flowouttoleft;
|
1481
|
+
-moz-animation-timing-function: ease;
|
1482
|
+
-moz-animation-duration: 350ms;
|
1483
|
+
}
|
1484
|
+
.flow.in {
|
1485
|
+
-webkit-transform: translateX(0) scale(1);
|
1486
|
+
-webkit-animation-name: flowinfromright;
|
1487
|
+
-webkit-animation-timing-function: ease;
|
1488
|
+
-webkit-animation-duration: 350ms;
|
1489
|
+
-moz-transform: translateX(0) scale(1);
|
1490
|
+
-moz-animation-name: flowinfromright;
|
1491
|
+
-moz-animation-timing-function: ease;
|
1492
|
+
-moz-animation-duration: 350ms;
|
1493
|
+
}
|
1494
|
+
.flow.out.reverse {
|
1495
|
+
-webkit-transform: translateX(100%);
|
1496
|
+
-webkit-animation-name: flowouttoright;
|
1497
|
+
-moz-transform: translateX(100%);
|
1498
|
+
-moz-animation-name: flowouttoright;
|
1499
|
+
}
|
1500
|
+
.flow.in.reverse {
|
1501
|
+
-webkit-animation-name: flowinfromleft;
|
1502
|
+
-moz-animation-name: flowinfromleft;
|
1503
|
+
}
|
1504
|
+
@-webkit-keyframes flowouttoleft {
|
1505
|
+
0% { -webkit-transform: translateX(0) scale(1); }
|
1506
|
+
60%, 70% { -webkit-transform: translateX(0) scale(.7); }
|
1507
|
+
100% { -webkit-transform: translateX(-100%) scale(.7); }
|
1508
|
+
}
|
1509
|
+
@-moz-keyframes flowouttoleft {
|
1510
|
+
0% { -moz-transform: translateX(0) scale(1); }
|
1511
|
+
60%, 70% { -moz-transform: translateX(0) scale(.7); }
|
1512
|
+
100% { -moz-transform: translateX(-100%) scale(.7); }
|
1513
|
+
}
|
1514
|
+
@-webkit-keyframes flowouttoright {
|
1515
|
+
0% { -webkit-transform: translateX(0) scale(1); }
|
1516
|
+
60%, 70% { -webkit-transform: translateX(0) scale(.7); }
|
1517
|
+
100% { -webkit-transform: translateX(100%) scale(.7); }
|
1518
|
+
}
|
1519
|
+
@-moz-keyframes flowouttoright {
|
1520
|
+
0% { -moz-transform: translateX(0) scale(1); }
|
1521
|
+
60%, 70% { -moz-transform: translateX(0) scale(.7); }
|
1522
|
+
100% { -moz-transform: translateX(100%) scale(.7); }
|
1523
|
+
}
|
1524
|
+
@-webkit-keyframes flowinfromleft {
|
1525
|
+
0% { -webkit-transform: translateX(-100%) scale(.7); }
|
1526
|
+
30%, 40% { -webkit-transform: translateX(0) scale(.7); }
|
1527
|
+
100% { -webkit-transform: translateX(0) scale(1); }
|
1528
|
+
}
|
1529
|
+
@-moz-keyframes flowinfromleft {
|
1530
|
+
0% { -moz-transform: translateX(-100%) scale(.7); }
|
1531
|
+
30%, 40% { -moz-transform: translateX(0) scale(.7); }
|
1532
|
+
100% { -moz-transform: translateX(0) scale(1); }
|
1533
|
+
}
|
1534
|
+
@-webkit-keyframes flowinfromright {
|
1535
|
+
0% { -webkit-transform: translateX(100%) scale(.7); }
|
1536
|
+
30%, 40% { -webkit-transform: translateX(0) scale(.7); }
|
1537
|
+
100% { -webkit-transform: translateX(0) scale(1); }
|
1538
|
+
}
|
1539
|
+
@-moz-keyframes flowinfromright {
|
1540
|
+
0% { -moz-transform: translateX(100%) scale(.7); }
|
1541
|
+
30%, 40% { -moz-transform: translateX(0) scale(.7); }
|
1542
|
+
100% { -moz-transform: translateX(0) scale(1); }
|
1543
|
+
}
|
1544
|
+
.ui-grid-a, .ui-grid-b, .ui-grid-c, .ui-grid-d { overflow: hidden; }
|
1545
|
+
.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;}
|
1546
|
+
.ui-grid-solo .ui-block-a { width: 100%; float: none; }
|
1547
|
+
.ui-grid-a .ui-block-a, .ui-grid-a .ui-block-b { width: 50%; }
|
1548
|
+
.ui-grid-a .ui-block-a { clear: left; }
|
1549
|
+
.ui-grid-b .ui-block-a, .ui-grid-b .ui-block-b, .ui-grid-b .ui-block-c { width: 33.333%; }
|
1550
|
+
.ui-grid-b .ui-block-a { clear: left; }
|
1551
|
+
.ui-grid-c .ui-block-a, .ui-grid-c .ui-block-b, .ui-grid-c .ui-block-c, .ui-grid-c .ui-block-d { width: 25%; }
|
1552
|
+
.ui-grid-c .ui-block-a { clear: left; }
|
1553
|
+
.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%; }
|
1554
|
+
.ui-grid-d .ui-block-a { clear: left; }
|
1555
|
+
.ui-header-fixed,
|
1556
|
+
.ui-footer-fixed {
|
1557
|
+
left: 0;
|
1558
|
+
right: 0;
|
1559
|
+
position: fixed;
|
1560
|
+
z-index: 1000;
|
1561
|
+
}
|
1562
|
+
.ui-header-fixed {
|
1563
|
+
top: 0;
|
1564
|
+
}
|
1565
|
+
.ui-footer-fixed {
|
1566
|
+
bottom: -1px;
|
1567
|
+
padding-bottom: 1px;
|
1568
|
+
}
|
1569
|
+
.ui-header-fullscreen,
|
1570
|
+
.ui-footer-fullscreen {
|
1571
|
+
opacity: .9;
|
1572
|
+
}
|
1573
|
+
.ui-page-header-fixed {
|
1574
|
+
padding-top: 2.5em;
|
1575
|
+
}
|
1576
|
+
.ui-page-footer-fixed {
|
1577
|
+
padding-bottom: 3em;
|
1578
|
+
}
|
1579
|
+
.ui-page-header-fullscreen .ui-content,
|
1580
|
+
.ui-page-footer-fullscreen .ui-content {
|
1581
|
+
padding: 0;
|
1582
|
+
}
|
1583
|
+
.ui-fixed-hidden {
|
1584
|
+
position: absolute;
|
1585
|
+
}
|
1586
|
+
.ui-page-header-fullscreen .ui-fixed-hidden,
|
1587
|
+
.ui-page-footer-fullscreen .ui-fixed-hidden {
|
1588
|
+
left: -99999em;
|
1589
|
+
}
|
1590
|
+
.ui-header-fixed .ui-btn,
|
1591
|
+
.ui-footer-fixed .ui-btn {
|
1592
|
+
z-index: 10;
|
1593
|
+
}
|
1594
|
+
.ui-navbar { overflow: hidden; }
|
1595
|
+
.ui-navbar ul, .ui-navbar-expanded ul { list-style:none; padding: 0; margin: 0; position: relative; display: block; border: 0;}
|
1596
|
+
.ui-navbar-collapsed ul { float: left; width: 75%; margin-right: -2px; }
|
1597
|
+
.ui-navbar-collapsed .ui-navbar-toggle { float: left; width: 25%; }
|
1598
|
+
.ui-navbar li.ui-navbar-truncate { position: absolute; left: -9999px; top: -9999px; }
|
1599
|
+
.ui-navbar li .ui-btn, .ui-navbar .ui-navbar-toggle .ui-btn { display: block; font-size: 12px; text-align: center; margin: 0; border-right-width: 0; max-width: 100%; }
|
1600
|
+
.ui-navbar li .ui-btn { margin-right: -1px; }
|
1601
|
+
.ui-navbar li .ui-btn:last-child { margin-right: 0; }
|
1602
|
+
.ui-header .ui-navbar li .ui-btn, .ui-header .ui-navbar .ui-navbar-toggle .ui-btn,
|
1603
|
+
.ui-footer .ui-navbar li .ui-btn, .ui-footer .ui-navbar .ui-navbar-toggle .ui-btn { border-top-width: 0; border-bottom-width: 0; }
|
1604
|
+
.ui-navbar .ui-btn-inner { padding-left: 2px; padding-right: 2px; }
|
1605
|
+
.ui-navbar-noicons li .ui-btn .ui-btn-inner, .ui-navbar-noicons .ui-navbar-toggle .ui-btn-inner { padding-top: .8em; padding-bottom: .9em; }
|
1606
|
+
.ui-navbar-expanded .ui-btn { margin: 0; font-size: 14px; }
|
1607
|
+
.ui-navbar-expanded .ui-btn-inner { padding-left: 5px; padding-right: 5px; }
|
1608
|
+
.ui-navbar-expanded .ui-btn-icon-top .ui-btn-inner { padding: 45px 5px 15px; text-align: center; }
|
1609
|
+
.ui-navbar-expanded .ui-btn-icon-top .ui-icon { top: 15px; }
|
1610
|
+
.ui-navbar-expanded .ui-btn-icon-bottom .ui-btn-inner { padding: 15px 5px 45px; text-align: center; }
|
1611
|
+
.ui-navbar-expanded .ui-btn-icon-bottom .ui-icon { bottom: 15px; }
|
1612
|
+
.ui-navbar-expanded li .ui-btn .ui-btn-inner { min-height: 2.5em; }
|
1613
|
+
.ui-navbar-expanded .ui-navbar-noicons .ui-btn .ui-btn-inner { padding-top: 1.8em; padding-bottom: 1.9em; }
|
1614
|
+
.ui-btn { display: block; text-align: center; cursor:pointer; position: relative; margin: .5em 5px; padding: 0; }
|
1615
|
+
.ui-mini { margin: .25em 5px; }
|
1616
|
+
.ui-btn-inner { padding: .6em 25px; display: block; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; position: relative; zoom: 1; }
|
1617
|
+
.ui-btn input, .ui-btn button { z-index: 2; }
|
1618
|
+
.ui-btn-left, .ui-btn-right, .ui-btn-inline { display: inline-block; }
|
1619
|
+
.ui-header .ui-btn-inner,
|
1620
|
+
.ui-footer .ui-btn-inner,
|
1621
|
+
.ui-mini .ui-btn-inner { font-size: 13px; padding: .55em 1.5em .5em; }
|
1622
|
+
.ui-header .ui-fullsize .ui-btn-inner,
|
1623
|
+
.ui-footer .ui-fullsize .ui-btn-inner { font-size: 16px; padding: .6em 25px; }
|
1624
|
+
.ui-btn-icon-notext { width: 24px; height: 24px; }
|
1625
|
+
.ui-btn-icon-notext .ui-btn-inner { padding: 2px 1px 2px 3px; }
|
1626
|
+
.ui-btn-text { position: relative; z-index: 1; }
|
1627
|
+
.ui-btn-icon-notext .ui-btn-text { position: absolute; left: -9999px; }
|
1628
|
+
.ui-btn-icon-left .ui-btn-inner { padding-left: 33px; }
|
1629
|
+
.ui-btn-icon-right .ui-btn-inner { padding-right: 33px; }
|
1630
|
+
.ui-btn-icon-top .ui-btn-inner { padding-top: 33px; }
|
1631
|
+
.ui-btn-icon-bottom .ui-btn-inner { padding-bottom: 33px; }
|
1632
|
+
.ui-btn-icon-notext .ui-icon { display: block; z-index: 0;}
|
1633
|
+
.ui-btn-icon-left .ui-icon, .ui-btn-icon-right .ui-icon { position: absolute; top: 50%; margin-top: -9px; }
|
1634
|
+
.ui-btn-icon-top .ui-icon, .ui-btn-icon-bottom .ui-icon { position: absolute; left: 50%; margin-left: -9px; }
|
1635
|
+
.ui-btn-icon-left .ui-icon { left: 10px; }
|
1636
|
+
.ui-btn-icon-right .ui-icon { right: 10px; }
|
1637
|
+
.ui-btn-icon-top .ui-icon { top: 10px; }
|
1638
|
+
.ui-btn-icon-bottom .ui-icon { bottom: 10px; }
|
1639
|
+
.ui-mini.ui-btn-icon-left .ui-icon { left: 8px; }
|
1640
|
+
.ui-mini.ui-btn-icon-right .ui-icon { right: 8px; }
|
1641
|
+
.ui-mini.ui-btn-icon-top .ui-icon { top: 8px; }
|
1642
|
+
.ui-mini.ui-btn-icon-bottom .ui-icon { bottom: 8px; }
|
1643
|
+
.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; text-indent: -9999px; }
|
1644
|
+
.ui-collapsible { margin: .5em 0; }
|
1645
|
+
.ui-collapsible-heading { font-size: 16px; display: block; margin: 0 -8px; padding: 0; border-width: 0 0 1px 0; position: relative; }
|
1646
|
+
.ui-collapsible-heading a { text-align: left; margin: 0; }
|
1647
|
+
.ui-collapsible-heading .ui-btn-inner,
|
1648
|
+
.ui-collapsible-heading .ui-btn-icon-left .ui-btn-inner { padding-left: 40px; }
|
1649
|
+
.ui-collapsible-heading .ui-btn-icon-right .ui-btn-inner { padding-left: 12px; padding-right: 40px; }
|
1650
|
+
.ui-collapsible-heading .ui-btn-icon-top .ui-btn-inner,
|
1651
|
+
.ui-collapsible-heading .ui-btn-icon-bottom .ui-btn-inner { padding-right: 40px; text-align: center; }
|
1652
|
+
.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; }
|
1653
|
+
.ui-collapsible-heading a span.ui-btn .ui-btn-inner { padding: 10px 0; }
|
1654
|
+
.ui-collapsible-heading a span.ui-btn .ui-icon { left: 0; margin-top: -10px; }
|
1655
|
+
.ui-collapsible-heading-status { position: absolute; top: -9999px; left:0px; }
|
1656
|
+
.ui-collapsible-content {
|
1657
|
+
display: block;
|
1658
|
+
margin: 0 -8px;
|
1659
|
+
padding: 10px 16px;
|
1660
|
+
border-top: none;
|
1661
|
+
background-image: none;
|
1662
|
+
font-weight: normal;
|
1663
|
+
}
|
1664
|
+
.ui-collapsible-content-collapsed { display: none; }
|
1665
|
+
.ui-collapsible-set { margin: .5em 0; }
|
1666
|
+
.ui-collapsible-set .ui-collapsible { margin: -1px 0 0; }
|
1667
|
+
.ui-controlgroup, fieldset.ui-controlgroup { padding: 0; margin: 0em 0 .5em; }
|
1668
|
+
.ui-bar .ui-controlgroup { margin: 0 .3em; }
|
1669
|
+
.ui-controlgroup-label { font-size: 16px; line-height: 1.4; font-weight: normal; margin: 0 0 .4em; }
|
1670
|
+
.ui-controlgroup-controls { display: block; width: 100%;}
|
1671
|
+
.ui-controlgroup li { list-style: none; }
|
1672
|
+
.ui-controlgroup-vertical .ui-btn,
|
1673
|
+
.ui-controlgroup-vertical .ui-checkbox, .ui-controlgroup-vertical .ui-radio { margin: 0; border-bottom-width: 0; }
|
1674
|
+
.ui-controlgroup-controls label.ui-select { position: absolute; left: -9999px; }
|
1675
|
+
.ui-controlgroup-vertical .ui-controlgroup-last { border-bottom-width: 1px; }
|
1676
|
+
.ui-controlgroup-horizontal { padding: 0; }
|
1677
|
+
.ui-controlgroup-horizontal .ui-btn, .ui-controlgroup-horizontal .ui-select { display: inline-block; margin: 0 -5px 0 0; }
|
1678
|
+
.ui-controlgroup-horizontal .ui-checkbox, .ui-controlgroup-horizontal .ui-radio { float: left; margin: 0 -1px 0 0; }
|
1679
|
+
.ui-controlgroup-horizontal .ui-checkbox .ui-btn, .ui-controlgroup-horizontal .ui-radio .ui-btn,
|
1680
|
+
.ui-controlgroup-horizontal .ui-checkbox:last-child, .ui-controlgroup-horizontal .ui-radio:last-child { margin-right: 0; }
|
1681
|
+
.ui-controlgroup-horizontal .ui-controlgroup-last { margin-right: 0; }
|
1682
|
+
.ui-controlgroup .ui-checkbox label, .ui-controlgroup .ui-radio label { font-size: 16px; }
|
1683
|
+
@media all and (min-width: 450px){
|
1684
|
+
.ui-field-contain .ui-controlgroup-label { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0; }
|
1685
|
+
.ui-field-contain .ui-controlgroup-controls { width: 60%; display: inline-block; }
|
1686
|
+
.ui-field-contain .ui-controlgroup .ui-select { width: 100%; }
|
1687
|
+
.ui-field-contain .ui-controlgroup-horizontal .ui-select { width: auto; }
|
1688
|
+
}
|
1689
|
+
.ui-dialog {
|
1690
|
+
background: none !important;
|
1691
|
+
}
|
1692
|
+
.ui-dialog-contain { width: 92.5%; max-width: 500px; margin: 10% auto 15px auto; padding: 0; }
|
1693
|
+
.ui-dialog .ui-header {
|
1694
|
+
margin-top: 15%;
|
1695
|
+
}
|
1696
|
+
.ui-dialog .ui-header,
|
1697
|
+
.ui-dialog .ui-content,
|
1698
|
+
.ui-dialog .ui-footer {
|
1699
|
+
display: block;
|
1700
|
+
position: relative;
|
1701
|
+
width: auto;
|
1702
|
+
}
|
1703
|
+
.ui-dialog .ui-header,
|
1704
|
+
.ui-dialog .ui-footer {
|
1705
|
+
z-index: 10;
|
1706
|
+
padding: 0;
|
1707
|
+
}
|
1708
|
+
.ui-dialog .ui-footer {
|
1709
|
+
padding: 0 15px;
|
1710
|
+
}
|
1711
|
+
.ui-dialog .ui-content {
|
1712
|
+
padding: 15px;
|
1713
|
+
}
|
1714
|
+
.ui-dialog {
|
1715
|
+
margin-top: -15px;
|
1716
|
+
}
|
1717
|
+
.ui-checkbox, .ui-radio { position:relative; margin: .2em 0 .5em; z-index: 1; }
|
1718
|
+
.ui-checkbox .ui-btn, .ui-radio .ui-btn { margin: 0; text-align: left; z-index: 2; }
|
1719
|
+
.ui-checkbox .ui-btn-inner, .ui-radio .ui-btn-inner { white-space: normal; }
|
1720
|
+
.ui-checkbox .ui-btn-icon-left .ui-btn-inner,.ui-radio .ui-btn-icon-left .ui-btn-inner { padding-left: 45px; }
|
1721
|
+
.ui-checkbox .ui-btn-icon-right .ui-btn-inner, .ui-radio .ui-btn-icon-right .ui-btn-inner { padding-right: 45px; }
|
1722
|
+
.ui-checkbox .ui-icon, .ui-radio .ui-icon { top: 1.1em; }
|
1723
|
+
.ui-checkbox .ui-btn-icon-left .ui-icon, .ui-radio .ui-btn-icon-left .ui-icon { left: 15px; }
|
1724
|
+
.ui-checkbox .ui-mini.ui-btn-icon-left .ui-icon, .ui-radio .ui-mini.ui-btn-icon-left .ui-icon { left: 12px; }
|
1725
|
+
.ui-checkbox .ui-btn-icon-right .ui-icon, .ui-radio .ui-btn-icon-right .ui-icon { right: 15px; }
|
1726
|
+
.ui-checkbox .ui-mini.ui-btn-icon-right .ui-icon, .ui-radio .ui-mini.ui-btn-icon-right .ui-icon { right: 12px; }
|
1727
|
+
.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; }
|
1728
|
+
.ui-field-contain, fieldset.ui-field-contain { padding: .8em 0; margin: 0; border-width: 0 0 1px 0; overflow: visible; }
|
1729
|
+
.ui-field-contain:first-child { border-top-width: 0; }
|
1730
|
+
.ui-header .ui-field-contain-left,
|
1731
|
+
.ui-header .ui-field-contain-right {
|
1732
|
+
position: absolute;
|
1733
|
+
top: 0;
|
1734
|
+
width: 25%;
|
1735
|
+
}
|
1736
|
+
.ui-header .ui-field-contain-left {
|
1737
|
+
left: 1em;
|
1738
|
+
}
|
1739
|
+
.ui-header .ui-field-contain-right {
|
1740
|
+
right: 1em;
|
1741
|
+
}
|
1742
|
+
@media all and (min-width: 450px){
|
1743
|
+
.ui-field-contain, .ui-mobile fieldset.ui-field-contain { border-width: 0; padding: 0; margin: 1em 0; }
|
1744
|
+
}
|
1745
|
+
.ui-select { display: block; position: relative; }
|
1746
|
+
.ui-select select { position: absolute; left: -9999px; top: -9999px; }
|
1747
|
+
.ui-select .ui-btn { overflow: hidden; opacity: 1; margin: 0; }
|
1748
|
+
.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; }
|
1749
|
+
.ui-select .ui-disabled { opacity: .3; }
|
1750
|
+
@-moz-document url-prefix() {.ui-select .ui-btn select { opacity: 0.0001; }}
|
1751
|
+
.ui-select .ui-btn select.ui-select-nativeonly { opacity: 1; text-indent: 0; }
|
1752
|
+
.ui-select .ui-btn-icon-right .ui-btn-inner { padding-right: 45px; }
|
1753
|
+
.ui-select .ui-btn-icon-right .ui-icon { right: 15px; }
|
1754
|
+
.ui-select .ui-mini.ui-btn-icon-right .ui-icon { right: 7px; }
|
1755
|
+
label.ui-select { font-size: 16px; line-height: 1.4; font-weight: normal; margin: 0 0 .3em; display: block; }
|
1756
|
+
.ui-select .ui-btn-text, .ui-selectmenu .ui-btn-text { display: block; min-height: 1em; overflow: hidden; }
|
1757
|
+
.ui-select .ui-btn-text { text-overflow: ellipsis; }
|
1758
|
+
.ui-selectmenu { position: absolute; padding: 0; z-index: 1100 !important; width: 80%; max-width: 350px; padding: 6px; }
|
1759
|
+
.ui-selectmenu .ui-listview { margin: 0; }
|
1760
|
+
.ui-selectmenu .ui-btn.ui-li-divider { cursor: default; }
|
1761
|
+
.ui-selectmenu-hidden { top: -9999px; left: -9999px; }
|
1762
|
+
.ui-selectmenu-screen { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 99; }
|
1763
|
+
.ui-screen-hidden, .ui-selectmenu-list .ui-li .ui-icon { display: none; }
|
1764
|
+
.ui-selectmenu-list .ui-li .ui-icon { display: block; }
|
1765
|
+
.ui-li.ui-selectmenu-placeholder { display: none; }
|
1766
|
+
.ui-selectmenu .ui-header .ui-title { margin: 0.6em 46px 0.8em; }
|
1767
|
+
@media all and (min-width: 450px){
|
1768
|
+
.ui-field-contain label.ui-select { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0; }
|
1769
|
+
.ui-field-contain .ui-select { width: 60%; display: inline-block; }
|
1770
|
+
}
|
1771
|
+
.ui-selectmenu .ui-header h1:after { content: '.'; visibility: hidden; }
|
1772
|
+
label.ui-input-text { font-size: 16px; line-height: 1.4; display: block; font-weight: normal; margin: 0 0 .3em; }
|
1773
|
+
input.ui-input-text, textarea.ui-input-text { background-image: none; padding: .4em; line-height: 1.4; font-size: 16px; display: block; width: 97%; outline: 0; }
|
1774
|
+
.ui-header input.ui-input-text,
|
1775
|
+
.ui-footer input.ui-input-text { margin-left: 1.25%; padding: .4em 1%; width: 95.5% }
|
1776
|
+
input.ui-input-text { -webkit-appearance: none; }
|
1777
|
+
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; }
|
1778
|
+
.ui-input-search { padding: 0 30px; background-image: none; position: relative; }
|
1779
|
+
.ui-icon-searchfield:after { position: absolute; left: 7px; top: 50%; margin-top: -9px; content: ""; width: 18px; height: 18px; opacity: .5; }
|
1780
|
+
.ui-input-search input.ui-input-text { border: none; width: 98%; padding: .4em 0; margin: 0; display: block; background: transparent none; outline: 0 !important; }
|
1781
|
+
.ui-input-search .ui-input-clear { position: absolute; right: 0; top: 50%; margin-top: -13px; }
|
1782
|
+
.ui-mini .ui-input-clear { right: -3px; }
|
1783
|
+
.ui-input-search .ui-input-clear-hidden { display: none; }
|
1784
|
+
input.ui-mini, .ui-mini input { font-size: 14px !important; }
|
1785
|
+
textarea.ui-mini { height: 45px; }
|
1786
|
+
@media all and (min-width: 450px){
|
1787
|
+
.ui-field-contain label.ui-input-text { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0 }
|
1788
|
+
.ui-field-contain input.ui-input-text,
|
1789
|
+
.ui-field-contain textarea.ui-input-text,
|
1790
|
+
.ui-field-contain .ui-input-search { width: 60%; display: inline-block; }
|
1791
|
+
.ui-field-contain .ui-input-search { width: 50%; }
|
1792
|
+
.ui-hide-label input.ui-input-text,
|
1793
|
+
.ui-hide-label textarea.ui-input-text,
|
1794
|
+
.ui-hide-label .ui-input-search { padding: .4em; width: 97%; }
|
1795
|
+
.ui-input-search input.ui-input-text { width: 98%; }
|
1796
|
+
}
|
1797
|
+
.ui-listview { margin: 0; counter-reset: listnumbering; }
|
1798
|
+
.ui-content .ui-listview { margin: -15px; }
|
1799
|
+
.ui-content .ui-listview-inset { margin: 1em 0; }
|
1800
|
+
.ui-listview, .ui-li { list-style:none; padding:0; }
|
1801
|
+
.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; }
|
1802
|
+
.ui-li .ui-btn-text a.ui-link-inherit { text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
|
1803
|
+
.ui-li-divider, .ui-li-static { padding: .5em 15px; font-size: 14px; font-weight: bold; }
|
1804
|
+
.ui-li-divider { counter-reset: listnumbering; }
|
1805
|
+
ol.ui-listview .ui-link-inherit:before, ol.ui-listview .ui-li-static:before, .ui-li-dec { font-size: .8em; display: inline-block; padding-right: .3em; font-weight: normal;counter-increment: listnumbering; content: counter(listnumbering) ". "; }
|
1806
|
+
ol.ui-listview .ui-li-jsnumbering:before { content: "" !important; }
|
1807
|
+
.ui-listview-inset .ui-li { border-right-width: 1px; border-left-width: 1px; }
|
1808
|
+
.ui-li:last-child, .ui-li.ui-field-contain:last-child { border-bottom-width: 1px; }
|
1809
|
+
.ui-li>.ui-btn-inner { display: block; position: relative; padding: 0; }
|
1810
|
+
.ui-li .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li { padding: .7em 15px .7em 15px; display: block; }
|
1811
|
+
.ui-li-has-thumb .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-thumb { min-height: 60px; padding-left: 100px; }
|
1812
|
+
.ui-li-has-icon .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-icon { min-height: 20px; padding-left: 40px; }
|
1813
|
+
.ui-li-has-count .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-count { padding-right: 45px; }
|
1814
|
+
.ui-li-has-arrow .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-arrow { padding-right: 30px; }
|
1815
|
+
.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; }
|
1816
|
+
.ui-li-has-count .ui-btn-text { padding-right: 15px; }
|
1817
|
+
.ui-li-heading { font-size: 16px; font-weight: bold; display: block; margin: .6em 0; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
|
1818
|
+
.ui-li-desc { font-size: 12px; font-weight: normal; display: block; margin: -.5em 0 .6em; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
|
1819
|
+
.ui-li-thumb, .ui-listview .ui-li-icon { position: absolute; left: 1px; top: 0; max-height: 80px; max-width: 80px; }
|
1820
|
+
.ui-listview .ui-li-icon { max-height: 40px; max-width: 40px; left: 10px; top: .9em; }
|
1821
|
+
.ui-li-thumb, .ui-listview .ui-li-icon, .ui-li-content { float: left; margin-right: 10px; }
|
1822
|
+
.ui-li-aside { float: right; width: 50%; text-align: right; margin: .3em 0; }
|
1823
|
+
@media all and (min-width: 480px){
|
1824
|
+
.ui-li-aside { width: 45%; }
|
1825
|
+
}
|
1826
|
+
.ui-li-divider { cursor: default; }
|
1827
|
+
.ui-li-has-alt .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-alt { padding-right: 95px; }
|
1828
|
+
.ui-li-has-count .ui-li-count { position: absolute; font-size: 11px; font-weight: bold; padding: .2em .5em; top: 50%; margin-top: -.9em; right: 38px; }
|
1829
|
+
.ui-li-divider .ui-li-count, .ui-li-static .ui-li-count { right: 10px; }
|
1830
|
+
.ui-li-has-alt .ui-li-count { right: 55px; }
|
1831
|
+
.ui-li-link-alt { position: absolute; width: 40px; height: 100%; border-width: 0; border-left-width: 1px; top: 0; right: 0; margin: 0; padding: 0; z-index: 2; }
|
1832
|
+
.ui-li-link-alt .ui-btn { overflow: hidden; position: absolute; right: 8px; top: 50%; margin: -11px 0 0 0; border-bottom-width: 1px; z-index: -1;}
|
1833
|
+
.ui-li-link-alt .ui-btn-inner { padding: 0; height: 100%; position: absolute; width: 100%; top: 0; left: 0;}
|
1834
|
+
.ui-li-link-alt .ui-btn .ui-icon { right: 50%; margin-right: -9px; }
|
1835
|
+
.ui-listview * .ui-btn-inner > .ui-btn > .ui-btn-inner { border-top: 0px; }
|
1836
|
+
.ui-listview-filter { border-width: 0; overflow: hidden; margin: -15px -15px 15px -15px }
|
1837
|
+
.ui-listview-filter .ui-input-search { margin: 5px; width: auto; display: block; }
|
1838
|
+
.ui-listview-filter-inset { margin: -15px -5px -15px -5px; background: transparent; }
|
1839
|
+
.ui-li.ui-screen-hidden{display:none;}
|
1840
|
+
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
|
1841
|
+
.ui-li .ui-btn-text { overflow: visible; }
|
1842
|
+
}
|
1843
|
+
label.ui-slider { font-size: 16px; line-height: 1.4; font-weight: normal; margin: 0 0 .3em; display: block; }
|
1844
|
+
input.ui-slider-input,
|
1845
|
+
.ui-field-contain input.ui-slider-input { display: inline-block; width: 50px; }
|
1846
|
+
select.ui-slider-switch { display: none; }
|
1847
|
+
div.ui-slider { position: relative; display: inline-block; overflow: visible; height: 15px; padding: 0; margin: 0 2% 0 20px; top: 4px; width: 65%; }
|
1848
|
+
div.ui-slider-mini { height: 12px; margin-left: 10px; }
|
1849
|
+
div.ui-slider-bg { border: none; height: 100%; padding-right: 8px; }
|
1850
|
+
.ui-controlgroup a.ui-slider-handle, a.ui-slider-handle { position: absolute; z-index: 1; top: 50%; width: 28px; height: 28px; margin-top: -15px; margin-left: -15px; outline: 0; }
|
1851
|
+
a.ui-slider-handle .ui-btn-inner { padding-left: 0; }
|
1852
|
+
div.ui-slider-mini a.ui-slider-handle { height: 14px; width: 14px; margin: -8px 0 0 -7px; }
|
1853
|
+
div.ui-slider-mini a.ui-slider-handle .ui-btn-inner { height: 30px; width: 30px; padding: 0; margin: -9px 0 0 -9px; }
|
1854
|
+
@media all and (min-width: 320px){
|
1855
|
+
.ui-field-contain label.ui-slider { vertical-align: top; display: inline-block; width: 20%; margin: 0 2% 0 0; }
|
1856
|
+
.ui-field-contain div.ui-slider { width: 43%; }
|
1857
|
+
.ui-field-contain div.ui-slider-switch { width: 5.5em; }
|
1858
|
+
}
|
1859
|
+
div.ui-slider-switch { height: 32px; margin-left: 0; width: 5em; }
|
1860
|
+
a.ui-slider-handle-snapping { -webkit-transition: left 70ms linear; -moz-transition: left 70ms linear; }
|
1861
|
+
div.ui-slider-switch .ui-slider-handle { margin-top: 1px; }
|
1862
|
+
.ui-slider-inneroffset { margin: 0 16px; position: relative; z-index: 1; }
|
1863
|
+
div.ui-slider-switch.ui-slider-mini { width: 4.5em; height: 29px; }
|
1864
|
+
div.ui-slider-switch.ui-slider-mini .ui-slider-inneroffset { margin: 0 15px 0 14px; }
|
1865
|
+
div.ui-slider-switch.ui-slider-mini .ui-slider-handle { width: 25px; height: 25px; margin: 1px 0 0 -13px; }
|
1866
|
+
div.ui-slider-switch.ui-slider-mini a.ui-slider-handle .ui-btn-inner { height: 30px; width: 30px; padding: 0; margin: 0; }
|
1867
|
+
span.ui-slider-label { position: absolute; text-align: center; width: 100%; overflow: hidden; font-size: 16px; top: 0; line-height: 2; min-height: 100%; border-width: 0; }
|
1868
|
+
.ui-slider-mini span.ui-slider-label { font-size: 14px; }
|
1869
|
+
span.ui-slider-label-a { z-index: 1; left: 0; text-indent: -1.5em; }
|
1870
|
+
span.ui-slider-label-b { z-index: 0; right: 0; text-indent: 1.5em;}
|
1871
|
+
.ui-slider-inline { width: 120px; display: inline-block; }
|
1872
|
+
|