Activation du plugin Sommaire automatique
This commit is contained in:
parent
114fa1eebd
commit
8aeb72d4b4
19
css/main.css
19
css/main.css
@ -285,6 +285,19 @@ table {
|
||||
color: #203636;
|
||||
font-size: 1.7rem;
|
||||
font-weight: bold;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.sommaire-Summary::-webkit-details-marker {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.sommaire-Summary::after {
|
||||
content: " ⏵";
|
||||
}
|
||||
|
||||
.sommaire-Details[open] .sommaire-Summary::after {
|
||||
content: " ⏷";
|
||||
}
|
||||
|
||||
.sommaire-Liste {
|
||||
@ -518,7 +531,11 @@ table {
|
||||
|
||||
.header-Nav {
|
||||
padding-top: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.sommaire-Liste {
|
||||
column-count: 1;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
@ -1,7 +1,6 @@
|
||||
#SET{repartition, #MES_REPARTITION{#ENV{tag}}}
|
||||
<details class="sommaire-Details">
|
||||
<summary class="sommaire-Summary">Sommaire</summary>
|
||||
<div>
|
||||
<ul class="sommaire-Liste">
|
||||
<BOUCLE_sommaire_repartition(DATA){source tableau, #GET{repartition/pays}}>
|
||||
<BOUCLE_sommaire_sousregions(DATA){source tableau, #VALEUR{sousregions}}>
|
||||
@ -12,10 +11,8 @@
|
||||
<li><a href="#enligne">En ligne (#GET{repartition/internet/total})</a></li>
|
||||
</BOUCLE_sommaire_internet>
|
||||
</ul>
|
||||
</div>
|
||||
</details>
|
||||
|
||||
|
||||
<BOUCLE_repartition(DATA){source tableau, #GET{repartition/pays}}>
|
||||
<h3 class="spip">#VALEUR{name}</h3>
|
||||
<B_evenementsnationaux>
|
||||
|
14
modeles/sommaire.html
Normal file
14
modeles/sommaire.html
Normal file
@ -0,0 +1,14 @@
|
||||
#SET{liste, '*'}
|
||||
[(#CONFIG{sommaire_automatique_numerote}|=={on}|oui)
|
||||
#SET{liste, '#'}
|
||||
]
|
||||
<B_somm>
|
||||
<details class="sommaire-Details" id="#ENV{id_sommaire}">
|
||||
<summary class="sommaire-Summary">Sommaire</summary>
|
||||
<ul class="sommaire-Liste">
|
||||
<BOUCLE_somm(POUR){tableau #ENV{sommaire}}>
|
||||
<li><a href="#VALEUR{href}" id="#VALEUR{id}">#VALEUR{titre}</a></li>
|
||||
</BOUCLE_somm>
|
||||
</ul>
|
||||
</details>
|
||||
</B_somm>
|
Loading…
Reference in New Issue
Block a user