jekyll-theme-chirpy-customized-upe 3.1.4 → 3.2.0.pre.beta2

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: 1387507f073a0eb48c1e4f27a6347a0070adf68c7bc8fbeb7b07c2c3d9f79d77
4
- data.tar.gz: 7a4b9d98189b300affa512fc8b4aef6d4e37b9b0ae5be61303e31ed63ac0544c
3
+ metadata.gz: 3abe9a5c60d1d3e6a5f958e8aa8072b264d62812906cf8d2b18f76c083e0de08
4
+ data.tar.gz: 277dae43828286fc92fc36a659ee46df3f586a9521a413d6f5eeb1ac7b319793
5
5
  SHA512:
6
- metadata.gz: 077b928d4a8620ae30d069d83e52c73364b92590aea8df7828cc0b8d9e9fe27fd68d498acacc4dc977f0fe32b8ab3c58095db1c7b57c009f85856913bb1f7fdc
7
- data.tar.gz: 1d4806937373c5aae8377720f4f4d2aaf93183ec7ce60b740589c474c71246059cae9c4309edd0ad9c712799431e29ddc2d29d3c34af18446cf003de25f7d34a
6
+ metadata.gz: 7fe50538e0cc7bf0f9869b6f7e5f9b69958c94a07f7c95582ae3053826e63b1417768f5944712ac373ccf856e0218af624440952ceac42ed72d29c484b11c109
7
+ data.tar.gz: fee7dba2389e6bbcdfada0f62d8357618827f53751b5ecccec0b5722775fe87fcb2b11362ba69133cc6ae29acd34d178b79ae4f8d7dc11ab6418fab1d64a625a
@@ -5,6 +5,7 @@
5
5
  autoNumber: "AMS"
6
6
  }
7
7
  },
8
+ showProcessingMessages: false,
8
9
  extensions: ["tex2jax.js"],
9
10
  jax: ["input/TeX", "output/HTML-CSS"],
10
11
  tex2jax: {
@@ -14,15 +15,33 @@
14
15
  "HTML-CSS": { fonts: ["TeX"] }
15
16
  }
16
17
  });
17
- MathJax.Hub.Register.MessageHook("Math Processing Error",function (message) {
18
- alert("Math Processing Error: "+message[1]);
19
- });
20
- MathJax.Hub.Register.MessageHook("TeX Jax - parse error",function (message) {
21
- alert("Math Processing Error: "+message[1]);
22
- });
23
18
  </script>
24
19
  <script
25
20
  type="text/javascript"
26
21
  async
27
22
  src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML"
28
- ></script>
23
+ ></script>
24
+
25
+ <!-- MathJax -->
26
+ <!-- <script>
27
+ /* see: <https://docs.mathjax.org/en/latest/options/input/tex.html#tex-options> */
28
+ MathJax = {
29
+ tex: {
30
+ /* start/end delimiter pairs for in-line math */
31
+ inlineMath: [
32
+ ['$', '$'],
33
+ ['\\(', '\\)']
34
+ ],
35
+ /* start/end delimiter pairs for display math */
36
+ displayMath: [
37
+ ['$$', '$$'],
38
+ ['\\[', '\\]']
39
+ ],
40
+ /* equation numbering */
41
+ tags: 'ams'
42
+ }
43
+ };
44
+ </script>
45
+ <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
46
+ <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3.2.2/es5/tex-chtml.js"></script> -->
47
+
@@ -79,7 +79,9 @@ layout: compress
79
79
 
80
80
  {% include login-check.html %}
81
81
 
82
- {% include mathjax_support.html %}
82
+ {% if page.layout == 'home' %}
83
+ {% include mathjax_support.html %}
84
+ {% endif %}
83
85
 
84
86
  {% include js-selector.html %}
85
87
 
data/_layouts/forgot.html CHANGED
@@ -66,6 +66,10 @@
66
66
  border-radius: 8px;
67
67
  }
68
68
 
