jekyll-whiteglass 1.11.1 → 1.11.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 296f985089fe871e0584839b9951c5d43b5ee3af0e792f7b97e5d5e8048f7919
4
- data.tar.gz: 02c9e2a20665f87ceddd8c6c1123db7db8c2eb8fb8d8da1e774362e5c2162464
3
+ metadata.gz: e26a4e7ee1aea1e4b008246395b610e952d6470edc2f43c6a6ba148bc14a5aca
4
+ data.tar.gz: 1c7d8d85449d53bedcc74071bb9b550f1db150528a0c5cfb0f9373171506fc7b
5
5
  SHA512:
6
- metadata.gz: 1f8a6435f655b315728fc84e99aa06fa035108202cf110d4c51b29c41e3de9f6a15d96af188205ba3562a9b232ebb9b3b56994b590a696b2be7c920f4e6771d2
7
- data.tar.gz: 95502bdddf3ae3707d18a224dba015350d0ca56ec54d7b1a1ca4b0dbe6a983ef0dd10fb448f9db5671ccd00eb5c7cd4961bacd52e0b968684fff8323bacc4669
6
+ metadata.gz: cbc448b1ac7652b7fba8fe9cfcc2799ffc48cfdba94e3643748453153993a6612e554a8a0b1d0c7f61e539a950916cc6599b34e95b9c86cf7fcb7c29e9af3347
7
+ data.tar.gz: 33826903967c98828729cd8ceba45d6ff99253a1bfa5bc156eb7e73cbf4a77717668878932da7c61baed2664a9428785d6b2e08aa1d0ca31f864d1712ec3caa0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # ChangeLog
2
2
 
3
+ ## 1.11.3 (2023-08-30)
4
+
5
+ - Fix SASS calc() issue (#50)
6
+
7
+ ## 1.11.2 (2022-12-27)
8
+
9
+ - Fix SASS warnings (#48)
10
+
3
11
  ## 1.11.1 (2021-08-14)
4
12
 
5
13
  - Don't break h1, h2, h3 for Korean
data/README.md CHANGED
@@ -278,7 +278,7 @@ Then create `<your-site>/atom.xml` with the same content of `feed.xml` above.
278
278
 
279
279
  ### Comments
280
280
 
281
- whiteglass provides the ability to include your favourite commenting service, like [Disqus](https://disqus.com) or [Isso](https://posativ.org/isso).
281
+ whiteglass provides the ability to include your favourite commenting service, like [Disqus](https://disqus.com) or [Isso](https://isso-comments.de/).
282
282
 
283
283
  To enable comments on pages and posts:
284
284
  1. Overwrite the `_includes/custom_comments_provider.html` with your custom provider of comments.
@@ -39,7 +39,7 @@ h1, h2, h3, h4, h5, h6,
39
39
  p, blockquote, pre,
40
40
  ul, ol, dl, figure,
41
41
  %vertical-rhythm {
42
- margin-bottom: $spacing-unit / 2;
42
+ margin-bottom: $spacing-unit * 0.5;
43
43
  }
44
44
 
45
45
 
@@ -127,7 +127,7 @@ a {
127
127
  blockquote {
128
128
  color: $grey-color;
129
129
  border-left: 4px solid $grey-color-light;
130
- padding-left: $spacing-unit / 2;
130
+ padding-left: $spacing-unit * 0.5;
131
131
  font-size: 18px;
132
132
  letter-spacing: -1px;
133
133
  font-style: italic;
@@ -148,7 +148,7 @@ blockquote {
148
148
  */
149
149
  hr {
150
150
  height: 4px;
151
- margin: $spacing-unit / 2 0;
151
+ margin: $spacing-unit * 0.5 0;
152
152
  border: 0;
153
153
  background-color: $grey-color-light;
154
154
  }
@@ -200,8 +200,8 @@ pre {
200
200
  @include media-query($on-laptop) {
201
201
  max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit}));
202
202
  max-width: calc(#{$content-width} - (#{$spacing-unit}));
203
- padding-right: $spacing-unit / 2;
204
- padding-left: $spacing-unit / 2;
203
+ padding-right: $spacing-unit * 0.5;
204
+ padding-left: $spacing-unit * 0.5;
205
205
  }
206
206
  }
207
207
 
@@ -199,7 +199,7 @@
199
199
  * Pagination
200
200
  */
201
201
  .pagination {
202
- padding: $spacing-unit / 2 0;
202
+ padding: $spacing-unit * 0.5 0;
203
203
  border-top: 1px solid $grey-color-light;
204
204
  border-bottom: 1px solid $grey-color-light;
205
205
  text-align: center;
@@ -27,8 +27,8 @@ $on-laptop: 800px !default;
27
27
  // Use media queries like this:
28
28
  // @include media-query($on-palm) {
29
29
  // .wrapper {
30
- // padding-right: $spacing-unit / 2;
31
- // padding-left: $spacing-unit / 2;
30
+ // padding-right: $spacing-unit * 0.5;
31
+ // padding-left: $spacing-unit * 0.5;
32
32
  // }
33
33
  // }
34
34
  @mixin media-query($device) {
data/assets/main.scss CHANGED
@@ -33,8 +33,8 @@ $on-laptop: 800px;
33
33
  // Use media queries like this:
34
34
  // @include media-query($on-palm) {
35
35
  // .wrapper {
36
- // padding-right: $spacing-unit / 2;
37
- // padding-left: $spacing-unit / 2;
36
+ // padding-right: $spacing-unit * 0.5;
37
+ // padding-left: $spacing-unit * 0.5;
38
38
  // }
39
39
  // }
40
40
  @mixin media-query($device) {
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-whiteglass
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.11.1
4
+ version: 1.11.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chayoung You
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-08-14 00:00:00.000000000 Z
11
+ date: 2023-08-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -152,7 +152,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
152
152
  - !ruby/object:Gem::Version
153
153
  version: '0'
154
154
  requirements: []
155
- rubygems_version: 3.2.22
155
+ rubygems_version: 3.4.10
156
156
  signing_key:
157
157
  specification_version: 4
158
158
  summary: Minimal, responsive Jekyll theme for hackers.