gmaps-autocomplete-rails 0.1.4 → 0.2.0

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.
Files changed (38) hide show
  1. checksums.yaml +4 -4
  2. data/.document +5 -0
  3. data/.rspec +1 -0
  4. data/CHANGELOG +21 -0
  5. data/Gemfile +0 -2
  6. data/README.md +84 -4
  7. data/Rakefile +40 -0
  8. data/VERSION +1 -0
  9. data/gmaps-autocomplete-rails.gemspec +56 -32
  10. data/lib/gmaps-autocomplete-rails.rb +2 -0
  11. data/lib/gmaps-autocomplete-rails/version.rb +5 -0
  12. data/lib/{gmaps-autocomplete → gmaps-autocomplete-rails}/view_helper.rb +0 -0
  13. data/spec/config/config-gmaps-auto-coffee.js +15 -0
  14. data/spec/config/config-gmaps-auto.coffee +7 -0
  15. data/spec/config/config-gmaps-auto.js +4 -0
  16. data/spec/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  17. data/spec/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  18. data/spec/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  19. data/spec/jquery-ui/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  20. data/spec/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  21. data/spec/jquery-ui/images/ui-bg_glass_75_ffffff_1x400.png +0 -0
  22. data/spec/jquery-ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  23. data/spec/jquery-ui/images/ui-bg_inset-soft_95_fef1ec_1x100.png +0 -0
  24. data/spec/jquery-ui/images/ui-icons_222222_256x240.png +0 -0
  25. data/spec/jquery-ui/images/ui-icons_2e83ff_256x240.png +0 -0
  26. data/spec/jquery-ui/images/ui-icons_454545_256x240.png +0 -0
  27. data/spec/jquery-ui/images/ui-icons_888888_256x240.png +0 -0
  28. data/spec/jquery-ui/images/ui-icons_cd0a0a_256x240.png +0 -0
  29. data/spec/jquery-ui/images/ui-icons_f6cf3b_256x240.png +0 -0
  30. data/spec/jquery-ui/jquery-ui-1.8.16.custom.css +1320 -0
  31. data/spec/jquery-ui/jquery.ui.1.8.16.ie.css +6 -0
  32. data/spec/main.css +89 -0
  33. data/spec/spec_helper.rb +12 -0
  34. data/spec/test-gmaps-auto-coffee.html +54 -0
  35. data/spec/test-gmaps-auto.html +63 -0
  36. data/vendor/assets/javascripts/gmaps-auto-complete.coffee +306 -0
  37. data/vendor/assets/javascripts/gmaps-auto-complete.js +147 -287
  38. metadata +34 -32
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 90efee2225603ef14f7dba29ae069649a04e3181
4
- data.tar.gz: de4e8faefab4ffb298a31825ce0ede6e29a43ce7
3
+ metadata.gz: 1edade2c759d7f23f696deab9d5e50530c356809
4
+ data.tar.gz: 80bef7771fdcf2c06d5f4aa8f583359f6d80a7c6
5
5
  SHA512:
6
- metadata.gz: 2b835b6e9dccda0a073bb22b696498a89279eed95e0a8bf85b0e21135ebd33b79f89eee50af3ff77e6100ea5232812237a7ef78c616549c7b8025d7ed695c0d3
7
- data.tar.gz: 207a866bef3c9ae88f103e93f81e1d2ccf2de916368d30dc929fafec7190b6931699f367a72f94fdf042db24ca5914f6ec5b7da2e8f232ceda1c371672a43507
6
+ metadata.gz: b5eb4392265760452e853bc17815e849dfaa004309ede40d2e90169cbfd2c955f06bc1e78478c0e1e317a7f11d53432712e97360ea103ebd7317998fc8d4170f
7
+ data.tar.gz: d51af6e94c8be47ca76975566acae67f55b03df0c6a32d64d39eba4c0c640615b173f0505ad5b4fdc5e21598ca69961809efda3154e8e47b719cdb59381df64d
data/.document ADDED
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
data/CHANGELOG ADDED
@@ -0,0 +1,21 @@
1
+ ## 0.2.0 Aug 2016
2
+
3
+ - allow limiting a search to a country
4
+
5
+ ## 0.1.4
6
+
7
+ - 23. Aug 2014
8
+
9
+ Updated for Rails 4+ and fixed some bugs!!
10
+
11
+ ## 0.1.3
12
+
13
+ - Fixed bugs in Coffee script version
14
+ - Deprecated old static namespace version
15
+
16
+ ## 0.1.2
17
+
18
+ - Fixed some bugs
19
+ - Made defaultOptions directly accessible via GmapsAutoComplete.defaultOptions
20
+ - Added country option in order to allow for shorter addresses
21
+ - Added debug functionality that can be enabled via debugOn option
data/Gemfile CHANGED
@@ -4,8 +4,6 @@ gem 'rails', '>= 3.1.0'
4
4
 
5
5
  group :development do
6
6
  gem "rspec", ">= 2.9.0"
7
- gem "rdoc", ">= 3.12"
8
7
  gem "bundler", ">= 1.1.0"
9
8
  gem "jeweler", ">= 1.8.4"
10
- gem "simplecov", ">= 0.5"
11
9
  end
data/README.md CHANGED
@@ -4,16 +4,20 @@ Extracted from [gmaps-autocomplete](https://github.com/rjshade/gmaps-autocomplet
4
4
 
5
5
  ## General info
6
6
 
7
- The script is now compiled from Coffeescript and allows you to have multiple fields linked to multiple instances of the `GmapsCompleter` class on the same page.
7
+ The script is now compiled from Coffeescript and allows you to have multiple fields linked to multiple instances of the `GmapsCompleter` class on the same page.
8
8
 
9
9
  I recommend that you also check out: [google maps and RoR](http://stackoverflow.com/questions/7466872/google-maps-and-ror-3-1)
10
10
 
11
11
  ## Upgrading
12
12
 
13
- Version 1.3+ now comes only with a Class based GmapsCompleter. The old static GmapsCompleter container, used in version 1.2 (and below) has been deprecated.
13
+ Version 1.3+ now comes only with a class based `GmapsCompleter`. The old static GmapsCompleter container, used in version 1.2 (and below) has been deprecated.
14
14
 
15
15
  Please upgrade your configuration functionality as demonstrated in the usage/config instructions below.
16
16
 
17
+ ### Time for a redo!?
18
+
19
+ In my own humble opinion, this library is in *dire need to be completely redone*. I would love if someone out there was brave enough to refactor (or better redo from scratch!) this library. The time has come.... Thanks ;)
20
+
17
21
  ## Install
18
22
 
19
23
  ## Update gem dependencies
@@ -57,13 +61,24 @@ Include the google maps script before `application.js`, fx in your layout file:
57
61
  *application.html.erb*
58
62
 
59
63
  ```erb
60
- <script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>
64
+ <script async defer type="text/javascript" src="https://maps.googleapis.com/maps/api/js?sensor=false"></script>
61
65
  <%= javascript_include_tag "application" %>
62
66
  ```
63
67
 
64
68
  Note also that the autocomplete script currently depends on jQuery 1.6+.
65
69
  Please feel free to remove this dependency with a pull request :)
66
70
 
71
+ ### Using Google API keys
72
+
73
+ [Google API keys](https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key)
74
+
75
+ ```js
76
+ <script async defer src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap"
77
+ type="text/javascript"></script>
78
+ ```
79
+
80
+ Note: Google apparently now requires use of the `HTTPS` protocol. This is enforced to ensure that your key (and location?) is not intercepted. Better safe than sorry ;)
81
+
67
82
  ## Customization
68
83
 
69
84
  If you want to customize the gem to use another autocomplete "engine" than the default (assumed to be *jquery-ui*), then fork the gem and change the following
@@ -248,7 +263,7 @@ class MyCompleterAssist extends GmapsCompleterDefaultAssist
248
263
  updateUI: (address, latLng) ->
249
264
  console.log "Doing my own thang!"
250
265
  // ...
251
-
266
+
252
267
  super (address, latLng)
