Activation du plugin Sommaire automatique
This commit is contained in:
parent
114fa1eebd
commit
8aeb72d4b4
17
css/main.css
17
css/main.css
@ -285,6 +285,19 @@ table {
|
|||||||
color: #203636;
|
color: #203636;
|
||||||
font-size: 1.7rem;
|
font-size: 1.7rem;
|
||||||
font-weight: bold;
|
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 {
|
.sommaire-Liste {
|
||||||
@ -520,6 +533,10 @@ table {
|
|||||||
padding-top: 0;
|
padding-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sommaire-Liste {
|
||||||
|
column-count: 1;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
#SET{repartition, #MES_REPARTITION{#ENV{tag}}}
|
#SET{repartition, #MES_REPARTITION{#ENV{tag}}}
|
||||||
<details class="sommaire-Details">
|
<details class="sommaire-Details">
|
||||||
<summary class="sommaire-Summary">Sommaire</summary>
|
<summary class="sommaire-Summary">Sommaire</summary>
|
||||||
<div>
|
|
||||||
<ul class="sommaire-Liste">
|
<ul class="sommaire-Liste">
|
||||||
<BOUCLE_sommaire_repartition(DATA){source tableau, #GET{repartition/pays}}>
|
<BOUCLE_sommaire_repartition(DATA){source tableau, #GET{repartition/pays}}>
|
||||||
<BOUCLE_sommaire_sousregions(DATA){source tableau, #VALEUR{sousregions}}>
|
<BOUCLE_sommaire_sousregions(DATA){source tableau, #VALEUR{sousregions}}>
|
||||||
@ -12,10 +11,8 @@
|
|||||||
<li><a href="#enligne">En ligne (#GET{repartition/internet/total})</a></li>
|
<li><a href="#enligne">En ligne (#GET{repartition/internet/total})</a></li>
|
||||||
</BOUCLE_sommaire_internet>
|
</BOUCLE_sommaire_internet>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
||||||
<BOUCLE_repartition(DATA){source tableau, #GET{repartition/pays}}>
|
<BOUCLE_repartition(DATA){source tableau, #GET{repartition/pays}}>
|
||||||
<h3 class="spip">#VALEUR{name}</h3>
|
<h3 class="spip">#VALEUR{name}</h3>
|
||||||
<B_evenementsnationaux>
|
<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