select2-bootstrap-css 1.2.2 → 1.2.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: 8fd56ed1d714804db7968fa32a643a5e96730e3b
4
- data.tar.gz: 4fa91466e487acc0777d8ce882815f85ab422f19
3
+ metadata.gz: e8be8e58eb7a997cb9fab5d2a98d5c54d4bfa7b3
4
+ data.tar.gz: de58577dd12deabf3c4747667e9ea1003bcc4477
5
5
  SHA512:
6
- metadata.gz: 98809359f8316d60a5ceb8fc1fdd8a4e1e48cde18a2482f1ccad2ad743352a7bbb01246b6fc8dd169d9bb20e625161eb9504b8691e158962415bdd161892b243
7
- data.tar.gz: 70ef9b03b9ac9427f760297ef5381d52340a1be94200239eca2250cf88dcdd9f8af8afd033563a71afa67348edb4d46d7a107a075e99d4792435f8a53c1871a0
6
+ metadata.gz: ba857552529ab145fc1f9d088d3d86f1c90ef5514575a1dec4b522ab0901c55b5a60920f8235e7a4a04297dd0ccf36c0e6635d7af090d9e15f320804f978936d
7
+ data.tar.gz: 56490d305116803aac7d2c95ac4b0772c657005d3ea2a4f9bd4ed1bf35153def7b2df330cb2f0b2aafc6aaebc409a2849e82ef87c5dbd9ca2c078b0322c0eeec
@@ -3,7 +3,7 @@
3
3
  * Compatible with select2 3.3.2 and bootstrap 2.3.1
4
4
  * MIT License
5
5
  */
6
-
6
+
7
7
  .select2-container {
8
8
  vertical-align: middle;
9
9
  &.input-mini { width: 60px; }
@@ -50,9 +50,11 @@
50
50
  line-height: 27px;
51
51
  }
52
52
 
53
+ .select2-drop.select2-drop-active,
53
54
  .select2-container-active .select2-choice,
54
55
  .select2-container-multi.select2-container-active .select2-choices {
55
56
  border-color: rgba(82, 168, 236, 0.8);
57
+ border-color: #ccc\0;
56
58
  outline: none;
57
59
  .box-shadow(~"inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6)");
58
60
  }
@@ -86,9 +88,9 @@
86
88
  }
87
89
 
88
90
  /**
89
- * This stops the quick flash when a native selectbox is shown and
90
- * then replaced by a select2 input when javascript kicks in. This can be
91
- * removed if javascript is not present
91
+ * This stops the quick flash when a native selectbox is shown and
92
+ * then replaced by a select2 input when javascript kicks in. This can be
93
+ * removed if javascript is not present
92
94
  */
93
95
 
94
96
  select.select2 {
@@ -3,7 +3,7 @@
3
3
  * Compatible with select2 3.3.2 and bootstrap 2.3.1
4
4
  * MIT License
5
5
  */
6
-
6
+
7
7
  .select2-container {
8
8
  vertical-align: middle;
9
9
  &.input-mini { width: 60px; }
@@ -50,9 +50,11 @@
50
50
  line-height: 27px;
51
51
  }
52
52
 
53
+ .select2-drop.select2-drop-active,
53
54
  .select2-container-active .select2-choice,
54
55
  .select2-container-multi.select2-container-active .select2-choices {
55
56
  border-color: rgba(82, 168, 236, 0.8);
57
+ border-color: #ccc\0;
56
58
  outline: none;
57
59
  @include box-shadow(inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6));
58
60
  }
@@ -86,9 +88,9 @@
86
88
  }
87
89
 
88
90
  /**
89
- * This stops the quick flash when a native selectbox is shown and
90
- * then replaced by a select2 input when javascript kicks in. This can be
91
- * removed if javascript is not present
91
+ * This stops the quick flash when a native selectbox is shown and
92
+ * then replaced by a select2 input when javascript kicks in. This can be
93
+ * removed if javascript is not present
92
94
  */
93
95
 
94
96
  select.select2 {
@@ -1,7 +1,9 @@
1
- require 'json'
2
-
3
1
  module Select2
4
2
  module Bootstrap
5
- VERSION = JSON.parse(File.read(File.expand_path('../../../package.json', __FILE__)))['version']
3
+ # This is updated via the `grunt bump` command, which has a pretty
4
+ # unflexible matching syntax.
5
+ VERSION_STRING = "'version': '1.2.3'"
6
+ # Then, just the version.
7
+ VERSION = VERSION_STRING.match(/\d+\.\d+\.\d+/)[0]
6
8
  end
7
- end
9
+ end
metadata CHANGED
@@ -1,29 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: select2-bootstrap-css
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.2
4
+ version: 1.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Hellein
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-08-12 00:00:00.000000000 Z
11
+ date: 2013-09-20 00:00:00.000000000 Z
12
12
  dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: json
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - '>='
18
- - !ruby/object:Gem::Version
19
- version: '0'
20
- type: :runtime
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - '>='
25
- - !ruby/object:Gem::Version
26
- version: '0'
27
13
  - !ruby/object:Gem::Dependency
28
14
  name: jekyll
29
15
  requirement: !ruby/object:Gem::Requirement