graphite-sass 0.2.2 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/graphite.rb +1 -1
- data/stylesheets/graphite.scss +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 59635904abff0a3f7018ce95570aefc07868fc4b
|
4
|
+
data.tar.gz: d70399f77f29fc5ac7d0156173db5f934507efde
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4e726737519ab90c74faa744af1b18d18e98e6363350b925fb1456d284dab3c3c0788b1da3a36f98d5ad106b0223230d0d3455b6f586e8da5286709d94fe0994
|
7
|
+
data.tar.gz: 9d29cb54ef89bb7f13141eb68484970ee1c55b9218e8c86e2becc49a2e70fe34ee26c8e32876d89200d192a70472d1a3c3b658b34f37b0f9fe52f60551491a23
|
data/lib/graphite.rb
CHANGED
data/stylesheets/graphite.scss
CHANGED
@@ -134,14 +134,14 @@ $graphite_chdir: ".." !global;
|
|
134
134
|
}
|
135
135
|
|
136
136
|
// Define value for each type
|
137
|
-
$
|
137
|
+
$eot: if(index($extensions, "eot"), url("#{$path + $filename}.eot?#iefix") format("embedded-opentype"), null);
|
138
138
|
$woff: if(index($extensions, "woff"), url("#{$path + $filename}.woff") format("woff"), null);
|
139
139
|
$otf: if(index($extensions, "otf"), url("#{$path + $filename}.otf") format("opentype"), null);
|
140
140
|
$ttf: if(index($extensions, "ttf"), url("#{$path + $filename}.ttf") format("truetype"), null);
|
141
141
|
$svg: if(index($extensions, "svg"), url("#{$path + $filename + '.svg#' + $name}") format("svg"), null);
|
142
142
|
|
143
143
|
// Append to types list if not null
|
144
|
-
$types: if($
|
144
|
+
$types: if($eot != null, append($types, #{$eot}, "comma"), $types);
|
145
145
|
$types: if($woff != null, append($types, #{$woff}, "comma"), $types);
|
146
146
|
$types: if($otf != null, append($types, #{$otf}, "comma"), $types);
|
147
147
|
$types: if($ttf != null, append($types, #{$ttf}, "comma"), $types);
|