mirror of
https://github.com/searxng/searxng.git
synced 2024-11-05 04:40:11 +01:00
47dcf876ff
* update search input form params; inspiried by whoogle * remove autofocus from result page input form (JS impl. as well as input param) -> autofocus on landing page still works only on desktop and tablet with JS impl. * update landing page margins on mobile * rework border and radius for search form to 0.8rem and outline * remove positioning from autocomplete JS lib and use CSS impl. * match search box and autocomplete width * rework search form to a google like design on mobile * fix settings icon display withg RTL on mobile on result page when search input is empty
12 lines
817 B
HTML
12 lines
817 B
HTML
<form id="search" method="{{ method or 'POST' }}" action="{{ url_for('search') }}" role="search">
|
|
<div id="search_header">
|
|
<div id="search_view">
|
|
<div class="search_box">
|
|
<input id="q" name="q" type="text" placeholder="{{ _('Search for...') }}" autocomplete="off" autocapitalize="none" spellcheck="false" autocorrect="off" dir="auto" value="{{ q or '' }}">
|
|
<button id="clear_search" type="reset" aria-label="{{ _('clear') }}"><span class="hide_if_nojs">{{ icon_big('close') }}</span><span class="show_if_nojs">{{ _('clear') }}</span></button>
|
|
<button id="send_search" type="submit" aria-label="{{ _('search') }}"><span class="hide_if_nojs">{{ icon_big('search-outline') }}</span><span class="show_if_nojs">{{ _('search') }}</span></button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|