bourbon 2.1.2 → 2.1.3
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile.lock +4 -4
- data/app/assets/stylesheets/_bourbon.scss +3 -3
- data/app/assets/stylesheets/addons/_clearfix.scss +2 -2
- data/app/assets/stylesheets/{css3 → addons}/_prefixer.scss +0 -0
- data/app/assets/stylesheets/{addons → css3}/_font-face.scss +0 -0
- data/app/assets/stylesheets/{addons → css3}/_hidpi-media-query.scss +0 -0
- data/bin/bourbon +2 -1
- data/lib/bourbon.rb +4 -0
- data/lib/bourbon/version.rb +1 -1
- data/readme.md +6 -26
- metadata +13 -13
data/Gemfile.lock
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
bourbon (2.1.
|
5
|
-
sass (>= 3.
|
4
|
+
bourbon (2.1.2)
|
5
|
+
sass (>= 3.2)
|
6
6
|
thor
|
7
7
|
|
8
8
|
GEM
|
@@ -36,9 +36,9 @@ GEM
|
|
36
36
|
rspec-expectations (2.8.0)
|
37
37
|
diff-lcs (~> 1.1.2)
|
38
38
|
rspec-mocks (2.8.0)
|
39
|
-
sass (3.2.
|
39
|
+
sass (3.2.2)
|
40
40
|
term-ansicolor (1.0.7)
|
41
|
-
thor (0.
|
41
|
+
thor (0.16.0)
|
42
42
|
|
43
43
|
PLATFORMS
|
44
44
|
ruby
|
@@ -21,10 +21,11 @@
|
|
21
21
|
@import "css3/box-sizing";
|
22
22
|
@import "css3/columns";
|
23
23
|
@import "css3/flex-box";
|
24
|
+
@import "css3/font-face";
|
25
|
+
@import "css3/hidpi-media-query";
|
24
26
|
@import "css3/image-rendering";
|
25
27
|
@import "css3/inline-block";
|
26
28
|
@import "css3/linear-gradient";
|
27
|
-
@import "css3/prefixer";
|
28
29
|
@import "css3/radial-gradient";
|
29
30
|
@import "css3/transform";
|
30
31
|
@import "css3/transition";
|
@@ -33,10 +34,9 @@
|
|
33
34
|
// Addons & other mixins
|
34
35
|
@import "addons/button";
|
35
36
|
@import "addons/clearfix";
|
36
|
-
@import "addons/font-face";
|
37
37
|
@import "addons/font-family";
|
38
38
|
@import "addons/hide-text";
|
39
39
|
@import "addons/html5-input-types";
|
40
40
|
@import "addons/position";
|
41
|
+
@import "addons/prefixer";
|
41
42
|
@import "addons/timing-functions";
|
42
|
-
@import "addons/hidpi-media-query";
|
File without changes
|
File without changes
|
File without changes
|
data/bin/bourbon
CHANGED
data/lib/bourbon.rb
CHANGED
data/lib/bourbon/version.rb
CHANGED
data/readme.md
CHANGED
@@ -11,7 +11,7 @@ browsers that support only CSS3 prefixed properties. Bourbon uses SCSS syntax.
|
|
11
11
|
|
12
12
|
#[Documentation & Demo](http://bourbon.io)
|
13
13
|
|
14
|
-
|
14
|
+
## Requirements
|
15
15
|
Sass 3.2+
|
16
16
|
|
17
17
|
# Install for Rails 3.1+
|
@@ -75,32 +75,12 @@ Visit the [Command line tools wiki](https://github.com/thoughtbot/bourbon/wiki/C
|
|
75
75
|
|
76
76
|
bourbon help
|
77
77
|
bourbon update
|
78
|
+
|
79
|
+
-------
|
80
|
+
# [Changelog](https://github.com/thoughtbot/bourbon/wiki)
|
78
81
|
|
79
|
-
# Browser support
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
## Help Out
|
84
|
-
|
85
|
-
Currently the project is a work in progress. Feel free to help out.
|
86
|
-
A general rule when considering filing a pull request for a new mixin: Do the following browsers *only* support the CSS3 property using vendor specific prefixes?
|
87
|
-
If the answer is yes, there is a high chance the mixin will be accepted via a pull request.
|
88
|
-
|
89
|
-
* Firefox 3.6+
|
90
|
-
* Safari 4.0+
|
91
|
-
* Chrome 4.0+
|
92
|
-
* Opera 10+
|
93
|
-
* IE 9+
|
94
|
-
|
95
|
-
*Bourbon does not intend to support IE filters.*
|
96
|
-
|
97
|
-
|
98
|
-
Resources for checking browser support:
|
99
|
-
|
100
|
-
* [MDN - Moz Dev Network](https://developer.mozilla.org/en-US/)
|
101
|
-
* [Mozilla CSS Extensions](https://developer.mozilla.org/en/CSS_Reference/Mozilla_Extensions)
|
102
|
-
* [Webkit CSS Properties](http://css-infos.net/properties/webkit.php)
|
103
|
-
* [MSDN - Microsoft Dev Network](http://msdn.microsoft.com/en-us/library/ms531207\(v=VS.85\).aspx)
|
82
|
+
# [Browser support](https://github.com/thoughtbot/bourbon/wiki/Browser-Support)
|
83
|
+
-------
|
104
84
|
|
105
85
|
Credits
|
106
86
|
-------
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bourbon
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.
|
4
|
+
version: 2.1.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -20,11 +20,11 @@ authors:
|
|
20
20
|
autorequire:
|
21
21
|
bindir: bin
|
22
22
|
cert_chain: []
|
23
|
-
date: 2012-
|
23
|
+
date: 2012-12-05 00:00:00.000000000 Z
|
24
24
|
dependencies:
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: sass
|
27
|
-
requirement: &
|
27
|
+
requirement: &70313890203780 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ! '>='
|
@@ -32,10 +32,10 @@ dependencies:
|
|
32
32
|
version: '3.2'
|
33
33
|
type: :runtime
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *70313890203780
|
36
36
|
- !ruby/object:Gem::Dependency
|
37
37
|
name: thor
|
38
|
-
requirement: &
|
38
|
+
requirement: &70313890203160 !ruby/object:Gem::Requirement
|
39
39
|
none: false
|
40
40
|
requirements:
|
41
41
|
- - ! '>='
|
@@ -43,10 +43,10 @@ dependencies:
|
|
43
43
|
version: '0'
|
44
44
|
type: :runtime
|
45
45
|
prerelease: false
|
46
|
-
version_requirements: *
|
46
|
+
version_requirements: *70313890203160
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: aruba
|
49
|
-
requirement: &
|
49
|
+
requirement: &70313890202620 !ruby/object:Gem::Requirement
|
50
50
|
none: false
|
51
51
|
requirements:
|
52
52
|
- - ~>
|
@@ -54,10 +54,10 @@ dependencies:
|
|
54
54
|
version: '0.4'
|
55
55
|
type: :development
|
56
56
|
prerelease: false
|
57
|
-
version_requirements: *
|
57
|
+
version_requirements: *70313890202620
|
58
58
|
- !ruby/object:Gem::Dependency
|
59
59
|
name: rake
|
60
|
-
requirement: &
|
60
|
+
requirement: &70313890202120 !ruby/object:Gem::Requirement
|
61
61
|
none: false
|
62
62
|
requirements:
|
63
63
|
- - ! '>='
|
@@ -65,7 +65,7 @@ dependencies:
|
|
65
65
|
version: '0'
|
66
66
|
type: :development
|
67
67
|
prerelease: false
|
68
|
-
version_requirements: *
|
68
|
+
version_requirements: *70313890202120
|
69
69
|
description: ! 'The purpose of Bourbon Vanilla Sass Mixins is to provide a comprehensive
|
70
70
|
framework of
|
71
71
|
|
@@ -95,12 +95,11 @@ files:
|
|
95
95
|
- app/assets/stylesheets/_bourbon.scss
|
96
96
|
- app/assets/stylesheets/addons/_button.scss
|
97
97
|
- app/assets/stylesheets/addons/_clearfix.scss
|
98
|
-
- app/assets/stylesheets/addons/_font-face.scss
|
99
98
|
- app/assets/stylesheets/addons/_font-family.scss
|
100
99
|
- app/assets/stylesheets/addons/_hide-text.scss
|
101
|
-
- app/assets/stylesheets/addons/_hidpi-media-query.scss
|
102
100
|
- app/assets/stylesheets/addons/_html5-input-types.scss
|
103
101
|
- app/assets/stylesheets/addons/_position.scss
|
102
|
+
- app/assets/stylesheets/addons/_prefixer.scss
|
104
103
|
- app/assets/stylesheets/addons/_timing-functions.scss
|
105
104
|
- app/assets/stylesheets/css3/_animation.scss
|
106
105
|
- app/assets/stylesheets/css3/_appearance.scss
|
@@ -113,10 +112,11 @@ files:
|
|
113
112
|
- app/assets/stylesheets/css3/_box-sizing.scss
|
114
113
|
- app/assets/stylesheets/css3/_columns.scss
|
115
114
|
- app/assets/stylesheets/css3/_flex-box.scss
|
115
|
+
- app/assets/stylesheets/css3/_font-face.scss
|
116
|
+
- app/assets/stylesheets/css3/_hidpi-media-query.scss
|
116
117
|
- app/assets/stylesheets/css3/_image-rendering.scss
|
117
118
|
- app/assets/stylesheets/css3/_inline-block.scss
|
118
119
|
- app/assets/stylesheets/css3/_linear-gradient.scss
|
119
|
-
- app/assets/stylesheets/css3/_prefixer.scss
|
120
120
|
- app/assets/stylesheets/css3/_radial-gradient.scss
|
121
121
|
- app/assets/stylesheets/css3/_transform.scss
|
122
122
|
- app/assets/stylesheets/css3/_transition.scss
|