bourbon 3.1.4 → 3.1.5
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,15 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
NDUwY2YwMGE3ZTI5ZjViZDRjMTgzZTUwZWQ0Y2JhZWRhYTExZmM2ZQ==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
ZDI2OTdmMzc3YWFhNGUwMzNhMzA4NDE5OTIzOWNiMWFhNmE3ODcwMw==
|
7
|
+
!binary "U0hBNTEy":
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
YTkwM2ZkNmQzZTQxNTg1MDk0YmIwYWNhZDc3YzI1MDBjYmI5NDg1YjFmMGQ1
|
10
|
+
MTZmNjE1NjY0YWNhNWRjMjE1OWVjY2NmZTZmZmEwMTQ1OGJkY2E0YjAxMjY4
|
11
|
+
NDRkODczMzM4OWFmNGI4NTFlNDYxZWJkM2M5NmNkZDA3MWJkYWU=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
NTY1MWNmY2Q1MGU0YzA4MzAyNzBkNmZkMGE1OWNjOWNiYzNkODgyMWU2NTBm
|
14
|
+
YWQwZTllMzI5MTAwNmE4ZjY3ZjQxMTE0ZDZmYTc0M2Y0OTlkNGE4ZTQ2Njlh
|
15
|
+
YzY3M2UxMWNiYTEyYjk2OWVhZmIzZDJiYmQwZDRmNDhhNmVkYzQ=
|
@@ -62,12 +62,12 @@
|
|
62
62
|
$gradient-args: false;
|
63
63
|
$gradient-positions: false;
|
64
64
|
$shorthand-start: false;
|
65
|
-
@if type-of($first-member) == list { // Linear gradient plus additional shorthand values
|
65
|
+
@if type-of($first-member) == list { // Linear gradient plus additional shorthand values - lg(red,orange)repeat,...
|
66
66
|
$gradient-positions: nth($first-member, 2);
|
67
67
|
$gradient-args: nth($first-member, 3);
|
68
68
|
$shorthand-start: 2;
|
69
69
|
}
|
70
|
-
@else { // Linear gradient only
|
70
|
+
@else { // Linear gradient only - lg(red,orange),...
|
71
71
|
$gradient-positions: nth($shorthand, 2);
|
72
72
|
$gradient-args: nth($shorthand, 3); // Get gradient (red, blue)
|
73
73
|
}
|
@@ -35,9 +35,6 @@
|
|
35
35
|
@else if ("#{$side} #{$corner}" == "left bottom") or ("#{$side} #{$corner}" == "bottom left") {
|
36
36
|
$degree: _position-flipper(#{$side}) _position-flipper(#{$corner});
|
37
37
|
}
|
38
|
-
@else {
|
39
|
-
@warn "Incorrect gradient syntax";
|
40
|
-
}
|
41
38
|
$spec: to $side $corner;
|
42
39
|
}
|
43
40
|
@else if $length == 1 {
|
data/lib/bourbon/version.rb
CHANGED
data/readme.md
CHANGED
@@ -56,6 +56,10 @@ Install Bourbon into the current directory by generating the `bourbon` folder:
|
|
56
56
|
|
57
57
|
The generated folder will contain all the mixins and other necessary Bourbon files. It is recommended not to add or modify the Bourbon files so that you can update Bourbon easily.
|
58
58
|
|
59
|
+
You can specify a target directory using the `path` flag:
|
60
|
+
|
61
|
+
bourbon install --path my/custom/path/
|
62
|
+
|
59
63
|
#### Import
|
60
64
|
|
61
65
|
Lastly, import the mixins at the beginning of your stylesheet(s):
|
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: 3.1.
|
4
|
+
version: 3.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Phil LaPier
|
@@ -19,7 +19,7 @@ authors:
|
|
19
19
|
autorequire:
|
20
20
|
bindir: bin
|
21
21
|
cert_chain: []
|
22
|
-
date: 2013-04-
|
22
|
+
date: 2013-04-27 00:00:00.000000000 Z
|
23
23
|
dependencies:
|
24
24
|
- !ruby/object:Gem::Dependency
|
25
25
|
name: sass
|