compass-excess 0.1.0 → 0.1.1
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/lib/compass/excess/version.rb +1 -1
- data/stylesheets/_layout.scss +7 -3
- data/stylesheets/_typography.scss +1 -1
- 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: e69e3d2a02ad15331a8074dd02395594dcdaab28
|
4
|
+
data.tar.gz: 5c20443fd7f62351d8244447bc5cddb13f91ec80
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b116f54e4498babf87cea3bdc89a227c3b9906d1a66086cd36816e9e9928f70c06bb85efbe8ffdab238b7f9209640aafb84e4c33478bb7d81d4face2974e2221
|
7
|
+
data.tar.gz: e2096ad0c0f472c6d4e51e6470da5c3c1f177935c86b55ad132944a3f7d27fabbf802f7d295af8ffe88e82c1f70397993e54011303a71ce74cbe0cadaeae5087
|
data/stylesheets/_layout.scss
CHANGED
@@ -19,11 +19,15 @@
|
|
19
19
|
} // @mixin unstyled-list
|
20
20
|
|
21
21
|
@function breakpoint($width) {
|
22
|
-
@if
|
23
|
-
@return
|
22
|
+
@if type-of($width) == 'number' {
|
23
|
+
@return $width;
|
24
|
+
} @elseif type-of($width) == 'string' {
|
25
|
+
@if map-has-key($breakpoints, $width) {
|
26
|
+
@return map-get($breakpoints, $width);
|
27
|
+
}
|
28
|
+
@error "No breakpoint called `#{$width}` exists in the `$breakpoints` map";
|
24
29
|
}
|
25
30
|
|
26
|
-
@warn "No breakpoint called `#{$width}` exists in the `$breakpoints` map";
|
27
31
|
@return null;
|
28
32
|
} // @function breakpoint()
|
29
33
|
|
@@ -30,9 +30,9 @@ $line-height-modifiers: (
|
|
30
30
|
);
|
31
31
|
|
32
32
|
@mixin text-underline-line-height($line-height) {
|
33
|
-
display: inline-block;
|
34
33
|
text-decoration: none;
|
35
34
|
@include line-height($line-height * map-get($line-height-modifiers, default));
|
35
|
+
background-repeat: repeat-x;
|
36
36
|
|
37
37
|
body.mac &,
|
38
38
|
body.ios & {
|