253
268
  ```
254
269
 
@@ -401,6 +416,71 @@ Alternatively perhaps use RequireJS via the `requirejs-rails` gem, and load it "
401
416
 
402
417
  Enjoy!
403
418
 
419
+ ## Troubleshooting
420
+
421
+ `Uncaught ReferenceError: google is not defined`
422
+
423
+ You must remember to include google maps in your html page before `gmaps-autocomplete` (see *application.html.erb* above).
424
+
425
+ `<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>`
426
+
427
+
428
+ ### Dropdown transparency
429
+
430
+ Some developers have experiences transparency issues for the autocomplete dropdown. This is a CSS issue which can be fixed as noted in [#14](https://github.com/kristianmandrup/gmaps-autocomplete-rails/issues/14)
431
+
432
+ ```css
433
+ .ui-autocomplete {
434
+ position: absolute;
435
+ top: 100%;
436
+ left: 0;
437
+ z-index: 1000;
438
+ float: left;
439
+ display: none;
440
+ min-width: 160px;
441
+ _width: 160px;
442
+ padding: 4px 0;
443
+ margin: 2px 0 0 0;
444
+ list-style: none;
445
+ background-color: #ffffff;
446
+ border-color: #ccc;
447
+ border-color: rgba(0, 0, 0, 0.2);
448
+ border-style: solid;
449
+ border-width: 1px;
450
+ -webkit-border-radius: 5px;
451
+ -moz-border-radius: 5px;
452
+ border-radius: 5px;
453
+ -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
454
+ -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
455
+ box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
456
+ -webkit-background-clip: padding-box;
457
+ -moz-background-clip: padding;
458
+ background-clip: padding-box;
459
+ *border-right-width: 2px;
460
+ *border-bottom-width: 2px;
461
+
462
+ .ui-menu-item > a.ui-corner-all {
463
+ display: block;
464
+ padding: 3px 15px;
465
+ clear: both;
466
+ font-weight: normal;
467
+ line-height: 18px;
468
+ color: #555555;
469
+ white-space: nowrap;
470
+
471
+ &.ui-state-focus, &.ui-state-active {
472
+ color: #ffffff;
473
+ text-decoration: none;
474
+ background-color: #0088cc;
475
+ border-radius: 0px;
476
+ -webkit-border-radius: 0px;
477
+ -moz-border-radius: 0px;
478
+ background-image: none;
479
+ }
480
+ }
481
+ }
482
+ ```
483
+
404
484
  ## TODO
405
485
 
406
486
  * even better class based functionality encapsulation
data/Rakefile ADDED
@@ -0,0 +1,40 @@
1
+ # encoding: utf-8
2
+
3
+ require 'rubygems'
4
+ require 'bundler'
5
+ begin
6
+ Bundler.setup(:default, :development)
7
+ rescue Bundler::BundlerError => e
8
+ $stderr.puts e.message
9
+ $stderr.puts "Run `bundle install` to install missing gems"
10
+ exit e.status_code
11
+ end
12
+ require 'rake'
13
+
14
+ require 'jeweler'
15
+ Jeweler::Tasks.new do |gem|
16
+ # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
17
+ gem.name = "gmaps-autocomplete-rails"
18
+ gem.homepage = "http://github.com/kristianmandrup/gmaps-autocomplete-rails"
19
+ gem.license = "MIT"
20
+ gem.summary = %Q{Google Maps v3 search with jQuery UI Autocomplete, ready for use with Rails asset pipeline}
21
+ gem.description = %Q{Easily add autocomplete geo-functionality to your Rails app :)}
22
+ gem.email = "kmandrup@gmail.com"
23
+ gem.authors = ["Kristian Mandrup"]
24
+ # dependencies defined in Gemfile
25
+ end
26
+ Jeweler::RubygemsDotOrgTasks.new
27
+
28
+ require 'rspec/core'
29
+ require 'rspec/core/rake_task'
30
+ RSpec::Core::RakeTask.new(:spec) do |spec|
31
+ spec.pattern = FileList['spec/**/*_spec.rb']
32
+ end
33
+
34
+ RSpec::Core::RakeTask.new(:rcov) do |spec|
35
+ spec.pattern = 'spec/**/*_spec.rb'
36
+ spec.rcov = true
37
+ end
38
+
39
+ task :default => :spec
40
+
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.2.0
@@ -2,61 +2,85 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: gmaps-autocomplete-rails 0.1.3 ruby lib
5
+ # stub: gmaps-autocomplete-rails 0.2.0 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
- s.name = "gmaps-autocomplete-rails"
9
- s.version = "0.1.4"
8
+ s.name = "gmaps-autocomplete-rails".freeze
9
+ s.version = "0.2.0"
10
10
 
11
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
- s.require_paths = ["lib"]
13
- s.authors = ["Kristian Mandrup"]
14
- s.date = "2014-08-23"
15
- s.description = "Easily add autocomplete geo-functionality to your Rails app :)"
16
- s.email = "kmandrup@gmail.com"
11
+ s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
12
+ s.require_paths = ["lib".freeze]
13
+ s.authors = ["Kristian Mandrup".freeze]
14
+ s.date = "2016-08-25"
15
+ s.description = "Easily add autocomplete geo-functionality to your Rails app :)".freeze
16
+ s.email = "kmandrup@gmail.com".freeze
17
17
  s.extra_rdoc_files = [
18
18
  "LICENSE.txt",
19
19
  "README.md"
20
20
  ]
21
21
  s.files = [
22
+ ".document",
23
+ ".rspec",
24
+ "CHANGELOG",
22
25
  "Gemfile",
23
26
  "LICENSE.txt",
24
27
  "README.md",
28
+ "Rakefile",
29
+ "VERSION",
25
30
  "gmaps-autocomplete-rails.gemspec",
26
31
  "lib/gmaps-autocomplete-rails.rb",
27
- "lib/gmaps-autocomplete/view_helper.rb",
32
+ "lib/gmaps-autocomplete-rails/version.rb",
33
+ "lib/gmaps-autocomplete-rails/view_helper.rb",
34
+ "spec/config/config-gmaps-auto-coffee.js",
35
+ "spec/config/config-gmaps-auto.coffee",
36
+ "spec/config/config-gmaps-auto.js",
37
+ "spec/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png",
38
+ "spec/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.png",
39
+ "spec/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png",
40
+ "spec/jquery-ui/images/ui-bg_glass_75_dadada_1x400.png",
41
+ "spec/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.png",
42
+ "spec/jquery-ui/images/ui-bg_glass_75_ffffff_1x400.png",
43
+ "spec/jquery-ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png",
44
+ "spec/jquery-ui/images/ui-bg_inset-soft_95_fef1ec_1x100.png",
45
+ "spec/jquery-ui/images/ui-icons_222222_256x240.png",
46
+ "spec/jquery-ui/images/ui-icons_2e83ff_256x240.png",
47
+ "spec/jquery-ui/images/ui-icons_454545_256x240.png",
48
+ "spec/jquery-ui/images/ui-icons_888888_256x240.png",
49
+ "spec/jquery-ui/images/ui-icons_cd0a0a_256x240.png",
50
+ "spec/jquery-ui/images/ui-icons_f6cf3b_256x240.png",
51
+ "spec/jquery-ui/jquery-ui-1.8.16.custom.css",
52
+ "spec/jquery-ui/jquery.ui.1.8.16.ie.css",
53
+ "spec/main.css",
54
+ "spec/spec_helper.rb",
55
+ "spec/test-gmaps-auto-coffee.html",
56
+ "spec/test-gmaps-auto.html",
57
+ "vendor/assets/javascripts/gmaps-auto-complete.coffee",
28
58
  "vendor/assets/javascripts/gmaps-auto-complete.js"
29
59
  ]
30
- s.homepage = "http://github.com/kristianmandrup/gmaps-autocomplete-rails"
31
- s.licenses = ["MIT"]
32
- s.rubygems_version = "2.2.2"
33
- s.summary = "Google Maps v3 search with jQuery UI Autocomplete, ready for use with Rails asset pipeline"
60
+ s.homepage = "http://github.com/kristianmandrup/gmaps-autocomplete-rails".freeze
61
+ s.licenses = ["MIT".freeze]
62
+ s.rubygems_version = "2.6.2".freeze
63
+ s.summary = "Google Maps v3 search with jQuery UI Autocomplete, ready for use with Rails asset pipeline".freeze
34
64
 
35
65
  if s.respond_to? :specification_version then
36
66
  s.specification_version = 4
37
67
 
38
68
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
39
- s.add_runtime_dependency(%q<rails>, [">= 3.1.0"])
40
- s.add_development_dependency(%q<rspec>, [">= 2.9.0"])
41
- s.add_development_dependency(%q<rdoc>, [">= 3.12"])
42
- s.add_development_dependency(%q<bundler>, [">= 1.1.0"])
43
- s.add_development_dependency(%q<jeweler>, [">= 1.8.4"])
44
- s.add_development_dependency(%q<simplecov>, [">= 0.5"])
69
+ s.add_runtime_dependency(%q<rails>.freeze, [">= 3.1.0"])
70
+ s.add_development_dependency(%q<rspec>.freeze, [">= 2.9.0"])
71
+ s.add_development_dependency(%q<bundler>.freeze, [">= 1.1.0"])
72
+ s.add_development_dependency(%q<jeweler>.freeze, [">= 1.8.4"])
45
73
  else
46
- s.add_dependency(%q<rails>, [">= 3.1.0"])
47
- s.add_dependency(%q<rspec>, [">= 2.9.0"])
48
- s.add_dependency(%q<rdoc>, [">= 3.12"])
49
- s.add_dependency(%q<bundler>, [">= 1.1.0"])
50
- s.add_dependency(%q<jeweler>, [">= 1.8.4"])
51
- s.add_dependency(%q<simplecov>, [">= 0.5"])
74
+ s.add_dependency(%q<rails>.freeze, [">= 3.1.0"])
75
+ s.add_dependency(%q<rspec>.freeze, [">= 2.9.0"])
76
+ s.add_dependency(%q<bundler>.freeze, [">= 1.1.0"])
77
+ s.add_dependency(%q<jeweler>.freeze, [">= 1.8.4"])
52
78
  end
53
79
  else
54
- s.add_dependency(%q<rails>, [">= 3.1.0"])
55
- s.add_dependency(%q<rspec>, [">= 2.9.0"])
56
- s.add_dependency(%q<rdoc>, [">= 3.12"])
57
- s.add_dependency(%q<bundler>, [">= 1.1.0"])
58
- s.add_dependency(%q<jeweler>, [">= 1.8.4"])
59
- s.add_dependency(%q<simplecov>, [">= 0.5"])
80
+ s.add_dependency(%q<rails>.freeze, [">= 3.1.0"])
81
+ s.add_dependency(%q<rspec>.freeze, [">= 2.9.0"])
82
+ s.add_dependency(%q<bundler>.freeze, [">= 1.1.0"])
83
+ s.add_dependency(%q<jeweler>.freeze, [">= 1.8.4"])
60
84
  end
61
85
  end
62
86
 
@@ -1,3 +1,5 @@
1
+ require "gmaps-autocomplete-rails/version"
2
+
1
3
  module GmapsAutoComplete
2
4
  module Rails
3
5
  class Engine < ::Rails::Engine
@@ -0,0 +1,5 @@
1
+ module GmapsAutoComplete
2
+ module Rails
3
+ VERSION = "0.1.5"
4
+ end
5
+ end
@@ -0,0 +1,15 @@
1
+ (function() {
2
+ jQuery(function() {
3
+ var completer;
4
+
5
+ completer = new GmapsCompleter({
6
+ inputField: '#gmaps-input-address',
7
+ errorField: '#gmaps-error',
8
+ debugOn: true
9
+ });
10
+ return completer.autoCompleteInit({
11
+ country: "us"
12
+ });
13
+ });
14
+
15
+ }).call(this);
@@ -0,0 +1,7 @@
1
+ jQuery ->
2
+ completer = new GmapsCompleter
3
+ inputField: '#gmaps-input-address'
4
+ errorField: '#gmaps-error'
5
+
6
+ completer.autoCompleteInit
7
+ country: "us"
@@ -0,0 +1,4 @@
1
+ $(document).ready(function() {
2
+ GmapsAutoComplete.init();
3
+ GmapsAutoComplete.autoCompleteInit();
4
+ });
@@ -0,0 +1,1320 @@
1
+ /*!
2
+ * jQuery UI Bootstrap (0.22)
3
+ * http://addyosmani.github.com/jquery-ui-bootstrap
4
+ *
5
+ * Copyright 2012, Addy Osmani
6
+ * Dual licensed under the MIT or GPL Version 2 licenses.
7
+ *
8
+ * Portions copyright jQuery UI & Twitter Bootstrap
9
+ */
10
+
11
+
12
+ /* Layout helpers
13
+ ----------------------------------*/
14
+ .ui-helper-hidden { display: none; }
15
+ .ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
16
+ .ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
17
+ .ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
18
+ .ui-helper-clearfix { display: inline-block; }
19
+ /* required comment for clearfix to work in Opera \*/
20
+ * html .ui-helper-clearfix { height:1%; }
21
+ .ui-helper-clearfix { display:block; }
22
+ /* end clearfix */
23
+ .ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
24
+
25
+
26
+ /* Interaction Cues
27
+ ----------------------------------*/
28
+ .ui-state-disabled { cursor: default !important; }
29
+
30
+
31
+ /* Icons
32
+ ----------------------------------*/
33
+
34
+ /* states and images */
35
+ .ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
36
+
37
+
38
+ /* Misc visuals
39
+ ----------------------------------*/
40
+
41
+ /* Overlays */
42
+ .ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
43
+
44
+
45
+ /*
46
+ * jQuery UI CSS Framework 1.8.16
47
+ *
48
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
49
+ * Dual licensed under the MIT or GPL Version 2 licenses.
50
+ * http://jquery.org/license
51
+ *
52
+ * http://docs.jquery.com/UI/Theming/API
53
+ *
54
+ * To view and modify this theme, visit http://jqueryui.com/themeroller/?ctl=themeroller
55
+ */
56
+
57
+
58
+ /* Component containers
59
+ ----------------------------------*/
60
+ .ui-widget { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size:13px; }
61
+ .ui-widget .ui-widget { font-size: 1em; }
62
+ .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 1em; }
63
+ .ui-widget-content { border: 1px solid #aaaaaa; background: #ffffff url(images/ui-bg_glass_75_ffffff_1x400.png) 50% 50% repeat-x; color: #404040; }
64
+ .ui-widget-content a { color: #404040; }
65
+ .ui-widget-header {
66
+ font-weight:bold;
67
+ border-color: #0064cd #0064cd #003f81;
68
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
69
+ border:1px solid #666;
70
+
71
+ }
72
+ .ui-widget-header a { color: #222222; }
73
+
74
+ /* Interaction states
75
+ ----------------------------------*/
76
+ .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
77
+
78
+ background-color: #e6e6e6;
79
+ background-repeat: no-repeat;
80
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
81
+ background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
82
+ background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
83
+ background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
84
+ background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
85
+ background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
86
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
87
+
88
+ text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
89
+
90
+ color: #333;
91
+ font-size: 13px;
92
+ line-height: normal;
93
+ border: 1px solid #ccc;
94
+ border-bottom-color: #bbb;
95
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
96
+ -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
97
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
98
+ -webkit-transition: 0.1s linear background-image;
99
+ -moz-transition: 0.1s linear background-image;
100
+ -ms-transition: 0.1s linear background-image;
101
+ -o-transition: 0.1s linear background-image;
102
+ transition: 0.1s linear background-image;
103
+ overflow: visible;
104
+
105
+ }
106
+
107
+
108
+ .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #555555; text-decoration: none; }
109
+ .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus {
110
+ background-position: 0 -15px;
111
+ color: #333;
112
+ text-decoration: none;
113
+
114
+
115
+ }
116
+ .ui-state-hover a, .ui-state-hover a:hover { color: #212121; text-decoration: none; }
117
+ .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #aaaaaa; font-weight: normal; color: #212121; }
118
+ .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #212121; text-decoration: none; }
119
+ .ui-widget :active { outline: none; }
120
+
121
+ /* Interaction Cues
122
+ ----------------------------------*/
123
+
124
+
125
+ .ui-state-highlight p, .ui-state-error p, .ui-state-default p{
126
+ font-size: 13px;
127
+ font-weight: normal;
128
+ line-height: 18px;
129
+ margin:7px 15px;
130
+ }
131
+ .ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
132
+
133
+
134
+ position: relative;
135
+ margin-bottom: 18px;
136
+ color: #404040;
137
+ background-color: #eedc94;
138
+ background-repeat: repeat-x;
139
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1), to(#eedc94));
140
+ background-image: -moz-linear-gradient(top, #fceec1, #eedc94);
141
+ background-image: -ms-linear-gradient(top, #fceec1, #eedc94);
142
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fceec1), color-stop(100%, #eedc94));
143
+ background-image: -webkit-linear-gradient(top, #fceec1, #eedc94);
144
+ background-image: -o-linear-gradient(top, #fceec1, #eedc94);
145
+ background-image: linear-gradient(top, #fceec1, #eedc94);
146
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fceec1', endColorstr='#eedc94', GradientType=0);
147
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
148
+ border-color: #eedc94 #eedc94 #e4c652;
149
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
150
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
151
+ border-width: 1px;
152
+ border-style: solid;
153
+ -webkit-border-radius: 4px;
154
+ -moz-border-radius: 4px;
155
+ border-radius: 4px;
156
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
157
+ -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
158
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
159
+
160
+
161
+ }
162
+ .ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636; }
163
+ .ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {
164
+
165
+
166
+ position: relative;
167
+ margin-bottom: 18px;
168
+ color: #ffffff;
169
+ border-width: 1px;
170
+ border-style: solid;
171
+ -webkit-border-radius: 4px;
172
+ -moz-border-radius: 4px;
173
+ border-radius: 4px;
174
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
175
+ -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
176
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
177
+ background-color: #c43c35;
178
+ background-repeat: repeat-x;
179
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
180
+ background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
181
+ background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
182
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
183
+ background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
184
+ background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
185
+ background-image: linear-gradient(top, #ee5f5b, #c43c35);
186
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
187
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
188
+ border-color: #c43c35 #c43c35 #882a25;
189
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
190
+
191
+
192
+ }
193
+ .ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a; }
194
+ .ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a; }
195
+ .ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
196
+ .ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
197
+ .ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
198
+
199
+
200
+
201
+ /* Icons
202
+ ----------------------------------*/
203
+
204
+ /* states and images */
205
+ .ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_222222_256x240.png); }
206
+ .ui-widget-content .ui-icon {background-image: url(images/ui-icons_222222_256x240.png); }
207
+ .ui-widget-header .ui-icon {background-image: url(images/ui-icons_222222_256x240.png); }
208
+ .ui-state-default .ui-icon { background-image: url(images/ui-icons_888888_256x240.png); }
209
+ .ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_454545_256x240.png); }
210
+ .ui-state-active .ui-icon {background-image: url(images/ui-icons_454545_256x240.png); }
211
+ .ui-state-highlight .ui-icon {background-image: url(images/ui-icons_2e83ff_256x240.png); }
212
+ .ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_f6cf3b_256x240.png); }
213
+
214
+ /* positioning */
215
+ .ui-icon-carat-1-n { background-position: 0 0; }
216
+ .ui-icon-carat-1-ne { background-position: -16px 0; }
217
+ .ui-icon-carat-1-e { background-position: -32px 0; }
218
+ .ui-icon-carat-1-se { background-position: -48px 0; }
219
+ .ui-icon-carat-1-s { background-position: -64px 0; }
220
+ .ui-icon-carat-1-sw { background-position: -80px 0; }
221
+ .ui-icon-carat-1-w { background-position: -96px 0; }
222
+ .ui-icon-carat-1-nw { background-position: -112px 0; }
223
+ .ui-icon-carat-2-n-s { background-position: -128px 0; }
224
+ .ui-icon-carat-2-e-w { background-position: -144px 0; }
225
+ .ui-icon-triangle-1-n { background-position: 0 -16px; }
226
+ .ui-icon-triangle-1-ne { background-position: -16px -16px; }
227
+ .ui-icon-triangle-1-e { background-position: -32px -16px; }
228
+ .ui-icon-triangle-1-se { background-position: -48px -16px; }
229
+ .ui-icon-triangle-1-s { background-position: -64px -16px; }
230
+ .ui-icon-triangle-1-sw { background-position: -80px -16px; }
231
+ .ui-icon-triangle-1-w { background-position: -96px -16px; }
232
+ .ui-icon-triangle-1-nw { background-position: -112px -16px; }
233
+ .ui-icon-triangle-2-n-s { background-position: -128px -16px; }
234
+ .ui-icon-triangle-2-e-w { background-position: -144px -16px; }
235
+ .ui-icon-arrow-1-n { background-position: 0 -32px; }
236
+ .ui-icon-arrow-1-ne { background-position: -16px -32px; }
237
+ .ui-icon-arrow-1-e { background-position: -32px -32px; }
238
+ .ui-icon-arrow-1-se { background-position: -48px -32px; }
239
+ .ui-icon-arrow-1-s { background-position: -64px -32px; }
240
+ .ui-icon-arrow-1-sw { background-position: -80px -32px; }
241
+ .ui-icon-arrow-1-w { background-position: -96px -32px; }
242
+ .ui-icon-arrow-1-nw { background-position: -112px -32px; }
243
+ .ui-icon-arrow-2-n-s { background-position: -128px -32px; }
244
+ .ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
245
+ .ui-icon-arrow-2-e-w { background-position: -160px -32px; }
246
+ .ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
247
+ .ui-icon-arrowstop-1-n { background-position: -192px -32px; }
248
+ .ui-icon-arrowstop-1-e { background-position: -208px -32px; }
249
+ .ui-icon-arrowstop-1-s { background-position: -224px -32px; }
250
+ .ui-icon-arrowstop-1-w { background-position: -240px -32px; }
251
+ .ui-icon-arrowthick-1-n { background-position: 0 -48px; }
252
+ .ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
253
+ .ui-icon-arrowthick-1-e { background-position: -32px -48px; }
254
+ .ui-icon-arrowthick-1-se { background-position: -48px -48px; }
255
+ .ui-icon-arrowthick-1-s { background-position: -64px -48px; }
256
+ .ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
257
+ .ui-icon-arrowthick-1-w { background-position: -96px -48px; }
258
+ .ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
259
+ .ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
260
+ .ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
261
+ .ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
262
+ .ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
263
+ .ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
264
+ .ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
265
+ .ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
266
+ .ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
267
+ .ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
268
+ .ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
269
+ .ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
270
+ .ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
271
+ .ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
272
+ .ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
273
+ .ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
274
+ .ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
275
+ .ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
276
+ .ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
277
+ .ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
278
+ .ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
279
+ .ui-icon-arrow-4 { background-position: 0 -80px; }
280
+ .ui-icon-arrow-4-diag { background-position: -16px -80px; }
281
+ .ui-icon-extlink { background-position: -32px -80px; }
282
+ .ui-icon-newwin { background-position: -48px -80px; }
283
+ .ui-icon-refresh { background-position: -64px -80px; }
284
+ .ui-icon-shuffle { background-position: -80px -80px; }
285
+ .ui-icon-transfer-e-w { background-position: -96px -80px; }
286
+ .ui-icon-transferthick-e-w { background-position: -112px -80px; }
287
+ .ui-icon-folder-collapsed { background-position: 0 -96px; }
288
+ .ui-icon-folder-open { background-position: -16px -96px; }
289
+ .ui-icon-document { background-position: -32px -96px; }
290
+ .ui-icon-document-b { background-position: -48px -96px; }
291
+ .ui-icon-note { background-position: -64px -96px; }
292
+ .ui-icon-mail-closed { background-position: -80px -96px; }
293
+ .ui-icon-mail-open { background-position: -96px -96px; }
294
+ .ui-icon-suitcase { background-position: -112px -96px; }
295
+ .ui-icon-comment { background-position: -128px -96px; }
296
+ .ui-icon-person { background-position: -144px -96px; }
297
+ .ui-icon-print { background-position: -160px -96px; }
298
+ .ui-icon-trash { background-position: -176px -96px; }
299
+ .ui-icon-locked { background-position: -192px -96px; }
300
+ .ui-icon-unlocked { background-position: -208px -96px; }
301
+ .ui-icon-bookmark { background-position: -224px -96px; }
302
+ .ui-icon-tag { background-position: -240px -96px; }
303
+ .ui-icon-home { background-position: 0 -112px; }
304
+ .ui-icon-flag { background-position: -16px -112px; }
305
+ .ui-icon-calendar { background-position: -32px -112px; }
306
+ .ui-icon-cart { background-position: -48px -112px; }
307
+ .ui-icon-pencil { background-position: -64px -112px; }
308
+ .ui-icon-clock { background-position: -80px -112px; }
309
+ .ui-icon-disk { background-position: -96px -112px; }
310
+ .ui-icon-calculator { background-position: -112px -112px; }
311
+ .ui-icon-zoomin { background-position: -128px -112px; }
312
+ .ui-icon-zoomout { background-position: -144px -112px; }
313
+ .ui-icon-search { background-position: -160px -112px; }
314
+ .ui-icon-wrench { background-position: -176px -112px; }
315
+ .ui-icon-gear { background-position: -192px -112px; }
316
+ .ui-icon-heart { background-position: -208px -112px; }
317
+ .ui-icon-star { background-position: -224px -112px; }
318
+ .ui-icon-link { background-position: -240px -112px; }
319
+ .ui-icon-cancel { background-position: 0 -128px; }
320
+ .ui-icon-plus { background-position: -16px -128px; }
321
+ .ui-icon-plusthick { background-position: -32px -128px; }
322
+ .ui-icon-minus { background-position: -48px -128px; }
323
+ .ui-icon-minusthick { background-position: -64px -128px; }
324
+ .ui-icon-close { background-position: -80px -128px; }
325
+ .ui-icon-closethick { background-position: -96px -128px; }
326
+ .ui-icon-key { background-position: -112px -128px; }
327
+ .ui-icon-lightbulb { background-position: -128px -128px; }
328
+ .ui-icon-scissors { background-position: -144px -128px; }
329
+ .ui-icon-clipboard { background-position: -160px -128px; }
330
+ .ui-icon-copy { background-position: -176px -128px; }
331
+ .ui-icon-contact { background-position: -192px -128px; }
332
+ .ui-icon-image { background-position: -208px -128px; }
333
+ .ui-icon-video { background-position: -224px -128px; }
334
+ .ui-icon-script { background-position: -240px -128px; }
335
+ .ui-icon-alert { background-position: 0 -144px; }
336
+ .ui-icon-info { background-position: -16px -144px; }
337
+ .ui-icon-notice { background-position: -32px -144px; }
338
+ .ui-icon-help { background-position: -48px -144px; }
339
+ .ui-icon-check { background-position: -64px -144px; }
340
+ .ui-icon-bullet { background-position: -80px -144px; }
341
+ .ui-icon-radio-off { background-position: -96px -144px; }
342
+ .ui-icon-radio-on { background-position: -112px -144px; }
343
+ .ui-icon-pin-w { background-position: -128px -144px; }
344
+ .ui-icon-pin-s { background-position: -144px -144px; }
345
+ .ui-icon-play { background-position: 0 -160px; }
346
+ .ui-icon-pause { background-position: -16px -160px; }
347
+ .ui-icon-seek-next { background-position: -32px -160px; }
348
+ .ui-icon-seek-prev { background-position: -48px -160px; }
349
+ .ui-icon-seek-end { background-position: -64px -160px; }
350
+ .ui-icon-seek-start { background-position: -80px -160px; }
351
+ /* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
352
+ .ui-icon-seek-first { background-position: -80px -160px; }
353
+ .ui-icon-stop { background-position: -96px -160px; }
354
+ .ui-icon-eject { background-position: -112px -160px; }
355
+ .ui-icon-volume-off { background-position: -128px -160px; }
356
+ .ui-icon-volume-on { background-position: -144px -160px; }
357
+ .ui-icon-power { background-position: 0 -176px; }
358
+ .ui-icon-signal-diag { background-position: -16px -176px; }
359
+ .ui-icon-signal { background-position: -32px -176px; }
360
+ .ui-icon-battery-0 { background-position: -48px -176px; }
361
+ .ui-icon-battery-1 { background-position: -64px -176px; }
362
+ .ui-icon-battery-2 { background-position: -80px -176px; }
363
+ .ui-icon-battery-3 { background-position: -96px -176px; }
364
+ .ui-icon-circle-plus { background-position: 0 -192px; }
365
+ .ui-icon-circle-minus { background-position: -16px -192px; }
366
+ .ui-icon-circle-close { background-position: -32px -192px; }
367
+ .ui-icon-circle-triangle-e { background-position: -48px -192px; }
368
+ .ui-icon-circle-triangle-s { background-position: -64px -192px; }
369
+ .ui-icon-circle-triangle-w { background-position: -80px -192px; }
370
+ .ui-icon-circle-triangle-n { background-position: -96px -192px; }
371
+ .ui-icon-circle-arrow-e { background-position: -112px -192px; }
372
+ .ui-icon-circle-arrow-s { background-position: -128px -192px; }
373
+ .ui-icon-circle-arrow-w { background-position: -144px -192px; }
374
+ .ui-icon-circle-arrow-n { background-position: -160px -192px; }
375
+ .ui-icon-circle-zoomin { background-position: -176px -192px; }
376
+ .ui-icon-circle-zoomout { background-position: -192px -192px; }
377
+ .ui-icon-circle-check { background-position: -208px -192px; }
378
+ .ui-icon-circlesmall-plus { background-position: 0 -208px; }
379
+ .ui-icon-circlesmall-minus { background-position: -16px -208px; }
380
+ .ui-icon-circlesmall-close { background-position: -32px -208px; }
381
+ .ui-icon-squaresmall-plus { background-position: -48px -208px; }
382
+ .ui-icon-squaresmall-minus { background-position: -64px -208px; }
383
+ .ui-icon-squaresmall-close { background-position: -80px -208px; }
384
+ .ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
385
+ .ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
386
+ .ui-icon-grip-solid-vertical { background-position: -32px -224px; }
387
+ .ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
388
+ .ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
389
+ .ui-icon-grip-diagonal-se { background-position: -80px -224px; }
390
+
391
+
392
+ /* Misc visuals
393
+ ----------------------------------*/
394
+
395
+ /* Corner radius */
396
+ .ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; -khtml-border-top-left-radius: 4px; border-top-left-radius: 4px; }
397
+ .ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; -khtml-border-top-right-radius: 4px; border-top-right-radius: 4px; }
398
+ .ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; -khtml-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; }
399
+ .ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; -khtml-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }
400
+
401
+
402
+
403
+ /* Overlays */
404
+ .ui-widget-overlay { background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); }
405
+ .ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); -moz-border-radius: 8px; -khtml-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px; }/*
406
+ * jQuery UI Resizable 1.8.16
407
+ *
408
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
409
+ * Dual licensed under the MIT or GPL Version 2 licenses.
410
+ * http://jquery.org/license
411
+ *
412
+ * http://docs.jquery.com/UI/Resizable#theming
413
+ */
414
+ .ui-resizable { position: relative;}
415
+ .ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block; }
416
+ .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
417
+ .ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }
418
+ .ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }
419
+ .ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; }
420
+ .ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; }
421
+ .ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
422
+ .ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
423
+ .ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
424
+ .ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}/*
425
+ * jQuery UI Selectable 1.8.16
426
+ *
427
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
428
+ * Dual licensed under the MIT or GPL Version 2 licenses.
429
+ * http://jquery.org/license
430
+ *
431
+ * http://docs.jquery.com/UI/Selectable#theming
432
+ */
433
+ .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; }
434
+ /*
435
+ * jQuery UI Accordion 1.8.16
436
+ *
437
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
438
+ * Dual licensed under the MIT or GPL Version 2 licenses.
439
+ * http://jquery.org/license
440
+ *
441
+ * http://docs.jquery.com/UI/Accordion#theming
442
+ */
443
+ /* IE/Win - Fix animation bug - #4615 */
444
+ .ui-accordion { width: 100%; }
445
+ .ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; font-weight:bold; }
446
+ .ui-accordion .ui-accordion-li-fix { display: inline; }
447
+ .ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; }
448
+ .ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; }
449
+ .ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; }
450
+ .ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
451
+ .ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; }
452
+ .ui-accordion .ui-accordion-content-active { display: block; }
453
+ /*
454
+ * jQuery UI Autocomplete 1.8.16
455
+ *
456
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
457
+ * Dual licensed under the MIT or GPL Version 2 licenses.
458
+ * http://jquery.org/license
459
+ *
460
+ * http://docs.jquery.com/UI/Autocomplete#theming
461
+ */
462
+ .ui-autocomplete { position: absolute; cursor: default; }
463
+
464
+ /* workarounds */
465
+ * html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
466
+
467
+ /*
468
+ * jQuery UI Menu 1.8.16
469
+ *
470
+ * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
471
+ * Dual licensed under the MIT or GPL Version 2 licenses.
472
+ * http://jquery.org/license
473
+ *
474
+ * http://docs.jquery.com/UI/Menu#theming
475
+ */
476
+ .ui-menu {
477
+ list-style:none;
478
+ padding: 2px;
479
+ margin: 0;
480
+ display:block;
481
+ float: left;
482
+ }
483
+ .ui-menu .ui-menu {
484
+ margin-top: -3px;
485
+ }
486
+ .ui-menu .ui-menu-item {
487
+ margin:0;
488
+ padding: 0;
489
+ zoom: 1;
490
+ float: left;
491
+ clear: left;
492
+ width: 100%;
493
+ }
494
+ .ui-menu .ui-menu-item a {
495
+ text-decoration:none;
496
+ display:block;
497
+ padding:.2em .4em;
498
+ line-height:1.5;
499
+ zoom:1;
500
+ }
501
+ .ui-menu .ui-menu-item a.ui-state-hover,
502
+ .ui-menu .ui-menu-item a.ui-state-active {
503
+ font-weight: normal;
504
+ background:#0064CD;
505
+ color:#fff
506
+ }
507
+
508
+
509
+ /*
510
+ * jQuery UI Button 1.8.16
511
+ *
512
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
513
+ * Dual licensed under the MIT or GPL Version 2 licenses.
514
+ * http://jquery.org/license
515
+ *
516
+ * http://docs.jquery.com/UI/Button#theming
517
+ */
518
+ .ui-button {
519
+
520
+ cursor: pointer;
521
+ display: inline-block;
522
+ background-color: #e6e6e6;
523
+ background-repeat: no-repeat;
524
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
525
+ background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
526
+ background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
527
+ background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
528
+ background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
529
+ background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
530
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
531
+ padding: 5px 14px 6px;
532
+ margin: 0;
533
+ text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
534
+ color: #333;
535
+ font-size: 13px;
536
+ line-height: normal;
537
+ border: 1px solid #ccc;
538
+ border-bottom-color: #bbb;
539
+
540
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
541
+ -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
542
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
543
+ -webkit-transition: 0.1s linear background-image;
544
+ -moz-transition: 0.1s linear background-image;
545
+ -ms-transition: 0.1s linear background-image;
546
+ -o-transition: 0.1s linear background-image;
547
+ transition: 0.1s linear background-image;
548
+ overflow: visible;
549
+
550
+ } /* the overflow property removes extra width in IE */
551
+
552
+ .ui-button-primary {
553
+ color: #ffffff;
554
+ background-color: #0064cd;
555
+ background-repeat: repeat-x;
556
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
557
+ background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
558
+ background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
559
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
560
+ background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
561
+ background-image: -o-linear-gradient(top, #049cdb, #0064cd);
562
+ background-image: linear-gradient(top, #049cdb, #0064cd);
563
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
564
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
565
+ border-color: #0064cd #0064cd #003f81;
566
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
567
+
568
+ }
569
+
570
+
571
+
572
+ .ui-button-success{
573
+ color:#ffffff;
574
+ background-color: #57a957;
575
+ background-repeat: repeat-x;
576
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462), to(#57a957));
577
+ background-image: -moz-linear-gradient(top, #62c462, #57a957);
578
+ background-image: -ms-linear-gradient(top, #62c462, #57a957);
579
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462), color-stop(100%, #57a957));
580
+ background-image: -webkit-linear-gradient(top, #62c462, #57a957);
581
+ background-image: -o-linear-gradient(top, #62c462, #57a957);
582
+ background-image: linear-gradient(top, #62c462, #57a957);
583
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
584
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
585
+ border-color: #57a957 #57a957 #3d773d;
586
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
587
+ }
588
+
589
+ .ui-button-error{
590
+ color:#ffffff;
591
+ background-color: #c43c35;
592
+ background-repeat: repeat-x;
593
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
594
+ background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
595
+ background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
596
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
597
+ background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
598
+ background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
599
+ background-image: linear-gradient(top, #ee5f5b, #c43c35);
600
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
601
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
602
+ border-color: #c43c35 #c43c35 #882a25;
603
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
604
+ }
605
+
606
+ .ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */
607
+ button.ui-button-icon-only { } /* button elements seem to need a little more width */
608
+ .ui-button-icons-only { width: 3.4em; }
609
+ button.ui-button-icons-only { width: 3.7em; }
610
+
611
+ /*button text element */
612
+
613
+ .ui-button .ui-button-text { display: block; }
614
+ .ui-button-text-only .ui-button-text { }
615
+ .ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; /*tempfix*/ display:none;}
616
+ .ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; }
617
+ .ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 2.1em .4em 1em; }
618
+ .ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; }
619
+ /* no icon support for input elements, provide padding by default */
620
+ /* input.ui-button { padding: .4em 1em; } */
621
+
622
+ /*button icon element(s) */
623
+ .ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon { top: 50%; margin-top:-3px; margin-bottom:3px; }
624
+ .ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; }
625
+ .ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary { left: .5em; }
626
+ .ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
627
+ .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
628
+
629
+ /*button sets*/
630
+
631
+
632
+ .ui-buttonset { margin-right: 7px; }
633
+ .ui-buttonset .ui-state-active {
634
+ color: #ffffff;
635
+ background-color: #0064cd;
636
+ background-repeat: repeat-x;
637
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
638
+ background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
639
+ background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
640
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
641
+ background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
642
+ background-image: -o-linear-gradient(top, #049cdb, #0064cd);
643
+ background-image: linear-gradient(top, #049cdb, #0064cd);
644
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
645
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
646
+ border-color: #0064cd #0064cd #003f81;
647
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
648
+ }
649
+ .ui-buttonset .ui-button { margin-left: 0; margin-right: -.4em; }
650
+
651
+ /* workarounds */
652
+ button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */
653
+
654
+
655
+
656
+ /*
657
+ * jQuery UI Dialog 1.8.16
658
+ *
659
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
660
+ * Dual licensed under the MIT or GPL Version 2 licenses.
661
+ * http://jquery.org/license
662
+ *
663
+ * http://docs.jquery.com/UI/Dialog#theming
664
+ */
665
+ .ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; }
666
+ .ui-dialog .ui-dialog-titlebar { /*padding: .4em 1em;*/
667
+
668
+ position: relative;
669
+ padding:5px 15px;
670
+
671
+ border:0px 0px 0px 1px solid;
672
+ border-color: white;
673
+ padding: 5px 15px;
674
+ font-size: 18px;
675
+ text-decoration:none;
676
+ background:none;
677
+ -moz-border-radius-bottomright: 0px;
678
+ -webkit-border-bottom-right-radius: 0px;
679
+ -khtml-border-bottom-right-radius: 0px;
680
+
681
+ -moz-border-radius-bottomleft: 0px;
682
+ -webkit-border-bottom-left-radius: 0px;
683
+ -khtml-border-bottom-left-radius: 0px;
684
+ border-bottom-left-radius: 0px;
685
+
686
+ border-bottom:1px solid #ccc;
687
+
688
+ }
689
+ .ui-dialog .ui-dialog-title {
690
+ float: left;
691
+ color:#404040;
692
+ font-weight:bold;
693
+ margin-top:5px;
694
+ margin-bottom:5px;
695
+ padding:5px;
696
+
697
+ }
698
+ .ui-dialog .ui-dialog-titlebar-close {
699
+ position: absolute;
700
+ right: .3em;
701
+ top: 50%;
702
+ width: 19px;
703
+ margin: -10px 0 0 0;
704
+ padding: 1px;
705
+ height: 18px;
706
+ font-size: 20px;
707
+ font-weight: bold;
708
+ line-height: 13.5px;
709
+ text-shadow: 0 1px 0 #ffffff;
710
+ filter: alpha(opacity=25);
711
+ -khtml-opacity: 0.25;
712
+ -moz-opacity: 0.25;
713
+ opacity: 0.25;
714
+ }
715
+
716
+ .ui-dialog .ui-dialog-titlebar-close span {
717
+ display: block;
718
+ margin: 1px;
719
+ text-indent: 9999px;
720
+ }
721
+
722
+ .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; filter: alpha(opacity=90);
723
+ -khtml-opacity: 0.90;
724
+ -moz-opacity: 0.90;
725
+ opacity: 0.90; }
726
+
727
+ .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }
728
+
729
+ .ui-dialog .ui-dialog-buttonpane {
730
+ text-align: left;
731
+ border-width: 1px 0 0 0;
732
+ background-image: none;
733
+ margin: .5em 0 0 0;
734
+ background-color: #f5f5f5;
735
+ padding: 5px 15px 5px;
736
+ border-top: 1px solid #ddd;
737
+ -webkit-border-radius: 0 0 6px 6px;
738
+ -moz-border-radius: 0 0 6px 6px;
739
+ border-radius: 0 0 6px 6px;
740
+ -webkit-box-shadow: inset 0 1px 0 #ffffff;
741
+ -moz-box-shadow: inset 0 1px 0 #ffffff;
742
+ box-shadow: inset 0 1px 0 #ffffff;
743
+ zoom: 1;
744
+ margin-bottom: 0;
745
+
746
+ }
747
+ .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; }
748
+ .ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; }
749
+ .ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
750
+ .ui-draggable .ui-dialog-titlebar { cursor: move; }
751
+
752
+ .ui-dialog-buttonpane .ui-dialog-buttonset .ui-button{
753
+ color: #ffffff;
754
+ background-color: #0064cd;
755
+ background-repeat: repeat-x;
756
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
757
+ background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
758
+ background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
759
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
760
+ background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
761
+ background-image: -o-linear-gradient(top, #049cdb, #0064cd);
762
+ background-image: linear-gradient(top, #049cdb, #0064cd);
763
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
764
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
765
+ border-color: #0064cd #0064cd #003f81;
766
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
767
+ }
768
+ /*
769
+ * jQuery UI Slider 1.8.16
770
+ *
771
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
772
+ * Dual licensed under the MIT or GPL Version 2 licenses.
773
+ * http://jquery.org/license
774
+ *
775
+ * http://docs.jquery.com/UI/Slider#theming
776
+ */
777
+ .ui-slider { position: relative; text-align: left; }
778
+ .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; }
779
+ .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0;
780
+
781
+ color: #ffffff;
782
+ background-color: #0064cd;
783
+ background-repeat: repeat-x;
784
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
785
+ background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
786
+ background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
787
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
788
+ background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
789
+ background-image: -o-linear-gradient(top, #049cdb, #0064cd);
790
+ background-image: linear-gradient(top, #049cdb, #0064cd);
791
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
792
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
793
+ border-color: #0064cd #0064cd #003f81;
794
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
795
+
796
+ }
797
+
798
+ .ui-slider-horizontal { height: .8em; }
799
+ .ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; }
800
+ .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
801
+ .ui-slider-horizontal .ui-slider-range-min { left: 0; }
802
+ .ui-slider-horizontal .ui-slider-range-max { right: 0; }
803
+
804
+ .ui-slider-vertical { width: .8em; height: 100px; }
805
+ .ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; }
806
+ .ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }
807
+ .ui-slider-vertical .ui-slider-range-min { bottom: 0; }
808
+ .ui-slider-vertical .ui-slider-range-max { top: 0; }/*
809
+ * jQuery UI Tabs 1.8.16
810
+ *
811
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
812
+ * Dual licensed under the MIT or GPL Version 2 licenses.
813
+ * http://jquery.org/license
814
+ *
815
+ * http://docs.jquery.com/UI/Tabs#theming
816
+ */
817
+ .ui-tabs .ui-tabs-nav{ background:none; border-color: #ddd;
818
+ border-style: solid;
819
+ border-width: 0 0 1px;}
820
+ .ui-tabs { position: relative; padding: .2em; zoom: 1; border:0px;} /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
821
+
822
+
823
+ .ui-tabs .ui-tabs-nav li:hover, .ui-tabs .ui-tabs-nav li a:hover{
824
+ background:whiteSmoke;
825
+ border-bottom:1px solid #ddd;
826
+ padding-bottom:0px;
827
+ color:#00438A;
828
+ }
829
+
830
+
831
+ .ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; border-bottom:1px solid #DDD; }
832
+ .ui-tabs .ui-tabs-nav li { text-decoration: none; list-style: none; float: left; position: relative; top: 1px; padding: 0px 0px 1px 0px; white-space: nowrap; background:none; border:0px;
833
+
834
+ }
835
+
836
+ .ui-tabs-nav .ui-state-default{
837
+ -webkit-box-shadow: 0px 0px 0px #ffffff; /* Saf3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
838
+ -moz-box-shadow: 0px 0px 0px #ffffff; /* FF3.5 - 3.6 */
839
+ box-shadow: 0px 0px 0px #ffffff; /* Opera 10.5, IE9, FF4+, Chrome 6+, iOS 5 */
840
+ }
841
+ .ui-tabs .ui-tabs-nav li a {
842
+
843
+ float: left;
844
+ text-decoration: none;
845
+ cursor: text;
846
+ padding: 0 15px;
847
+ margin-right: 2px;
848
+ line-height: 34px;
849
+ border: 1px solid transparent;
850
+ -webkit-border-radius: 4px 4px 0 0;
851
+ -moz-border-radius: 4px 4px 0 0;
852
+ border-radius: 4px 4px 0 0;
853
+
854
+
855
+ }
856
+ .ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 0px; outline:none;}
857
+
858
+ .ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a {
859
+
860
+ background-color: #ffffff;
861
+ border: 1px solid #ddd;
862
+ border-bottom-color: #ffffff;
863
+ cursor: default;
864
+ color:gray;
865
+ outline:none;
866
+ }
867
+
868
+
869
+ .ui-tabs .ui-tabs-nav li.ui-tabs-selected:hover{
870
+ background:#ffffff;
871
+ outline:none;
872
+ }
873
+
874
+ .ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; color:#0069D6; background:none; font-weight:normal; margin-bottom:-1px;}
875
+ /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
876
+ .ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; }
877
+ .ui-tabs-panel .ui-button{text-decoration:none;}
878
+ .ui-tabs .ui-tabs-hide { display: none !important; }
879
+
880
+
881
+ /* IE fix for background inheritance from ui-widget*/
882
+ .ui-tabs .ui-tabs-nav li{
883
+ filter:none;
884
+ }
885
+
886
+
887
+
888
+ /*
889
+ * jQuery UI Datepicker 1.8.16
890
+ *
891
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
892
+ * Dual licensed under the MIT or GPL Version 2 licenses.
893
+ * http://jquery.org/license
894
+ *
895
+ * http://docs.jquery.com/UI/Datepicker#theming
896
+ */
897
+ .ui-datepicker { width: 17em; padding: .2em .2em 0; display: none; }
898
+ .ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; border:0px; font-weight: bold; width: 100%; padding: 4px 0; background-color: #f5f5f5; color: #808080; }
899
+ .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; }
900
+
901
+ .ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { /*top: 1px;*/ }
902
+ .ui-datepicker .ui-datepicker-prev { left:2px; }
903
+ .ui-datepicker .ui-datepicker-next { right:2px; }
904
+
905
+ .ui-datepicker .ui-datepicker-prev-hover { /*left:1px;*/ }
906
+ .ui-datepicker .ui-datepicker-next-hover { /*right:1px;*/ }
907
+
908
+ .ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; }
909
+ .ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }
910
+ .ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }
911
+ .ui-datepicker select.ui-datepicker-month-year {width: 100%;}
912
+ .ui-datepicker select.ui-datepicker-month,
913
+ .ui-datepicker select.ui-datepicker-year { width: 49%;}
914
+ .ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
915
+ .ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; }
916
+ .ui-datepicker td { border: 0; padding: 1px; }
917
+ .ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
918
+ .ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; }
919
+ .ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
920
+ .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }
921
+
922
+ /* with multiple calendars */
923
+ .ui-datepicker.ui-datepicker-multi { width:auto; }
924
+ .ui-datepicker-multi .ui-datepicker-group { float:left; }
925
+ .ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
926
+ .ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
927
+ .ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
928
+ .ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
929
+ .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
930
+ .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
931
+ .ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
932
+ .ui-datepicker-row-break { clear:both; width:100%; font-size:0em; }
933
+
934
+ /* RTL support */
935
+ .ui-datepicker-rtl { direction: rtl; }
936
+ .ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
937
+ .ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
938
+ .ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
939
+ .ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
940
+ .ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
941
+ .ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
942
+ .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
943
+ .ui-datepicker-rtl .ui-datepicker-group { float:right; }
944
+ .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
945
+ .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
946
+
947
+ /* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
948
+ .ui-datepicker-cover {
949
+ display: none; /*sorry for IE5*/
950
+ display/**/: block; /*sorry for IE5*/
951
+ position: absolute; /*must have*/
952
+ z-index: -1; /*must have*/
953
+ filter: mask(); /*must have*/
954
+ top: -4px; /*must have*/
955
+ left: -4px; /*must have*/
956
+ width: 200px; /*must have*/
957
+ height: 200px; /*must have*/
958
+ }
959
+
960
+ .ui-datepicker th{
961
+ font-weight: bold;
962
+ color: gray;
963
+ }
964
+
965
+ .ui-datepicker-today a:hover{
966
+ background-color: #808080;
967
+ color: #ffffff;
968
+
969
+ }
970
+ .ui-datepicker-today a{
971
+ background-color: #BFBFBF;
972
+ cursor: pointer;
973
+ padding: 0 4px;
974
+ margin-bottom:0px;
975
+
976
+ }
977
+
978
+
979
+ .ui-datepicker td a{
980
+ margin-bottom:0px;
981
+ border:0px;
982
+ }
983
+
984
+ .ui-datepicker td:hover{
985
+ color:white;
986
+ }
987
+
988
+ .ui-datepicker td .ui-state-default {
989
+ border:0px;
990
+ background:none;
991
+ margin-bottom:0px;
992
+ padding:5px;
993
+ color:gray;
994
+ text-align: center;
995
+ filter:none;
996
+ }
997
+
998
+
999
+ .ui-datepicker td .ui-state-active{
1000
+ background:#BFBFBF;
1001
+ margin-bottom:0px;
1002
+ font-size:normal;
1003
+ text-shadow: 0px;
1004
+ color:white;
1005
+ -webkit-border-radius: 4px;
1006
+ -moz-border-radius: 4px;
1007
+ border-radius: 4px;
1008
+ }
1009
+
1010
+ .ui-datepicker td .ui-state-default:hover{
1011
+ background:#0064cd;
1012
+ color:white;
1013
+ -webkit-border-radius: 4px;
1014
+ -moz-border-radius: 4px;
1015
+ border-radius: 4px;
1016
+ }
1017
+
1018
+
1019
+ /*
1020
+ * jQuery UI Progressbar 1.8.16
1021
+ *
1022
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
1023
+ * Dual licensed under the MIT or GPL Version 2 licenses.
1024
+ * http://jquery.org/license
1025
+ *
1026
+ * http://docs.jquery.com/UI/Progressbar#theming
1027
+ */
1028
+ .ui-progressbar { height:2em; text-align: left; }
1029
+ .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%;
1030
+
1031
+ /*this can be removed if ui-widget-header is blue*/
1032
+ color: #ffffff;
1033
+ background-color: #0064cd;
1034
+ background-repeat: repeat-x;
1035
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
1036
+ background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
1037
+ background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
1038
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
1039
+ background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
1040
+ background-image: -o-linear-gradient(top, #049cdb, #0064cd);
1041
+ background-image: linear-gradient(top, #049cdb, #0064cd);
1042
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
1043
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1044
+ border-color: #0064cd #0064cd #003f81;
1045
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1046
+ }
1047
+
1048
+
1049
+
1050
+ /*** Input field styling from Bootstrap **/
1051
+ input, textarea {
1052
+ -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
1053
+ -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
1054
+ -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
1055
+ -o-transition: border linear 0.2s, box-shadow linear 0.2s;
1056
+ transition: border linear 0.2s, box-shadow linear 0.2s;
1057
+ -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
1058
+ -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
1059
+ box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
1060
+ }
1061
+ input:focus, textarea:focus {
1062
+ outline: 0;
1063
+ border-color: rgba(82, 168, 236, 0.8);
1064
+ -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
1065
+ -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
1066
+ box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
1067
+ }
1068
+ input[type=file]:focus, input[type=checkbox]:focus, select:focus {
1069
+ -webkit-box-shadow: none;
1070
+ -moz-box-shadow: none;
1071
+ box-shadow: none;
1072
+ outline: 1px dotted #666;
1073
+ }
1074
+
1075
+ input[type="text"],
1076
+ input[type="password"],
1077
+ .ui-autocomplete-input,
1078
+ textarea,
1079
+ .uneditable-input {
1080
+ display: inline-block;
1081
+ padding: 4px;
1082
+ font-size: 13px;
1083
+ line-height: 18px;
1084
+ color: #808080;
1085
+ border: 1px solid #ccc;
1086
+ -webkit-border-radius: 3px;
1087
+ -moz-border-radius: 3px;
1088
+ border-radius: 3px;
1089
+ }
1090
+
1091
+
1092
+
1093
+ /**Toolbar**/
1094
+
1095
+ .ui-toolbar{
1096
+ padding: 7px 14px;
1097
+ margin: 0 0 18px;
1098
+ background-color: #f5f5f5;
1099
+ background-repeat: repeat-x;
1100
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#ffffff), to(#f5f5f5));
1101
+ background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
1102
+ background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
1103
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #f5f5f5));
1104
+ background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
1105
+ background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
1106
+ background-image: linear-gradient(top, #ffffff, #f5f5f5);
1107
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
1108
+ border: 1px solid #ddd;
1109
+ -webkit-border-radius: 3px;
1110
+ -moz-border-radius: 3px;
1111
+ border-radius: 3px;
1112
+ -webkit-box-shadow: inset 0 1px 0 #ffffff;
1113
+ -moz-box-shadow: inset 0 1px 0 #ffffff;
1114
+ box-shadow: inset 0 1px 0 #ffffff;
1115
+ }
1116
+
1117
+
1118
+ /***Dialog fixes**/
1119
+
1120
+ .ui-dialog-buttonset .ui-button:nth-child(2){
1121
+ cursor: pointer;
1122
+ display: inline-block;
1123
+ background-color: #e6e6e6;
1124
+ background-repeat: no-repeat;
1125
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
1126
+ background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1127
+ background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
1128
+ background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1129
+ background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1130
+ background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1131
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
1132
+ padding: 5px 14px 6px;
1133
+ text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
1134
+ color: #333;
1135
+ font-size: 13px;
1136
+ line-height: normal;
1137
+ border: 1px solid #ccc;
1138
+ border-bottom-color: #bbb;
1139
+ -webkit-border-radius: 4px;
1140
+ -moz-border-radius: 4px;
1141
+ border-radius: 4px;
1142
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1143
+ -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1144
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1145
+ -webkit-transition: 0.1s linear all;
1146
+ -moz-transition: 0.1s linear all;
1147
+ -ms-transition: 0.1s linear all;
1148
+ -o-transition: 0.1s linear all;
1149
+ transition: 0.1s linear all;
1150
+ overflow: visible;
1151
+ }
1152
+
1153
+
1154
+
1155
+ /***Wijmo Theming**/
1156
+
1157
+ div.wijmo-wijmenu{
1158
+ padding:0 20px;
1159
+ background-color: #222;
1160
+ background-color: #222222;
1161
+ background-repeat: repeat-x;
1162
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));
1163
+ background-image: -moz-linear-gradient(top, #333333, #222222);
1164
+ background-image: -ms-linear-gradient(top, #333333, #222222);
1165
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
1166
+ background-image: -webkit-linear-gradient(top, #333333, #222222);
1167
+ background-image: -o-linear-gradient(top, #333333, #222222);
1168
+ background-image: linear-gradient(top, #333333, #222222);
1169
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1170
+ -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1171
+ -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1172
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1173
+ }
1174
+
1175
+ .wijmo-wijmenu .ui-state-default{
1176
+ box-shadow: none;
1177
+ color:#BFBFBF;
1178
+ }
1179
+
1180
+ .wijmo-wijmenu .ui-state-default .wijmo-wijmenu-text{
1181
+ color:#BFBFBF;
1182
+ }
1183
+
1184
+ .wijmo-wijmenu .ui-state-hover{
1185
+ background: #444;
1186
+ background: rgba(255, 255, 255, 0.05);
1187
+ }
1188
+
1189
+ .wijmo-wijmenu .ui-state-hover .wijmo-wijmenu-text{
1190
+ color:#ffffff;
1191
+ }
1192
+
1193
+ div.wijmo-wijmenu .ui-widget-header h3{
1194
+ position: relative;
1195
+ margin-top:1px;
1196
+ padding:0;
1197
+ }
1198
+
1199
+ .wijmo-wijmenu h3 a{
1200
+ color: #FFFFFF;
1201
+ display: block;
1202
+ float: left;
1203
+ font-size: 20px;
1204
+ font-weight: 200;
1205
+ line-height: 1;
1206
+ margin-left: -20px;
1207
+ margin-top:1px;
1208
+ padding: 8px 20px 12px;
1209
+ }
1210
+
1211
+ .wijmo-wijmenu h3 a:hover{
1212
+ background-color: rgba(255, 255, 255, 0.05);
1213
+ color: #FFFFFF;
1214
+ text-decoration: none;
1215
+ }
1216
+
1217
+ .wijmo-wijmenu .ui-widget-header{
1218
+ border:0px;
1219
+ }
1220
+
1221
+ .wijmo-wijmenu .wijmo-wijmenu-parent .wijmo-wijmenu-child{
1222
+ padding: 0.3em 0;
1223
+ }
1224
+
1225
+ div.wijmo-wijmenu .wijmo-wijmenu-item .wijmo-wijmenu-child{
1226
+ background: #333;
1227
+ border:0;
1228
+ margin:0;
1229
+ padding: 6px 0;
1230
+ width:160px;
1231
+ -webkit-border-radius: 0 0 6px 6px;
1232
+ -moz-border-radius: 0 0 6px 6px;
1233
+ border-radius: 0 0 6px 6px;
1234
+ -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
1235
+ -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
1236
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
1237
+ }
1238
+
1239
+ div.wijmo-wijmenu .wijmo-wijmenu-item{
1240
+ margin:0;
1241
+ border:0;
1242
+ }
1243
+
1244
+ .wijmo-wijmenu a.wijmo-wijmenu-link{
1245
+ margin:0;
1246
+ line-height: 19px;
1247
+ padding: 10px 10px 11px;
1248
+ border:0;
1249
+ -webkit-border-radius: 0;
1250
+ -moz-border-radius: 0;
1251
+ border-radius:0;
1252
+ }
1253
+
1254
+ div.wijmo-wijmenu .wijmo-wijmenu-child .wijmo-wijmenu-link{
1255
+ display:block;
1256
+ float:none;
1257
+ padding: 4px 15px;
1258
+ width:auto;
1259
+ }
1260
+
1261
+ div.wijmo-wijmenu .wijmo-wijmenu-child .wijmo-wijmenu-text
1262
+ {
1263
+ float:none;
1264
+ }
1265
+
1266
+ .wijmo-wijmenu .wijmo-wijmenu-item .wijmo-wijmenu-child .ui-state-hover {
1267
+ background: #191919;
1268
+ }
1269
+
1270
+ .wijmo-wijmenu .wijmo-wijmenu-item .wijmo-wijmenu-separator{
1271
+ padding: 5px 0;
1272
+ background-image: none;
1273
+ background-color: #222;
1274
+ border-top: 1px solid #444;
1275
+ border-bottom:0;
1276
+ border-left:0;
1277
+ border-right:0;
1278
+ }
1279
+
1280
+ .wijmo-wijmenu .wijmo-wijmenu-item input {
1281
+ -moz-transition: none 0s ease 0s;
1282
+ background-color: rgba(255, 255, 255, 0.3);
1283
+ border: 1px solid #111111;
1284
+ border-radius: 4px 4px 4px 4px;
1285
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset, 0 1px 0 rgba(255, 255, 255, 0.25);
1286
+ color: rgba(255, 255, 255, 0.75);
1287
+ font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
1288
+ line-height: 1;
1289
+ margin: 5px 10px 0 10px;
1290
+ padding: 4px 9px;
1291
+ width:100px;
1292
+ }
1293
+
1294
+ .wijmo-wijmenu .wijmo-wijmenu-item input:hover {
1295
+ background-color: rgba(255, 255, 255, 0.5);
1296
+ color: #FFFFFF;
1297
+ }
1298
+
1299
+ .wijmo-wijmenu .wijmo-wijmenu-item input:focus {
1300
+ background-color: #FFFFFF;
1301
+ border: 0 none;
1302
+ box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1303
+ color: #404040;
1304
+ outline: 0 none;
1305
+ padding: 5px 10px;
1306
+ text-shadow: 0 1px 0 #FFFFFF;
1307
+ }
1308
+
1309
+
1310
+ .wijmo-wijmenu .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
1311
+ text-shadow:none;
1312
+ }
1313
+
1314
+
1315
+ .wijmo-wijmenu .ui-state-default{
1316
+ box-shadow: none;
1317
+ color:#BFBFBF;
1318
+ filter: none;
1319
+ }
1320
+