summaryrefslogtreecommitdiff
path: root/searx/templates/oscar/search_full.html
diff options
context:
space:
mode:
authorresynth1943 <resynth1943@tutanota.com>2020-05-27 13:49:00 +0100
committerresynth1943 <resynth1943@tutanota.com>2020-05-27 13:49:00 +0100
commite84cdb66ae9842c304fde631517f8ebc9c7aaaaa (patch)
tree116c2b76022b0d25efd4b4ae46062c192d7c847b /searx/templates/oscar/search_full.html
parent2d4d0bdc0cdc239dee931ba98a95bd632eb645e2 (diff)
downloadsearxng-e84cdb66ae9842c304fde631517f8ebc9c7aaaaa.tar.gz
searxng-e84cdb66ae9842c304fde631517f8ebc9c7aaaaa.zip
Add autofocus to all search inputs
Diffstat (limited to 'searx/templates/oscar/search_full.html')
-rw-r--r--searx/templates/oscar/search_full.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/templates/oscar/search_full.html b/searx/templates/oscar/search_full.html
index ea821dc45..1f1c50e50 100644
--- a/searx/templates/oscar/search_full.html
+++ b/searx/templates/oscar/search_full.html
@@ -6,7 +6,7 @@
{% else %}
<div class="input-group col-md-8 col-md-offset-2">
{% endif %}
- <input type="search" name="q" class="form-control input-lg autofocus" id="q" placeholder="{{ _('Search for...') }}" aria-label="{{ _('Search for...') }}" autocomplete="off" value="{{ q }}" accesskey="s">
+ <input type="search" autofocus name="q" class="form-control input-lg autofocus" id="q" placeholder="{{ _('Search for...') }}" aria-label="{{ _('Search for...') }}" autocomplete="off" value="{{ q }}" accesskey="s">
<span class="input-group-btn">
<button type="submit" class="btn btn-default input-lg" aria-label="{{ _('Start search') }}"><span class="hide_if_nojs">{{ icon('search') }}</span><span class="hidden active_if_nojs">{{ _('Start search') }}</span></button>
<button type="reset" class="btn btn-default input-lg" aria-label="{{ _('Clear search') }}"><span class="hide_if_nojs">{{ icon('remove') }}</span><span class="hidden active_if_nojs">{{ _('Clear') }}</span></button>