bootstrap-sass 2.3.0.0 → 2.3.0.1
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.
Potentially problematic release.
This version of bootstrap-sass might be problematic. Click here for more details.
- data/README.md +3 -3
- data/lib/bootstrap-sass.rb +2 -2
- data/vendor/assets/stylesheets/bootstrap/_mixins.scss +2 -2
- metadata +24 -9
data/README.md
CHANGED
@@ -14,7 +14,7 @@ In your Gemfile:
|
|
14
14
|
|
15
15
|
```ruby
|
16
16
|
gem 'sass-rails', '~> 3.2'
|
17
|
-
gem 'bootstrap-sass', '~> 2.3.0.
|
17
|
+
gem 'bootstrap-sass', '~> 2.3.0.1'
|
18
18
|
```
|
19
19
|
|
20
20
|
#### CSS
|
@@ -115,7 +115,7 @@ Basically this means you should expect to append a separate patch version to the
|
|
115
115
|
### Bundler?
|
116
116
|
|
117
117
|
```ruby
|
118
|
-
gem 'bootstrap-sass', '~> 2.3.0.
|
118
|
+
gem 'bootstrap-sass', '~> 2.3.0.1'
|
119
119
|
```
|
120
120
|
|
121
121
|
Don't use the standard `~> 2.x.y`. Your apps may break.
|
@@ -124,4 +124,4 @@ Don't use the standard `~> 2.x.y`. Your apps may break.
|
|
124
124
|
bootstrap-sass is a project by [Thomas McDonald](https://twitter.com/#!/thomasmcdonald_), with support from [other awesome people](https://github.com/thomas-mcdonald/bootstrap-sass/graphs/contributors).
|
125
125
|
|
126
126
|
## You're in good company
|
127
|
-
bootstrap-sass is used to build some awesome projects, including [Diaspora](http://diasporaproject.org/), [rails_admin](https://github.com/sferik/rails_admin), Michael Hartl's [Rails Tutorial](http://railstutorial.org/) and [gitlabhq](http://gitlabhq.com/). Using bootstrap-sass? I'd love it if you let me know.
|
127
|
+
bootstrap-sass is used to build some awesome projects, including [Diaspora](http://diasporaproject.org/), [rails_admin](https://github.com/sferik/rails_admin), Michael Hartl's [Rails Tutorial](http://railstutorial.org/) and [gitlabhq](http://gitlabhq.com/). Using bootstrap-sass? I'd love it if you let me know.
|
data/lib/bootstrap-sass.rb
CHANGED
@@ -18,7 +18,7 @@ module Bootstrap
|
|
18
18
|
raise Bootstrap::FrameworkNotFound, "bootstrap-sass requires either Rails > 3.1 or Compass, neither of which are loaded"
|
19
19
|
end
|
20
20
|
stylesheets = File.expand_path(File.join("..", 'vendor', 'assets', 'stylesheets'))
|
21
|
-
Sass.load_paths << stylesheets
|
21
|
+
::Sass.load_paths << stylesheets
|
22
22
|
end
|
23
23
|
|
24
24
|
private
|
@@ -34,7 +34,7 @@ module Bootstrap
|
|
34
34
|
base = File.join(File.dirname(__FILE__), '..')
|
35
35
|
styles = File.join(base, 'vendor', 'assets', 'stylesheets')
|
36
36
|
templates = File.join(base, 'templates')
|
37
|
-
::Compass::Frameworks.register('bootstrap', :stylesheets_directory => styles, :templates_directory => templates)
|
37
|
+
::Compass::Frameworks.register('bootstrap', :path => base, :stylesheets_directory => styles, :templates_directory => templates)
|
38
38
|
end
|
39
39
|
|
40
40
|
def self.register_rails_engine
|
@@ -244,7 +244,7 @@
|
|
244
244
|
}
|
245
245
|
|
246
246
|
// Drop shadows
|
247
|
-
@mixin box-shadow($shadow...) {
|
247
|
+
@mixin box-shadow($shadow...) {
|
248
248
|
-webkit-box-shadow: $shadow;
|
249
249
|
-moz-box-shadow: $shadow;
|
250
250
|
box-shadow: $shadow;
|
@@ -499,7 +499,7 @@
|
|
499
499
|
@include reset-filter();
|
500
500
|
|
501
501
|
// in these cases the gradient won't cover the background, so we override
|
502
|
-
&:hover, &:active, &.active, &.disabled, &[disabled] {
|
502
|
+
&:hover, &:focus, &:active, &.active, &.disabled, &[disabled] {
|
503
503
|
color: $textColor;
|
504
504
|
background-color: $endColor;
|
505
505
|
*background-color: darken($endColor, 5%);
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bootstrap-sass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.3.0.
|
4
|
+
version: 2.3.0.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-02-
|
12
|
+
date: 2013-02-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: compass
|
16
|
-
requirement:
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,10 +21,15 @@ dependencies:
|
|
21
21
|
version: '0'
|
22
22
|
type: :development
|
23
23
|
prerelease: false
|
24
|
-
version_requirements:
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0'
|
25
30
|
- !ruby/object:Gem::Dependency
|
26
31
|
name: sass-rails
|
27
|
-
requirement:
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
28
33
|
none: false
|
29
34
|
requirements:
|
30
35
|
- - ~>
|
@@ -32,10 +37,15 @@ dependencies:
|
|
32
37
|
version: '3.2'
|
33
38
|
type: :development
|
34
39
|
prerelease: false
|
35
|
-
version_requirements:
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ~>
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '3.2'
|
36
46
|
- !ruby/object:Gem::Dependency
|
37
47
|
name: sass
|
38
|
-
requirement:
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
39
49
|
none: false
|
40
50
|
requirements:
|
41
51
|
- - ~>
|
@@ -43,7 +53,12 @@ dependencies:
|
|
43
53
|
version: '3.2'
|
44
54
|
type: :runtime
|
45
55
|
prerelease: false
|
46
|
-
version_requirements:
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '3.2'
|
47
62
|
description:
|
48
63
|
email: tom@conceptcoding.co.uk
|
49
64
|
executables: []
|
@@ -138,7 +153,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
138
153
|
version: '0'
|
139
154
|
requirements: []
|
140
155
|
rubyforge_project:
|
141
|
-
rubygems_version: 1.8.
|
156
|
+
rubygems_version: 1.8.23
|
142
157
|
signing_key:
|
143
158
|
specification_version: 3
|
144
159
|
summary: Twitter's Bootstrap, converted to Sass and ready to drop into Rails or Compass
|