bourbon 3.1.6 → 3.1.7
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.
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
bourbon (3.1.
|
|
4
|
+
bourbon (3.1.6)
|
|
5
5
|
sass (>= 3.2.0)
|
|
6
6
|
thor
|
|
7
7
|
|
|
@@ -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.9)
|
|
40
40
|
term-ansicolor (1.0.7)
|
|
41
|
-
thor (0.
|
|
41
|
+
thor (0.18.1)
|
|
42
42
|
|
|
43
43
|
PLATFORMS
|
|
44
44
|
ruby
|
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
@mixin retina-image($filename, $background-size, $extension: png, $retina-filename: null, $asset-pipeline: false) {
|
|
2
2
|
@if $asset-pipeline {
|
|
3
|
-
background-image:
|
|
3
|
+
background-image: image-url("#{$filename}.#{$extension}");
|
|
4
4
|
}
|
|
5
5
|
@else {
|
|
6
|
-
background-image: url($filename
|
|
6
|
+
background-image: url("#{$filename}.#{$extension}");
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
@include hidpi {
|
|
10
10
|
|
|
11
11
|
@if $asset-pipeline {
|
|
12
12
|
@if $retina-filename {
|
|
13
|
-
background-image:
|
|
13
|
+
background-image: image-url("#{$retina-filename}.#{$extension}");
|
|
14
14
|
}
|
|
15
15
|
@else {
|
|
16
|
-
background-image:
|
|
16
|
+
background-image: image-url("#{$filename}@2x.#{$extension}");
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
@else {
|
|
21
21
|
@if $retina-filename {
|
|
22
|
-
background-image: url($retina-filename
|
|
22
|
+
background-image: url("#{$retina-filename}.#{$extension}");
|
|
23
23
|
}
|
|
24
24
|
@else {
|
|
25
|
-
background-image: url($filename
|
|
25
|
+
background-image: url("#{$filename}@2x.#{$extension}");
|
|
26
26
|
}
|
|
27
27
|
}
|
|
28
28
|
|
|
@@ -9,28 +9,28 @@
|
|
|
9
9
|
@if $original-prefix-for-webkit {
|
|
10
10
|
@include disable-prefix-for-all();
|
|
11
11
|
$prefix-for-webkit: true;
|
|
12
|
-
@-webkit-keyframes #{$name} {
|
|
12
|
+
#{"@-webkit-keyframes"} #{$name} {
|
|
13
13
|
@content;
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
16
|
@if $original-prefix-for-mozilla {
|
|
17
17
|
@include disable-prefix-for-all();
|
|
18
18
|
$prefix-for-mozilla: true;
|
|
19
|
-
@-moz-keyframes #{$name} {
|
|
19
|
+
#{"@-moz-keyframes"} #{$name} {
|
|
20
20
|
@content;
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
@if $original-prefix-for-opera {
|
|
24
24
|
@include disable-prefix-for-all();
|
|
25
25
|
$prefix-for-opera: true;
|
|
26
|
-
@-o-keyframes #{$name} {
|
|
26
|
+
#{"@-o-keyframes"} #{$name} {
|
|
27
27
|
@content;
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
30
|
@if $original-prefix-for-spec {
|
|
31
31
|
@include disable-prefix-for-all();
|
|
32
32
|
$prefix-for-spec: true;
|
|
33
|
-
@keyframes #{$name} {
|
|
33
|
+
#{"@keyframes"} #{$name} {
|
|
34
34
|
@content;
|
|
35
35
|
}
|
|
36
36
|
}
|
data/lib/bourbon/version.rb
CHANGED
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.7
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -20,7 +20,7 @@ authors:
|
|
|
20
20
|
autorequire:
|
|
21
21
|
bindir: bin
|
|
22
22
|
cert_chain: []
|
|
23
|
-
date: 2013-
|
|
23
|
+
date: 2013-06-09 00:00:00.000000000 Z
|
|
24
24
|
dependencies:
|
|
25
25
|
- !ruby/object:Gem::Dependency
|
|
26
26
|
name: sass
|