From b21d911c13c7ac5ca1000a7d0cb0d988b70d1973 Mon Sep 17 00:00:00 2001 From: Cedric Date: Sat, 20 Jun 2026 21:06:09 +0200 Subject: [PATCH] Actualiser css/admin.css --- css/admin.css | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/css/admin.css b/css/admin.css index f6a4976..8ffe5b0 100644 --- a/css/admin.css +++ b/css/admin.css @@ -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%; + } } \ No newline at end of file