bach 10 months ago
parent
commit
583869773d
2 changed files with 13 additions and 2 deletions
  1. 11 0
      assets/css/app.scss
  2. 2 2
      src/pages/Edition.vue

+ 11 - 0
assets/css/app.scss

@@ -619,6 +619,7 @@ section[role="main-content"]{
       aside.links{
         position: absolute;
         bottom: 0;
+        overflow-wrap:anywhere;
       }
     }
 
@@ -1382,12 +1383,22 @@ section[role="main-content"]{
     @include fontsans;
 
     >header{
+      display: flex;
+      flex-direction: column;
+      flex-wrap: nowrap;
       h1{
         @include titleSansRed;
         margin-bottom: $base-line * 0.4;
+        flex: 0 0 auto;
       }
       nav.toc{
+        flex: 1 1 auto;
+        overflow-y: auto;
         span.sommaire-title{ display:none; }
+        >div.wrapper{
+          height:100%;
+          overflow-y: auto;
+        }
         li{
           a{
             font-size: 1em;

+ 2 - 2
src/pages/Edition.vue

@@ -52,14 +52,14 @@
           @click.prevent="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
           v-if="!entities_displayed"
           @click.prevent="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>
       </nav>