From 45526f7c7b449a4db8e77058dc4f7a34737f0ad6 Mon Sep 17 00:00:00 2001 From: Colin Maudry Date: Tue, 23 Jun 2026 19:52:42 +0200 Subject: [PATCH] fix(tableaux): restaurer position:sticky sur la barre, 12px #82 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Le retrait de position:sticky sur .dt-hscroll avait cassé le layout (bouton Remettre à zéro visible au mauvais endroit, z-index perdu). La barre redevient sticky top:0 z-index:11 — les th.dash-header restent sans sticky ni z-index (ils ne fonctionnaient de toute façon pas en scroll contenu). Co-Authored-By: Claude Opus 4.8 --- src/assets/css/style.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/assets/css/style.css b/src/assets/css/style.css index d4a5056..50124ab 100644 --- a/src/assets/css/style.css +++ b/src/assets/css/style.css @@ -377,8 +377,11 @@ table.cell-table th { background-color: rgb(255 240 240 / 40%); } -/* Barre de défilement horizontale en haut du tableau */ +/* Barre de défilement horizontale, collée en haut du tableau */ .marches_table .dt-hscroll { + position: sticky; + top: 0; + z-index: 11; height: 12px; background-color: #e0e0e0; overflow: hidden;