Merge branch 'hotfix/7.2.3' into production
This commit is contained in:
commit
e741aa43cf
3 changed files with 9 additions and 12 deletions
|
@ -3,7 +3,7 @@
|
||||||
{% if enable_toc %}
|
{% if enable_toc %}
|
||||||
<div class="toc-border-cover z-3"></div>
|
<div class="toc-border-cover z-3"></div>
|
||||||
<section id="toc-wrapper" class="invisible position-sticky ps-0 pe-4 pb-4">
|
<section id="toc-wrapper" class="invisible position-sticky ps-0 pe-4 pb-4">
|
||||||
<h2 class="panel-heading ps-3 pb-2 mb-0">{{- site.data.locales[include.lang].panel.toc -}}</h2>
|
<h2 class="panel-heading ps-3 pb-1 mb-0">{{- site.data.locales[include.lang].panel.toc -}}</h2>
|
||||||
<nav id="toc"></nav>
|
<nav id="toc"></nav>
|
||||||
</section>
|
</section>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
|
@ -11,7 +11,7 @@ function refreshTheme(event) {
|
||||||
const mermaidList = document.getElementsByClassName(MERMAID);
|
const mermaidList = document.getElementsByClassName(MERMAID);
|
||||||
|
|
||||||
[...mermaidList].forEach((elem) => {
|
[...mermaidList].forEach((elem) => {
|
||||||
const svgCode = elem.previousSibling.children.item(0).innerHTML;
|
const svgCode = elem.previousSibling.children.item(0).textContent;
|
||||||
elem.textContent = svgCode;
|
elem.textContent = svgCode;
|
||||||
elem.removeAttribute('data-processed');
|
elem.removeAttribute('data-processed');
|
||||||
});
|
});
|
||||||
|
|
|
@ -220,14 +220,11 @@ header {
|
||||||
@-webkit-keyframes fade-up {
|
@-webkit-keyframes fade-up {
|
||||||
from {
|
from {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
position: relative;
|
margin-top: 4rem;
|
||||||
top: 2rem;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
to {
|
to {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
position: relative;
|
|
||||||
top: 0;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -247,6 +244,7 @@ header {
|
||||||
%top-cover {
|
%top-cover {
|
||||||
content: '';
|
content: '';
|
||||||
display: block;
|
display: block;
|
||||||
|
position: -webkit-sticky;
|
||||||
position: sticky;
|
position: sticky;
|
||||||
top: 0;
|
top: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
@ -257,13 +255,16 @@ header {
|
||||||
#toc-wrapper {
|
#toc-wrapper {
|
||||||
top: 0;
|
top: 0;
|
||||||
transition: top 0.2s ease-in-out;
|
transition: top 0.2s ease-in-out;
|
||||||
-webkit-animation: fade-up 0.8s;
|
|
||||||
animation: fade-up 0.8s;
|
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
max-height: 100vh;
|
max-height: 100vh;
|
||||||
scrollbar-width: none;
|
scrollbar-width: none;
|
||||||
margin-top: 2rem;
|
margin-top: 2rem;
|
||||||
|
|
||||||
|
&:not(.invisible) {
|
||||||
|
-webkit-animation: fade-up 0.8s;
|
||||||
|
animation: fade-up 0.8s;
|
||||||
|
}
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
font-size: 0.85rem;
|
font-size: 0.85rem;
|
||||||
|
@ -275,10 +276,6 @@ header {
|
||||||
margin: 0.4rem 0;
|
margin: 0.4rem 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:first-child {
|
|
||||||
margin-top: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
a {
|
||||||
padding: 0.2rem 0 0.2rem 1.25rem;
|
padding: 0.2rem 0 0.2rem 1.25rem;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue