jekyll-whiteglass 1.11.6 → 1.11.7

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f4aad3b5daba9e9f0dc9f4968b896e9d4c72217337b67b86b29a44a6bd6f46f3
4
- data.tar.gz: 5c639ed7c650c86c8ecec1eb0d1d3a18094a7bbaeee9e303769500f3cba42cfc
3
+ metadata.gz: 32876464dbfa332cbbb63b13bb19b3fe5b2f8d2ddc593d0c7eda68337f81394d
4
+ data.tar.gz: 987edf87bf66e031fd6b5fbff43ca95c093a0063eb1c5f9243c6f8fa251a5df5
5
5
  SHA512:
6
- metadata.gz: 248849df1141ff0370b978dc21b6a163ca5b99ca620e30ffdde53bb5d3766349b15114369f4d012fc1ac42211b09463dde9f96b10249dd66a48139eac4ddf380
7
- data.tar.gz: 18e68f980b135d4676ed14eacfc995f029b0af12db41fbce89e0f163bb44f5ecb1bcb403a4c077f54afcff2b3b5b319ce5148d96b8537558294a16292a459fe7
6
+ metadata.gz: ee11c857398f9d226f94b8f1a05f58ac66923fa4a4717faa8f3ea3a9a64e79c736db3ef4fa2c2b2245ee04ccf4a65e82a72ffbd78f5021eb73d189b944a27089
7
+ data.tar.gz: 11775e9fa0b206eecabd83c4f313d8d0f03e6edeb249225c159ddf4add9617af2b055081256c253ae5cd85998e254ee1e846346c213f792d46b6fc7f64a9769f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # ChangeLog
2
2
 
3
+ ## 1.11.7 (2024-10-15)
4
+
5
+ - Support Jekyll < 4 (#54)
6
+
3
7
  ## 1.11.6 (2024-10-13)
4
8
 
5
9
  - Fix Sass warnings
@@ -1,5 +1,3 @@
1
- @use "sass:color";
2
-
3
1
  /**
4
2
  * Reset some basic elements
5
3
  */
@@ -112,7 +110,7 @@ a {
112
110
  text-decoration: none;
113
111
 
114
112
  &:visited {
115
- color: color.adjust($brand-color, $lightness: -10%);
113
+ color: adjust-color($brand-color, $lightness: -10%);
116
114
  }
117
115
 
118
116
  &:hover {
@@ -1,5 +1,3 @@
1
- @use "sass:color";
2
-
3
1
  // Define defaults for each variable.
4
2
  $base-font-family: Bitter, "Apple SD Gothic Neo", "Noto Sans", "Source Han Sans", "Noto Sans CJK JP", "Source Han Sans JP", "Noto Sans CJK KR", "Source Han Sans KR", NanumBarunGothic, AppleGothic, "Malgun Gothic", Dotum, sans-serif !default;
5
3
  $monospace-font-family: Monaco, Menlo, Consolas, "Courier New", DotumChe, monospace !default;
@@ -15,8 +13,8 @@ $background-color: #fdfdfd !default;
15
13
  $brand-color: #2568ba !default;
16
14
 
17
15
  $grey-color: #757575 !default;
18
- $grey-color-light: color.adjust($grey-color, $lightness: 45%) !default;
19
- $grey-color-dark: color.adjust($grey-color, $lightness: -20%) !default;
16
+ $grey-color-light: adjust-color($grey-color, $lightness: 45%) !default;
17
+ $grey-color-dark: adjust-color($grey-color, $lightness: -20%) !default;
20
18
 
21
19
  // Width of the content area
22
20
  $content-width: 800px !default;
data/assets/main.scss CHANGED
@@ -2,7 +2,6 @@
2
2
  # Only the main Sass file needs front matter (the dashes are enough)
3
3
  ---
4
4
  @charset "utf-8";
5
- @use "sass:color";
6
5
 
7
6
  // Our variables
8
7
  $base-font-family: Bitter, "Apple SD Gothic Neo", AppleGothic, NanumBarunGothic, "Malgun Gothic", Dotum, sans-serif;
@@ -19,8 +18,8 @@ $background-color: #fdfdfd;
19
18
  $brand-color: #2568ba;
20
19
 
21
20
  $grey-color: #757575;
22
- $grey-color-light: color.adjust($grey-color, $lightness: 45%);
23
- $grey-color-dark: color.adjust($grey-color, $lightness: -20%);
21
+ $grey-color-light: adjust-color($grey-color, $lightness: 45%);
22
+ $grey-color-dark: adjust-color($grey-color, $lightness: -20%);
24
23
 
25
24
  // Width of the content area
26
25
  $content-width: 800px;
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.6
4
+ version: 1.11.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chayoung You
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-13 00:00:00.000000000 Z
11
+ date: 2024-10-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll