susy 2.2.11 → 2.2.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/sass/susy/language/susy/_margins.scss +2 -2
- data/sass/susy/language/susy/_padding.scss +2 -2
- data/sass/susy/language/susy/_validation.scss +3 -3
- 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: aef6bad44be3234ef9707e98ded1b5b4bba8d8ea
|
4
|
+
data.tar.gz: 7ed88f06b8819b76547d44514877935ffdd7e9c8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9b457cb71d00b39ec5173ed48a414bdd6c5dacbb98d393442c4f7fbc670b46a44454b84b41bc8a587563c2575466a62d6a68230de1c03521abb113e4c28db31c
|
7
|
+
data.tar.gz: 5421a337eb06e52800dd04a1f103a17161afec79fc260d91a2140368ba99fe86dce3c1fce8cc0a6765316995535efd67da7e614b67b2f5b2ed2d1c6c9f564df5
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.2.
|
1
|
+
2.2.11
|
@@ -73,7 +73,7 @@
|
|
73
73
|
$pre,
|
74
74
|
$post: false
|
75
75
|
) {
|
76
|
-
$inspect : $pre, $post;
|
76
|
+
$inspect : ($pre, $post);
|
77
77
|
$pre : map-merge((spread: wide), parse-span($pre));
|
78
78
|
|
79
79
|
@if $post {
|
@@ -88,7 +88,7 @@
|
|
88
88
|
}
|
89
89
|
}
|
90
90
|
|
91
|
-
@include susy-inspect(squish, $inspect
|
91
|
+
@include susy-inspect(squish, $inspect);
|
92
92
|
@include pre($pre);
|
93
93
|
@include post($post);
|
94
94
|
}
|
@@ -52,7 +52,7 @@
|
|
52
52
|
$pre,
|
53
53
|
$post: false
|
54
54
|
) {
|
55
|
-
$inspect : $pre, $post;
|
55
|
+
$inspect : ($pre, $post);
|
56
56
|
$pre : map-merge((spread: wide), parse-span($pre));
|
57
57
|
|
58
58
|
@if $post {
|
@@ -67,7 +67,7 @@
|
|
67
67
|
}
|
68
68
|
}
|
69
69
|
|
70
|
-
@include susy-inspect(pad, $inspect
|
70
|
+
@include susy-inspect(pad, $inspect);
|
71
71
|
@include prefix($pre);
|
72
72
|
@include suffix($post);
|
73
73
|
|
@@ -9,8 +9,8 @@
|
|
9
9
|
$column-width
|
10
10
|
) {
|
11
11
|
@if $math == static and not($column-width) {
|
12
|
-
@
|
13
|
-
} @else {
|
14
|
-
@return $column-width;
|
12
|
+
@error 'Static math requires a valid column-width setting.';
|
15
13
|
}
|
14
|
+
|
15
|
+
@return $column-width;
|
16
16
|
}
|