chroma-sass 1.2.5 → 1.2.6
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.
- checksums.yaml +4 -4
- data/chroma-sass.gemspec +2 -2
- data/package.json +1 -1
- data/sass/chroma/_internals.scss +4 -4
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '047317391b53e5d3aca6659f4f8e82ec1e6c09e7'
|
|
4
|
+
data.tar.gz: 5ad78885168906feca139379fc54e723dfb2de91
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 01b68e51dc0e027684b0076a28d0b44e0ca52d13b8f55a6704079af79cc7ade5088813466baed02b48baa714e6e15a55af8b782b5114890c3a4b0200afde9405
|
|
7
|
+
data.tar.gz: bb85d2bff765a7c42b2350300c1fd5a403d3934091d6e3f8ddf5a23616685a70f49a8680644f1e81ac10c72d4161d64eec3f368610124753078d3a7d7d544e88
|
data/chroma-sass.gemspec
CHANGED
|
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.homepage = 'https://github.com/JohnAlbin/chroma'
|
|
10
10
|
spec.rubyforge_project =
|
|
11
11
|
|
|
12
|
-
spec.version = '1.2.
|
|
13
|
-
spec.date = '2016-10-
|
|
12
|
+
spec.version = '1.2.6'
|
|
13
|
+
spec.date = '2016-10-16'
|
|
14
14
|
spec.licenses = ['GPL-2.0']
|
|
15
15
|
|
|
16
16
|
spec.authors = ['John Albin Wilkins']
|
data/package.json
CHANGED
data/sass/chroma/_internals.scss
CHANGED
|
@@ -132,16 +132,16 @@
|
|
|
132
132
|
|
|
133
133
|
// _safe-call()
|
|
134
134
|
//
|
|
135
|
-
// LibSass incorrectly throws an error when using
|
|
136
|
-
// function; e.g. rgba(). To work-around this
|
|
137
|
-
//
|
|
135
|
+
// LibSass incorrectly throws an error when using the variable argument
|
|
136
|
+
// indicator, ..., with an overloaded function; e.g. rgba(). To work-around this
|
|
137
|
+
// bug, we call rgba() with direct parameters.
|
|
138
138
|
//
|
|
139
139
|
// @TODO: Remove when the fix for https://github.com/sass/libsass/issues/2205 is released.
|
|
140
140
|
//
|
|
141
141
|
// Style guide: internals._safe-call
|
|
142
142
|
@function _safe-call($function, $parameters...) {
|
|
143
143
|
@if $function == rgba {
|
|
144
|
-
@return rgba($parameters
|
|
144
|
+
@return rgba(nth($parameters, 1), nth($parameters, 2));
|
|
145
145
|
}
|
|
146
146
|
@return call($function, $parameters...);
|
|
147
147
|
}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: chroma-sass
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- John Albin Wilkins
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-10-
|
|
11
|
+
date: 2016-10-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: sass
|
|
@@ -63,7 +63,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
63
63
|
- !ruby/object:Gem::Version
|
|
64
64
|
version: '0'
|
|
65
65
|
requirements: []
|
|
66
|
-
rubyforge_project: 1.2.
|
|
66
|
+
rubyforge_project: 1.2.6
|
|
67
67
|
rubygems_version: 2.6.4
|
|
68
68
|
signing_key:
|
|
69
69
|
specification_version: 4
|