scut 1.0.2 → 1.1.0
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/dist/_scut.scss +7 -2
- data/lib/scut.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 18e44c3fed690052178730beed04671b8554e10e
|
|
4
|
+
data.tar.gz: f603e3b17fa6e449dcf2265fa644c7288fe4baff
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2d020ac055b9e612215d5465afe031ee793e347303e1b76280ec7fc15f73082e45a694022c1a2d33e258bd8d1590799a6c620411c1c1df0e9eb8a00af176275b
|
|
7
|
+
data.tar.gz: 9c9d9cdc07cc208334df6e4c1149fa20fa01288b838f5a794997e50c077819725eba37cb6ee802daecad0e7ad77b0ed6194cfa4978b1050a0a08698001ba5d83
|
data/dist/_scut.scss
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
* Scut, a collection of Sass utilities
|
|
3
3
|
* to ease and improve our implementations of common style-code patterns.
|
|
4
|
-
* v1.0
|
|
4
|
+
* v1.1.0
|
|
5
5
|
* Docs at http://davidtheclark.github.io/scut
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -1283,6 +1283,10 @@ $scut-swhitesquare: "\25ab";
|
|
|
1283
1283
|
$eot-val: url('#{$file-path}.eot?#iefix') format('embedded-opentype');
|
|
1284
1284
|
$result: append($result, $eot-val, comma);
|
|
1285
1285
|
}
|
|
1286
|
+
@if index($formats, woff2) {
|
|
1287
|
+
$woff2-val: url('#{$file-path}.woff2') format('woff2');
|
|
1288
|
+
$result: append($result, $woff2-val, comma);
|
|
1289
|
+
}
|
|
1286
1290
|
@if index($formats, woff) {
|
|
1287
1291
|
$woff-val: url('#{$file-path}.woff') format('woff');
|
|
1288
1292
|
$result: append($result, $woff-val, comma);
|
|
@@ -1303,7 +1307,7 @@ $scut-swhitesquare: "\25ab";
|
|
|
1303
1307
|
$file-path,
|
|
1304
1308
|
$weight: normal,
|
|
1305
1309
|
$style: normal,
|
|
1306
|
-
$formats: eot woff ttf svg
|
|
1310
|
+
$formats: eot woff2 woff ttf svg
|
|
1307
1311
|
) {
|
|
1308
1312
|
|
|
1309
1313
|
@if index('italic' 'oblique', $weight) {
|
|
@@ -1323,6 +1327,7 @@ $scut-swhitesquare: "\25ab";
|
|
|
1323
1327
|
}
|
|
1324
1328
|
|
|
1325
1329
|
}
|
|
1330
|
+
|
|
1326
1331
|
@mixin scut-hanging-indent (
|
|
1327
1332
|
$indent: 1em
|
|
1328
1333
|
) {
|
data/lib/scut.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: scut
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0
|
|
4
|
+
version: 1.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Clark
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-01-
|
|
11
|
+
date: 2015-01-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: sass
|