jekyll-theme-noesya 1.0.6 → 1.0.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_sass/commons/icon.sass +5 -6
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4bba107870a975179f0bf2f5e11a9e383456686424bdd2beead5b05226d348aa
|
4
|
+
data.tar.gz: e21a2ad13e13eeca5e1106a8e0c159780c83f0a20b4437ccccd5a3ff5ab95923
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6bf51a77bca8c106d4c8318b3a80b19f990700011b6922860a353bce8270c4d81294ad1d754c2053777cc5c36cde0ca70c4dcee4ef52c38cbd9023afc3400fd8
|
7
|
+
data.tar.gz: d4536e37ca9b0009601431374d911aa8d2299be7624b74704ccc961f9f4ab69f1c2e5dba2fc397f058ec71f7a177cf9608a45a5f472dcea3ca23e7becd644efe
|
data/_sass/commons/icon.sass
CHANGED
@@ -3,6 +3,7 @@ $icons: ("link-blank": "\e900", "link": "\e901", "download": "\e902", "document"
|
|
3
3
|
@mixin icon
|
4
4
|
-moz-osx-font-smoothing: grayscale
|
5
5
|
-webkit-font-smoothing: antialiased
|
6
|
+
content: ''
|
6
7
|
display: inline-block
|
7
8
|
font-family: 'icons' !important
|
8
9
|
font-style: normal
|
@@ -12,10 +13,8 @@ $icons: ("link-blank": "\e900", "link": "\e901", "download": "\e902", "document"
|
|
12
13
|
speak: never
|
13
14
|
text-transform: none
|
14
15
|
|
15
|
-
@each $
|
16
|
-
.icon--#{$
|
16
|
+
@each $name, $glyph in $icons
|
17
|
+
.icon--#{$name}
|
17
18
|
&::before
|
18
|
-
|
19
|
-
|
20
|
-
.icon::before
|
21
|
-
@include icon
|
19
|
+
@include icon
|
20
|
+
content: $glyph
|