summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoémi Ványi <kvch@users.noreply.github.com>2020-08-01 21:52:19 +0200
committerGitHub <noreply@github.com>2020-08-01 21:52:19 +0200
commit935321226b2e3ded8276e50c0a0b4fa311e3c424 (patch)
tree2ca7103c012b8ff8d235f79a426dce2408baafcf
parent3b8bd0770bff2486c30012606562e4d90e23d655 (diff)
parentc8986ec5d40c4ad7e30ce322f91d50cdc417d4ed (diff)
Merge branch 'master' into patch-1
-rw-r--r--searx/templates/oscar/results.html16
1 files changed, 9 insertions, 7 deletions
diff --git a/searx/templates/oscar/results.html b/searx/templates/oscar/results.html
index 7a444d19f..313f5843b 100644
--- a/searx/templates/oscar/results.html
+++ b/searx/templates/oscar/results.html
@@ -83,13 +83,15 @@
{% if corrections -%}
<div class="result">
- <span class="result_header text-muted form-inline pull-left suggestion_item">{{ _('Try searching for:') }}</span>
- {% for correction in corrections -%}
- <form method="{{ method or 'POST' }}" action="{{ url_for('index') }}" role="navigation" class="form-inline pull-left suggestion_item">{{- "" -}}
- <input type="hidden" name="q" value="{{ correction.url }}">{{- "" -}}
- <button type="submit" class="btn btn-default btn-xs">{{ correction.title }}</button>{{- "" -}}
- </form>
- {% endfor %}
+ <div class="clearfix">
+ <span class="result_header text-muted form-inline pull-left suggestion_item">{{ _('Try searching for:') }}</span>
+ {% for correction in corrections -%}
+ <form method="{{ method or 'POST' }}" action="{{ url_for('index') }}" role="navigation" class="form-inline pull-left suggestion_item">{{- "" -}}
+ <input type="hidden" name="q" value="{{ correction.url }}">{{- "" -}}
+ <button type="submit" class="btn btn-default btn-xs">{{ correction.title }}</button>{{- "" -}}
+ </form>
+ {% endfor %}
+ </div>
</div>
{%- endif %}