forked from Deuxfleurs/guide.deuxfleurs.fr
Petites corrections d'apparence
This commit is contained in:
parent
bdcdb37dd1
commit
fdd80f2910
2 changed files with 11 additions and 4 deletions
|
@ -102,6 +102,10 @@ main {
|
|||
font-weight: bold;
|
||||
}
|
||||
|
||||
.nav-subsection {
|
||||
padding-top: 10px;
|
||||
}
|
||||
|
||||
.toc-item a, .toc-item-child a {
|
||||
color: var(--secondary-text-color);
|
||||
|
||||
|
@ -156,6 +160,7 @@ footer {
|
|||
.content {
|
||||
max-width: 60%;
|
||||
min-width: 800px;
|
||||
overflow: hidden;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -9,15 +9,17 @@
|
|||
<div class="toc-item">
|
||||
{% if p.subsections or p.pages %}
|
||||
{% if p.path == current.path %}
|
||||
<a class="subtext" href="{{ p.permalink | safe}}">⯆ <b>{{ p.title }}</b></a>
|
||||
<a class="subtext" href="{{ p.permalink | safe}}">‣ <b>{{ p.title }}</b></a>
|
||||
{% elif hierarchy is containing(s) %}
|
||||
<a class="subtext" href="{{ p.permalink | safe}}">⯆ {{ p.title }}</a>
|
||||
<a class="subtext" href="{{ p.permalink | safe}}">‣ {{ p.title }}</a>
|
||||
{% else %}
|
||||
<a class="subtext" href="{{ p.permalink | safe}}">⯈ {{ p.title }}</a>
|
||||
<a class="subtext" href="{{ p.permalink | safe}}">‣ {{ p.title }}</a>
|
||||
{% endif %}
|
||||
{% if hierarchy is containing(s) or current.path == p.path %}
|
||||
{% if level + 1 < maxlevel %}
|
||||
<div class="nav-subsection">
|
||||
{{ nav::navsection(hierarchy=hierarchy,level=level + 1,current=current) }}
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% else %}
|
||||
|
|
Loading…
Reference in a new issue