From 73a3fb50a801d6079dd61be59484a0a9877bd9f8 Mon Sep 17 00:00:00 2001 From: Cedric Date: Sun, 21 Jun 2026 13:01:28 +0200 Subject: [PATCH] Actualiser css/admin.css --- css/admin.css | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/css/admin.css b/css/admin.css index 8d375ee..6dccf8d 100644 --- a/css/admin.css +++ b/css/admin.css @@ -40,7 +40,18 @@ admin.css — Backoffice Mon Cinéma (Version Finale 6 Colonnes) .bulk-actions-bar { background: rgba(212, 175, 55, 0.1); border: 1px solid var(--gold); border-radius: 8px; padding: 0.8rem 1.5rem; display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; color: var(--gold); } /* TABLEAU (6 COLONNES FIXES) */ -.table-container { background: var(--surface-card); border: 1px solid var(--border); border-radius: 12px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); max-height: 65vh; overflow-y: auto; } +/* ══════════════════════════════════════════════════════════════ + CORRECTION : SUPPRESSION DU SCROLL INTERNE + ═══════════════════════════════════════════════════════════════ */ +.table-container { + background: var(--surface-card); + border: 1px solid var(--border); + border-radius: 12px; + box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); + /* Suppression des propriétés de scroll */ + max-height: none; + overflow-y: visible; +} .admin-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; table-layout: fixed; } .admin-table thead th { background: var(--surface); color: var(--muted); font-weight: 600; padding: 1rem 0.8rem; border-bottom: 1px solid var(--border); text-align: left; font-size: 0.75rem; text-transform: uppercase; position: sticky; top: 0; z-index: 10; } .admin-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.2s; }