Actualiser css/admin.css
This commit is contained in:
@@ -418,3 +418,30 @@ body {
|
|||||||
.admin-actions { width: 100%; }
|
.admin-actions { width: 100%; }
|
||||||
.modal { padding: 1.5rem; }
|
.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); }
|
||||||
Reference in New Issue
Block a user