jekyll-whiteglass 1.11.4 → 1.11.6

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: c47e7960d8f701ba4281120618f2fbe282859bb54f5d814b4f408482ae079e56
4
- data.tar.gz: c569d97963314c45059567713bf712b258c6af70c68fbadf274a0c035c158ebd
3
+ metadata.gz: f4aad3b5daba9e9f0dc9f4968b896e9d4c72217337b67b86b29a44a6bd6f46f3
4
+ data.tar.gz: 5c639ed7c650c86c8ecec1eb0d1d3a18094a7bbaeee9e303769500f3cba42cfc
5
5
  SHA512:
6
- metadata.gz: 49a8a8495f50b62dfd13b83e5116bbd6c58f6d4277342de57822141991fb3b12a92e0ade3b047c5752ce764dc547e470e23abca58eacfafe61b23f31ebaafe9d
7
- data.tar.gz: '005803908f3aae25008e246844bc7293e434ec5b89a8a6f7b5f3cbfa3a6a7c7d619de3d0b2b2e5fc7ce243d184b86c37a86c7c8158c2a03085d8c6b290d66874'
6
+ metadata.gz: 248849df1141ff0370b978dc21b6a163ca5b99ca620e30ffdde53bb5d3766349b15114369f4d012fc1ac42211b09463dde9f96b10249dd66a48139eac4ddf380
7
+ data.tar.gz: 18e68f980b135d4676ed14eacfc995f029b0af12db41fbce89e0f163bb44f5ecb1bcb403a4c077f54afcff2b3b5b319ce5148d96b8537558294a16292a459fe7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # ChangeLog
2
2
 
3
+ ## 1.11.6 (2024-10-13)
4
+
5
+ - Fix Sass warnings
6
+
7
+ ## 1.11.5 (2024-07-31)
8
+
9
+ - Fix Sass warnings
10
+
3
11
  ## 1.11.4 (2024-05-11)
4
12
 
5
13
  - Remove duplicated last slash from feed id
@@ -1,3 +1,5 @@
1
+ @use "sass:color";
2
+
1
3
  /**
2
4
  * Reset some basic elements
3
5
  */
@@ -110,7 +112,7 @@ a {
110
112
  text-decoration: none;
111
113
 
112
114
  &:visited {
113
- color: darken($brand-color, 10%);
115
+ color: color.adjust($brand-color, $lightness: -10%);
114
116
  }
115
117
 
116
118
  &:hover {
@@ -40,10 +40,10 @@
40
40
  .page-link {
41
41
  padding: 20px 0;
42
42
 
43
+ margin-left: 20px;
43
44
  &:not(:last-child) {
44
45
  margin-right: 0;
45
46
  }
46
- margin-left: 20px;
47
47
  }
48
48
  }
49
49
  }
@@ -1,3 +1,5 @@
1
+ @use "sass:color";
2
+
1
3
  // Define defaults for each variable.
2
4
  $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;
3
5
  $monospace-font-family: Monaco, Menlo, Consolas, "Courier New", DotumChe, monospace !default;
@@ -13,8 +15,8 @@ $background-color: #fdfdfd !default;
13
15
  $brand-color: #2568ba !default;
14
16
 
15
17
  $grey-color: #757575 !default;
16
- $grey-color-light: lighten($grey-color, 45%) !default;
17
- $grey-color-dark: darken($grey-color, 20%) !default;
18
+ $grey-color-light: color.adjust($grey-color, $lightness: 45%) !default;
19
+ $grey-color-dark: color.adjust($grey-color, $lightness: -20%) !default;
18
20
 
19
21
  // Width of the content area
20
22
  $content-width: 800px !default;
data/assets/main.scss CHANGED
@@ -2,6 +2,7 @@
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";
5
6
 
6
7
  // Our variables
7
8
  $base-font-family: Bitter, "Apple SD Gothic Neo", AppleGothic, NanumBarunGothic, "Malgun Gothic", Dotum, sans-serif;
@@ -18,8 +19,8 @@ $background-color: #fdfdfd;
18
19
  $brand-color: #2568ba;
19
20
 
20
21
  $grey-color: #757575;
21
- $grey-color-light: lighten($grey-color, 45%);
22
- $grey-color-dark: darken($grey-color, 20%);
22
+ $grey-color-light: color.adjust($grey-color, $lightness: 45%);
23
+ $grey-color-dark: color.adjust($grey-color, $lightness: -20%);
23
24
 
24
25
  // Width of the content area
25
26
  $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.4
4
+ version: 1.11.6
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-05-11 00:00:00.000000000 Z
11
+ date: 2024-10-13 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.5.3
155
+ rubygems_version: 3.5.16
156
156
  signing_key:
157
157
  specification_version: 4
158
158
  summary: Minimal, responsive Jekyll theme for hackers.