This commit is contained in:
2023-06-20 09:40:47 +02:00
parent 2dccff4fb8
commit 583869773d
2 changed files with 13 additions and 2 deletions
+11
View File
@@ -619,6 +619,7 @@ section[role="main-content"]{
aside.links{ aside.links{
position: absolute; position: absolute;
bottom: 0; bottom: 0;
overflow-wrap:anywhere;
} }
} }
@@ -1382,12 +1383,22 @@ section[role="main-content"]{
@include fontsans; @include fontsans;
>header{ >header{
display: flex;
flex-direction: column;
flex-wrap: nowrap;
h1{ h1{
@include titleSansRed; @include titleSansRed;
margin-bottom: $base-line * 0.4; margin-bottom: $base-line * 0.4;
flex: 0 0 auto;
} }
nav.toc{ nav.toc{
flex: 1 1 auto;
overflow-y: auto;
span.sommaire-title{ display:none; } span.sommaire-title{ display:none; }
>div.wrapper{
height:100%;
overflow-y: auto;
}
li{ li{
a{ a{
font-size: 1em; font-size: 1em;
+2 -2
View File
@@ -52,14 +52,14 @@
@click.prevent="onCLickEntitiesDisplay" @click.prevent="onCLickEntitiesDisplay"
@keyup.enter="onCLickEntitiesDisplay" @keyup.enter="onCLickEntitiesDisplay"
> >
<span class="mdi mdi-eye-outline" /> Afficher les marques d'entités dans les textes <span class="mdi mdi-eye-outline" /> Afficher les marques d'entité
</span> </span>
<span <span
v-if="!entities_displayed" v-if="!entities_displayed"
@click.prevent="onCLickEntitiesDisplay" @click.prevent="onCLickEntitiesDisplay"
@keyup.enter="onCLickEntitiesDisplay" @keyup.enter="onCLickEntitiesDisplay"
> >
<span class="mdi mdi-eye-off-outline" /> Masquer les marques d'entités dans les textes <span class="mdi mdi-eye-off-outline" /> Masquer les marques d'entité
</span> </span>
</nav> </nav>