jekyll-theme-lily 2.1.2.3.0 → 3.0.3.1.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: 46002c08672c462e1ab92a0e29a7aa4d612e728f75251b27269a8e8431a41eec
4
- data.tar.gz: 6d05c221bbd87ea1e87898f6f2b7883529b72cd71be24fcf05fdc33a3d2b2ed5
3
+ metadata.gz: f7db28fb6813b2d7b1481e783bf78db5156e18e98957f7fa8f8afa1281f50131
4
+ data.tar.gz: 4d491d39c79d084f7ac3fd2ca4e6fad45fbced5c9efc62b5b85208fd94032519
5
5
  SHA512:
6
- metadata.gz: cb49479758e1e8b07b1ebc7c4ac54c89e2c4aeb82df1e4a7d2c9791db4579b45bb0fe29721381bbe2b521e12b87b2fce6031df1f382f848a820850d9f577dd67
7
- data.tar.gz: 35ca1af6bf29cd1973fe7de7bb7b8a1143a6cb67b92d961cac7ba1e5d168898d3c00bdcf67eebc4a579a846ac7537ccb1884c6e9ea508562ad6bf7988536e7c5
6
+ metadata.gz: ee23cd1cfdb44235b6c78e194b150541eb2f65dfb0ca940f147341c97e9369c66d46413d4386be3bceae5fae6867c53716adb30c00e32f2fffbd67a65458edd2
7
+ data.tar.gz: 1428b5b26714cb583295cc004e0774d201498716d80042bc087f6027d07539b206237eff689cb9e55278b8a3bf10a06bc20edcf89b83ecb21cdf063bd38e4e89
data/README.md CHANGED
@@ -5,6 +5,11 @@
5
5
  *Lily is a fresh Jekyll theme based on [Beercss](https://www.beercss.com/). You can [preview the theme to see what it looks like](https://howerziu.github.io/jekyll-theme-lily), or [directly use it](#usage).*
6
6
 
7
7
 
8
+ **BREAKING CHANGES**
9
+
10
+ * Due to breaking changes of Beercss 3.0, you need to divide rem unit by 16 and multiply px unit by 16 if you have custom css with rem or px units and update jekyll-theme-lily from 2.2 or below to 3.0 or above ( [view details](https://github.com/beercss/beercss/releases/tag/v3.0.0) )
11
+
12
+
8
13
  ## Installation
9
14
 
10
15
  Add this line to your Jekyll site's `Gemfile`:
@@ -34,7 +39,7 @@ To directly use the Lily theme:
34
39
  1. Add the following to your site's `_config.yml`:
35
40
 
36
41
  ```yml
37
- remote_theme: HowerZiu/jekyll-theme-lily@2.1.2.3.0
42
+ remote_theme: HowerZiu/jekyll-theme-lily@3.0.3.1.3
38
43
  plugins:
39
44
  - jekyll-remote-theme # add this line to the plugins list if you already have one
40
45
  ```
data/_includes/head.html CHANGED
@@ -12,7 +12,7 @@
12
12
  {% if site.lily.beercss.css_url %}
13
13
  <link rel="stylesheet" type="text/css" href="{{ site.lily.beercss.css_url }}">
14
14
  {% else %}
15
- <link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/npm/beercss@2.3.0/dist/cdn/beer.min.css">
15
+ <link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/npm/beercss@3.1.3/dist/cdn/beer.min.css">
16
16
  {% endif %}
17
17
  <link rel="stylesheet" type="text/css" href="{{ "/assets/css/style.css" | relative_url }}">
18
18
  {% for css in layout.css %}
@@ -32,14 +32,14 @@
32
32
  {% if site.lily.beercss.js_url %}
33
33
  <script type="text/javascript" src="{{ site.lily.beercss.js_url }}"></script>
34
34
  {% else %}
35
- <script type="text/javascript" src="//cdn.jsdelivr.net/npm/beercss@2.3.0/dist/cdn/beer.min.js"></script>
35
+ <script type="module" src="//cdn.jsdelivr.net/npm/beercss@3.1.3/dist/cdn/beer.min.js"></script>
36
36
  {% endif %}
37
37
  {% seo %}
38
38
  <script type="text/javascript" src="{{ "/assets/js/lily.js" | relative_url }}"></script>
39
39
  <script type="text/javascript">
40
40
  window.onpageshow=function(e) {
41
41
  if (e.persisted)
42
- setLilyMode();
42
+ setLightMode();
43
43
  }
44
44
  </script>
45
45
  {% include head-custom.html %}
@@ -1,22 +1,22 @@
1
1
  <header class="responsive fixed lily-translucent-bar">
2
2
  <nav>
3
3
  {% if page.hide_title %}
4
- <h5 class="max lily-bar-text" ondblclick="lilyScrollTop()"></h5>
4
+ <h5 class="max lily-bar-text" ondblclick="scrollToTop()"></h5>
5
5
  {% else %}
6
6
  {% if page.hide_excerpt %}
7
- <h5 class="max lily-bar-text" ondblclick="lilyScrollTop()">{{ page.title | default: site.title | default: site.github.repository_name }}</h5>
7
+ <h5 class="max lily-bar-text" ondblclick="scrollToTop()">{{ page.title | default: site.title | default: site.github.repository_name }}</h5>
8
8
  {% else %}
9
9
  {% if page.layout=="post" %}
10
- <h5 class="max lily-bar-text" ondblclick="lilyScrollTop()">{{ page.title | default: site.title | default: site.github.repository_name }}</h5>
10
+ <h5 class="max lily-bar-text" ondblclick="scrollToTop()">{{ page.title | default: site.title | default: site.github.repository_name }}</h5>
11
11
  {% else %}
12
- <div class="max lily-bar-text" ondblclick="lilyScrollTop()">
12
+ <div class="max lily-bar-text" ondblclick="scrollToTop()">
13
13
  <h6 class="lily-bar-text">{{ page.title | default: site.title | default: site.github.repository_name }}</h6>
14
14
  <p class="lily-bar-text">{{ page.excerpt | default: site.description | default: site.github.project_tagline }}</p>
15
15
  </div>
16
16
  {% endif %}
17
17
  {% endif %}
18
18
  {% endif %}
19
- <button class="circle transparent" title="Light mode switch" onclick="changeLilyMode()">
19
+ <button class="circle transparent" title="Light mode switch" onclick="changeLightMode()">
20
20
  <i>light_mode</i>
21
21
  </button>
22
22
  </nav>
@@ -31,7 +31,7 @@
31
31
  <div class="divider"></div>
32
32
  {% include footer.html %}
33
33
  </div>
34
- <script>setLilyMode();</script>
34
+ <script>setLightMode();</script>
35
35
  <script src="{{ "/assets/js/scale.fix.js" | relative_url }}"></script>
36
36
  </body>
37
37
 
@@ -1,3 +1,17 @@
1
+ :root {
2
+ scroll-behavior: smooth;
3
+ }
4
+
5
+ :target {
6
+ scroll-margin-top: 4rem;
7
+ background: var(--surface);
8
+ }
9
+
10
+ body.transition {
11
+ transition: all 300ms !important;
12
+ transition-delay: 0ms !important;
13
+ }
14
+
1
15
  .lily-mode-light {
2
16
  --primary:#4d57a9;--on-primary:#ffffff;--primary-container:#dee0ff;--on-primary-container:#000965;--secondary:#5c5d72;--on-secondary:#ffffff;--secondary-container:#e0e0f9;--on-secondary-container:#181a2c;--tertiary:#78536c;--on-tertiary:#ffffff;--tertiary-container:#ffd7f1;--on-tertiary-container:#2e1127;--error:#ba1b1b;--error-container:#ffdad4;--on-error:#ffffff;--on-error-container:#410001;--background:#fffbff;--on-background:#1b1b1f;--surface:#fffbff;--on-surface:#1b1b1f;--surface-variant:#e3e1ec;--on-surface-variant:#46464f;--outline:#77767f;--inverse-on-surface:#f3f0f5;--inverse-surface:#303034;--inverse-primary:#bbc2ff;--shadow:#000000;--mode: light;
3
17
  @import "rouge-light";
@@ -13,6 +27,9 @@
13
27
  }
14
28
 
15
29
  .lily-translucent-bar {
30
+ ---blur: .032rem;
31
+ -webkit-backdrop-filter: blur(var(---blur));
32
+ backdrop-filter: blur(var(---blur));
16
33
  &:after {
17
34
  content: "";
18
35
  position: absolute;
@@ -34,7 +51,7 @@
34
51
  }
35
52
 
36
53
  .lily-footer {
37
- padding: 16rem 16rem;
54
+ padding: 1rem 1rem;
38
55
  }
39
56
 
40
57
  .lily-post-date {
@@ -46,11 +63,11 @@ main {
46
63
  line-height: 1.5;
47
64
 
48
65
  p, ul, ol, table, dl {
49
- margin: 0 0 16rem;
66
+ margin: 0 0 1rem;
50
67
  }
51
68
 
52
69
  ul, ol {
53
- padding-inline-start: 32rem;
70
+ padding-inline-start: 2rem;
54
71
  }
55
72
 
56
73
  li {
@@ -58,7 +75,7 @@ main {
58
75
  }
59
76
 
60
77
  dd {
61
- margin-inline-start: 32rem;
78
+ margin-inline-start: 2rem;
62
79
  }
63
80
 
64
81
  table {
@@ -67,7 +84,7 @@ main {
67
84
  }
68
85
 
69
86
  section {
70
- padding-bottom: 32rem;
87
+ padding-bottom: 2rem;
71
88
  }
72
89
 
73
90
  }
@@ -86,31 +103,31 @@ main, footer {
86
103
  }
87
104
 
88
105
  blockquote {
89
- border-left: 4rem solid var(--secondary);
106
+ border-left: 0.25rem solid var(--secondary);
90
107
  margin: 0;
91
- padding: 0 0 0 16rem;
108
+ padding: 0 0 0 1rem;
92
109
  font-style: italic;
93
110
  }
94
111
 
95
112
  pre {
96
- padding: 8rem;
113
+ padding: 0.5rem;
97
114
  overflow-x: auto;
98
115
  }
99
116
 
100
117
  .highlighter-rouge, .highlight {
101
- padding: 8rem;
102
- margin-bottom: 16rem;
118
+ padding: 0.5rem;
119
+ margin-bottom: 1rem;
103
120
  }
104
121
 
105
122
  .highlighter-rouge>.highlight, .highlight>.highlight {
106
- border-radius: 8rem;
123
+ border-radius: 0.5rem;
107
124
  margin-bottom: 0;
108
125
  }
109
126
 
110
127
  figure.highlight {
111
- padding: 8rem;
112
- border-radius: 8rem;
113
- margin-bottom: 16rem;
128
+ padding: 0.5rem;
129
+ border-radius: 0.5rem;
130
+ margin-bottom: 1rem;
114
131
  }
115
132
 
116
133
  table {
@@ -118,7 +135,7 @@ table {
118
135
  }
119
136
 
120
137
  td, th {
121
- border-bottom: 1rem solid var(--outline)
138
+ border-bottom: 0.0625rem solid var(--outline)
122
139
  }
123
140
 
124
141
  dt {
@@ -133,8 +150,8 @@ kbd {
133
150
  box-shadow: var(--shadow1);
134
151
  background-color: var(--surface-variant);
135
152
  color: var(--on-surface-variant);
136
- padding: 4rem;
137
- border-radius: 4rem;
153
+ padding: 0.25rem;
154
+ border-radius: 0.25rem;
138
155
  display: inline-block;
139
156
  vertical-align: middle;
140
157
  transition: var(--speed3) transform,var(--speed3) border-radius,var(--speed3) padding;
data/assets/js/lily.js CHANGED
@@ -1,28 +1,8 @@
1
- function setLilyCookie(cname,cvalue,exdays,path) {
2
- var d=new Date();
3
- d.setTime(d.getTime()+(exdays*24*60*60*1000));
4
- c=cname+"="+cvalue;
5
- if (exdays) c=c+"; expires="+d.toGMTString();
6
- if (path) c=c+"; path="+path;
7
- document.cookie=c;
8
- }
9
- function getLilyCookie(cname) {
10
- var name=cname+"=";
11
- var carr=document.cookie.split(';');
12
- for (var i=0; i<carr.length; ++i) {
13
- var c=carr[i].trim();
14
- if (c.indexOf(name)==0) return c.substring(name.length,c.length);
15
- }
16
- return "";
17
- }
18
- function delLilyCookie(cname) {
19
- document.cookie=cname+"=; expires=Thu, 01 Jan 1970 00:00:00 GMT";
20
- }
21
- function setLilyMode() {
1
+ function setLightMode() {
22
2
  body=document.body;
23
- var lily_mode=getLilyCookie("lily_mode");
3
+ var light_mode=localStorage.getItem("light_mode");
24
4
  var theme_color_meta=document.querySelector('meta[name="theme-color"]');
25
- if (lily_mode=="dark") {
5
+ if (light_mode=="dark") {
26
6
  body.classList.remove("light");
27
7
  body.classList.add("dark");
28
8
  document.getElementById("body").classList.remove("lily-mode-light");
@@ -36,16 +16,20 @@ function setLilyMode() {
36
16
  theme_color_meta.setAttribute("content","#dee0ff");
37
17
  }
38
18
  }
39
- function changeLilyMode() {
40
- var lily_mode=getLilyCookie('lily_mode');
41
- if (lily_mode=='dark')
42
- lily_mode='light';
19
+ function changeLightMode() {
20
+ var light_mode=localStorage.getItem("light_mode");
21
+ if (light_mode=='dark')
22
+ light_mode='light';
43
23
  else
44
- lily_mode='dark';
45
- setLilyCookie('lily_mode',lily_mode,180,'/');
46
- setLilyMode();
24
+ light_mode='dark';
25
+ localStorage.setItem('light_mode',light_mode);
26
+ setLightMode();
27
+ document.body.classList.add("transition");
28
+ window.setTimeout(()=>{
29
+ document.body.classList.remove("transition");
30
+ },500);
47
31
  }
48
- function lilyScrollTop() {
32
+ function scrollToTop() {
49
33
  var elm=document.body||document.documentElement;
50
- elm.scrollIntoView({behavior:"smooth"});
34
+ elm.scrollIntoView();
51
35
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-lily
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.2.3.0
4
+ version: 3.0.3.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - HowerZiu
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-11-13 00:00:00.000000000 Z
11
+ date: 2023-05-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll