Actualiser css/admin.css

This commit is contained in:
2026-06-18 12:42:20 +02:00
parent e63b6b49ff
commit d2ebebd3f8
+28 -1
View File
@@ -417,4 +417,31 @@ body {
.admin-header { flex-direction: column; align-items: flex-start; }
.admin-actions { width: 100%; }
.modal { padding: 1.5rem; }
}
}
/* Amélioration du bouton "Choisir un fichier" pour matcher avec le style admin */
#import-section button {
border-color: var(--gold);
color: var(--gold);
background: rgba(201, 168, 76, 0.05);
}
#import-section button:hover {
background: var(--gold);
color: var(--dark);
}
/* Rendre le tableau plus élégant */
.admin-table { border-spacing: 0 0.5rem; border-collapse: separate; }
.admin-table tbody tr {
background: #141414;
transition: all 0.2s;
}
.admin-table td:first-child { border-radius: 6px 0 0 6px; }
.admin-table td:last-child { border-radius: 0 6px 6px 0; }
/* Amélioration des inputs dans les modales */
.form-group input, .form-group select, .form-group textarea {
background: #111; /* Un peu plus sombre que le reste */
border: 1px solid #333;
}
.form-group input:focus { border-color: var(--gold); }