Actualiser css/admin.css

This commit is contained in:
2026-06-18 13:39:25 +02:00
parent 4b7a0cfdd8
commit 0bb3c3a8ef
+28
View File
@@ -445,3 +445,31 @@ body {
border: 1px solid #333;
}
.form-group input:focus { border-color: var(--gold); }
/* Style moderne pour les checkboxes */
.film-checkbox {
appearance: none;
width: 18px;
height: 18px;
border: 1px solid var(--border);
border-radius: 4px;
background: var(--surface2);
cursor: pointer;
transition: all 0.2s;
position: relative;
}
.film-checkbox:checked {
background: var(--gold);
border-color: var(--gold);
}
.film-checkbox:checked::after {
content: '✓';
color: var(--dark);
position: absolute;
top: 50%; left: 50%;
transform: translate(-50%, -50%);
font-size: 12px;
font-weight: bold;
}