script pour établir une bdd Ãà partir d'un tsv avec différent format - retour accueil
git clone git://bebou.netlib.re/laradb
Log | Files | Refs |
commit dfebeb20cd207cf000ae5f5297e529795a8a45d3 parent e501cce811f8a94a21dd158f21386a87f4ae6c24 Auteurice: martlem <contact@martinlemaire.fr> Date: Wed, 6 Nov 2024 15:47:35 +0100 légende MDP Diffstat:
M | dist/style.css | | | 13 | +++++++------ |
M | src/static/style.css | | | 13 | +++++++------ |
M | src/tableau.sh | | | 2 | +- |
3 files changed, 15 insertions(+), 13 deletions(-)
diff --git a/dist/style.css b/dist/style.css @@ -12,15 +12,19 @@ --incertitude:.5; } -tr:hover{background:var(--accent)} thead td{text-align:center} -tr { +#TABLEAU tr { cursor:pointer; display:flex; border-bottom:var(--largeur-bordure-cellule) solid var(--noir); justify-content:flex-start; - background:var(--fond-B)} + background:var(--fond-B) +} +#TABLEAU tr:nth-of-type(2n+1):not(thead tr){ + background:var(--fond-A); +} +#TABLEAU tr:hover{background:var(--accent) !important} /*tr { display: flex; flex-wrap: wrap; @@ -49,9 +53,6 @@ tr { .hidden {display:none;} .show {display:inline} -tr:nth-of-type(2n+1):not(thead tr){ - background:var(--fond-A); -} *{ font-size:var(--corps); diff --git a/src/static/style.css b/src/static/style.css @@ -12,15 +12,19 @@ --incertitude:.5; } -tr:hover{background:var(--accent)} thead td{text-align:center} -tr { +#TABLEAU tr { cursor:pointer; display:flex; border-bottom:var(--largeur-bordure-cellule) solid var(--noir); justify-content:flex-start; - background:var(--fond-B)} + background:var(--fond-B) +} +#TABLEAU tr:nth-of-type(2n+1):not(thead tr){ + background:var(--fond-A); +} +#TABLEAU tr:hover{background:var(--accent) !important} /*tr { display: flex; flex-wrap: wrap; @@ -49,9 +53,6 @@ tr { .hidden {display:none;} .show {display:inline} -tr:nth-of-type(2n+1):not(thead tr){ - background:var(--fond-A); -} *{ font-size:var(--corps); diff --git a/src/tableau.sh b/src/tableau.sh @@ -28,7 +28,7 @@ $(tsv-select -H -f Sources $DB | grep -v "Sources" | sed -e 's/, /\n/g' | sort | awk ' /BNF/{nom="Bibliothèque Nationale de France"} /Atria/{nom="Atria"} -/MDP/{nom="MDP(?)"} +/MDP/{nom="Mouvement de presse"} {printf "<li><span class=\"etiquette\">%s<sup>(%s)</sup></span>: %s</li>\n", $2, $1, nom}' ) </ul>