diff options
| author | dalf <alex@al-f.net> | 2014-10-26 11:14:05 +0100 |
|---|---|---|
| committer | dalf <alex@al-f.net> | 2014-10-26 11:14:05 +0100 |
| commit | a71b326d9e210da2d4ed67fade819c0433fb95d3 (patch) | |
| tree | db1803ef0a91a4c90d655ea1f909b7c922c66c8d /searx/templates/default/search.html | |
| parent | be4d219ae73240337fa25c8833b5fd91ddc1272b (diff) | |
[mod] default template modifications
- more smartphone friendly
- more text browser friendly
- next button always on the right
- in case of small screen supporting touch event, categories are displayed on one line with a scroll
Diffstat (limited to 'searx/templates/default/search.html')
| -rw-r--r-- | searx/templates/default/search.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/templates/default/search.html b/searx/templates/default/search.html index 8a9965582..75cfa41d6 100644 --- a/searx/templates/default/search.html +++ b/searx/templates/default/search.html @@ -1,6 +1,6 @@ <form method="{{ method or 'POST' }}" action="{{ url_for('index') }}" id="search_form"> <div id="search_wrapper"> - <input type="text" placeholder="{{ _('Search for...') }}" id="q" class="q" name="q" tabindex="1" autocomplete="off" {% if q %}value="{{ q }}"{% endif %}/> + <input type="text" placeholder="{{ _('Search for...') }}" id="q" class="q" name="q" tabindex="1" autocomplete="off" size="100" {% if q %}value="{{ q }}"{% endif %}/> <input type="submit" value="search" id="search_submit" /> </div> {% include 'default/categories.html' %} |