jekyll-whiteglass 1.11.0 → 1.11.2

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: c80975334e2797b740692525664cbde3fbf71db318dd57cea20f8983cfb9d370
4
- data.tar.gz: '085dd2dbc91d334f2f99ba1fe8dac16576bdfd86291410392bd0e5e6e748a8d1'
3
+ metadata.gz: da5ede74c88b0a82bf5a841278f0fb6ea9413125544f761cc99d61608a41726e
4
+ data.tar.gz: ea57ab4d109fef2f01b856eb8e0b368243132fb1b4ade5312a06df7f0da1b043
5
5
  SHA512:
6
- metadata.gz: 5b4c315fd35a88c7920c0a1a2c94d22542152478ca51d909affff4c32d1558d8a632429f5850cef5bb01bed8b0928249647287172197d020920da21eb3f6634d
7
- data.tar.gz: 9c3ba65ffc2242fa30fe3de0d6b5c1ddd7d6a51d47e5cfd801e31b9ebc584d2ea067d1279cf73a75e087998c9d7ac86b818291ab510323831a24ed2fefac1126
6
+ metadata.gz: da738bf077c45b3ed9ce4aca99554db4fe215c333d70610ecdceeae938aa4a653ac9a55ad6846ce400d20da77f89d78b1535b82d1be4da0567cb0cdf24530cb5
7
+ data.tar.gz: 6c20ac517fcd1cbca7470c363c9898fcc3e53f59516dc9bc25bd3d39ae4e3781207762e4c37955fe3edd719d1d8f4b6e8ca66cb6d0bd8bd43879e63c1438adc5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # ChangeLog
2
2
 
3
+ ## 1.11.2 (2022-12-27)
4
+
5
+ - Fix SASS warnings (#48)
6
+
7
+ ## 1.11.1 (2021-08-14)
8
+
9
+ - Don't break h1, h2, h3 for Korean
10
+
3
11
  ## 1.11.0 (2021-07-21)
4
12
 
5
13
  - Update for Google Analytics 4
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # whiteglass
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/jekyll-whiteglass.svg)](https://badge.fury.io/rb/jekyll-whiteglass)
4
- [![Build Status](https://travis-ci.org/yous/whiteglass.svg?branch=master)](https://travis-ci.org/yous/whiteglass)
4
+ [![CircleCI](https://circleci.com/gh/yous/whiteglass/tree/master.svg?style=shield)](https://circleci.com/gh/yous/whiteglass/tree/master)
5
5
 
6
6
  Minimal, responsive Jekyll theme for hackers.
7
7
 
@@ -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: calc($spacing-unit / 2);
43
43
  }
44
44
 
45
45
 
@@ -94,6 +94,12 @@ h1, h2, h3, h4, h5, h6 {
94
94
  }
95
95
  }
96
96
 
97
+ h1, h2, h3 {
98
+ &:lang(ko) {
99
+ word-break: keep-all;
100
+ }
101
+ }
102
+
97
103
 
98
104
 
99
105
  /**
@@ -121,7 +127,7 @@ a {
121
127
  blockquote {
122
128
  color: $grey-color;
123
129
  border-left: 4px solid $grey-color-light;
124
- padding-left: $spacing-unit / 2;
130
+ padding-left: calc($spacing-unit / 2);
125
131
  font-size: 18px;
126
132
  letter-spacing: -1px;
127
133
  font-style: italic;
@@ -142,7 +148,7 @@ blockquote {
142
148
  */
143
149
  hr {
144
150
  height: 4px;
145
- margin: $spacing-unit / 2 0;
151
+ margin: calc($spacing-unit / 2) 0;
146
152
  border: 0;
147
153
  background-color: $grey-color-light;
148
154
  }
@@ -194,8 +200,8 @@ pre {
194
200
  @include media-query($on-laptop) {
195
201
  max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit}));
196
202
  max-width: calc(#{$content-width} - (#{$spacing-unit}));
197
- padding-right: $spacing-unit / 2;
198
- padding-left: $spacing-unit / 2;
203
+ padding-right: calc($spacing-unit / 2);
204
+ padding-left: calc($spacing-unit / 2);
199
205
  }
200
206
  }
201
207
 
@@ -199,7 +199,7 @@
199
199
  * Pagination
200
200
  */
201
201
  .pagination {
202
- padding: $spacing-unit / 2 0;
202
+ padding: calc($spacing-unit / 2) 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: calc($spacing-unit / 2);
31
+ // padding-left: calc($spacing-unit / 2);
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: calc($spacing-unit / 2);
37
+ // padding-left: calc($spacing-unit / 2);
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.0
4
+ version: 1.11.2
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-07-21 00:00:00.000000000 Z
11
+ date: 2022-12-27 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.3.7
156
156
  signing_key:
157
157
  specification_version: 4
158
158
  summary: Minimal, responsive Jekyll theme for hackers.