chosen-awesome-rails 1.0.2 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a520111beb5680aaae507d0281c70d23e13cd318
4
- data.tar.gz: 6602e21c49d725065ba7d5a609ce892f4b1a34a2
3
+ metadata.gz: b30c32c3adbe56fdddb65b10d1e2f33faf899b13
4
+ data.tar.gz: a3b0deb605bdbea00946c186e05f79a0bd5251f8
5
5
  SHA512:
6
- metadata.gz: 301ad7f526f6de1027a51fae053ecb839770796fb06be5b734f2d00457f866d10a6b14ad1a8ba71e31d077d6f5a5d738b721d3c98e5f767874bfd7ca260080de
7
- data.tar.gz: 48fa46865fd676b969671a46ba7f630f8d5d08521acd2685323c4f62a899d6eb65f04814c6e03f7da3a3f5d5a527af762f34a55c1c76a79a018b66694862af73
6
+ metadata.gz: 4cc52728accbc2ee66a1ac8c557e7f68eda5b937d88c4d6ebafdd18681ec6a1b4def66e6c29b7f74a9ae2686c7d28064144e960b1637b244a395debf180c17f6
7
+ data.tar.gz: e89d44fa81544a6c89a013763b26cf9a634871d43d100609c03753de25a452ca3d12bfe58827fc7659cb2688f63f1b9dffae07cde6c310a1a8bdf58927e15799
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- chosen-awesome-rails (1.0.2)
4
+ chosen-awesome-rails (1.0.3)
5
5
  coffee-rails (>= 3.2)
6
6
  railties (>= 3.0)
7
7
  sass-rails (>= 3.2)
@@ -3,7 +3,7 @@
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "chosen-awesome-rails"
6
- s.version = "1.0.2"
6
+ s.version = "1.0.3"
7
7
 
8
8
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
9
9
  s.require_paths = ["lib"]
@@ -11,7 +11,7 @@ Gem::Specification.new do |s|
11
11
  s.date = "2015-03-24"
12
12
  s.description = "Chosen is a javascript library of select box enhancer for jQuery, integrates with Rails asset pipeline for ease of use."
13
13
  s.email = ["alex@codeart.pw"]
14
- s.files = [".gitignore", "Gemfile", "Gemfile.lock", "LICENSE.txt", "README.md", "Rakefile", "chosen-awesome-rails.gemspec", "lib/chosen-awesome-rails.rb", "lib/chosen-awesome-rails/engine.rb", "lib/chosen-awesome-rails/engine3.rb", "lib/chosen-awesome-rails/version.rb", "vendor/assets/images/chosen-arrow.gif", "vendor/assets/javascripts/chosen.js.coffee", "vendor/assets/javascripts/chosen/chosen.js.coffee", "vendor/assets/javascripts/chosen/multiple.js.coffee", "vendor/assets/javascripts/chosen/parser.js.coffee", "vendor/assets/javascripts/chosen/single.js.coffee", "vendor/assets/stylesheets/chosen.css.scss", "vendor/assets/stylesheets/chosen/bootstrap.css.scss", "vendor/assets/stylesheets/chosen/default.css.scss"]
14
+ s.files = [".gitignore", "Gemfile", "Gemfile.lock", "LICENSE.txt", "README.md", "Rakefile", "chosen-awesome-rails.gemspec", "lib/chosen-awesome-rails.rb", "lib/chosen-awesome-rails/engine.rb", "lib/chosen-awesome-rails/engine3.rb", "lib/chosen-awesome-rails/version.rb", "vendor/assets/images/chosen-arrow.gif", "vendor/assets/javascripts/chosen.js.coffee", "vendor/assets/javascripts/chosen/chosen.js.coffee", "vendor/assets/javascripts/chosen/multiple.js.coffee", "vendor/assets/javascripts/chosen/parser.js.coffee", "vendor/assets/javascripts/chosen/single.js.coffee", "vendor/assets/stylesheets/chosen.css.scss", "vendor/assets/stylesheets/chosen/bootstrap2.css.scss", "vendor/assets/stylesheets/chosen/bootstrap.css.scss", "vendor/assets/stylesheets/chosen/default.css.scss"]
15
15
  s.homepage = "https://github.com/heaven/chosen-awesome-rails"
16
16
  s.rubygems_version = "2.2.1"
17
17
  s.summary = "Integrate Chosen javascript library with Rails asset pipeline"
@@ -1,5 +1,5 @@
1
1
  module Chosen
2
2
  module Rails
3
- VERSION = '1.0.0'
3
+ VERSION = '1.0.3'
4
4
  end
5
5
  end
