feat(tableaux): barre de défilement horizontale miroir synchronisée #82

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Colin Maudry
2026-06-23 16:00:45 +02:00
parent 4be82ac76b
commit cb1685d055
2 changed files with 81 additions and 0 deletions
+18
View File
@@ -379,6 +379,24 @@ table.cell-table th {
background-color: rgb(255 240 240 / 40%);
}
/* Barre de défilement horizontale miroir, collée en haut */
.marches_table .dt-hscroll {
position: sticky;
top: 0;
z-index: 11; /* au-dessus des en-têtes sticky */
overflow-x: auto;
overflow-y: hidden;
height: 14px;
}
.marches_table .dt-hscroll-inner {
height: 1px;
}
.marches_table .dt-hscroll.is-hidden {
display: none;
}
/* Column Visibility Menu */
.column-actions {
margin-right: 8px;