jinda 0.6.5 → 0.6.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/generators/jinda/config_generator.rb +7 -0
- data/lib/generators/jinda/install_generator.rb +45 -42
- data/lib/generators/jinda/templates/app/assets/javascripts/application.js +1 -10
- data/lib/generators/jinda/templates/app/assets/stylesheets/application.css.scss +1 -20
- data/lib/jinda.rb +2 -1
- data/lib/jinda/date_helpers.rb +109 -0
- data/lib/jinda/{gemhelpers.rb → gem_helpers.rb} +0 -1
- data/lib/jinda/gen_class.rb +13 -0
- data/lib/jinda/gen_controller.rb +10 -0
- data/lib/jinda/gen_freemind.rb +33 -0
- data/lib/jinda/gen_helpers.rb +141 -0
- data/lib/jinda/gen_models.rb +137 -0
- data/lib/jinda/gen_runseq.rb +71 -0
- data/lib/jinda/gen_services.rb +90 -0
- data/lib/jinda/gen_xmain.rb +38 -0
- data/lib/jinda/get_app.rb +34 -0
- data/lib/jinda/helpers.rb +17 -998
- data/lib/jinda/init_vars.rb +36 -0
- data/lib/jinda/rake_views.rb +59 -0
- data/lib/jinda/refresh.rb +67 -0
- data/lib/jinda/themes.rb +163 -0
- data/lib/jinda/version.rb +1 -1
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/config/manifest.js +3 -0
- data/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/dummy/app/channels/application_cable/channel.rb +4 -0
- data/test/dummy/app/channels/application_cable/connection.rb +4 -0
- data/test/dummy/app/controllers/application_controller.rb +2 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/javascript/packs/application.js +15 -0
- data/test/dummy/app/jobs/application_job.rb +7 -0
- data/test/dummy/app/mailers/application_mailer.rb +4 -0
- data/test/dummy/app/models/application_record.rb +3 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/app/views/layouts/mailer.html.erb +13 -0
- data/test/dummy/app/views/layouts/mailer.text.erb +1 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/bin/setup +33 -0
- data/test/dummy/config.ru +5 -0
- data/test/dummy/config/application.rb +19 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/cable.yml +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +62 -0
- data/test/dummy/config/environments/production.rb +112 -0
- data/test/dummy/config/environments/test.rb +49 -0
- data/test/dummy/config/initializers/application_controller_renderer.rb +8 -0
- data/test/dummy/config/initializers/assets.rb +12 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/content_security_policy.rb +28 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +5 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +33 -0
- data/test/dummy/config/puma.rb +38 -0
- data/test/dummy/config/routes.rb +3 -0
- data/test/dummy/config/spring.rb +6 -0
- data/test/dummy/config/storage.yml +34 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/log/development.log +8 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/apple-touch-icon-precomposed.png +0 -0
- data/test/dummy/public/apple-touch-icon.png +0 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/tmp/development_secret.txt +1 -0
- data/test/integration/navigation_test.rb +7 -0
- data/test/jinda_test.rb +7 -0
- data/test/test_helper.rb +19 -0
- metadata +84 -141
- data/lib/generators/jinda/templates/app/assets/images/4dcity-old.ico +0 -0
- data/lib/generators/jinda/templates/app/assets/images/4dcity.ico +0 -0
- data/lib/generators/jinda/templates/app/assets/images/account.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/add.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/ajax-loader-circle.gif +0 -0
- data/lib/generators/jinda/templates/app/assets/images/ajax-loader.gif +0 -0
- data/lib/generators/jinda/templates/app/assets/images/anchor.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/application_double.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/application_form_edit.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/arrow_left.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/arrow_right.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/arrow_turn_left.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/arrow_turn_right.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/calendar.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/cancel.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/chart_bar.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/clock.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/cog.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/control_fastforward.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/control_play.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/cross.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/delete.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/external-link.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/facebook-continue-button.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/facebooksmall.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/favicon.ico +0 -0
- data/lib/generators/jinda/templates/app/assets/images/freemind(mm).png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/google-continue-button.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/help.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/highway-menu.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/highway.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/house.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/icons-18-black.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/icons-18-white.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/icons-36-black.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/icons-36-white.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/logo.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/logo_jinda.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/logout.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/new.gif +0 -0
- data/lib/generators/jinda/templates/app/assets/images/new.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/page.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/page_attach.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/page_green.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/page_output.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/page_pdf.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/pencil.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/printer.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/refresh.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/report.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/rssmall.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/tick.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/twittersmall.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/user.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/user_admin_gear.png +0 -0
- data/lib/generators/jinda/templates/app/assets/images/view_code.png +0 -0
- data/lib/generators/jinda/templates/app/assets/javascripts/application.js-jqm +0 -27
- data/lib/generators/jinda/templates/app/assets/javascripts/cable.js +0 -13
- data/lib/generators/jinda/templates/app/assets/javascripts/disable_enter_key.js +0 -10
- data/lib/generators/jinda/templates/app/assets/javascripts/iscroll-wrapper.js +0 -32
- data/lib/generators/jinda/templates/app/assets/javascripts/iscroll.js +0 -1084
- data/lib/generators/jinda/templates/app/assets/javascripts/jinda.js +0 -14
- data/lib/generators/jinda/templates/app/assets/javascripts/jquery.mobile-1.2.1.js +0 -9272
- data/lib/generators/jinda/templates/app/assets/javascripts/jquery.mobile.datebox.js +0 -1778
- data/lib/generators/jinda/templates/app/assets/javascripts/jquery.mobile.splitview.js +0 -695
- data/lib/generators/jinda/templates/app/assets/stylesheets/app.scss +0 -90
- data/lib/generators/jinda/templates/app/assets/stylesheets/articles.scss +0 -94
- data/lib/generators/jinda/templates/app/assets/stylesheets/fonts/sarabun.eot +0 -0
- data/lib/generators/jinda/templates/app/assets/stylesheets/fonts/sarabun.ttf +0 -0
- data/lib/generators/jinda/templates/app/assets/stylesheets/fonts/sarabun.woff +0 -0
- data/lib/generators/jinda/templates/app/assets/stylesheets/fonts/sarabun_bold.ttf +0 -0
- data/lib/generators/jinda/templates/app/assets/stylesheets/fonts/sarabun_bolditalic.ttf +0 -0
- data/lib/generators/jinda/templates/app/assets/stylesheets/fonts/sarabun_italic.ttf +0 -0
- data/lib/generators/jinda/templates/app/assets/stylesheets/fonts/thsarabunnew-webfont.eot +0 -0
- data/lib/generators/jinda/templates/app/assets/stylesheets/fonts/thsarabunnew-webfont.ttf +0 -0
- data/lib/generators/jinda/templates/app/assets/stylesheets/fonts/thsarabunnew-webfont.woff +0 -0
- data/lib/generators/jinda/templates/app/assets/stylesheets/fonts/thsarabunnew.css +0 -47
- data/lib/generators/jinda/templates/app/assets/stylesheets/fonts/thsarabunnew_bold-webfont.eot +0 -0
- data/lib/generators/jinda/templates/app/assets/stylesheets/fonts/thsarabunnew_bold-webfont.ttf +0 -0
- data/lib/generators/jinda/templates/app/assets/stylesheets/fonts/thsarabunnew_bold-webfont.woff +0 -0
- data/lib/generators/jinda/templates/app/assets/stylesheets/fonts/thsarabunnew_bolditalic-webfont.eot +0 -0
- data/lib/generators/jinda/templates/app/assets/stylesheets/fonts/thsarabunnew_bolditalic-webfont.ttf +0 -0
- data/lib/generators/jinda/templates/app/assets/stylesheets/fonts/thsarabunnew_bolditalic-webfont.woff +0 -0
- data/lib/generators/jinda/templates/app/assets/stylesheets/fonts/thsarabunnew_italic-webfont.eot +0 -0
- data/lib/generators/jinda/templates/app/assets/stylesheets/fonts/thsarabunnew_italic-webfont.ttf +0 -0
- data/lib/generators/jinda/templates/app/assets/stylesheets/fonts/thsarabunnew_italic-webfont.woff +0 -0
- data/lib/generators/jinda/templates/app/assets/stylesheets/images/ajax-loader.gif +0 -0
- data/lib/generators/jinda/templates/app/assets/stylesheets/images/button_black.png +0 -0
- data/lib/generators/jinda/templates/app/assets/stylesheets/images/button_blue.png +0 -0
- data/lib/generators/jinda/templates/app/assets/stylesheets/images/button_red.png +0 -0
- data/lib/generators/jinda/templates/app/assets/stylesheets/images/icons-18-black.png +0 -0
- data/lib/generators/jinda/templates/app/assets/stylesheets/images/icons-18-white.png +0 -0
- data/lib/generators/jinda/templates/app/assets/stylesheets/images/icons-36-black.png +0 -0
- data/lib/generators/jinda/templates/app/assets/stylesheets/images/icons-36-white.png +0 -0
- data/lib/generators/jinda/templates/app/assets/stylesheets/images/indicator.gif +0 -0
- data/lib/generators/jinda/templates/app/assets/stylesheets/jinda.css +0 -52
- data/lib/generators/jinda/templates/app/assets/stylesheets/jquery.mobile-1.2.1.css +0 -2339
- data/lib/generators/jinda/templates/app/assets/stylesheets/jquery.mobile.datebox.css +0 -65
- data/lib/generators/jinda/templates/app/assets/stylesheets/jquery.mobile.grids.collapsible.css +0 -122
- data/lib/generators/jinda/templates/app/assets/stylesheets/jquery.mobile.splitview.css +0 -128
- data/lib/generators/jinda/templates/app/assets/stylesheets/kul-4.2.css +0 -1516
- data/lib/generators/jinda/templates/app/assets/stylesheets/kul-4.2.min.css +0 -11
- data/lib/generators/jinda/templates/app/assets/stylesheets/modules.scss +0 -84
- data/lib/generators/jinda/templates/app/assets/stylesheets/sarabun.css +0 -37
- data/lib/generators/jinda/templates/app/assets/stylesheets/social.scss +0 -133
- data/lib/generators/jinda/templates/app/controllers/concerns/jinda_general_concern.rb +0 -179
- data/lib/generators/jinda/templates/app/controllers/concerns/jinda_run_concern.rb +0 -365
- data/lib/generators/jinda/templates/app/controllers/jinda_org/devs_controller.rb +0 -2
- data/lib/generators/jinda/templates/app/controllers/jinda_org/jinda_controller.rb +0 -66
- data/lib/generators/jinda/templates/app/views/jinda/_activity.md +0 -10
- data/lib/generators/jinda/templates/app/views/jinda/_menu.haml +0 -27
- data/lib/generators/jinda/templates/app/views/jinda/_menu_mm.haml +0 -44
- data/lib/generators/jinda/templates/app/views/jinda/_model.md +0 -5
- data/lib/generators/jinda/templates/app/views/jinda/_modul.md +0 -9
- data/lib/generators/jinda/templates/app/views/jinda/_pending_home.haml +0 -5
- data/lib/generators/jinda/templates/app/views/jinda/_pending_page.haml +0 -24
- data/lib/generators/jinda/templates/app/views/jinda/_service.md +0 -24
- data/lib/generators/jinda/templates/app/views/jinda/_static.haml +0 -13
- data/lib/generators/jinda/templates/app/views/jinda/doc-thai.md +0 -37
- data/lib/generators/jinda/templates/app/views/jinda/doc.md +0 -36
- data/lib/generators/jinda/templates/app/views/jinda/error_logs.haml +0 -22
- data/lib/generators/jinda/templates/app/views/jinda/feed.rss.builder +0 -27
- data/lib/generators/jinda/templates/app/views/jinda/help.haml +0 -20
- data/lib/generators/jinda/templates/app/views/jinda/index.html.haml +0 -53
- data/lib/generators/jinda/templates/app/views/jinda/logs.haml +0 -22
- data/lib/generators/jinda/templates/app/views/jinda/notice_logs.haml +0 -18
- data/lib/generators/jinda/templates/app/views/jinda/pending.haml +0 -1
- data/lib/generators/jinda/templates/app/views/jinda/run_form.haml +0 -42
- data/lib/generators/jinda/templates/app/views/jinda/run_output.haml +0 -38
- data/lib/generators/jinda/templates/app/views/jinda/search.haml +0 -20
- data/lib/generators/jinda/templates/app/views/jinda/status.haml +0 -61
@@ -1,65 +0,0 @@
|
|
1
|
-
/* jQuery-Mobile-DateBox Plugin
|
2
|
-
* contains all plugin styles
|
3
|
-
*/
|
4
|
-
|
5
|
-
/* Base input element Styles */
|
6
|
-
|
7
|
-
/*.ui-input-datebox { width: 95%; background-image: none; padding: .4em; line-height: 1.4; font-size: 16px; display: block; width: 95%; padding-top: 0px; padding-bottom: 0px; padding-right: .4em; }*/
|
8
|
-
.ui-input-datebox { width: 60%; background-image: none; padding: .4em; line-height: 1.4; font-size: 16px; display: inline-block; padding-top: 0px; padding-bottom: 0px; padding-right: .4em; }
|
9
|
-
.ui-input-datebox input { width: 70% !important; border: 1px solid transparent !important; vertical-align: middle; display: inline-block !important; background-color: transparent; zoom: 1; *display: inline; }
|
10
|
-
.ui-input-datebox input:focus { outline: none;}
|
11
|
-
.min-width-480px .ui-input-datebox { width: 60%; display: inline-block; zoom:1; *display: inline; }
|
12
|
-
|
13
|
-
/* Calendar Mode Styles */
|
14
|
-
|
15
|
-
.ui-datebox-gridheader { text-align: center; }
|
16
|
-
.ui-datebox-gridheader h4 { text-align: center; display: inline-block; margin-top: 10px; margin-bottom: 10px; zoom:1; *display: inline;}
|
17
|
-
.ui-datebox-gridplus { float: right; }
|
18
|
-
.ui-datebox-gridminus { float: left; }
|
19
|
-
.ui-datebox-gridrow { margin-left: 5px; margin-right: 5px; }
|
20
|
-
.ui-datebox-grid { clear: both; margin-bottom: 5px; }
|
21
|
-
.ui-datebox-griddate { width: 36px; height: 30px; display: inline-block; vertical-align: middle; text-align: center; line-height: 30px; font-weight: bold; font-size: 12px; zoom:1; *display: inline;}
|
22
|
-
.ui-datebox-griddate-empty { border: 1px solid transparent; color: #888; }
|
23
|
-
.ui-datebox-griddate-label { height: 15px !important; line-height: 15px !important; color: black;}
|
24
|
-
|
25
|
-
/* Android Mode Styles */
|
26
|
-
|
27
|
-
.ui-datebox-header h4 { margin-top: 5px; margin-bottom: 5px; text-align: center; }
|
28
|
-
.ui-datebox-controls { text-align: center; }
|
29
|
-
.ui-datebox-controls div { width: 77px; text-align: center; display: inline-block; zoom: 1; *display: inline;}
|
30
|
-
.ui-datebox-scontrols { text-align: center; }
|
31
|
-
.ui-datebox-scontrols div { width: 55px; text-align: center; display: inline-block; zoom: 1; *display: inline;}
|
32
|
-
.ui-datebox-scontrols .ui-datebox-sinput { width: 68px; }
|
33
|
-
.ui-datebox-scontrols .ui-datebox-sinput input { width: 48px; text-align: center; }
|
34
|
-
.ui-datebox-input { width: 74px !important; margin-left: 1px; margin-right: 1px; text-align: center !important; display: inline-block !important; zoom:1; *display: inline; }
|
35
|
-
|
36
|
-
/* Slide Mode Styles */
|
37
|
-
|
38
|
-
.ui-datebox-sliderow-d { margin-bottom: 5px; text-align: center; height: 40px; width: 280px; overflow: hidden;}
|
39
|
-
.ui-datebox-sliderow-ym { margin-bottom: 5px; text-align: center; height: 32px; width: 280px; overflow: hidden;}
|
40
|
-
.ui-datebox-sliderow-hi { text-align: center; height: 32px; width: 280px; overflow: hidden;}
|
41
|
-
.ui-datebox-sliderow-int { display: inline-block; white-space: nowrap;}
|
42
|
-
|
43
|
-
.ui-datebox-slideyear { text-align: center; display: inline-block; zoom:1; *display:inline; width: 84px; vertical-align: middle; line-height: 30px; height: 30px; font-size: 14px; font-weight: bold; }
|
44
|
-
.ui-datebox-slidemonth { text-align: center; display: inline-block; zoom:1; *display:inline; width: 51px; vertical-align: middle; line-height: 30px; height: 30px; font-size: 12px; font-weight: bold; }
|
45
|
-
.ui-datebox-slideday { text-align: center; display: inline-block; zoom:1; *display:inline; width: 32px; vertical-align: middle; line-height: 20px; height: 38px; font-size: 14px; font-weight: bold; }
|
46
|
-
.ui-datebox-slidehour { text-align: center; display: inline-block; zoom:1; *display:inline; width: 32px; vertical-align: middle; line-height: 22px; height: 24px; font-size: 14px; font-weight: bold; }
|
47
|
-
.ui-datebox-slidemins { text-align: center; display: inline-block; zoom:1; *display:inline; width: 32px; vertical-align: middle; line-height: 22px; height: 24px; font-size: 14px; font-weight: bold; }
|
48
|
-
.ui-datebox-slidearrow { text-align: center; display: inline-block; zoom:1; *display:inline; width: 10px; vertical-align: middle; line-height: 38px; height: 38px; font-size: 10px; font-weight: bold; }
|
49
|
-
.ui-datebox-slidewday { font-size: 10px; font-weight: normal; }
|
50
|
-
|
51
|
-
/* Flip Mode Styles */
|
52
|
-
.ui-datebox-flipcontent { text-align: center; height: 125px; margin-bottom: -40px;}
|
53
|
-
.ui-datebox-flipcontent div { margin-left: 3px; margin-right: 3px; width: 77px; height: 120px; display: inline-block; text-align: center; zoom: 1; *display: inline; overflow: hidden;}
|
54
|
-
.ui-datebox-flipcenter { border: 1px solid #eee; height: 40px; margin-left: 10px; margin-right: 10px; position: relative; top: -45px;}
|
55
|
-
.ui-datebox-flipcontent ul { list-style-type: none; display: inline; }
|
56
|
-
.ui-datebox-flipcontent li { height: 30px; }
|
57
|
-
.ui-datebox-flipcontent li span { margin-top: 7px; display: block; }
|
58
|
-
/* Shared Styles */
|
59
|
-
|
60
|
-
.ui-datebox-container { border: 5px solid #111 !important; width: 280px; }
|
61
|
-
.ui-datebox-screen { position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; }
|
62
|
-
.ui-datebox-screen-modal { background-color: black; -moz-opacity: 0.8; opacity:.80; filter: alpha(opacity=80); }
|
63
|
-
.ui-datebox-hidden { display: none; }
|
64
|
-
.ui-dialog .ui-datebox-container { border: none !important; }
|
65
|
-
.ui-dialog-datebox .ui-content { padding: 5px !important;}
|
data/lib/generators/jinda/templates/app/assets/stylesheets/jquery.mobile.grids.collapsible.css
DELETED
@@ -1,122 +0,0 @@
|
|
1
|
-
/* my addition to supply convertible grids based on www.cssgrid.net by Andy Taylor */
|
2
|
-
/* ==================================================================================================================== */
|
3
|
-
/* ! The 1140px Grid V2 by Andy Taylor \ http://cssgrid.net \ http://www.twitter.com/andytlr \ http://www.andytlr.com */
|
4
|
-
/* ==================================================================================================================== */
|
5
|
-
.row, .fixedrow {
|
6
|
-
width: 100%;
|
7
|
-
margin: 0 auto;
|
8
|
-
overflow: hidden;
|
9
|
-
}
|
10
|
-
|
11
|
-
.span1, .span2, .span3, .span4, .span5, .span6, .span7, .span8, .span9, .span10, .span11 {
|
12
|
-
margin-right: 3.8%;
|
13
|
-
float: left;
|
14
|
-
min-height: 1px;
|
15
|
-
}
|
16
|
-
|
17
|
-
.row .span1, .fixedrow .span1 {
|
18
|
-
width: 4.85%;
|
19
|
-
}
|
20
|
-
|
21
|
-
.row .span2, .fixedrow .span2 {
|
22
|
-
width: 13.45%;
|
23
|
-
}
|
24
|
-
|
25
|
-
.row .span3, .fixedrow .span3 {
|
26
|
-
width: 22.05%;
|
27
|
-
}
|
28
|
-
|
29
|
-
.row .span4, .fixedrow .span4 {
|
30
|
-
width: 30.75%;
|
31
|
-
}
|
32
|
-
|
33
|
-
.row .span5, .fixedrow .span5 {
|
34
|
-
width: 39.45%;
|
35
|
-
}
|
36
|
-
|
37
|
-
.row .span6, .fixedrow .span6 {
|
38
|
-
width: 48%;
|
39
|
-
}
|
40
|
-
|
41
|
-
.row .span7, .fixedrow .span7 {
|
42
|
-
width: 56.75%;
|
43
|
-
}
|
44
|
-
|
45
|
-
.row .span8, .fixedrow .span8 {
|
46
|
-
width: 65.4%;
|
47
|
-
}
|
48
|
-
|
49
|
-
.row .span9, .fixedrow .span9 {
|
50
|
-
width: 74.05%;
|
51
|
-
}
|
52
|
-
|
53
|
-
.row .span10, .fixedrow .span10 {
|
54
|
-
width: 82.7%;
|
55
|
-
}
|
56
|
-
|
57
|
-
.row .span11, .fixedrow .span11 {
|
58
|
-
width: 91.35%;
|
59
|
-
}
|
60
|
-
|
61
|
-
.row .span12, .fixedrow .span12 {
|
62
|
-
width: 100%;
|
63
|
-
float: left;
|
64
|
-
}
|
65
|
-
|
66
|
-
.row .prepend1, .fixedrow .prepend1 {
|
67
|
-
|
68
|
-
}
|
69
|
-
|
70
|
-
.last {
|
71
|
-
margin-right: 0px;
|
72
|
-
}
|
73
|
-
|
74
|
-
img, object, embed {
|
75
|
-
max-width: 100%;
|
76
|
-
}
|
77
|
-
|
78
|
-
img {
|
79
|
-
height: auto;
|
80
|
-
}
|
81
|
-
|
82
|
-
|
83
|
-
/* touchscreens */
|
84
|
-
@media (min-width:768px) {
|
85
|
-
.touch body {
|
86
|
-
font-size: 1em;
|
87
|
-
line-height: normal;
|
88
|
-
}
|
89
|
-
|
90
|
-
|
91
|
-
/* Smaller screens */
|
92
|
-
body {
|
93
|
-
font-size: 0.9em;
|
94
|
-
line-height: normal;
|
95
|
-
}
|
96
|
-
}
|
97
|
-
|
98
|
-
/* Mobile */
|
99
|
-
@media (max-width:480px) {
|
100
|
-
body {
|
101
|
-
font-size: 1em;
|
102
|
-
-webkit-text-size-adjust: none;
|
103
|
-
}
|
104
|
-
|
105
|
-
.row, body {
|
106
|
-
width: 100%;
|
107
|
-
min-width: 0;
|
108
|
-
margin-left: 0px;
|
109
|
-
margin-right: 0px;
|
110
|
-
padding-left: 0px;
|
111
|
-
padding-right: 0px;
|
112
|
-
}
|
113
|
-
|
114
|
-
.row .span1, .row .span2, .row .span3, .row .span4, .row .span5, .row .span6, .row .span7, .row .span8, .row .span9, .row .span10, .row .span11, .row .span12 {
|
115
|
-
width: auto;
|
116
|
-
float: none;
|
117
|
-
margin-left: 0px;
|
118
|
-
margin-right: 0px;
|
119
|
-
padding-left: 20px;
|
120
|
-
padding-right: 20px;
|
121
|
-
}
|
122
|
-
}
|
@@ -1,128 +0,0 @@
|
|
1
|
-
body {
|
2
|
-
visibility: hidden;
|
3
|
-
}
|
4
|
-
|
5
|
-
.ui-panel {
|
6
|
-
-moz-box-shadow: 0 0 12px rgba(0,0,0,.6);
|
7
|
-
-webkit-box-shadow: 0 0 12px rgba(0,0,0,.6);
|
8
|
-
box-shadow: 0 0 12px rgba(0,0,0,.6);
|
9
|
-
}
|
10
|
-
|
11
|
-
div[data-id="main"] {
|
12
|
-
z-index: 9999;
|
13
|
-
}
|
14
|
-
|
15
|
-
.ui-mobile body {
|
16
|
-
visibility: visible;
|
17
|
-
}
|
18
|
-
|
19
|
-
.ui-panel-left {
|
20
|
-
position:absolute;
|
21
|
-
left:0;
|
22
|
-
top:0;
|
23
|
-
bottom:0;
|
24
|
-
}
|
25
|
-
|
26
|
-
.ui-panel-right {
|
27
|
-
position:absolute;
|
28
|
-
right:0;
|
29
|
-
top:0;
|
30
|
-
bottom:0;
|
31
|
-
}
|
32
|
-
|
33
|
-
.ui-crumbs {
|
34
|
-
max-width: 25%;
|
35
|
-
}
|
36
|
-
|
37
|
-
.splitview .ui-splitview-hidden {
|
38
|
-
display:none;
|
39
|
-
}
|
40
|
-
|
41
|
-
@media (min-width:480px) {
|
42
|
-
.splitview body {
|
43
|
-
margin: 0;
|
44
|
-
}
|
45
|
-
|
46
|
-
.splitview .ui-page{
|
47
|
-
bottom: 0;
|
48
|
-
}
|
49
|
-
|
50
|
-
.splitview .ui-header {
|
51
|
-
position:absolute;
|
52
|
-
top:0;
|
53
|
-
bottom:auto;
|
54
|
-
left:0;
|
55
|
-
right:0;
|
56
|
-
z-index: 1000;
|
57
|
-
}
|
58
|
-
|
59
|
-
.splitview .ui-footer {
|
60
|
-
position:absolute;
|
61
|
-
top:auto;
|
62
|
-
bottom:0;
|
63
|
-
left:0;
|
64
|
-
right:0;
|
65
|
-
z-index:1000;
|
66
|
-
}
|
67
|
-
|
68
|
-
.splitview .ui-content {
|
69
|
-
position:absolute;
|
70
|
-
top:40px;
|
71
|
-
bottom:0;
|
72
|
-
left:0;
|
73
|
-
right:0;
|
74
|
-
overflow:auto;
|
75
|
-
-webkit-overflow-scrolling:touch;
|
76
|
-
z-index:1;
|
77
|
-
}
|
78
|
-
}
|
79
|
-
|
80
|
-
/************************************************************************************************************
|
81
|
-
popover css for portrait orientation, modified from
|
82
|
-
http://www.cagintranet.com/archive/create-an-ipad-like-dropdown-popover/
|
83
|
-
************************************************************************************************************/
|
84
|
-
.panel-popover {
|
85
|
-
color: black;
|
86
|
-
display:none;
|
87
|
-
font-weight: normal;
|
88
|
-
line-height: 1;
|
89
|
-
cursor: auto;
|
90
|
-
position: absolute;
|
91
|
-
top:55px;
|
92
|
-
background-color: white;
|
93
|
-
z-index:5000000;
|
94
|
-
border: 3px solid black;
|
95
|
-
border-radius: 4px;
|
96
|
-
-webkit-border-radius: 4px;
|
97
|
-
-moz-border-radius: 4px;
|
98
|
-
border-radius: 4px;
|
99
|
-
-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
|
100
|
-
-moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
|
101
|
-
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
|
102
|
-
-webkit-transition: opacity 0.25s linear;
|
103
|
-
-moz-transition: opacity 0.25s linear;
|
104
|
-
transition: opacity 0.25s linear;
|
105
|
-
overflow-x:visible;
|
106
|
-
height:80%;
|
107
|
-
}
|
108
|
-
|
109
|
-
.panel-popover > .popover_triangle {
|
110
|
-
position: absolute;
|
111
|
-
top: -34px;
|
112
|
-
font-size: 0px;
|
113
|
-
line-height: 0%;
|
114
|
-
width: 0px;
|
115
|
-
border-top: 16px solid rgba(0,0,0,0);
|
116
|
-
border-left: 16px solid rgba(0,0,0,0);
|
117
|
-
border-right: 16px solid rgba(0,0,0,0);
|
118
|
-
border-bottom: 16px solid black;
|
119
|
-
}
|
120
|
-
|
121
|
-
.panel-popover div[data-role="page"] {
|
122
|
-
height: inherit;
|
123
|
-
overflow-y:auto;
|
124
|
-
}
|
125
|
-
|
126
|
-
/**********************************************************************************************************
|
127
|
-
CSS animations for panel resize using new data-width attribute.
|
128
|
-
**********************************************************************************************************/
|
@@ -1,1516 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* jQuery Mobile Framework Git Build: SHA1: 27e3c18acfebab2d47ee7ed37bd50fc4942c8838 <> Date: Fri Mar 22 08:50:04 2013 -0600
|
3
|
-
* http://jquerymobile.com
|
4
|
-
*
|
5
|
-
* Copyright 2010, 2013 jQuery Foundation, Inc. and other contributors
|
6
|
-
* Released under the MIT license.
|
7
|
-
* http://jquery.org/license
|
8
|
-
*
|
9
|
-
*/
|
10
|
-
|
11
|
-
|
12
|
-
/* Swatches */
|
13
|
-
|
14
|
-
/* A
|
15
|
-
-----------------------------------------------------------------------------------------------------------*/
|
16
|
-
|
17
|
-
.ui-bar-a {
|
18
|
-
border: 1px solid #bcecff /*{a-bar-border}*/;
|
19
|
-
background: #bcecff /*{a-bar-background-color}*/;
|
20
|
-
color: #000000 /*{a-bar-color}*/;
|
21
|
-
font-weight: bold;
|
22
|
-
text-shadow: 0 /*{a-bar-shadow-x}*/ 1px /*{a-bar-shadow-y}*/ 1px /*{a-bar-shadow-radius}*/ #eeeeee /*{a-bar-shadow-color}*/;
|
23
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #bcecff /*{a-bar-background-start}*/), to( #bcecff /*{a-bar-background-end}*/)); /* Saf4+, Chrome */
|
24
|
-
background-image: -webkit-linear-gradient( #bcecff /*{a-bar-background-start}*/, #bcecff /*{a-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
25
|
-
background-image: -moz-linear-gradient( #bcecff /*{a-bar-background-start}*/, #bcecff /*{a-bar-background-end}*/); /* FF3.6 */
|
26
|
-
background-image: -ms-linear-gradient( #bcecff /*{a-bar-background-start}*/, #bcecff /*{a-bar-background-end}*/); /* IE10 */
|
27
|
-
background-image: -o-linear-gradient( #bcecff /*{a-bar-background-start}*/, #bcecff /*{a-bar-background-end}*/); /* Opera 11.10+ */
|
28
|
-
background-image: linear-gradient( #bcecff /*{a-bar-background-start}*/, #bcecff /*{a-bar-background-end}*/);
|
29
|
-
}
|
30
|
-
.ui-bar-a .ui-link-inherit {
|
31
|
-
color: #000000 /*{a-bar-color}*/;
|
32
|
-
}
|
33
|
-
|
34
|
-
.ui-bar-a a.ui-link {
|
35
|
-
color: #7cc4e7 /*{a-bar-link-color}*/;
|
36
|
-
font-weight: bold;
|
37
|
-
}
|
38
|
-
|
39
|
-
.ui-bar-a a.ui-link:visited {
|
40
|
-
color: #2489ce /*{a-bar-link-visited}*/;
|
41
|
-
}
|
42
|
-
|
43
|
-
.ui-bar-a a.ui-link:hover {
|
44
|
-
color: #2489ce /*{a-bar-link-hover}*/;
|
45
|
-
}
|
46
|
-
|
47
|
-
.ui-bar-a a.ui-link:active {
|
48
|
-
color: #2489ce /*{a-bar-link-active}*/;
|
49
|
-
}
|
50
|
-
|
51
|
-
.ui-bar-a,
|
52
|
-
.ui-bar-a input,
|
53
|
-
.ui-bar-a select,
|
54
|
-
.ui-bar-a textarea,
|
55
|
-
.ui-bar-a button {
|
56
|
-
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
57
|
-
}
|
58
|
-
.ui-body-a,
|
59
|
-
.ui-overlay-a {
|
60
|
-
border: 1px solid #657f67 /*{a-body-border}*/;
|
61
|
-
color: #000000 /*{a-body-color}*/;
|
62
|
-
text-shadow: 0 /*{a-body-shadow-x}*/ 1px /*{a-body-shadow-y}*/ 0 /*{a-body-shadow-radius}*/ #eeeeee /*{a-body-shadow-color}*/;
|
63
|
-
background: #b9e8bc /*{a-body-background-color}*/;
|
64
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #e7FFeb /*{a-body-background-start}*/), to( #8aae8d /*{a-body-background-end}*/)); /* Saf4+, Chrome */
|
65
|
-
background-image: -webkit-linear-gradient( #e7FFeb /*{a-body-background-start}*/, #8aae8d /*{a-body-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
66
|
-
background-image: -moz-linear-gradient( #e7FFeb /*{a-body-background-start}*/, #8aae8d /*{a-body-background-end}*/); /* FF3.6 */
|
67
|
-
background-image: -ms-linear-gradient( #e7FFeb /*{a-body-background-start}*/, #8aae8d /*{a-body-background-end}*/); /* IE10 */
|
68
|
-
background-image: -o-linear-gradient( #e7FFeb /*{a-body-background-start}*/, #8aae8d /*{a-body-background-end}*/); /* Opera 11.10+ */
|
69
|
-
background-image: linear-gradient( #e7FFeb /*{a-body-background-start}*/, #8aae8d /*{a-body-background-end}*/);
|
70
|
-
}
|
71
|
-
.ui-overlay-a {
|
72
|
-
background-image: none;
|
73
|
-
border-width: 0;
|
74
|
-
}
|
75
|
-
.ui-body-a,
|
76
|
-
.ui-body-a input,
|
77
|
-
.ui-body-a select,
|
78
|
-
.ui-body-a textarea,
|
79
|
-
.ui-body-a button {
|
80
|
-
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
81
|
-
}
|
82
|
-
.ui-body-a .ui-link-inherit {
|
83
|
-
color: #000000 /*{a-body-color}*/;
|
84
|
-
}
|
85
|
-
|
86
|
-
.ui-body-a .ui-link {
|
87
|
-
color: #2489ce /*{a-body-link-color}*/;
|
88
|
-
font-weight: bold;
|
89
|
-
}
|
90
|
-
|
91
|
-
.ui-body-a .ui-link:visited {
|
92
|
-
color: #2489ce /*{a-body-link-visited}*/;
|
93
|
-
}
|
94
|
-
|
95
|
-
.ui-body-a .ui-link:hover {
|
96
|
-
color: #2489ce /*{a-body-link-hover}*/;
|
97
|
-
}
|
98
|
-
|
99
|
-
.ui-body-a .ui-link:active {
|
100
|
-
color: #2489ce /*{a-body-link-active}*/;
|
101
|
-
}
|
102
|
-
|
103
|
-
.ui-btn-up-a {
|
104
|
-
border: 1px solid #e8e5b0 /*{a-bup-border}*/;
|
105
|
-
background: #e8e5b0 /*{a-bup-background-color}*/;
|
106
|
-
font-weight: bold;
|
107
|
-
color: #000000 /*{a-bup-color}*/;
|
108
|
-
text-shadow: 0 /*{a-bup-shadow-x}*/ 1px /*{a-bup-shadow-y}*/ 0 /*{a-bup-shadow-radius}*/ #eeeeee /*{a-bup-shadow-color}*/;
|
109
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #b4b289 /*{a-bup-background-start}*/), to( #FFFFd6 /*{a-bup-background-end}*/)); /* Saf4+, Chrome */
|
110
|
-
background-image: -webkit-linear-gradient( #b4b289 /*{a-bup-background-start}*/, #FFFFd6 /*{a-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
111
|
-
background-image: -moz-linear-gradient( #b4b289 /*{a-bup-background-start}*/, #FFFFd6 /*{a-bup-background-end}*/); /* FF3.6 */
|
112
|
-
background-image: -ms-linear-gradient( #b4b289 /*{a-bup-background-start}*/, #FFFFd6 /*{a-bup-background-end}*/); /* IE10 */
|
113
|
-
background-image: -o-linear-gradient( #b4b289 /*{a-bup-background-start}*/, #FFFFd6 /*{a-bup-background-end}*/); /* Opera 11.10+ */
|
114
|
-
background-image: linear-gradient( #b4b289 /*{a-bup-background-start}*/, #FFFFd6 /*{a-bup-background-end}*/);
|
115
|
-
}
|
116
|
-
.ui-btn-up-a:visited,
|
117
|
-
.ui-btn-up-a a.ui-link-inherit {
|
118
|
-
color: #000000 /*{a-bup-color}*/;
|
119
|
-
}
|
120
|
-
.ui-btn-hover-a {
|
121
|
-
border: 1px solid #ffcacf /*{a-bhover-border}*/;
|
122
|
-
background: #FFFFca /*{a-bhover-background-color}*/;
|
123
|
-
font-weight: bold;
|
124
|
-
color: #000000 /*{a-bhover-color}*/;
|
125
|
-
text-shadow: 0 /*{a-bhover-shadow-x}*/ 1px /*{a-bhover-shadow-y}*/ 0 /*{a-bhover-shadow-radius}*/ #eeeeee /*{a-bhover-shadow-color}*/;
|
126
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #eaeab9 /*{a-bhover-background-start}*/), to( #FFFFda /*{a-bhover-background-end}*/)); /* Saf4+, Chrome */
|
127
|
-
background-image: -webkit-linear-gradient( #eaeab9 /*{a-bhover-background-start}*/, #FFFFda /*{a-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
128
|
-
background-image: -moz-linear-gradient( #eaeab9 /*{a-bhover-background-start}*/, #FFFFda /*{a-bhover-background-end}*/); /* FF3.6 */
|
129
|
-
background-image: -ms-linear-gradient( #eaeab9 /*{a-bhover-background-start}*/, #FFFFda /*{a-bhover-background-end}*/); /* IE10 */
|
130
|
-
background-image: -o-linear-gradient( #eaeab9 /*{a-bhover-background-start}*/, #FFFFda /*{a-bhover-background-end}*/); /* Opera 11.10+ */
|
131
|
-
background-image: linear-gradient( #eaeab9 /*{a-bhover-background-start}*/, #FFFFda /*{a-bhover-background-end}*/);
|
132
|
-
}
|
133
|
-
.ui-btn-hover-a:visited,
|
134
|
-
.ui-btn-hover-a:hover,
|
135
|
-
.ui-btn-hover-a a.ui-link-inherit {
|
136
|
-
color: #000000 /*{a-bhover-color}*/;
|
137
|
-
}
|
138
|
-
.ui-btn-down-a {
|
139
|
-
border: 1px solid #FFFFca /*{a-bdown-border}*/;
|
140
|
-
background: #FFFFca /*{a-bdown-background-color}*/;
|
141
|
-
font-weight: bold;
|
142
|
-
color: #000000 /*{a-bdown-color}*/;
|
143
|
-
text-shadow: 0 /*{a-bdown-shadow-x}*/ 1px /*{a-bdown-shadow-y}*/ 0 /*{a-bdown-shadow-radius}*/ #eeeeee /*{a-bdown-shadow-color}*/;
|
144
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #e5e5b5 /*{a-bdown-background-start}*/), to( #FFFFde /*{a-bdown-background-end}*/)); /* Saf4+, Chrome */
|
145
|
-
background-image: -webkit-linear-gradient( #e5e5b5 /*{a-bdown-background-start}*/, #FFFFde /*{a-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
146
|
-
background-image: -moz-linear-gradient( #e5e5b5 /*{a-bdown-background-start}*/, #FFFFde /*{a-bdown-background-end}*/); /* FF3.6 */
|
147
|
-
background-image: -ms-linear-gradient( #e5e5b5 /*{a-bdown-background-start}*/, #FFFFde /*{a-bdown-background-end}*/); /* IE10 */
|
148
|
-
background-image: -o-linear-gradient( #e5e5b5 /*{a-bdown-background-start}*/, #FFFFde /*{a-bdown-background-end}*/); /* Opera 11.10+ */
|
149
|
-
background-image: linear-gradient( #e5e5b5 /*{a-bdown-background-start}*/, #FFFFde /*{a-bdown-background-end}*/);
|
150
|
-
}
|
151
|
-
.ui-btn-down-a:visited,
|
152
|
-
.ui-btn-down-a:hover,
|
153
|
-
.ui-btn-down-a a.ui-link-inherit {
|
154
|
-
color: #000000 /*{a-bdown-color}*/;
|
155
|
-
}
|
156
|
-
.ui-btn-up-a,
|
157
|
-
.ui-btn-hover-a,
|
158
|
-
.ui-btn-down-a {
|
159
|
-
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
160
|
-
text-decoration: none;
|
161
|
-
}
|
162
|
-
|
163
|
-
|
164
|
-
/* B
|
165
|
-
-----------------------------------------------------------------------------------------------------------*/
|
166
|
-
|
167
|
-
.ui-bar-b {
|
168
|
-
border: 1px solid #bcecff /*{b-bar-border}*/;
|
169
|
-
background: #bcecff /*{b-bar-background-color}*/;
|
170
|
-
color: #000000 /*{b-bar-color}*/;
|
171
|
-
font-weight: bold;
|
172
|
-
text-shadow: 0 /*{b-bar-shadow-x}*/ 1px /*{b-bar-shadow-y}*/ 1px /*{b-bar-shadow-radius}*/ #eeeeee /*{b-bar-shadow-color}*/;
|
173
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #ceFFFF /*{b-bar-background-start}*/), to( #a9d4e5 /*{b-bar-background-end}*/)); /* Saf4+, Chrome */
|
174
|
-
background-image: -webkit-linear-gradient( #ceFFFF /*{b-bar-background-start}*/, #a9d4e5 /*{b-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
175
|
-
background-image: -moz-linear-gradient( #ceFFFF /*{b-bar-background-start}*/, #a9d4e5 /*{b-bar-background-end}*/); /* FF3.6 */
|
176
|
-
background-image: -ms-linear-gradient( #ceFFFF /*{b-bar-background-start}*/, #a9d4e5 /*{b-bar-background-end}*/); /* IE10 */
|
177
|
-
background-image: -o-linear-gradient( #ceFFFF /*{b-bar-background-start}*/, #a9d4e5 /*{b-bar-background-end}*/); /* Opera 11.10+ */
|
178
|
-
background-image: linear-gradient( #ceFFFF /*{b-bar-background-start}*/, #a9d4e5 /*{b-bar-background-end}*/);
|
179
|
-
}
|
180
|
-
.ui-bar-b .ui-link-inherit {
|
181
|
-
color: #000000 /*{b-bar-color}*/;
|
182
|
-
}
|
183
|
-
|
184
|
-
.ui-bar-b a.ui-link {
|
185
|
-
color: #7cc4e7 /*{b-bar-link-color}*/;
|
186
|
-
font-weight: bold;
|
187
|
-
}
|
188
|
-
|
189
|
-
.ui-bar-b a.ui-link:visited {
|
190
|
-
color: #2489ce /*{b-bar-link-visited}*/;
|
191
|
-
}
|
192
|
-
|
193
|
-
.ui-bar-b a.ui-link:hover {
|
194
|
-
color: #2489ce /*{b-bar-link-hover}*/;
|
195
|
-
}
|
196
|
-
|
197
|
-
.ui-bar-b a.ui-link:active {
|
198
|
-
color: #2489ce /*{b-bar-link-active}*/;
|
199
|
-
}
|
200
|
-
|
201
|
-
.ui-bar-b,
|
202
|
-
.ui-bar-b input,
|
203
|
-
.ui-bar-b select,
|
204
|
-
.ui-bar-b textarea,
|
205
|
-
.ui-bar-b button {
|
206
|
-
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
207
|
-
}
|
208
|
-
.ui-body-b,
|
209
|
-
.ui-overlay-b {
|
210
|
-
border: 1px solid #7e7e7e /*{b-body-border}*/;
|
211
|
-
color: #000000 /*{b-body-color}*/;
|
212
|
-
text-shadow: 0 /*{b-body-shadow-x}*/ 1px /*{b-body-shadow-y}*/ 0 /*{b-body-shadow-radius}*/ #eeeeee /*{b-body-shadow-color}*/;
|
213
|
-
background: #e6e6e6 /*{b-body-background-color}*/;
|
214
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #fdfdfd /*{b-body-background-start}*/), to( #cfcfcf /*{b-body-background-end}*/)); /* Saf4+, Chrome */
|
215
|
-
background-image: -webkit-linear-gradient( #fdfdfd /*{b-body-background-start}*/, #cfcfcf /*{b-body-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
216
|
-
background-image: -moz-linear-gradient( #fdfdfd /*{b-body-background-start}*/, #cfcfcf /*{b-body-background-end}*/); /* FF3.6 */
|
217
|
-
background-image: -ms-linear-gradient( #fdfdfd /*{b-body-background-start}*/, #cfcfcf /*{b-body-background-end}*/); /* IE10 */
|
218
|
-
background-image: -o-linear-gradient( #fdfdfd /*{b-body-background-start}*/, #cfcfcf /*{b-body-background-end}*/); /* Opera 11.10+ */
|
219
|
-
background-image: linear-gradient( #fdfdfd /*{b-body-background-start}*/, #cfcfcf /*{b-body-background-end}*/);
|
220
|
-
}
|
221
|
-
.ui-overlay-b {
|
222
|
-
background-image: none;
|
223
|
-
border-width: 0;
|
224
|
-
}
|
225
|
-
.ui-body-b,
|
226
|
-
.ui-body-b input,
|
227
|
-
.ui-body-b select,
|
228
|
-
.ui-body-b textarea,
|
229
|
-
.ui-body-b button {
|
230
|
-
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
231
|
-
}
|
232
|
-
.ui-body-b .ui-link-inherit {
|
233
|
-
color: #000000 /*{b-body-color}*/;
|
234
|
-
}
|
235
|
-
|
236
|
-
.ui-body-b .ui-link {
|
237
|
-
color: #2489ce /*{b-body-link-color}*/;
|
238
|
-
font-weight: bold;
|
239
|
-
}
|
240
|
-
|
241
|
-
.ui-body-b .ui-link:visited {
|
242
|
-
color: #2489ce /*{b-body-link-visited}*/;
|
243
|
-
}
|
244
|
-
|
245
|
-
.ui-body-b .ui-link:hover {
|
246
|
-
color: #2489ce /*{b-body-link-hover}*/;
|
247
|
-
}
|
248
|
-
|
249
|
-
.ui-body-b .ui-link:active {
|
250
|
-
color: #2489ce /*{b-body-link-active}*/;
|
251
|
-
}
|
252
|
-
|
253
|
-
.ui-btn-up-b {
|
254
|
-
border: 1px solid #ffd7c6 /*{b-bup-border}*/;
|
255
|
-
background: #ffd7c6 /*{b-bup-background-color}*/;
|
256
|
-
font-weight: bold;
|
257
|
-
color: #000000 /*{b-bup-color}*/;
|
258
|
-
text-shadow: 0 /*{b-bup-shadow-x}*/ 1px /*{b-bup-shadow-y}*/ 0 /*{b-bup-shadow-radius}*/ #eeeeee /*{b-bup-shadow-color}*/;
|
259
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #FFecd9 /*{b-bup-background-start}*/), to( #e5c1b2 /*{b-bup-background-end}*/)); /* Saf4+, Chrome */
|
260
|
-
background-image: -webkit-linear-gradient( #FFecd9 /*{b-bup-background-start}*/, #e5c1b2 /*{b-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
261
|
-
background-image: -moz-linear-gradient( #FFecd9 /*{b-bup-background-start}*/, #e5c1b2 /*{b-bup-background-end}*/); /* FF3.6 */
|
262
|
-
background-image: -ms-linear-gradient( #FFecd9 /*{b-bup-background-start}*/, #e5c1b2 /*{b-bup-background-end}*/); /* IE10 */
|
263
|
-
background-image: -o-linear-gradient( #FFecd9 /*{b-bup-background-start}*/, #e5c1b2 /*{b-bup-background-end}*/); /* Opera 11.10+ */
|
264
|
-
background-image: linear-gradient( #FFecd9 /*{b-bup-background-start}*/, #e5c1b2 /*{b-bup-background-end}*/);
|
265
|
-
}
|
266
|
-
.ui-btn-up-b:visited,
|
267
|
-
.ui-btn-up-b a.ui-link-inherit {
|
268
|
-
color: #000000 /*{b-bup-color}*/;
|
269
|
-
}
|
270
|
-
.ui-btn-hover-b {
|
271
|
-
border: 1px solid #FFf7e3 /*{b-bhover-border}*/;
|
272
|
-
background: #FFf7e3 /*{b-bhover-background-color}*/;
|
273
|
-
font-weight: bold;
|
274
|
-
color: #000000 /*{b-bhover-color}*/;
|
275
|
-
text-shadow: 0 /*{b-bhover-shadow-x}*/ 1px /*{b-bhover-shadow-y}*/ 0 /*{b-bhover-shadow-radius}*/ #eeeeee /*{b-bhover-shadow-color}*/;
|
276
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #FFFFf9 /*{b-bhover-background-start}*/), to( #e5decc /*{b-bhover-background-end}*/)); /* Saf4+, Chrome */
|
277
|
-
background-image: -webkit-linear-gradient( #FFFFf9 /*{b-bhover-background-start}*/, #e5decc /*{b-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
278
|
-
background-image: -moz-linear-gradient( #FFFFf9 /*{b-bhover-background-start}*/, #e5decc /*{b-bhover-background-end}*/); /* FF3.6 */
|
279
|
-
background-image: -ms-linear-gradient( #FFFFf9 /*{b-bhover-background-start}*/, #e5decc /*{b-bhover-background-end}*/); /* IE10 */
|
280
|
-
background-image: -o-linear-gradient( #FFFFf9 /*{b-bhover-background-start}*/, #e5decc /*{b-bhover-background-end}*/); /* Opera 11.10+ */
|
281
|
-
background-image: linear-gradient( #FFFFf9 /*{b-bhover-background-start}*/, #e5decc /*{b-bhover-background-end}*/);
|
282
|
-
}
|
283
|
-
.ui-btn-hover-b:visited,
|
284
|
-
.ui-btn-hover-b:hover,
|
285
|
-
.ui-btn-hover-b a.ui-link-inherit {
|
286
|
-
color: #000000 /*{b-bhover-color}*/;
|
287
|
-
}
|
288
|
-
.ui-btn-down-b {
|
289
|
-
border: 1px solid #FFf7e3 /*{b-bdown-border}*/;
|
290
|
-
background: #FFf7e3 /*{b-bdown-background-color}*/;
|
291
|
-
font-weight: bold;
|
292
|
-
color: #000000 /*{b-bdown-color}*/;
|
293
|
-
text-shadow: 0 /*{b-bdown-shadow-x}*/ 1px /*{b-bdown-shadow-y}*/ 0 /*{b-bdown-shadow-radius}*/ #eeeeee /*{b-bdown-shadow-color}*/;
|
294
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #e5decc /*{b-bdown-background-start}*/), to( #FFFFf9 /*{b-bdown-background-end}*/)); /* Saf4+, Chrome */
|
295
|
-
background-image: -webkit-linear-gradient( #e5decc /*{b-bdown-background-start}*/, #FFFFf9 /*{b-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
296
|
-
background-image: -moz-linear-gradient( #e5decc /*{b-bdown-background-start}*/, #FFFFf9 /*{b-bdown-background-end}*/); /* FF3.6 */
|
297
|
-
background-image: -ms-linear-gradient( #e5decc /*{b-bdown-background-start}*/, #FFFFf9 /*{b-bdown-background-end}*/); /* IE10 */
|
298
|
-
background-image: -o-linear-gradient( #e5decc /*{b-bdown-background-start}*/, #FFFFf9 /*{b-bdown-background-end}*/); /* Opera 11.10+ */
|
299
|
-
background-image: linear-gradient( #e5decc /*{b-bdown-background-start}*/, #FFFFf9 /*{b-bdown-background-end}*/);
|
300
|
-
}
|
301
|
-
.ui-btn-down-b:visited,
|
302
|
-
.ui-btn-down-b:hover,
|
303
|
-
.ui-btn-down-b a.ui-link-inherit {
|
304
|
-
color: #000000 /*{b-bdown-color}*/;
|
305
|
-
}
|
306
|
-
.ui-btn-up-b,
|
307
|
-
.ui-btn-hover-b,
|
308
|
-
.ui-btn-down-b {
|
309
|
-
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
310
|
-
text-decoration: none;
|
311
|
-
}
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
/* C
|
317
|
-
-----------------------------------------------------------------------------------------------------------*/
|
318
|
-
|
319
|
-
.ui-bar-c {
|
320
|
-
border: 1px solid #b3b3b3 /*{c-bar-border}*/;
|
321
|
-
background: #eeeeee /*{c-bar-background-color}*/;
|
322
|
-
color: #3e3e3e /*{c-bar-color}*/;
|
323
|
-
font-weight: bold;
|
324
|
-
text-shadow: 0 /*{c-bar-shadow-x}*/ 1px /*{c-bar-shadow-y}*/ 1px /*{c-bar-shadow-radius}*/ #ffffff /*{c-bar-shadow-color}*/;
|
325
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #f0f0f0 /*{c-bar-background-start}*/), to( #dddddd /*{c-bar-background-end}*/)); /* Saf4+, Chrome */
|
326
|
-
background-image: -webkit-linear-gradient( #f0f0f0 /*{c-bar-background-start}*/, #dddddd /*{c-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
327
|
-
background-image: -moz-linear-gradient( #f0f0f0 /*{c-bar-background-start}*/, #dddddd /*{c-bar-background-end}*/); /* FF3.6 */
|
328
|
-
background-image: -ms-linear-gradient( #f0f0f0 /*{c-bar-background-start}*/, #dddddd /*{c-bar-background-end}*/); /* IE10 */
|
329
|
-
background-image: -o-linear-gradient( #f0f0f0 /*{c-bar-background-start}*/, #dddddd /*{c-bar-background-end}*/); /* Opera 11.10+ */
|
330
|
-
background-image: linear-gradient( #f0f0f0 /*{c-bar-background-start}*/, #dddddd /*{c-bar-background-end}*/);
|
331
|
-
}
|
332
|
-
.ui-bar-c .ui-link-inherit {
|
333
|
-
color: #3e3e3e /*{c-bar-color}*/;
|
334
|
-
}
|
335
|
-
|
336
|
-
.ui-bar-c a.ui-link {
|
337
|
-
color: #7cc4e7 /*{c-bar-link-color}*/;
|
338
|
-
font-weight: bold;
|
339
|
-
}
|
340
|
-
|
341
|
-
.ui-bar-c a.ui-link:visited {
|
342
|
-
color: #2489ce /*{c-bar-link-visited}*/;
|
343
|
-
}
|
344
|
-
|
345
|
-
.ui-bar-c a.ui-link:hover {
|
346
|
-
color: #2489ce /*{c-bar-link-hover}*/;
|
347
|
-
}
|
348
|
-
|
349
|
-
.ui-bar-c a.ui-link:active {
|
350
|
-
color: #2489ce /*{c-bar-link-active}*/;
|
351
|
-
}
|
352
|
-
|
353
|
-
.ui-bar-c,
|
354
|
-
.ui-bar-c input,
|
355
|
-
.ui-bar-c select,
|
356
|
-
.ui-bar-c textarea,
|
357
|
-
.ui-bar-c button {
|
358
|
-
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
359
|
-
}
|
360
|
-
.ui-body-c,
|
361
|
-
.ui-overlay-c {
|
362
|
-
border: 1px solid #aaaaaa /*{c-body-border}*/;
|
363
|
-
color: #333333 /*{c-body-color}*/;
|
364
|
-
text-shadow: 0 /*{c-body-shadow-x}*/ 1px /*{c-body-shadow-y}*/ 0 /*{c-body-shadow-radius}*/ #ffffff /*{c-body-shadow-color}*/;
|
365
|
-
background: #f9f9f9 /*{c-body-background-color}*/;
|
366
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #f9f9f9 /*{c-body-background-start}*/), to( #eeeeee /*{c-body-background-end}*/)); /* Saf4+, Chrome */
|
367
|
-
background-image: -webkit-linear-gradient( #f9f9f9 /*{c-body-background-start}*/, #eeeeee /*{c-body-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
368
|
-
background-image: -moz-linear-gradient( #f9f9f9 /*{c-body-background-start}*/, #eeeeee /*{c-body-background-end}*/); /* FF3.6 */
|
369
|
-
background-image: -ms-linear-gradient( #f9f9f9 /*{c-body-background-start}*/, #eeeeee /*{c-body-background-end}*/); /* IE10 */
|
370
|
-
background-image: -o-linear-gradient( #f9f9f9 /*{c-body-background-start}*/, #eeeeee /*{c-body-background-end}*/); /* Opera 11.10+ */
|
371
|
-
background-image: linear-gradient( #f9f9f9 /*{c-body-background-start}*/, #eeeeee /*{c-body-background-end}*/);
|
372
|
-
}
|
373
|
-
.ui-overlay-c {
|
374
|
-
background-image: none;
|
375
|
-
border-width: 0;
|
376
|
-
}
|
377
|
-
.ui-body-c,
|
378
|
-
.ui-body-c input,
|
379
|
-
.ui-body-c select,
|
380
|
-
.ui-body-c textarea,
|
381
|
-
.ui-body-c button {
|
382
|
-
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
383
|
-
}
|
384
|
-
.ui-body-c .ui-link-inherit {
|
385
|
-
color: #333333 /*{c-body-color}*/;
|
386
|
-
}
|
387
|
-
|
388
|
-
.ui-body-c .ui-link {
|
389
|
-
color: #2489ce /*{c-body-link-color}*/;
|
390
|
-
font-weight: bold;
|
391
|
-
}
|
392
|
-
|
393
|
-
.ui-body-c .ui-link:visited {
|
394
|
-
color: #2489ce /*{c-body-link-visited}*/;
|
395
|
-
}
|
396
|
-
|
397
|
-
.ui-body-c .ui-link:hover {
|
398
|
-
color: #2489ce /*{c-body-link-hover}*/;
|
399
|
-
}
|
400
|
-
|
401
|
-
.ui-body-c .ui-link:active {
|
402
|
-
color: #2489ce /*{c-body-link-active}*/;
|
403
|
-
}
|
404
|
-
|
405
|
-
.ui-btn-up-c {
|
406
|
-
border: 1px solid #cccccc /*{c-bup-border}*/;
|
407
|
-
background: #eeeeee /*{c-bup-background-color}*/;
|
408
|
-
font-weight: bold;
|
409
|
-
color: #2f3e46 /*{c-bup-color}*/;
|
410
|
-
text-shadow: 0 /*{c-bup-shadow-x}*/ 1px /*{c-bup-shadow-y}*/ 0 /*{c-bup-shadow-radius}*/ #ffffff /*{c-bup-shadow-color}*/;
|
411
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #ffffff /*{c-bup-background-start}*/), to( #f1f1f1 /*{c-bup-background-end}*/)); /* Saf4+, Chrome */
|
412
|
-
background-image: -webkit-linear-gradient( #ffffff /*{c-bup-background-start}*/, #f1f1f1 /*{c-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
413
|
-
background-image: -moz-linear-gradient( #ffffff /*{c-bup-background-start}*/, #f1f1f1 /*{c-bup-background-end}*/); /* FF3.6 */
|
414
|
-
background-image: -ms-linear-gradient( #ffffff /*{c-bup-background-start}*/, #f1f1f1 /*{c-bup-background-end}*/); /* IE10 */
|
415
|
-
background-image: -o-linear-gradient( #ffffff /*{c-bup-background-start}*/, #f1f1f1 /*{c-bup-background-end}*/); /* Opera 11.10+ */
|
416
|
-
background-image: linear-gradient( #ffffff /*{c-bup-background-start}*/, #f1f1f1 /*{c-bup-background-end}*/);
|
417
|
-
}
|
418
|
-
.ui-btn-up-c:visited,
|
419
|
-
.ui-btn-up-c a.ui-link-inherit {
|
420
|
-
color: #2f3e46 /*{c-bup-color}*/;
|
421
|
-
}
|
422
|
-
.ui-btn-hover-c {
|
423
|
-
border: 1px solid #bbbbbb /*{c-bhover-border}*/;
|
424
|
-
background: #dfdfdf /*{c-bhover-background-color}*/;
|
425
|
-
font-weight: bold;
|
426
|
-
color: #2f3e46 /*{c-bhover-color}*/;
|
427
|
-
text-shadow: 0 /*{c-bhover-shadow-x}*/ 1px /*{c-bhover-shadow-y}*/ 0 /*{c-bhover-shadow-radius}*/ #ffffff /*{c-bhover-shadow-color}*/;
|
428
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #f6f6f6 /*{c-bhover-background-start}*/), to( #e0e0e0 /*{c-bhover-background-end}*/)); /* Saf4+, Chrome */
|
429
|
-
background-image: -webkit-linear-gradient( #f6f6f6 /*{c-bhover-background-start}*/, #e0e0e0 /*{c-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
430
|
-
background-image: -moz-linear-gradient( #f6f6f6 /*{c-bhover-background-start}*/, #e0e0e0 /*{c-bhover-background-end}*/); /* FF3.6 */
|
431
|
-
background-image: -ms-linear-gradient( #f6f6f6 /*{c-bhover-background-start}*/, #e0e0e0 /*{c-bhover-background-end}*/); /* IE10 */
|
432
|
-
background-image: -o-linear-gradient( #f6f6f6 /*{c-bhover-background-start}*/, #e0e0e0 /*{c-bhover-background-end}*/); /* Opera 11.10+ */
|
433
|
-
background-image: linear-gradient( #f6f6f6 /*{c-bhover-background-start}*/, #e0e0e0 /*{c-bhover-background-end}*/);
|
434
|
-
}
|
435
|
-
.ui-btn-hover-c:visited,
|
436
|
-
.ui-btn-hover-c:hover,
|
437
|
-
.ui-btn-hover-c a.ui-link-inherit {
|
438
|
-
color: #2f3e46 /*{c-bhover-color}*/;
|
439
|
-
}
|
440
|
-
.ui-btn-down-c {
|
441
|
-
border: 1px solid #bbbbbb /*{c-bdown-border}*/;
|
442
|
-
background: #d6d6d6 /*{c-bdown-background-color}*/;
|
443
|
-
font-weight: bold;
|
444
|
-
color: #2f3e46 /*{c-bdown-color}*/;
|
445
|
-
text-shadow: 0 /*{c-bdown-shadow-x}*/ 1px /*{c-bdown-shadow-y}*/ 0 /*{c-bdown-shadow-radius}*/ #ffffff /*{c-bdown-shadow-color}*/;
|
446
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #d0d0d0 /*{c-bdown-background-start}*/), to( #dfdfdf /*{c-bdown-background-end}*/)); /* Saf4+, Chrome */
|
447
|
-
background-image: -webkit-linear-gradient( #d0d0d0 /*{c-bdown-background-start}*/, #dfdfdf /*{c-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
448
|
-
background-image: -moz-linear-gradient( #d0d0d0 /*{c-bdown-background-start}*/, #dfdfdf /*{c-bdown-background-end}*/); /* FF3.6 */
|
449
|
-
background-image: -ms-linear-gradient( #d0d0d0 /*{c-bdown-background-start}*/, #dfdfdf /*{c-bdown-background-end}*/); /* IE10 */
|
450
|
-
background-image: -o-linear-gradient( #d0d0d0 /*{c-bdown-background-start}*/, #dfdfdf /*{c-bdown-background-end}*/); /* Opera 11.10+ */
|
451
|
-
background-image: linear-gradient( #d0d0d0 /*{c-bdown-background-start}*/, #dfdfdf /*{c-bdown-background-end}*/);
|
452
|
-
}
|
453
|
-
.ui-btn-down-c:visited,
|
454
|
-
.ui-btn-down-c:hover,
|
455
|
-
.ui-btn-down-c a.ui-link-inherit {
|
456
|
-
color: #2f3e46 /*{c-bdown-color}*/;
|
457
|
-
}
|
458
|
-
.ui-btn-up-c,
|
459
|
-
.ui-btn-hover-c,
|
460
|
-
.ui-btn-down-c {
|
461
|
-
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
462
|
-
text-decoration: none;
|
463
|
-
}
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
/* D
|
469
|
-
-----------------------------------------------------------------------------------------------------------*/
|
470
|
-
|
471
|
-
.ui-bar-d {
|
472
|
-
border: 1px solid #b3b3b3 /*{d-bar-border}*/;
|
473
|
-
background: #eeeeee /*{d-bar-background-color}*/;
|
474
|
-
color: #3e3e3e /*{d-bar-color}*/;
|
475
|
-
font-weight: bold;
|
476
|
-
text-shadow: 0 /*{d-bar-shadow-x}*/ 1px /*{d-bar-shadow-y}*/ 1px /*{d-bar-shadow-radius}*/ #ffffff /*{d-bar-shadow-color}*/;
|
477
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #f0f0f0 /*{d-bar-background-start}*/), to( #dddddd /*{d-bar-background-end}*/)); /* Saf4+, Chrome */
|
478
|
-
background-image: -webkit-linear-gradient( #f0f0f0 /*{d-bar-background-start}*/, #dddddd /*{d-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
479
|
-
background-image: -moz-linear-gradient( #f0f0f0 /*{d-bar-background-start}*/, #dddddd /*{d-bar-background-end}*/); /* FF3.6 */
|
480
|
-
background-image: -ms-linear-gradient( #f0f0f0 /*{d-bar-background-start}*/, #dddddd /*{d-bar-background-end}*/); /* IE10 */
|
481
|
-
background-image: -o-linear-gradient( #f0f0f0 /*{d-bar-background-start}*/, #dddddd /*{d-bar-background-end}*/); /* Opera 11.10+ */
|
482
|
-
background-image: linear-gradient( #f0f0f0 /*{d-bar-background-start}*/, #dddddd /*{d-bar-background-end}*/);
|
483
|
-
}
|
484
|
-
.ui-bar-d .ui-link-inherit {
|
485
|
-
color: #3e3e3e /*{d-bar-color}*/;
|
486
|
-
}
|
487
|
-
|
488
|
-
.ui-bar-d a.ui-link {
|
489
|
-
color: #7cc4e7 /*{d-bar-link-color}*/;
|
490
|
-
font-weight: bold;
|
491
|
-
}
|
492
|
-
|
493
|
-
.ui-bar-d a.ui-link:visited {
|
494
|
-
color: #2489ce /*{d-bar-link-visited}*/;
|
495
|
-
}
|
496
|
-
|
497
|
-
.ui-bar-d a.ui-link:hover {
|
498
|
-
color: #2489ce /*{d-bar-link-hover}*/;
|
499
|
-
}
|
500
|
-
|
501
|
-
.ui-bar-d a.ui-link:active {
|
502
|
-
color: #2489ce /*{d-bar-link-active}*/;
|
503
|
-
}
|
504
|
-
|
505
|
-
.ui-bar-d,
|
506
|
-
.ui-bar-d input,
|
507
|
-
.ui-bar-d select,
|
508
|
-
.ui-bar-d textarea,
|
509
|
-
.ui-bar-d button {
|
510
|
-
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
511
|
-
}
|
512
|
-
.ui-body-d,
|
513
|
-
.ui-overlay-d {
|
514
|
-
border: 1px solid #aaaaaa /*{d-body-border}*/;
|
515
|
-
color: #333333 /*{d-body-color}*/;
|
516
|
-
text-shadow: 0 /*{d-body-shadow-x}*/ 1px /*{d-body-shadow-y}*/ 0 /*{d-body-shadow-radius}*/ #ffffff /*{d-body-shadow-color}*/;
|
517
|
-
background: #f9f9f9 /*{d-body-background-color}*/;
|
518
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #f9f9f9 /*{d-body-background-start}*/), to( #eeeeee /*{d-body-background-end}*/)); /* Saf4+, Chrome */
|
519
|
-
background-image: -webkit-linear-gradient( #f9f9f9 /*{d-body-background-start}*/, #eeeeee /*{d-body-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
520
|
-
background-image: -moz-linear-gradient( #f9f9f9 /*{d-body-background-start}*/, #eeeeee /*{d-body-background-end}*/); /* FF3.6 */
|
521
|
-
background-image: -ms-linear-gradient( #f9f9f9 /*{d-body-background-start}*/, #eeeeee /*{d-body-background-end}*/); /* IE10 */
|
522
|
-
background-image: -o-linear-gradient( #f9f9f9 /*{d-body-background-start}*/, #eeeeee /*{d-body-background-end}*/); /* Opera 11.10+ */
|
523
|
-
background-image: linear-gradient( #f9f9f9 /*{d-body-background-start}*/, #eeeeee /*{d-body-background-end}*/);
|
524
|
-
}
|
525
|
-
.ui-overlay-d {
|
526
|
-
background-image: none;
|
527
|
-
border-width: 0;
|
528
|
-
}
|
529
|
-
.ui-body-d,
|
530
|
-
.ui-body-d input,
|
531
|
-
.ui-body-d select,
|
532
|
-
.ui-body-d textarea,
|
533
|
-
.ui-body-d button {
|
534
|
-
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
535
|
-
}
|
536
|
-
.ui-body-d .ui-link-inherit {
|
537
|
-
color: #333333 /*{d-body-color}*/;
|
538
|
-
}
|
539
|
-
|
540
|
-
.ui-body-d .ui-link {
|
541
|
-
color: #2489ce /*{d-body-link-color}*/;
|
542
|
-
font-weight: bold;
|
543
|
-
}
|
544
|
-
|
545
|
-
.ui-body-d .ui-link:visited {
|
546
|
-
color: #2489ce /*{d-body-link-visited}*/;
|
547
|
-
}
|
548
|
-
|
549
|
-
.ui-body-d .ui-link:hover {
|
550
|
-
color: #2489ce /*{d-body-link-hover}*/;
|
551
|
-
}
|
552
|
-
|
553
|
-
.ui-body-d .ui-link:active {
|
554
|
-
color: #2489ce /*{d-body-link-active}*/;
|
555
|
-
}
|
556
|
-
|
557
|
-
.ui-btn-up-d {
|
558
|
-
border: 1px solid #cccccc /*{d-bup-border}*/;
|
559
|
-
background: #eeeeee /*{d-bup-background-color}*/;
|
560
|
-
font-weight: bold;
|
561
|
-
color: #2f3e46 /*{d-bup-color}*/;
|
562
|
-
text-shadow: 0 /*{d-bup-shadow-x}*/ 1px /*{d-bup-shadow-y}*/ 0 /*{d-bup-shadow-radius}*/ #ffffff /*{d-bup-shadow-color}*/;
|
563
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #ffffff /*{d-bup-background-start}*/), to( #f1f1f1 /*{d-bup-background-end}*/)); /* Saf4+, Chrome */
|
564
|
-
background-image: -webkit-linear-gradient( #ffffff /*{d-bup-background-start}*/, #f1f1f1 /*{d-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
565
|
-
background-image: -moz-linear-gradient( #ffffff /*{d-bup-background-start}*/, #f1f1f1 /*{d-bup-background-end}*/); /* FF3.6 */
|
566
|
-
background-image: -ms-linear-gradient( #ffffff /*{d-bup-background-start}*/, #f1f1f1 /*{d-bup-background-end}*/); /* IE10 */
|
567
|
-
background-image: -o-linear-gradient( #ffffff /*{d-bup-background-start}*/, #f1f1f1 /*{d-bup-background-end}*/); /* Opera 11.10+ */
|
568
|
-
background-image: linear-gradient( #ffffff /*{d-bup-background-start}*/, #f1f1f1 /*{d-bup-background-end}*/);
|
569
|
-
}
|
570
|
-
.ui-btn-up-d:visited,
|
571
|
-
.ui-btn-up-d a.ui-link-inherit {
|
572
|
-
color: #2f3e46 /*{d-bup-color}*/;
|
573
|
-
}
|
574
|
-
.ui-btn-hover-d {
|
575
|
-
border: 1px solid #bbbbbb /*{d-bhover-border}*/;
|
576
|
-
background: #dfdfdf /*{d-bhover-background-color}*/;
|
577
|
-
font-weight: bold;
|
578
|
-
color: #2f3e46 /*{d-bhover-color}*/;
|
579
|
-
text-shadow: 0 /*{d-bhover-shadow-x}*/ 1px /*{d-bhover-shadow-y}*/ 0 /*{d-bhover-shadow-radius}*/ #ffffff /*{d-bhover-shadow-color}*/;
|
580
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #f6f6f6 /*{d-bhover-background-start}*/), to( #e0e0e0 /*{d-bhover-background-end}*/)); /* Saf4+, Chrome */
|
581
|
-
background-image: -webkit-linear-gradient( #f6f6f6 /*{d-bhover-background-start}*/, #e0e0e0 /*{d-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
582
|
-
background-image: -moz-linear-gradient( #f6f6f6 /*{d-bhover-background-start}*/, #e0e0e0 /*{d-bhover-background-end}*/); /* FF3.6 */
|
583
|
-
background-image: -ms-linear-gradient( #f6f6f6 /*{d-bhover-background-start}*/, #e0e0e0 /*{d-bhover-background-end}*/); /* IE10 */
|
584
|
-
background-image: -o-linear-gradient( #f6f6f6 /*{d-bhover-background-start}*/, #e0e0e0 /*{d-bhover-background-end}*/); /* Opera 11.10+ */
|
585
|
-
background-image: linear-gradient( #f6f6f6 /*{d-bhover-background-start}*/, #e0e0e0 /*{d-bhover-background-end}*/);
|
586
|
-
}
|
587
|
-
.ui-btn-hover-d:visited,
|
588
|
-
.ui-btn-hover-d:hover,
|
589
|
-
.ui-btn-hover-d a.ui-link-inherit {
|
590
|
-
color: #2f3e46 /*{d-bhover-color}*/;
|
591
|
-
}
|
592
|
-
.ui-btn-down-d {
|
593
|
-
border: 1px solid #bbbbbb /*{d-bdown-border}*/;
|
594
|
-
background: #d6d6d6 /*{d-bdown-background-color}*/;
|
595
|
-
font-weight: bold;
|
596
|
-
color: #2f3e46 /*{d-bdown-color}*/;
|
597
|
-
text-shadow: 0 /*{d-bdown-shadow-x}*/ 1px /*{d-bdown-shadow-y}*/ 0 /*{d-bdown-shadow-radius}*/ #ffffff /*{d-bdown-shadow-color}*/;
|
598
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #d0d0d0 /*{d-bdown-background-start}*/), to( #dfdfdf /*{d-bdown-background-end}*/)); /* Saf4+, Chrome */
|
599
|
-
background-image: -webkit-linear-gradient( #d0d0d0 /*{d-bdown-background-start}*/, #dfdfdf /*{d-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
600
|
-
background-image: -moz-linear-gradient( #d0d0d0 /*{d-bdown-background-start}*/, #dfdfdf /*{d-bdown-background-end}*/); /* FF3.6 */
|
601
|
-
background-image: -ms-linear-gradient( #d0d0d0 /*{d-bdown-background-start}*/, #dfdfdf /*{d-bdown-background-end}*/); /* IE10 */
|
602
|
-
background-image: -o-linear-gradient( #d0d0d0 /*{d-bdown-background-start}*/, #dfdfdf /*{d-bdown-background-end}*/); /* Opera 11.10+ */
|
603
|
-
background-image: linear-gradient( #d0d0d0 /*{d-bdown-background-start}*/, #dfdfdf /*{d-bdown-background-end}*/);
|
604
|
-
}
|
605
|
-
.ui-btn-down-d:visited,
|
606
|
-
.ui-btn-down-d:hover,
|
607
|
-
.ui-btn-down-d a.ui-link-inherit {
|
608
|
-
color: #2f3e46 /*{d-bdown-color}*/;
|
609
|
-
}
|
610
|
-
.ui-btn-up-d,
|
611
|
-
.ui-btn-hover-d,
|
612
|
-
.ui-btn-down-d {
|
613
|
-
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
614
|
-
text-decoration: none;
|
615
|
-
}
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
/* E
|
621
|
-
-----------------------------------------------------------------------------------------------------------*/
|
622
|
-
|
623
|
-
.ui-bar-e {
|
624
|
-
border: 1px solid #b3b3b3 /*{e-bar-border}*/;
|
625
|
-
background: #eeeeee /*{e-bar-background-color}*/;
|
626
|
-
color: #3e3e3e /*{e-bar-color}*/;
|
627
|
-
font-weight: bold;
|
628
|
-
text-shadow: 0 /*{e-bar-shadow-x}*/ 1px /*{e-bar-shadow-y}*/ 1px /*{e-bar-shadow-radius}*/ #ffffff /*{e-bar-shadow-color}*/;
|
629
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #f0f0f0 /*{e-bar-background-start}*/), to( #dddddd /*{e-bar-background-end}*/)); /* Saf4+, Chrome */
|
630
|
-
background-image: -webkit-linear-gradient( #f0f0f0 /*{e-bar-background-start}*/, #dddddd /*{e-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
631
|
-
background-image: -moz-linear-gradient( #f0f0f0 /*{e-bar-background-start}*/, #dddddd /*{e-bar-background-end}*/); /* FF3.6 */
|
632
|
-
background-image: -ms-linear-gradient( #f0f0f0 /*{e-bar-background-start}*/, #dddddd /*{e-bar-background-end}*/); /* IE10 */
|
633
|
-
background-image: -o-linear-gradient( #f0f0f0 /*{e-bar-background-start}*/, #dddddd /*{e-bar-background-end}*/); /* Opera 11.10+ */
|
634
|
-
background-image: linear-gradient( #f0f0f0 /*{e-bar-background-start}*/, #dddddd /*{e-bar-background-end}*/);
|
635
|
-
}
|
636
|
-
.ui-bar-e .ui-link-inherit {
|
637
|
-
color: #3e3e3e /*{e-bar-color}*/;
|
638
|
-
}
|
639
|
-
|
640
|
-
.ui-bar-e a.ui-link {
|
641
|
-
color: #7cc4e7 /*{e-bar-link-color}*/;
|
642
|
-
font-weight: bold;
|
643
|
-
}
|
644
|
-
|
645
|
-
.ui-bar-e a.ui-link:visited {
|
646
|
-
color: #2489ce /*{e-bar-link-visited}*/;
|
647
|
-
}
|
648
|
-
|
649
|
-
.ui-bar-e a.ui-link:hover {
|
650
|
-
color: #2489ce /*{e-bar-link-hover}*/;
|
651
|
-
}
|
652
|
-
|
653
|
-
.ui-bar-e a.ui-link:active {
|
654
|
-
color: #2489ce /*{e-bar-link-active}*/;
|
655
|
-
}
|
656
|
-
|
657
|
-
.ui-bar-e,
|
658
|
-
.ui-bar-e input,
|
659
|
-
.ui-bar-e select,
|
660
|
-
.ui-bar-e textarea,
|
661
|
-
.ui-bar-e button {
|
662
|
-
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
663
|
-
}
|
664
|
-
.ui-body-e,
|
665
|
-
.ui-overlay-e {
|
666
|
-
border: 1px solid #aaaaaa /*{e-body-border}*/;
|
667
|
-
color: #333333 /*{e-body-color}*/;
|
668
|
-
text-shadow: 0 /*{e-body-shadow-x}*/ 1px /*{e-body-shadow-y}*/ 0 /*{e-body-shadow-radius}*/ #ffffff /*{e-body-shadow-color}*/;
|
669
|
-
background: #f9f9f9 /*{e-body-background-color}*/;
|
670
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #f9f9f9 /*{e-body-background-start}*/), to( #eeeeee /*{e-body-background-end}*/)); /* Saf4+, Chrome */
|
671
|
-
background-image: -webkit-linear-gradient( #f9f9f9 /*{e-body-background-start}*/, #eeeeee /*{e-body-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
672
|
-
background-image: -moz-linear-gradient( #f9f9f9 /*{e-body-background-start}*/, #eeeeee /*{e-body-background-end}*/); /* FF3.6 */
|
673
|
-
background-image: -ms-linear-gradient( #f9f9f9 /*{e-body-background-start}*/, #eeeeee /*{e-body-background-end}*/); /* IE10 */
|
674
|
-
background-image: -o-linear-gradient( #f9f9f9 /*{e-body-background-start}*/, #eeeeee /*{e-body-background-end}*/); /* Opera 11.10+ */
|
675
|
-
background-image: linear-gradient( #f9f9f9 /*{e-body-background-start}*/, #eeeeee /*{e-body-background-end}*/);
|
676
|
-
}
|
677
|
-
.ui-overlay-e {
|
678
|
-
background-image: none;
|
679
|
-
border-width: 0;
|
680
|
-
}
|
681
|
-
.ui-body-e,
|
682
|
-
.ui-body-e input,
|
683
|
-
.ui-body-e select,
|
684
|
-
.ui-body-e textarea,
|
685
|
-
.ui-body-e button {
|
686
|
-
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
687
|
-
}
|
688
|
-
.ui-body-e .ui-link-inherit {
|
689
|
-
color: #333333 /*{e-body-color}*/;
|
690
|
-
}
|
691
|
-
|
692
|
-
.ui-body-e .ui-link {
|
693
|
-
color: #2489ce /*{e-body-link-color}*/;
|
694
|
-
font-weight: bold;
|
695
|
-
}
|
696
|
-
|
697
|
-
.ui-body-e .ui-link:visited {
|
698
|
-
color: #2489ce /*{e-body-link-visited}*/;
|
699
|
-
}
|
700
|
-
|
701
|
-
.ui-body-e .ui-link:hover {
|
702
|
-
color: #2489ce /*{e-body-link-hover}*/;
|
703
|
-
}
|
704
|
-
|
705
|
-
.ui-body-e .ui-link:active {
|
706
|
-
color: #2489ce /*{e-body-link-active}*/;
|
707
|
-
}
|
708
|
-
|
709
|
-
.ui-btn-up-e {
|
710
|
-
border: 1px solid #cccccc /*{e-bup-border}*/;
|
711
|
-
background: #eeeeee /*{e-bup-background-color}*/;
|
712
|
-
font-weight: bold;
|
713
|
-
color: #2f3e46 /*{e-bup-color}*/;
|
714
|
-
text-shadow: 0 /*{e-bup-shadow-x}*/ 1px /*{e-bup-shadow-y}*/ 0 /*{e-bup-shadow-radius}*/ #ffffff /*{e-bup-shadow-color}*/;
|
715
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #ffffff /*{e-bup-background-start}*/), to( #f1f1f1 /*{e-bup-background-end}*/)); /* Saf4+, Chrome */
|
716
|
-
background-image: -webkit-linear-gradient( #ffffff /*{e-bup-background-start}*/, #f1f1f1 /*{e-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
717
|
-
background-image: -moz-linear-gradient( #ffffff /*{e-bup-background-start}*/, #f1f1f1 /*{e-bup-background-end}*/); /* FF3.6 */
|
718
|
-
background-image: -ms-linear-gradient( #ffffff /*{e-bup-background-start}*/, #f1f1f1 /*{e-bup-background-end}*/); /* IE10 */
|
719
|
-
background-image: -o-linear-gradient( #ffffff /*{e-bup-background-start}*/, #f1f1f1 /*{e-bup-background-end}*/); /* Opera 11.10+ */
|
720
|
-
background-image: linear-gradient( #ffffff /*{e-bup-background-start}*/, #f1f1f1 /*{e-bup-background-end}*/);
|
721
|
-
}
|
722
|
-
.ui-btn-up-e:visited,
|
723
|
-
.ui-btn-up-e a.ui-link-inherit {
|
724
|
-
color: #2f3e46 /*{e-bup-color}*/;
|
725
|
-
}
|
726
|
-
.ui-btn-hover-e {
|
727
|
-
border: 1px solid #bbbbbb /*{e-bhover-border}*/;
|
728
|
-
background: #dfdfdf /*{e-bhover-background-color}*/;
|
729
|
-
font-weight: bold;
|
730
|
-
color: #2f3e46 /*{e-bhover-color}*/;
|
731
|
-
text-shadow: 0 /*{e-bhover-shadow-x}*/ 1px /*{e-bhover-shadow-y}*/ 0 /*{e-bhover-shadow-radius}*/ #ffffff /*{e-bhover-shadow-color}*/;
|
732
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #f6f6f6 /*{e-bhover-background-start}*/), to( #e0e0e0 /*{e-bhover-background-end}*/)); /* Saf4+, Chrome */
|
733
|
-
background-image: -webkit-linear-gradient( #f6f6f6 /*{e-bhover-background-start}*/, #e0e0e0 /*{e-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
734
|
-
background-image: -moz-linear-gradient( #f6f6f6 /*{e-bhover-background-start}*/, #e0e0e0 /*{e-bhover-background-end}*/); /* FF3.6 */
|
735
|
-
background-image: -ms-linear-gradient( #f6f6f6 /*{e-bhover-background-start}*/, #e0e0e0 /*{e-bhover-background-end}*/); /* IE10 */
|
736
|
-
background-image: -o-linear-gradient( #f6f6f6 /*{e-bhover-background-start}*/, #e0e0e0 /*{e-bhover-background-end}*/); /* Opera 11.10+ */
|
737
|
-
background-image: linear-gradient( #f6f6f6 /*{e-bhover-background-start}*/, #e0e0e0 /*{e-bhover-background-end}*/);
|
738
|
-
}
|
739
|
-
.ui-btn-hover-e:visited,
|
740
|
-
.ui-btn-hover-e:hover,
|
741
|
-
.ui-btn-hover-e a.ui-link-inherit {
|
742
|
-
color: #2f3e46 /*{e-bhover-color}*/;
|
743
|
-
}
|
744
|
-
.ui-btn-down-e {
|
745
|
-
border: 1px solid #bbbbbb /*{e-bdown-border}*/;
|
746
|
-
background: #d6d6d6 /*{e-bdown-background-color}*/;
|
747
|
-
font-weight: bold;
|
748
|
-
color: #2f3e46 /*{e-bdown-color}*/;
|
749
|
-
text-shadow: 0 /*{e-bdown-shadow-x}*/ 1px /*{e-bdown-shadow-y}*/ 0 /*{e-bdown-shadow-radius}*/ #ffffff /*{e-bdown-shadow-color}*/;
|
750
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #d0d0d0 /*{e-bdown-background-start}*/), to( #dfdfdf /*{e-bdown-background-end}*/)); /* Saf4+, Chrome */
|
751
|
-
background-image: -webkit-linear-gradient( #d0d0d0 /*{e-bdown-background-start}*/, #dfdfdf /*{e-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
752
|
-
background-image: -moz-linear-gradient( #d0d0d0 /*{e-bdown-background-start}*/, #dfdfdf /*{e-bdown-background-end}*/); /* FF3.6 */
|
753
|
-
background-image: -ms-linear-gradient( #d0d0d0 /*{e-bdown-background-start}*/, #dfdfdf /*{e-bdown-background-end}*/); /* IE10 */
|
754
|
-
background-image: -o-linear-gradient( #d0d0d0 /*{e-bdown-background-start}*/, #dfdfdf /*{e-bdown-background-end}*/); /* Opera 11.10+ */
|
755
|
-
background-image: linear-gradient( #d0d0d0 /*{e-bdown-background-start}*/, #dfdfdf /*{e-bdown-background-end}*/);
|
756
|
-
}
|
757
|
-
.ui-btn-down-e:visited,
|
758
|
-
.ui-btn-down-e:hover,
|
759
|
-
.ui-btn-down-e a.ui-link-inherit {
|
760
|
-
color: #2f3e46 /*{e-bdown-color}*/;
|
761
|
-
}
|
762
|
-
.ui-btn-up-e,
|
763
|
-
.ui-btn-hover-e,
|
764
|
-
.ui-btn-down-e {
|
765
|
-
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
766
|
-
text-decoration: none;
|
767
|
-
}
|
768
|
-
|
769
|
-
|
770
|
-
|
771
|
-
|
772
|
-
/* F
|
773
|
-
-----------------------------------------------------------------------------------------------------------*/
|
774
|
-
|
775
|
-
.ui-bar-f {
|
776
|
-
border: 1px solid #b3b3b3 /*{f-bar-border}*/;
|
777
|
-
background: #eeeeee /*{f-bar-background-color}*/;
|
778
|
-
color: #3e3e3e /*{f-bar-color}*/;
|
779
|
-
font-weight: bold;
|
780
|
-
text-shadow: 0 /*{f-bar-shadow-x}*/ 1px /*{f-bar-shadow-y}*/ 1px /*{f-bar-shadow-radius}*/ #ffffff /*{f-bar-shadow-color}*/;
|
781
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #f0f0f0 /*{f-bar-background-start}*/), to( #dddddd /*{f-bar-background-end}*/)); /* Saf4+, Chrome */
|
782
|
-
background-image: -webkit-linear-gradient( #f0f0f0 /*{f-bar-background-start}*/, #dddddd /*{f-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
783
|
-
background-image: -moz-linear-gradient( #f0f0f0 /*{f-bar-background-start}*/, #dddddd /*{f-bar-background-end}*/); /* FF3.6 */
|
784
|
-
background-image: -ms-linear-gradient( #f0f0f0 /*{f-bar-background-start}*/, #dddddd /*{f-bar-background-end}*/); /* IE10 */
|
785
|
-
background-image: -o-linear-gradient( #f0f0f0 /*{f-bar-background-start}*/, #dddddd /*{f-bar-background-end}*/); /* Opera 11.10+ */
|
786
|
-
background-image: linear-gradient( #f0f0f0 /*{f-bar-background-start}*/, #dddddd /*{f-bar-background-end}*/);
|
787
|
-
}
|
788
|
-
.ui-bar-f .ui-link-inherit {
|
789
|
-
color: #3e3e3e /*{f-bar-color}*/;
|
790
|
-
}
|
791
|
-
|
792
|
-
.ui-bar-f a.ui-link {
|
793
|
-
color: #7cc4e7 /*{f-bar-link-color}*/;
|
794
|
-
font-weight: bold;
|
795
|
-
}
|
796
|
-
|
797
|
-
.ui-bar-f a.ui-link:visited {
|
798
|
-
color: #2489ce /*{f-bar-link-visited}*/;
|
799
|
-
}
|
800
|
-
|
801
|
-
.ui-bar-f a.ui-link:hover {
|
802
|
-
color: #2489ce /*{f-bar-link-hover}*/;
|
803
|
-
}
|
804
|
-
|
805
|
-
.ui-bar-f a.ui-link:active {
|
806
|
-
color: #2489ce /*{f-bar-link-active}*/;
|
807
|
-
}
|
808
|
-
|
809
|
-
.ui-bar-f,
|
810
|
-
.ui-bar-f input,
|
811
|
-
.ui-bar-f select,
|
812
|
-
.ui-bar-f textarea,
|
813
|
-
.ui-bar-f button {
|
814
|
-
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
815
|
-
}
|
816
|
-
.ui-body-f,
|
817
|
-
.ui-overlay-f {
|
818
|
-
border: 1px solid #aaaaaa /*{f-body-border}*/;
|
819
|
-
color: #333333 /*{f-body-color}*/;
|
820
|
-
text-shadow: 0 /*{f-body-shadow-x}*/ 1px /*{f-body-shadow-y}*/ 0 /*{f-body-shadow-radius}*/ #ffffff /*{f-body-shadow-color}*/;
|
821
|
-
background: #f9f9f9 /*{f-body-background-color}*/;
|
822
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #f9f9f9 /*{f-body-background-start}*/), to( #eeeeee /*{f-body-background-end}*/)); /* Saf4+, Chrome */
|
823
|
-
background-image: -webkit-linear-gradient( #f9f9f9 /*{f-body-background-start}*/, #eeeeee /*{f-body-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
824
|
-
background-image: -moz-linear-gradient( #f9f9f9 /*{f-body-background-start}*/, #eeeeee /*{f-body-background-end}*/); /* FF3.6 */
|
825
|
-
background-image: -ms-linear-gradient( #f9f9f9 /*{f-body-background-start}*/, #eeeeee /*{f-body-background-end}*/); /* IE10 */
|
826
|
-
background-image: -o-linear-gradient( #f9f9f9 /*{f-body-background-start}*/, #eeeeee /*{f-body-background-end}*/); /* Opera 11.10+ */
|
827
|
-
background-image: linear-gradient( #f9f9f9 /*{f-body-background-start}*/, #eeeeee /*{f-body-background-end}*/);
|
828
|
-
}
|
829
|
-
.ui-overlay-f {
|
830
|
-
background-image: none;
|
831
|
-
border-width: 0;
|
832
|
-
}
|
833
|
-
.ui-body-f,
|
834
|
-
.ui-body-f input,
|
835
|
-
.ui-body-f select,
|
836
|
-
.ui-body-f textarea,
|
837
|
-
.ui-body-f button {
|
838
|
-
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
839
|
-
}
|
840
|
-
.ui-body-f .ui-link-inherit {
|
841
|
-
color: #333333 /*{f-body-color}*/;
|
842
|
-
}
|
843
|
-
|
844
|
-
.ui-body-f .ui-link {
|
845
|
-
color: #2489ce /*{f-body-link-color}*/;
|
846
|
-
font-weight: bold;
|
847
|
-
}
|
848
|
-
|
849
|
-
.ui-body-f .ui-link:visited {
|
850
|
-
color: #2489ce /*{f-body-link-visited}*/;
|
851
|
-
}
|
852
|
-
|
853
|
-
.ui-body-f .ui-link:hover {
|
854
|
-
color: #2489ce /*{f-body-link-hover}*/;
|
855
|
-
}
|
856
|
-
|
857
|
-
.ui-body-f .ui-link:active {
|
858
|
-
color: #2489ce /*{f-body-link-active}*/;
|
859
|
-
}
|
860
|
-
|
861
|
-
.ui-btn-up-f {
|
862
|
-
border: 1px solid #cccccc /*{f-bup-border}*/;
|
863
|
-
background: #eeeeee /*{f-bup-background-color}*/;
|
864
|
-
font-weight: bold;
|
865
|
-
color: #2f3e46 /*{f-bup-color}*/;
|
866
|
-
text-shadow: 0 /*{f-bup-shadow-x}*/ 1px /*{f-bup-shadow-y}*/ 0 /*{f-bup-shadow-radius}*/ #ffffff /*{f-bup-shadow-color}*/;
|
867
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #ffffff /*{f-bup-background-start}*/), to( #f1f1f1 /*{f-bup-background-end}*/)); /* Saf4+, Chrome */
|
868
|
-
background-image: -webkit-linear-gradient( #ffffff /*{f-bup-background-start}*/, #f1f1f1 /*{f-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
869
|
-
background-image: -moz-linear-gradient( #ffffff /*{f-bup-background-start}*/, #f1f1f1 /*{f-bup-background-end}*/); /* FF3.6 */
|
870
|
-
background-image: -ms-linear-gradient( #ffffff /*{f-bup-background-start}*/, #f1f1f1 /*{f-bup-background-end}*/); /* IE10 */
|
871
|
-
background-image: -o-linear-gradient( #ffffff /*{f-bup-background-start}*/, #f1f1f1 /*{f-bup-background-end}*/); /* Opera 11.10+ */
|
872
|
-
background-image: linear-gradient( #ffffff /*{f-bup-background-start}*/, #f1f1f1 /*{f-bup-background-end}*/);
|
873
|
-
}
|
874
|
-
.ui-btn-up-f:visited,
|
875
|
-
.ui-btn-up-f a.ui-link-inherit {
|
876
|
-
color: #2f3e46 /*{f-bup-color}*/;
|
877
|
-
}
|
878
|
-
.ui-btn-hover-f {
|
879
|
-
border: 1px solid #bbbbbb /*{f-bhover-border}*/;
|
880
|
-
background: #dfdfdf /*{f-bhover-background-color}*/;
|
881
|
-
font-weight: bold;
|
882
|
-
color: #2f3e46 /*{f-bhover-color}*/;
|
883
|
-
text-shadow: 0 /*{f-bhover-shadow-x}*/ 1px /*{f-bhover-shadow-y}*/ 0 /*{f-bhover-shadow-radius}*/ #ffffff /*{f-bhover-shadow-color}*/;
|
884
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #f6f6f6 /*{f-bhover-background-start}*/), to( #e0e0e0 /*{f-bhover-background-end}*/)); /* Saf4+, Chrome */
|
885
|
-
background-image: -webkit-linear-gradient( #f6f6f6 /*{f-bhover-background-start}*/, #e0e0e0 /*{f-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
886
|
-
background-image: -moz-linear-gradient( #f6f6f6 /*{f-bhover-background-start}*/, #e0e0e0 /*{f-bhover-background-end}*/); /* FF3.6 */
|
887
|
-
background-image: -ms-linear-gradient( #f6f6f6 /*{f-bhover-background-start}*/, #e0e0e0 /*{f-bhover-background-end}*/); /* IE10 */
|
888
|
-
background-image: -o-linear-gradient( #f6f6f6 /*{f-bhover-background-start}*/, #e0e0e0 /*{f-bhover-background-end}*/); /* Opera 11.10+ */
|
889
|
-
background-image: linear-gradient( #f6f6f6 /*{f-bhover-background-start}*/, #e0e0e0 /*{f-bhover-background-end}*/);
|
890
|
-
}
|
891
|
-
.ui-btn-hover-f:visited,
|
892
|
-
.ui-btn-hover-f:hover,
|
893
|
-
.ui-btn-hover-f a.ui-link-inherit {
|
894
|
-
color: #2f3e46 /*{f-bhover-color}*/;
|
895
|
-
}
|
896
|
-
.ui-btn-down-f {
|
897
|
-
border: 1px solid #bbbbbb /*{f-bdown-border}*/;
|
898
|
-
background: #d6d6d6 /*{f-bdown-background-color}*/;
|
899
|
-
font-weight: bold;
|
900
|
-
color: #2f3e46 /*{f-bdown-color}*/;
|
901
|
-
text-shadow: 0 /*{f-bdown-shadow-x}*/ 1px /*{f-bdown-shadow-y}*/ 0 /*{f-bdown-shadow-radius}*/ #ffffff /*{f-bdown-shadow-color}*/;
|
902
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #d0d0d0 /*{f-bdown-background-start}*/), to( #dfdfdf /*{f-bdown-background-end}*/)); /* Saf4+, Chrome */
|
903
|
-
background-image: -webkit-linear-gradient( #d0d0d0 /*{f-bdown-background-start}*/, #dfdfdf /*{f-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
904
|
-
background-image: -moz-linear-gradient( #d0d0d0 /*{f-bdown-background-start}*/, #dfdfdf /*{f-bdown-background-end}*/); /* FF3.6 */
|
905
|
-
background-image: -ms-linear-gradient( #d0d0d0 /*{f-bdown-background-start}*/, #dfdfdf /*{f-bdown-background-end}*/); /* IE10 */
|
906
|
-
background-image: -o-linear-gradient( #d0d0d0 /*{f-bdown-background-start}*/, #dfdfdf /*{f-bdown-background-end}*/); /* Opera 11.10+ */
|
907
|
-
background-image: linear-gradient( #d0d0d0 /*{f-bdown-background-start}*/, #dfdfdf /*{f-bdown-background-end}*/);
|
908
|
-
}
|
909
|
-
.ui-btn-down-f:visited,
|
910
|
-
.ui-btn-down-f:hover,
|
911
|
-
.ui-btn-down-f a.ui-link-inherit {
|
912
|
-
color: #2f3e46 /*{f-bdown-color}*/;
|
913
|
-
}
|
914
|
-
.ui-btn-up-f,
|
915
|
-
.ui-btn-hover-f,
|
916
|
-
.ui-btn-down-f {
|
917
|
-
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
918
|
-
text-decoration: none;
|
919
|
-
}
|
920
|
-
|
921
|
-
|
922
|
-
|
923
|
-
|
924
|
-
/* G
|
925
|
-
-----------------------------------------------------------------------------------------------------------*/
|
926
|
-
|
927
|
-
.ui-bar-g {
|
928
|
-
border: 1px solid #ed1c24 /*{g-bar-border}*/;
|
929
|
-
background: #ed1c24 /*{g-bar-background-color}*/;
|
930
|
-
color: #ffffff /*{g-bar-color}*/;
|
931
|
-
font-weight: bold;
|
932
|
-
text-shadow: 0 /*{g-bar-shadow-x}*/ 1px /*{g-bar-shadow-y}*/ 1px /*{g-bar-shadow-radius}*/ #444444 /*{g-bar-shadow-color}*/;
|
933
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #FF1e27 /*{g-bar-background-start}*/), to( #d51920 /*{g-bar-background-end}*/)); /* Saf4+, Chrome */
|
934
|
-
background-image: -webkit-linear-gradient( #FF1e27 /*{g-bar-background-start}*/, #d51920 /*{g-bar-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
935
|
-
background-image: -moz-linear-gradient( #FF1e27 /*{g-bar-background-start}*/, #d51920 /*{g-bar-background-end}*/); /* FF3.6 */
|
936
|
-
background-image: -ms-linear-gradient( #FF1e27 /*{g-bar-background-start}*/, #d51920 /*{g-bar-background-end}*/); /* IE10 */
|
937
|
-
background-image: -o-linear-gradient( #FF1e27 /*{g-bar-background-start}*/, #d51920 /*{g-bar-background-end}*/); /* Opera 11.10+ */
|
938
|
-
background-image: linear-gradient( #FF1e27 /*{g-bar-background-start}*/, #d51920 /*{g-bar-background-end}*/);
|
939
|
-
}
|
940
|
-
.ui-bar-g .ui-link-inherit {
|
941
|
-
color: #ffffff /*{g-bar-color}*/;
|
942
|
-
}
|
943
|
-
|
944
|
-
.ui-bar-g a.ui-link {
|
945
|
-
color: #7cc4e7 /*{g-bar-link-color}*/;
|
946
|
-
font-weight: bold;
|
947
|
-
}
|
948
|
-
|
949
|
-
.ui-bar-g a.ui-link:visited {
|
950
|
-
color: #2489ce /*{g-bar-link-visited}*/;
|
951
|
-
}
|
952
|
-
|
953
|
-
.ui-bar-g a.ui-link:hover {
|
954
|
-
color: #2489ce /*{g-bar-link-hover}*/;
|
955
|
-
}
|
956
|
-
|
957
|
-
.ui-bar-g a.ui-link:active {
|
958
|
-
color: #2489ce /*{g-bar-link-active}*/;
|
959
|
-
}
|
960
|
-
|
961
|
-
.ui-bar-g,
|
962
|
-
.ui-bar-g input,
|
963
|
-
.ui-bar-g select,
|
964
|
-
.ui-bar-g textarea,
|
965
|
-
.ui-bar-g button {
|
966
|
-
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
967
|
-
}
|
968
|
-
.ui-body-g,
|
969
|
-
.ui-overlay-g {
|
970
|
-
border: 1px solid #aaaaaa /*{g-body-border}*/;
|
971
|
-
color: #333333 /*{g-body-color}*/;
|
972
|
-
text-shadow: 0 /*{g-body-shadow-x}*/ 1px /*{g-body-shadow-y}*/ 0 /*{g-body-shadow-radius}*/ #ffffff /*{g-body-shadow-color}*/;
|
973
|
-
background: #f9f9f9 /*{g-body-background-color}*/;
|
974
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #f9f9f9 /*{g-body-background-start}*/), to( #eeeeee /*{g-body-background-end}*/)); /* Saf4+, Chrome */
|
975
|
-
background-image: -webkit-linear-gradient( #f9f9f9 /*{g-body-background-start}*/, #eeeeee /*{g-body-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
976
|
-
background-image: -moz-linear-gradient( #f9f9f9 /*{g-body-background-start}*/, #eeeeee /*{g-body-background-end}*/); /* FF3.6 */
|
977
|
-
background-image: -ms-linear-gradient( #f9f9f9 /*{g-body-background-start}*/, #eeeeee /*{g-body-background-end}*/); /* IE10 */
|
978
|
-
background-image: -o-linear-gradient( #f9f9f9 /*{g-body-background-start}*/, #eeeeee /*{g-body-background-end}*/); /* Opera 11.10+ */
|
979
|
-
background-image: linear-gradient( #f9f9f9 /*{g-body-background-start}*/, #eeeeee /*{g-body-background-end}*/);
|
980
|
-
}
|
981
|
-
.ui-overlay-g {
|
982
|
-
background-image: none;
|
983
|
-
border-width: 0;
|
984
|
-
}
|
985
|
-
.ui-body-g,
|
986
|
-
.ui-body-g input,
|
987
|
-
.ui-body-g select,
|
988
|
-
.ui-body-g textarea,
|
989
|
-
.ui-body-g button {
|
990
|
-
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
991
|
-
}
|
992
|
-
.ui-body-g .ui-link-inherit {
|
993
|
-
color: #333333 /*{g-body-color}*/;
|
994
|
-
}
|
995
|
-
|
996
|
-
.ui-body-g .ui-link {
|
997
|
-
color: #2489ce /*{g-body-link-color}*/;
|
998
|
-
font-weight: bold;
|
999
|
-
}
|
1000
|
-
|
1001
|
-
.ui-body-g .ui-link:visited {
|
1002
|
-
color: #2489ce /*{g-body-link-visited}*/;
|
1003
|
-
}
|
1004
|
-
|
1005
|
-
.ui-body-g .ui-link:hover {
|
1006
|
-
color: #2489ce /*{g-body-link-hover}*/;
|
1007
|
-
}
|
1008
|
-
|
1009
|
-
.ui-body-g .ui-link:active {
|
1010
|
-
color: #2489ce /*{g-body-link-active}*/;
|
1011
|
-
}
|
1012
|
-
|
1013
|
-
.ui-btn-up-g {
|
1014
|
-
border: 1px solid #cccccc /*{g-bup-border}*/;
|
1015
|
-
background: #eeeeee /*{g-bup-background-color}*/;
|
1016
|
-
font-weight: bold;
|
1017
|
-
color: #2f3e46 /*{g-bup-color}*/;
|
1018
|
-
text-shadow: 0 /*{g-bup-shadow-x}*/ 1px /*{g-bup-shadow-y}*/ 0 /*{g-bup-shadow-radius}*/ #ffffff /*{g-bup-shadow-color}*/;
|
1019
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #ffffff /*{g-bup-background-start}*/), to( #f1f1f1 /*{g-bup-background-end}*/)); /* Saf4+, Chrome */
|
1020
|
-
background-image: -webkit-linear-gradient( #ffffff /*{g-bup-background-start}*/, #f1f1f1 /*{g-bup-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
1021
|
-
background-image: -moz-linear-gradient( #ffffff /*{g-bup-background-start}*/, #f1f1f1 /*{g-bup-background-end}*/); /* FF3.6 */
|
1022
|
-
background-image: -ms-linear-gradient( #ffffff /*{g-bup-background-start}*/, #f1f1f1 /*{g-bup-background-end}*/); /* IE10 */
|
1023
|
-
background-image: -o-linear-gradient( #ffffff /*{g-bup-background-start}*/, #f1f1f1 /*{g-bup-background-end}*/); /* Opera 11.10+ */
|
1024
|
-
background-image: linear-gradient( #ffffff /*{g-bup-background-start}*/, #f1f1f1 /*{g-bup-background-end}*/);
|
1025
|
-
}
|
1026
|
-
.ui-btn-up-g:visited,
|
1027
|
-
.ui-btn-up-g a.ui-link-inherit {
|
1028
|
-
color: #2f3e46 /*{g-bup-color}*/;
|
1029
|
-
}
|
1030
|
-
.ui-btn-hover-g {
|
1031
|
-
border: 1px solid #bbbbbb /*{g-bhover-border}*/;
|
1032
|
-
background: #dfdfdf /*{g-bhover-background-color}*/;
|
1033
|
-
font-weight: bold;
|
1034
|
-
color: #2f3e46 /*{g-bhover-color}*/;
|
1035
|
-
text-shadow: 0 /*{g-bhover-shadow-x}*/ 1px /*{g-bhover-shadow-y}*/ 0 /*{g-bhover-shadow-radius}*/ #ffffff /*{g-bhover-shadow-color}*/;
|
1036
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #f6f6f6 /*{g-bhover-background-start}*/), to( #e0e0e0 /*{g-bhover-background-end}*/)); /* Saf4+, Chrome */
|
1037
|
-
background-image: -webkit-linear-gradient( #f6f6f6 /*{g-bhover-background-start}*/, #e0e0e0 /*{g-bhover-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
1038
|
-
background-image: -moz-linear-gradient( #f6f6f6 /*{g-bhover-background-start}*/, #e0e0e0 /*{g-bhover-background-end}*/); /* FF3.6 */
|
1039
|
-
background-image: -ms-linear-gradient( #f6f6f6 /*{g-bhover-background-start}*/, #e0e0e0 /*{g-bhover-background-end}*/); /* IE10 */
|
1040
|
-
background-image: -o-linear-gradient( #f6f6f6 /*{g-bhover-background-start}*/, #e0e0e0 /*{g-bhover-background-end}*/); /* Opera 11.10+ */
|
1041
|
-
background-image: linear-gradient( #f6f6f6 /*{g-bhover-background-start}*/, #e0e0e0 /*{g-bhover-background-end}*/);
|
1042
|
-
}
|
1043
|
-
.ui-btn-hover-g:visited,
|
1044
|
-
.ui-btn-hover-g:hover,
|
1045
|
-
.ui-btn-hover-g a.ui-link-inherit {
|
1046
|
-
color: #2f3e46 /*{g-bhover-color}*/;
|
1047
|
-
}
|
1048
|
-
.ui-btn-down-g {
|
1049
|
-
border: 1px solid #bbbbbb /*{g-bdown-border}*/;
|
1050
|
-
background: #d6d6d6 /*{g-bdown-background-color}*/;
|
1051
|
-
font-weight: bold;
|
1052
|
-
color: #2f3e46 /*{g-bdown-color}*/;
|
1053
|
-
text-shadow: 0 /*{g-bdown-shadow-x}*/ 1px /*{g-bdown-shadow-y}*/ 0 /*{g-bdown-shadow-radius}*/ #ffffff /*{g-bdown-shadow-color}*/;
|
1054
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #d0d0d0 /*{g-bdown-background-start}*/), to( #dfdfdf /*{g-bdown-background-end}*/)); /* Saf4+, Chrome */
|
1055
|
-
background-image: -webkit-linear-gradient( #d0d0d0 /*{g-bdown-background-start}*/, #dfdfdf /*{g-bdown-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
1056
|
-
background-image: -moz-linear-gradient( #d0d0d0 /*{g-bdown-background-start}*/, #dfdfdf /*{g-bdown-background-end}*/); /* FF3.6 */
|
1057
|
-
background-image: -ms-linear-gradient( #d0d0d0 /*{g-bdown-background-start}*/, #dfdfdf /*{g-bdown-background-end}*/); /* IE10 */
|
1058
|
-
background-image: -o-linear-gradient( #d0d0d0 /*{g-bdown-background-start}*/, #dfdfdf /*{g-bdown-background-end}*/); /* Opera 11.10+ */
|
1059
|
-
background-image: linear-gradient( #d0d0d0 /*{g-bdown-background-start}*/, #dfdfdf /*{g-bdown-background-end}*/);
|
1060
|
-
}
|
1061
|
-
.ui-btn-down-g:visited,
|
1062
|
-
.ui-btn-down-g:hover,
|
1063
|
-
.ui-btn-down-g a.ui-link-inherit {
|
1064
|
-
color: #2f3e46 /*{g-bdown-color}*/;
|
1065
|
-
}
|
1066
|
-
.ui-btn-up-g,
|
1067
|
-
.ui-btn-hover-g,
|
1068
|
-
.ui-btn-down-g {
|
1069
|
-
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
1070
|
-
text-decoration: none;
|
1071
|
-
}
|
1072
|
-
|
1073
|
-
|
1074
|
-
|
1075
|
-
|
1076
|
-
/* Structure */
|
1077
|
-
|
1078
|
-
/* links within "buttons"
|
1079
|
-
-----------------------------------------------------------------------------------------------------------*/
|
1080
|
-
|
1081
|
-
a.ui-link-inherit {
|
1082
|
-
text-decoration: none !important;
|
1083
|
-
}
|
1084
|
-
|
1085
|
-
|
1086
|
-
/* Active class used as the "on" state across all themes
|
1087
|
-
-----------------------------------------------------------------------------------------------------------*/
|
1088
|
-
.ui-btn-active {
|
1089
|
-
border: 1px solid #33cccc /*{global-active-border}*/;
|
1090
|
-
background: #bcecff /*{global-active-background-color}*/;
|
1091
|
-
font-weight: bold;
|
1092
|
-
color: #000000 /*{global-active-color}*/;
|
1093
|
-
cursor: pointer;
|
1094
|
-
text-shadow: 0 /*{global-active-shadow-x}*/ 1px /*{global-active-shadow-y}*/ 1px /*{global-active-shadow-radius}*/ #eeeeee /*{global-active-shadow-color}*/;
|
1095
|
-
text-decoration: none;
|
1096
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from( #ceFFFF /*{global-active-background-start}*/), to( #a9d4e5 /*{global-active-background-end}*/)); /* Saf4+, Chrome */
|
1097
|
-
background-image: -webkit-linear-gradient( #ceFFFF /*{global-active-background-start}*/, #a9d4e5 /*{global-active-background-end}*/); /* Chrome 10+, Saf5.1+ */
|
1098
|
-
background-image: -moz-linear-gradient( #ceFFFF /*{global-active-background-start}*/, #a9d4e5 /*{global-active-background-end}*/); /* FF3.6 */
|
1099
|
-
background-image: -ms-linear-gradient( #ceFFFF /*{global-active-background-start}*/, #a9d4e5 /*{global-active-background-end}*/); /* IE10 */
|
1100
|
-
background-image: -o-linear-gradient( #ceFFFF /*{global-active-background-start}*/, #a9d4e5 /*{global-active-background-end}*/); /* Opera 11.10+ */
|
1101
|
-
background-image: linear-gradient( #ceFFFF /*{global-active-background-start}*/, #a9d4e5 /*{global-active-background-end}*/);
|
1102
|
-
font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/;
|
1103
|
-
}
|
1104
|
-
.ui-btn-active:visited,
|
1105
|
-
.ui-btn-active:hover,
|
1106
|
-
.ui-btn-active a.ui-link-inherit {
|
1107
|
-
color: #000000 /*{global-active-color}*/;
|
1108
|
-
}
|
1109
|
-
|
1110
|
-
|
1111
|
-
/* button inner top highlight
|
1112
|
-
-----------------------------------------------------------------------------------------------------------*/
|
1113
|
-
|
1114
|
-
.ui-btn-inner {
|
1115
|
-
border-top: 1px solid #fff;
|
1116
|
-
border-color: rgba(255,255,255,.3);
|
1117
|
-
}
|
1118
|
-
|
1119
|
-
|
1120
|
-
/* corner rounding classes
|
1121
|
-
-----------------------------------------------------------------------------------------------------------*/
|
1122
|
-
|
1123
|
-
.ui-corner-tl {
|
1124
|
-
-moz-border-radius-topleft: .6em /*{global-radii-blocks}*/;
|
1125
|
-
-webkit-border-top-left-radius: .6em /*{global-radii-blocks}*/;
|
1126
|
-
border-top-left-radius: .6em /*{global-radii-blocks}*/;
|
1127
|
-
}
|
1128
|
-
.ui-corner-tr {
|
1129
|
-
-moz-border-radius-topright: .6em /*{global-radii-blocks}*/;
|
1130
|
-
-webkit-border-top-right-radius: .6em /*{global-radii-blocks}*/;
|
1131
|
-
border-top-right-radius: .6em /*{global-radii-blocks}*/;
|
1132
|
-
}
|
1133
|
-
.ui-corner-bl {
|
1134
|
-
-moz-border-radius-bottomleft: .6em /*{global-radii-blocks}*/;
|
1135
|
-
-webkit-border-bottom-left-radius: .6em /*{global-radii-blocks}*/;
|
1136
|
-
border-bottom-left-radius: .6em /*{global-radii-blocks}*/;
|
1137
|
-
}
|
1138
|
-
.ui-corner-br {
|
1139
|
-
-moz-border-radius-bottomright: .6em /*{global-radii-blocks}*/;
|
1140
|
-
-webkit-border-bottom-right-radius: .6em /*{global-radii-blocks}*/;
|
1141
|
-
border-bottom-right-radius: .6em /*{global-radii-blocks}*/;
|
1142
|
-
}
|
1143
|
-
.ui-corner-top {
|
1144
|
-
-moz-border-radius-topleft: .6em /*{global-radii-blocks}*/;
|
1145
|
-
-webkit-border-top-left-radius: .6em /*{global-radii-blocks}*/;
|
1146
|
-
border-top-left-radius: .6em /*{global-radii-blocks}*/;
|
1147
|
-
-moz-border-radius-topright: .6em /*{global-radii-blocks}*/;
|
1148
|
-
-webkit-border-top-right-radius: .6em /*{global-radii-blocks}*/;
|
1149
|
-
border-top-right-radius: .6em /*{global-radii-blocks}*/;
|
1150
|
-
}
|
1151
|
-
.ui-corner-bottom {
|
1152
|
-
-moz-border-radius-bottomleft: .6em /*{global-radii-blocks}*/;
|
1153
|
-
-webkit-border-bottom-left-radius: .6em /*{global-radii-blocks}*/;
|
1154
|
-
border-bottom-left-radius: .6em /*{global-radii-blocks}*/;
|
1155
|
-
-moz-border-radius-bottomright: .6em /*{global-radii-blocks}*/;
|
1156
|
-
-webkit-border-bottom-right-radius: .6em /*{global-radii-blocks}*/;
|
1157
|
-
border-bottom-right-radius: .6em /*{global-radii-blocks}*/;
|
1158
|
-
}
|
1159
|
-
.ui-corner-right {
|
1160
|
-
-moz-border-radius-topright: .6em /*{global-radii-blocks}*/;
|
1161
|
-
-webkit-border-top-right-radius: .6em /*{global-radii-blocks}*/;
|
1162
|
-
border-top-right-radius: .6em /*{global-radii-blocks}*/;
|
1163
|
-
-moz-border-radius-bottomright: .6em /*{global-radii-blocks}*/;
|
1164
|
-
-webkit-border-bottom-right-radius: .6em /*{global-radii-blocks}*/;
|
1165
|
-
border-bottom-right-radius: .6em /*{global-radii-blocks}*/;
|
1166
|
-
}
|
1167
|
-
.ui-corner-left {
|
1168
|
-
-moz-border-radius-topleft: .6em /*{global-radii-blocks}*/;
|
1169
|
-
-webkit-border-top-left-radius: .6em /*{global-radii-blocks}*/;
|
1170
|
-
border-top-left-radius: .6em /*{global-radii-blocks}*/;
|
1171
|
-
-moz-border-radius-bottomleft: .6em /*{global-radii-blocks}*/;
|
1172
|
-
-webkit-border-bottom-left-radius: .6em /*{global-radii-blocks}*/;
|
1173
|
-
border-bottom-left-radius: .6em /*{global-radii-blocks}*/;
|
1174
|
-
}
|
1175
|
-
.ui-corner-all {
|
1176
|
-
-moz-border-radius: .6em /*{global-radii-blocks}*/;
|
1177
|
-
-webkit-border-radius: .6em /*{global-radii-blocks}*/;
|
1178
|
-
border-radius: .6em /*{global-radii-blocks}*/;
|
1179
|
-
}
|
1180
|
-
.ui-corner-none {
|
1181
|
-
-moz-border-radius: 0;
|
1182
|
-
-webkit-border-radius: 0;
|
1183
|
-
border-radius: 0;
|
1184
|
-
}
|
1185
|
-
|
1186
|
-
/* Form field separator
|
1187
|
-
-----------------------------------------------------------------------------------------------------------*/
|
1188
|
-
.ui-br {
|
1189
|
-
border-bottom: rgb(130,130,130);
|
1190
|
-
border-bottom: rgba(130,130,130,.3);
|
1191
|
-
border-bottom-width: 1px;
|
1192
|
-
border-bottom-style: solid;
|
1193
|
-
}
|
1194
|
-
|
1195
|
-
/* Interaction cues
|
1196
|
-
-----------------------------------------------------------------------------------------------------------*/
|
1197
|
-
.ui-disabled {
|
1198
|
-
filter: Alpha(Opacity=30);
|
1199
|
-
opacity: .3;
|
1200
|
-
zoom: 1;
|
1201
|
-
}
|
1202
|
-
.ui-disabled,
|
1203
|
-
.ui-disabled a {
|
1204
|
-
cursor: default !important;
|
1205
|
-
pointer-events: none;
|
1206
|
-
}
|
1207
|
-
|
1208
|
-
/* Icons
|
1209
|
-
-----------------------------------------------------------------------------------------------------------*/
|
1210
|
-
|
1211
|
-
.ui-icon,
|
1212
|
-
.ui-icon-searchfield:after {
|
1213
|
-
background: #000000 /*{global-icon-color}*/;
|
1214
|
-
background: rgba(0,0,0,0.4) /*{global-icon-disc}*/;
|
1215
|
-
background-image: url(images/icons-18-white.png) /*{global-icon-set}*/;
|
1216
|
-
background-repeat: no-repeat;
|
1217
|
-
-moz-border-radius: 9px;
|
1218
|
-
-webkit-border-radius: 9px;
|
1219
|
-
border-radius: 9px;
|
1220
|
-
}
|
1221
|
-
|
1222
|
-
|
1223
|
-
/* Alt icon color
|
1224
|
-
-----------------------------------------------------------------------------------------------------------*/
|
1225
|
-
|
1226
|
-
.ui-icon-alt {
|
1227
|
-
background: #fff;
|
1228
|
-
background: rgba(255,255,255,.3);
|
1229
|
-
background-image: url(images/icons-18-black.png);
|
1230
|
-
background-repeat: no-repeat;
|
1231
|
-
}
|
1232
|
-
|
1233
|
-
/* HD/"retina" sprite
|
1234
|
-
-----------------------------------------------------------------------------------------------------------*/
|
1235
|
-
|
1236
|
-
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
|
1237
|
-
only screen and (min--moz-device-pixel-ratio: 1.5),
|
1238
|
-
only screen and (min-resolution: 240dpi) {
|
1239
|
-
|
1240
|
-
.ui-icon-plus, .ui-icon-minus, .ui-icon-delete, .ui-icon-arrow-r,
|
1241
|
-
.ui-icon-arrow-l, .ui-icon-arrow-u, .ui-icon-arrow-d, .ui-icon-check,
|
1242
|
-
.ui-icon-gear, .ui-icon-refresh, .ui-icon-forward, .ui-icon-back,
|
1243
|
-
.ui-icon-grid, .ui-icon-star, .ui-icon-alert, .ui-icon-info, .ui-icon-home, .ui-icon-search, .ui-icon-searchfield:after,
|
1244
|
-
.ui-icon-checkbox-off, .ui-icon-checkbox-on, .ui-icon-radio-off, .ui-icon-radio-on {
|
1245
|
-
background-image: url(images/icons-36-white.png);
|
1246
|
-
-moz-background-size: 776px 18px;
|
1247
|
-
-o-background-size: 776px 18px;
|
1248
|
-
-webkit-background-size: 776px 18px;
|
1249
|
-
background-size: 776px 18px;
|
1250
|
-
}
|
1251
|
-
.ui-icon-alt {
|
1252
|
-
background-image: url(images/icons-36-black.png);
|
1253
|
-
}
|
1254
|
-
}
|
1255
|
-
|
1256
|
-
/* plus minus */
|
1257
|
-
.ui-icon-plus {
|
1258
|
-
background-position: -0 50%;
|
1259
|
-
}
|
1260
|
-
.ui-icon-minus {
|
1261
|
-
background-position: -36px 50%;
|
1262
|
-
}
|
1263
|
-
|
1264
|
-
/* delete/close */
|
1265
|
-
.ui-icon-delete {
|
1266
|
-
background-position: -72px 50%;
|
1267
|
-
}
|
1268
|
-
|
1269
|
-
/* arrows */
|
1270
|
-
.ui-icon-arrow-r {
|
1271
|
-
background-position: -108px 50%;
|
1272
|
-
}
|
1273
|
-
.ui-icon-arrow-l {
|
1274
|
-
background-position: -144px 50%;
|
1275
|
-
}
|
1276
|
-
.ui-icon-arrow-u {
|
1277
|
-
background-position: -180px 50%;
|
1278
|
-
}
|
1279
|
-
.ui-icon-arrow-d {
|
1280
|
-
background-position: -216px 50%;
|
1281
|
-
}
|
1282
|
-
|
1283
|
-
/* misc */
|
1284
|
-
.ui-icon-check {
|
1285
|
-
background-position: -252px 50%;
|
1286
|
-
}
|
1287
|
-
.ui-icon-gear {
|
1288
|
-
background-position: -288px 50%;
|
1289
|
-
}
|
1290
|
-
.ui-icon-refresh {
|
1291
|
-
background-position: -324px 50%;
|
1292
|
-
}
|
1293
|
-
.ui-icon-forward {
|
1294
|
-
background-position: -360px 50%;
|
1295
|
-
}
|
1296
|
-
.ui-icon-back {
|
1297
|
-
background-position: -396px 50%;
|
1298
|
-
}
|
1299
|
-
.ui-icon-grid {
|
1300
|
-
background-position: -432px 50%;
|
1301
|
-
}
|
1302
|
-
.ui-icon-star {
|
1303
|
-
background-position: -468px 50%;
|
1304
|
-
}
|
1305
|
-
.ui-icon-alert {
|
1306
|
-
background-position: -504px 50%;
|
1307
|
-
}
|
1308
|
-
.ui-icon-info {
|
1309
|
-
background-position: -540px 50%;
|
1310
|
-
}
|
1311
|
-
.ui-icon-home {
|
1312
|
-
background-position: -576px 50%;
|
1313
|
-
}
|
1314
|
-
.ui-icon-search,
|
1315
|
-
.ui-icon-searchfield:after {
|
1316
|
-
background-position: -612px 50%;
|
1317
|
-
}
|
1318
|
-
.ui-icon-checkbox-off {
|
1319
|
-
background-position: -684px 50%;
|
1320
|
-
}
|
1321
|
-
.ui-icon-checkbox-on {
|
1322
|
-
background-position: -648px 50%;
|
1323
|
-
}
|
1324
|
-
.ui-icon-radio-off {
|
1325
|
-
background-position: -756px 50%;
|
1326
|
-
}
|
1327
|
-
.ui-icon-radio-on {
|
1328
|
-
background-position: -720px 50%;
|
1329
|
-
}
|
1330
|
-
|
1331
|
-
|
1332
|
-
/* checks,radios */
|
1333
|
-
.ui-checkbox .ui-icon,
|
1334
|
-
.ui-selectmenu-list .ui-icon {
|
1335
|
-
-moz-border-radius: 3px;
|
1336
|
-
-webkit-border-radius: 3px;
|
1337
|
-
border-radius: 3px;
|
1338
|
-
}
|
1339
|
-
.ui-icon-checkbox-off,
|
1340
|
-
.ui-icon-radio-off {
|
1341
|
-
background-color: transparent;
|
1342
|
-
}
|
1343
|
-
.ui-checkbox-on .ui-icon,
|
1344
|
-
.ui-radio-on .ui-icon {
|
1345
|
-
background-color: #bcecff /*{global-active-background-color}*/; /* NOTE: this hex should match the active state color. It's repeated here for cascade */
|
1346
|
-
}
|
1347
|
-
|
1348
|
-
/* loading icon */
|
1349
|
-
.ui-icon-loading {
|
1350
|
-
background: url(images/ajax-loader.gif);
|
1351
|
-
background-size: 46px 46px;
|
1352
|
-
}
|
1353
|
-
|
1354
|
-
|
1355
|
-
/* Button corner classes
|
1356
|
-
-----------------------------------------------------------------------------------------------------------*/
|
1357
|
-
|
1358
|
-
.ui-btn-corner-tl {
|
1359
|
-
-moz-border-radius-topleft: 1em /*{global-radii-buttons}*/;
|
1360
|
-
-webkit-border-top-left-radius: 1em /*{global-radii-buttons}*/;
|
1361
|
-
border-top-left-radius: 1em /*{global-radii-buttons}*/;
|
1362
|
-
}
|
1363
|
-
.ui-btn-corner-tr {
|
1364
|
-
-moz-border-radius-topright: 1em /*{global-radii-buttons}*/;
|
1365
|
-
-webkit-border-top-right-radius: 1em /*{global-radii-buttons}*/;
|
1366
|
-
border-top-right-radius: 1em /*{global-radii-buttons}*/;
|
1367
|
-
}
|
1368
|
-
.ui-btn-corner-bl {
|
1369
|
-
-moz-border-radius-bottomleft: 1em /*{global-radii-buttons}*/;
|
1370
|
-
-webkit-border-bottom-left-radius: 1em /*{global-radii-buttons}*/;
|
1371
|
-
border-bottom-left-radius: 1em /*{global-radii-buttons}*/;
|
1372
|
-
}
|
1373
|
-
.ui-btn-corner-br {
|
1374
|
-
-moz-border-radius-bottomright: 1em /*{global-radii-buttons}*/;
|
1375
|
-
-webkit-border-bottom-right-radius: 1em /*{global-radii-buttons}*/;
|
1376
|
-
border-bottom-right-radius: 1em /*{global-radii-buttons}*/;
|
1377
|
-
}
|
1378
|
-
.ui-btn-corner-top {
|
1379
|
-
-moz-border-radius-topleft: 1em /*{global-radii-buttons}*/;
|
1380
|
-
-webkit-border-top-left-radius: 1em /*{global-radii-buttons}*/;
|
1381
|
-
border-top-left-radius: 1em /*{global-radii-buttons}*/;
|
1382
|
-
-moz-border-radius-topright: 1em /*{global-radii-buttons}*/;
|
1383
|
-
-webkit-border-top-right-radius: 1em /*{global-radii-buttons}*/;
|
1384
|
-
border-top-right-radius: 1em /*{global-radii-buttons}*/;
|
1385
|
-
}
|
1386
|
-
.ui-btn-corner-bottom {
|
1387
|
-
-moz-border-radius-bottomleft: 1em /*{global-radii-buttons}*/;
|
1388
|
-
-webkit-border-bottom-left-radius: 1em /*{global-radii-buttons}*/;
|
1389
|
-
border-bottom-left-radius: 1em /*{global-radii-buttons}*/;
|
1390
|
-
-moz-border-radius-bottomright: 1em /*{global-radii-buttons}*/;
|
1391
|
-
-webkit-border-bottom-right-radius: 1em /*{global-radii-buttons}*/;
|
1392
|
-
border-bottom-right-radius: 1em /*{global-radii-buttons}*/;
|
1393
|
-
}
|
1394
|
-
.ui-btn-corner-right {
|
1395
|
-
-moz-border-radius-topright: 1em /*{global-radii-buttons}*/;
|
1396
|
-
-webkit-border-top-right-radius: 1em /*{global-radii-buttons}*/;
|
1397
|
-
border-top-right-radius: 1em /*{global-radii-buttons}*/;
|
1398
|
-
-moz-border-radius-bottomright: 1em /*{global-radii-buttons}*/;
|
1399
|
-
-webkit-border-bottom-right-radius: 1em /*{global-radii-buttons}*/;
|
1400
|
-
border-bottom-right-radius: 1em /*{global-radii-buttons}*/;
|
1401
|
-
}
|
1402
|
-
.ui-btn-corner-left {
|
1403
|
-
-moz-border-radius-topleft: 1em /*{global-radii-buttons}*/;
|
1404
|
-
-webkit-border-top-left-radius: 1em /*{global-radii-buttons}*/;
|
1405
|
-
border-top-left-radius: 1em /*{global-radii-buttons}*/;
|
1406
|
-
-moz-border-radius-bottomleft: 1em /*{global-radii-buttons}*/;
|
1407
|
-
-webkit-border-bottom-left-radius: 1em /*{global-radii-buttons}*/;
|
1408
|
-
border-bottom-left-radius: 1em /*{global-radii-buttons}*/;
|
1409
|
-
}
|
1410
|
-
.ui-btn-corner-all {
|
1411
|
-
-moz-border-radius: 1em /*{global-radii-buttons}*/;
|
1412
|
-
-webkit-border-radius: 1em /*{global-radii-buttons}*/;
|
1413
|
-
border-radius: 1em /*{global-radii-buttons}*/;
|
1414
|
-
}
|
1415
|
-
|
1416
|
-
/* radius clip workaround for cleaning up corner trapping */
|
1417
|
-
.ui-corner-tl,
|
1418
|
-
.ui-corner-tr,
|
1419
|
-
.ui-corner-bl,
|
1420
|
-
.ui-corner-br,
|
1421
|
-
.ui-corner-top,
|
1422
|
-
.ui-corner-bottom,
|
1423
|
-
.ui-corner-right,
|
1424
|
-
.ui-corner-left,
|
1425
|
-
.ui-corner-all,
|
1426
|
-
.ui-btn-corner-tl,
|
1427
|
-
.ui-btn-corner-tr,
|
1428
|
-
.ui-btn-corner-bl,
|
1429
|
-
.ui-btn-corner-br,
|
1430
|
-
.ui-btn-corner-top,
|
1431
|
-
.ui-btn-corner-bottom,
|
1432
|
-
.ui-btn-corner-right,
|
1433
|
-
.ui-btn-corner-left,
|
1434
|
-
.ui-btn-corner-all {
|
1435
|
-
-webkit-background-clip: padding-box;
|
1436
|
-
-moz-background-clip: padding;
|
1437
|
-
background-clip: padding-box;
|
1438
|
-
}
|
1439
|
-
|
1440
|
-
/* Overlay / modal
|
1441
|
-
-----------------------------------------------------------------------------------------------------------*/
|
1442
|
-
|
1443
|
-
.ui-overlay {
|
1444
|
-
background: #666;
|
1445
|
-
filter: Alpha(Opacity=50);
|
1446
|
-
opacity: .5;
|
1447
|
-
position: absolute;
|
1448
|
-
width: 100%;
|
1449
|
-
height: 100%;
|
1450
|
-
}
|
1451
|
-
.ui-overlay-shadow {
|
1452
|
-
-moz-box-shadow: 0px 0px 12px rgba(0,0,0,.6);
|
1453
|
-
-webkit-box-shadow: 0px 0px 12px rgba(0,0,0,.6);
|
1454
|
-
box-shadow: 0px 0px 12px rgba(0,0,0,.6);
|
1455
|
-
}
|
1456
|
-
.ui-shadow {
|
1457
|
-
-moz-box-shadow: 0px 1px 4px /*{global-box-shadow-size}*/ rgba(0,0,0,.3) /*{global-box-shadow-color}*/;
|
1458
|
-
-webkit-box-shadow: 0px 1px 4px /*{global-box-shadow-size}*/ rgba(0,0,0,.3) /*{global-box-shadow-color}*/;
|
1459
|
-
box-shadow: 0px 1px 4px /*{global-box-shadow-size}*/ rgba(0,0,0,.3) /*{global-box-shadow-color}*/;
|
1460
|
-
}
|
1461
|
-
.ui-bar-a .ui-shadow,
|
1462
|
-
.ui-bar-b .ui-shadow ,
|
1463
|
-
.ui-bar-c .ui-shadow {
|
1464
|
-
-moz-box-shadow: 0px 1px 0 rgba(255,255,255,.3);
|
1465
|
-
-webkit-box-shadow: 0px 1px 0 rgba(255,255,255,.3);
|
1466
|
-
box-shadow: 0px 1px 0 rgba(255,255,255,.3);
|
1467
|
-
}
|
1468
|
-
.ui-shadow-inset {
|
1469
|
-
-moz-box-shadow: inset 0px 1px 4px rgba(0,0,0,.2);
|
1470
|
-
-webkit-box-shadow: inset 0px 1px 4px rgba(0,0,0,.2);
|
1471
|
-
box-shadow: inset 0px 1px 4px rgba(0,0,0,.2);
|
1472
|
-
}
|
1473
|
-
.ui-icon-shadow {
|
1474
|
-
-moz-box-shadow: 0px 1px 0 rgba(255,255,255,.4) /*{global-icon-shadow}*/;
|
1475
|
-
-webkit-box-shadow: 0px 1px 0 rgba(255,255,255,.4) /*{global-icon-shadow}*/;
|
1476
|
-
box-shadow: 0px 1px 0 rgba(255,255,255,.4) /*{global-icon-shadow}*/;
|
1477
|
-
}
|
1478
|
-
|
1479
|
-
/* Focus state - set here for specificity (note: these classes are added by JavaScript)
|
1480
|
-
-----------------------------------------------------------------------------------------------------------*/
|
1481
|
-
|
1482
|
-
.ui-btn:focus, .ui-link-inherit:focus {
|
1483
|
-
outline: 0;
|
1484
|
-
}
|
1485
|
-
.ui-btn.ui-focus {
|
1486
|
-
z-index: 1;
|
1487
|
-
}
|
1488
|
-
.ui-focus,
|
1489
|
-
.ui-btn:focus {
|
1490
|
-
-moz-box-shadow: inset 0px 0px 3px #bcecff /*{global-active-background-color}*/, 0px 0px 9px #bcecff /*{global-active-background-color}*/;
|
1491
|
-
-webkit-box-shadow: inset 0px 0px 3px #bcecff /*{global-active-background-color}*/, 0px 0px 9px #bcecff /*{global-active-background-color}*/;
|
1492
|
-
box-shadow: inset 0px 0px 3px #bcecff /*{global-active-background-color}*/, 0px 0px 9px #bcecff /*{global-active-background-color}*/;
|
1493
|
-
}
|
1494
|
-
.ui-input-text.ui-focus,
|
1495
|
-
.ui-input-search.ui-focus {
|
1496
|
-
-moz-box-shadow: 0px 0px 12px #bcecff /*{global-active-background-color}*/;
|
1497
|
-
-webkit-box-shadow: 0px 0px 12px #bcecff /*{global-active-background-color}*/;
|
1498
|
-
box-shadow: 0px 0px 12px #bcecff /*{global-active-background-color}*/;
|
1499
|
-
}
|
1500
|
-
|
1501
|
-
/* unset box shadow in browsers that don't do it right
|
1502
|
-
-----------------------------------------------------------------------------------------------------------*/
|
1503
|
-
|
1504
|
-
.ui-mobile-nosupport-boxshadow * {
|
1505
|
-
-moz-box-shadow: none !important;
|
1506
|
-
-webkit-box-shadow: none !important;
|
1507
|
-
box-shadow: none !important;
|
1508
|
-
}
|
1509
|
-
|
1510
|
-
/* ...and bring back focus */
|
1511
|
-
.ui-mobile-nosupport-boxshadow .ui-focus,
|
1512
|
-
.ui-mobile-nosupport-boxshadow .ui-btn:focus,
|
1513
|
-
.ui-mobile-nosupport-boxshadow .ui-link-inherit:focus {
|
1514
|
-
outline-width: 1px;
|
1515
|
-
outline-style: auto;
|
1516
|
-
}
|