69
+ #forgotBtn:active {
70
+ transform: scale(0.98);
71
+ }
72
+
69
73
  .footer {
70
74
  display: flex;
71
75
  flex-direction: row;
@@ -128,7 +132,7 @@
128
132
  <div class="shell">
129
133
  <h2 class="title">Forgot</h2>
130
134
  <input type="email" id="email" placeholder="Enter the email you used to login">
131
- <input type="submit" value="Confirm" id="loginBtn">
135
+ <input type="submit" value="Confirm" id="forgotBtn">
132
136
  </div>
133
137
 
134
138
 
@@ -142,7 +146,7 @@
142
146
  appKey: appKey,
143
147
  serverURL: serverURL,
144
148
  });
145
- document.getElementById('loginBtn').addEventListener("click", async function () {
149
+ document.getElementById('forgotBtn').addEventListener("click", async function () {
146
150
  var email = document.getElementById("email").value.trim();
147
151
  try {
148
152
  await AV.User.requestPasswordReset(email);
data/_layouts/home.html CHANGED
@@ -111,6 +111,7 @@ refactor: true
111
111
  </article>
112
112
  {% endfor %}
113
113
  </div>
114
+
114
115
  <!-- #post-list -->
115
116
 
116
117
  {% if paginator.total_pages > 1 %}
data/_layouts/login.html CHANGED
@@ -72,6 +72,10 @@ layout: compress
72
72
  align-items: center;
73
73
  border-radius: 8px;
74
74
  }
75
+
76
+ #loginBtn:active {
77
+ transform: scale(0.98);
78
+ }
75
79
 
76
80
  .footer {
77
81
  display: flex;
@@ -96,7 +100,6 @@ layout: compress
96
100
  height: 25px;
97
101
  }
98
102
 
99
-
100
103
  #signUp,
101
104
  #forgotPassword {
102
105
  background: none;
@@ -109,6 +112,43 @@ layout: compress
109
112
  cursor: pointer;
110
113
  }
111
114
 
115
+ .privacy-declare {
116
+ position: fixed;
117
+ bottom: 20px;
118
+ left: 20px;
119
+ transition: all .4s ease-in-out;
120
+ }
121
+
122
+ .fas {
123
+ color: white;
124
+ }
125
+
126
+ .privacy-declare:hover i{
127
+ visibility: 0;
128
+ opacity: 0;
129
+ transition: all .4s ease-in-out;
130
+ }
131
+
132
+ .privacy-declare:hover .privacy-content{
133
+ left: 30px;
134
+ width: 100%;
135
+ visibility: 1;
136
+ opacity: 1;
137
+ transition: all .4s ease-in-out;
138
+ }
139
+
140
+ .privacy-content {
141
+ max-width: 80vw;
142
+ position: fixed;
143
+ margin: 0;
144
+ bottom: 20px;
145
+ left: -120%;
146
+ visibility: 0;
147
+ opacity: 0;
148
+ animation-delay: 0.2s;
149
+ transition: all .4s ease-in-out;
150
+ }
151
+
112
152
  /* 浅色模式 */
113
153
  @media (prefers-color-scheme: light) {
114
154
  body {
@@ -130,6 +170,12 @@ layout: compress
130
170
  #forgotPassword {
131
171
  color: rgba(51, 51, 53, 0.447);
132
172
  }
173
+ .privacy-content {
174
+ color: #2a2a2a;
175
+ }
176
+ .fas {
177
+ color: #2a2a2a;
178
+ }
133
179
  }
134
180
  </style>
135
181
  </head>
@@ -54,6 +54,7 @@
54
54
 
55
55
  line-height: 1.5;
56
56
  margin: 0;
57
+ min-height: 20px;
57
58
  }
58
59
  }
59
60
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-chirpy-customized-upe
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.4
4
+ version: 3.2.0.pre.beta2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jo Cruise
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-26 00:00:00.000000000 Z
11
+ date: 2024-02-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -240,9 +240,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
240
240
  version: '3.0'
241
241
  required_rubygems_version: !ruby/object:Gem::Requirement
242
242
  requirements:
243
- - - ">="
243
+ - - ">"
244
244
  - !ruby/object:Gem::Version
245
- version: '0'
245
+ version: 1.3.1
246
246
  requirements: []
247
247
  rubygems_version: 3.3.26
248
248
  signing_key: