diff --git a/README.md b/README.md index dff652e..cfe3869 100644 --- a/README.md +++ b/README.md @@ -234,6 +234,12 @@ non affilié au jeu original de Mountyhall SARL. ## Versions +- **2.4.3** (2026-06-13) — Fin de l'harmonisation de la fiche : les règles + CSS de mise en page des caractéristiques (libellé à gauche, valeur alignée + à droite en chasse fixe, indice phys/mag) ne ciblaient que le solo (`#stats`) + et sont désormais **partagées avec le multi** (`#mp-stats`) ; suppression + d'un reliquat CSS multi qui désalignait le message « aucun effet ». Les deux + fiches sont maintenant strictement identiques au pixel près. - **2.4.2** (2026-06-13) — **Fiche du troll harmonisée** entre le solo et le monde partagé : le mode multi adopte le même **panneau à onglets** « Caractéristiques / Effets » que le solo (avec le badge du nombre d'effets diff --git a/css/style.css b/css/style.css index a37e81a..f8993d1 100644 --- a/css/style.css +++ b/css/style.css @@ -188,9 +188,9 @@ header h1 { font-size: 1.3em; color: #FFFFCC; text-shadow: 1px 1px 2px #000; } } .fx-badge.hidden { display: none; } -#stats div { display: flex; justify-content: space-between; padding: 2px 0; } -#stats .stat-val { font-family: monospace; color: #000000; font-weight: bold; } -#stats .stat-hint { color: #666633; font-size: 0.82em; font-family: inherit; font-weight: normal; } +#stats div, #mp-stats div { display: flex; justify-content: space-between; padding: 2px 0; } +#stats .stat-val, #mp-stats .stat-val { font-family: monospace; color: #000000; font-weight: bold; } +#stats .stat-hint, #mp-stats .stat-hint { color: #666633; font-size: 0.82em; font-family: inherit; font-weight: normal; } #effects-panel { margin-top: 4px; } .fx-empty { color: #666633; font-style: italic; font-size: 0.88em; line-height: 1.4; } @@ -549,7 +549,6 @@ header h1 { font-size: 1.3em; color: #FFFFCC; text-shadow: 1px 1px 2px #000; } #mp-log .l-good, #mp-world-log .l-good { color: #008040; } #mp-log .l-info, #mp-world-log .l-info { color: #666666; } #mp-status { font-weight: bold; } -#mp-effects .eq-line, #mp-effects .fx-empty { font-size: .88em; color: #333300; } #screen-mp #panel-center { overflow: auto; } /* ---------- Trésors du Hall (potions, parchemins & équipement) ---------- */ diff --git a/js/game.js b/js/game.js index 599318d..53f89a5 100644 --- a/js/game.js +++ b/js/game.js @@ -4,7 +4,7 @@ "use strict"; -const APP_VERSION = "2.4.2"; +const APP_VERSION = "2.4.3"; /* Alpha : maîtrise initiale haute pour les tests. Remettre 15 % / 15 % à la v1.0 officielle. */ const START_COMP_PCT = 90;