Actualiser css/admin.css

This commit is contained in:
2026-06-18 13:44:38 +02:00
parent e8b88e5297
commit 2146b98acb
+53
View File
@@ -473,3 +473,56 @@ body {
font-size: 12px;
font-weight: bold;
}
/* ══════════════════════════════════════════════════════════════
ISOLATION ET AJUSTEMENTS FINAUX
══════════════════════════════════════════════════════════════ */
/* Isolation stricte du body pour contrer public.css */
.admin-body {
padding: 2rem 1rem 4rem !important;
background: var(--dark) !important;
min-height: 100vh;
}
/* Zone d'importation CSV améliorée */
.import-box {
background: var(--surface2) !important;
border: 1px dashed rgba(201, 168, 76, 0.4) !important;
border-radius: 8px;
padding: 2rem;
text-align: center;
margin-bottom: 2rem;
transition: border-color 0.3s;
}
.import-box:hover {
border-color: var(--gold) !important;
}
.import-box i {
font-size: 2.4rem;
color: var(--gold);
display: block;
margin-bottom: 0.8rem;
}
/* Organisation de la Toolbar */
.toolbar-container {
margin-bottom: 1.5rem;
}
.toolbar-actions {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 1rem;
}
#admin-subtitle {
color: var(--muted);
font-size: 0.85rem;
margin-top: 0.4rem;
}
/* Alignement parfait de la case à cocher "Tout sélectionner" */
#select-all-checkbox {
margin: 0 auto;
display: block;
}