merge: fix scenario filter focus styling

This commit is contained in:
Deeman
2026-02-24 16:49:49 +01:00

View File

@@ -22,11 +22,11 @@
<label class="block text-sm text-slate mb-1">Search</label> <label class="block text-sm text-slate mb-1">Search</label>
<input type="text" name="search" value="{{ current_search }}" <input type="text" name="search" value="{{ current_search }}"
placeholder="Title, location, slug…" placeholder="Title, location, slug…"
class="input w-full"> class="form-input w-full">
</div> </div>
<div> <div>
<label class="block text-sm text-slate mb-1">Country</label> <label class="block text-sm text-slate mb-1">Country</label>
<select name="country" class="input"> <select name="country" class="form-input">
<option value="">All countries</option> <option value="">All countries</option>
{% for c in countries %} {% for c in countries %}
<option value="{{ c }}" {% if c == current_country %}selected{% endif %}>{{ c }}</option> <option value="{{ c }}" {% if c == current_country %}selected{% endif %}>{{ c }}</option>
@@ -35,7 +35,7 @@
</div> </div>
<div> <div>
<label class="block text-sm text-slate mb-1">Venue type</label> <label class="block text-sm text-slate mb-1">Venue type</label>
<select name="venue_type" class="input"> <select name="venue_type" class="form-input">
<option value="">All types</option> <option value="">All types</option>
{% for v in venue_types %} {% for v in venue_types %}
<option value="{{ v }}" {% if v == current_venue_type %}selected{% endif %}>{{ v | capitalize }}</option> <option value="{{ v }}" {% if v == current_venue_type %}selected{% endif %}>{{ v | capitalize }}</option>