jekyll-theme-chirpy-customized-upe 3.1.4 → 3.2.0.pre.beta1
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 +4 -4
- data/_includes/mathjax_support.html +25 -7
- data/_layouts/forgot.html +6 -2
- data/_layouts/login.html +47 -1
- data/_sass/layout/home.scss +1 -0
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f8f22cd7f3e99c84e9bf388bf879739696dc6a988094274d007708bfb01f3e3d
|
|
4
|
+
data.tar.gz: f4e93a1122456d76854d1583044e0b2e7e4b234e87192325f880944e48ead31b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fb95f8eb399551681eb5946efb249a0a289c9e60743e097a6cc7d1afe6e55d4e383b169d49a14dddbdf55f895477ae96d8952ed80a798cb753eb3ea5241f1d26
|
|
7
|
+
data.tar.gz: 5b138c6bd895ac2643c0d682d39b8bba7d589bd9c070e1cfe198b8f229a29c190c93ee9417305cfe88fc66f4516b2b09773a68ed1d079b66925f9ebb4cecc06a
|
|
@@ -14,15 +14,33 @@
|
|
|
14
14
|
"HTML-CSS": { fonts: ["TeX"] }
|
|
15
15
|
}
|
|
16
16
|
});
|
|
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
17
|
</script>
|
|
24
18
|
<script
|
|
25
19
|
type="text/javascript"
|
|
26
20
|
async
|
|
27
21
|
src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML"
|
|
28
|
-
></script>
|
|
22
|
+
></script>
|
|
23
|
+
|
|
24
|
+
<!-- MathJax -->
|
|
25
|
+
<!-- <script>
|
|
26
|
+
/* see: <https://docs.mathjax.org/en/latest/options/input/tex.html#tex-options> */
|
|
27
|
+
MathJax = {
|
|
28
|
+
tex: {
|
|
29
|
+
/* start/end delimiter pairs for in-line math */
|
|
30
|
+
inlineMath: [
|
|
31
|
+
['$', '$'],
|
|
32
|
+
['\\(', '\\)']
|
|
33
|
+
],
|
|
34
|
+
/* start/end delimiter pairs for display math */
|
|
35
|
+
displayMath: [
|
|
36
|
+
['$$', '$$'],
|
|
37
|
+
['\\[', '\\]']
|
|
38
|
+
],
|
|
39
|
+
/* equation numbering */
|
|
40
|
+
tags: 'ams'
|
|
41
|
+
}
|
|
42
|
+
};
|
|
43
|
+
</script>
|
|
44
|
+
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
|
|
45
|
+
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3.2.2/es5/tex-chtml.js"></script> -->
|
|
46
|
+
|
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="
|
|
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('
|
|
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/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>
|
data/_sass/layout/home.scss
CHANGED
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.
|
|
4
|
+
version: 3.2.0.pre.beta1
|
|
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-
|
|
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:
|
|
245
|
+
version: 1.3.1
|
|
246
246
|
requirements: []
|
|
247
247
|
rubygems_version: 3.3.26
|
|
248
248
|
signing_key:
|