@@ -0,0 +1,71 @@
1
+ .chosen-container {
2
+ border: 1px solid #cccccc;
3
+ -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
4
+ -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
5
+ -o-transition: border linear 0.2s, box-shadow linear 0.2s;
6
+ transition: border linear 0.2s, box-shadow linear 0.2s;
7
+ -webkit-border-radius: 4px;
8
+ -moz-border-radius: 4px;
9
+ border-radius: 4px;
10
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
11
+ -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
12
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
13
+ box-sizing: border-box;
14
+
15
+ ul.chosen-choices {
16
+ color: #555555;
17
+ }
18
+ }
19
+
20
+ .chosen-container.disabled {
21
+ background-color: #eee;
22
+ }
23
+
24
+ .chosen-container.focus {
25
+ border-color: rgba(82, 168, 236, 0.8);
26
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
27
+ -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
28
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
29
+ }
30
+
31
+ .chosen-container.opened {
32
+ -webkit-border-bottom-left-radius: 0;
33
+ -webkit-border-bottom-right-radius: 0;
34
+ -moz-border-bottom-left-radius: 0;
35
+ -moz-border-bottom-right-radius: 0;
36
+ border-bottom-left-radius: 0;
37
+ border-bottom-right-radius: 0;
38
+ }
39
+
40
+ .chosen-dropdown {
41
+ border-color: #cccccc;
42
+ -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
43
+ -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
44
+ -o-transition: border linear 0.2s, box-shadow linear 0.2s;
45
+ transition: border linear 0.2s, box-shadow linear 0.2s;
46
+ -webkit-border-bottom-left-radius: 4px;
47
+ -webkit-border-bottom-right-radius: 4px;
48
+ -moz-border-bottom-left-radius: 4px;
49
+ -moz-border-bottom-right-radius: 4px;
50
+ border-bottom-left-radius: 4px;
51
+ border-bottom-right-radius: 4px;
52
+ }
53
+
54
+ .chosen-dropdown.opened {
55
+ border-color: rgba(82, 168, 236, 0.8);
56
+ -webkit-box-shadow: -3px 2px 6px -2px rgba(82, 168, 236, 0.5), 3px 2px 6px -2px rgba(82, 168, 236, 0.5);
57
+ -moz-box-shadow: -3px 2px 6px -2px rgba(82, 168, 236, 0.5), 3px 2px 6px -2px rgba(82, 168, 236, 0.5);
58
+ box-shadow: -3px 2px 6px -2px rgba(82, 168, 236, 0.5), 3px 2px 6px -2px rgba(82, 168, 236, 0.5);
59
+ }
60
+
61
+ .chosen-container.loading {
62
+ background-image: -webkit-linear-gradient(-45deg, rgba(52, 194, 227, .10) 25%, transparent 25%, transparent 50%, rgba(52, 194, 227, .10) 50%, rgba(52, 194, 227, .10) 75%, transparent 75%, transparent);
63
+ background-image: -moz-linear-gradient(-45deg, rgba(52, 194, 227, .10) 25%, transparent 25%, transparent 50%, rgba(52, 194, 227, .10) 50%, rgba(52, 194, 227, .10) 75%, transparent 75%, transparent);
64
+ background-image: -ms-linear-gradient(-45deg, rgba(52, 194, 227, .10) 25%, transparent 25%, transparent 50%, rgba(52, 194, 227, .10) 50%, rgba(52, 194, 227, .10) 75%, transparent 75%, transparent);
65
+ background-image: -o-linear-gradient(-45deg, rgba(52, 194, 227, .10) 25%, transparent 25%, transparent 50%, rgba(52, 194, 227, .10) 50%, rgba(52, 194, 227, .10) 75%, transparent 75%, transparent);
66
+ background-image: linear-gradient(-45deg, rgba(52, 194, 227, .10) 25%, transparent 25%, transparent 50%, rgba(52, 194, 227, .10) 50%, rgba(52, 194, 227, .10) 75%, transparent 75%, transparent);
67
+
68
+ ul.chosen-choices {
69
+ background-color: transparent;
70
+ }
71
+ }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chosen-awesome-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - heaven
@@ -107,6 +107,7 @@ files:
107
107
  - vendor/assets/javascripts/chosen/single.js.coffee
108
108
  - vendor/assets/stylesheets/chosen.css.scss
109
109
  - vendor/assets/stylesheets/chosen/bootstrap.css.scss
110
+ - vendor/assets/stylesheets/chosen/bootstrap2.css.scss
110
111
  - vendor/assets/stylesheets/chosen/default.css.scss
111
112
  homepage: https://github.com/heaven/chosen-awesome-rails
112
113
  licenses: []