Actualiser css/admin.css

This commit is contained in:
2026-06-20 21:06:09 +02:00
parent b8775468f5
commit b21d911c13
+42
View File
@@ -515,6 +515,44 @@ input[type="checkbox"]:checked::after {
opacity: 0.35;
}
/* Barre de recherche admin */
.admin-filters {
margin-bottom: 1.5rem;
}
.search-box {
position: relative;
max-width: 400px;
}
.search-box input {
width: 100%;
padding: 0.75rem 1rem 0.75rem 2.8rem;
background: var(--surface);
border: 1px solid var(--border);
border-radius: 8px;
color: var(--text);
font-family: inherit;
font-size: 0.9rem;
transition: all 0.2s;
}
.search-box input:focus {
outline: none;
border-color: var(--gold);
box-shadow: 0 0 0 3px var(--gold-dim);
}
.search-box i {
position: absolute;
left: 1rem;
top: 50%;
transform: translateY(-50%);
color: var(--muted);
font-size: 1.1rem;
pointer-events: none;
}
/* ══════════════════════════════════════════════════════════════
RESPONSIVE MOBILE
═══════════════════════════════════════════════════════════════ */
@@ -655,4 +693,8 @@ input[type="checkbox"]:checked::after {
gap: 0.5rem;
padding-top: 0.6rem;
}
.search-box {
max-width: 100%;
}
}