diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2015-02-10 15:23:56 +0100 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2015-02-10 15:23:56 +0100 |
| commit | df9cf9d09bf4496a9e5d799bd99437a3224a06d4 (patch) | |
| tree | f5e02ae4c0446f703e5c6c112d631add591a693f /searx/templates/oscar/search_full.html | |
| parent | c711212662996e232a1d3bc692f6f765e1467125 (diff) | |
Merge branch 'rtl' of github.com:Cqoicebordel/searx
Diffstat (limited to 'searx/templates/oscar/search_full.html')
| -rw-r--r-- | searx/templates/oscar/search_full.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/searx/templates/oscar/search_full.html b/searx/templates/oscar/search_full.html index b1fe39eb2..26dae418c 100644 --- a/searx/templates/oscar/search_full.html +++ b/searx/templates/oscar/search_full.html @@ -1,7 +1,11 @@ {% from 'oscar/macros.html' import icon %}
<form method="{{ method or 'POST' }}" action="{{ url_for('index') }}" id="search_form" role="search">
+ {% if rtl %}
+ <div class="input-group">
+ {% 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...') }}" autocomplete="off" value="{{ q }}">
<span class="input-group-btn">
<button type="submit" class="btn btn-default input-lg"><span class="hide_if_nojs">{{ icon('search') }}</span><span class="hidden active_if_nojs">{{ _('Start search') }}</span></button>
|