summaryrefslogtreecommitdiff
path: root/searx/templates
diff options
context:
space:
mode:
authorVlad <web.user@ukr.net>2020-07-31 20:08:45 +0300
committerVlad <web.user@ukr.net>2020-07-31 20:08:45 +0300
commitd83ee1e413f4c8a7a7cf0ba80d12945a85a63894 (patch)
treecf7662a8319db5388a11466b8efb848ac3a63ad4 /searx/templates
parentd75f98c764be8290f2ae241aa67321bcce938cd6 (diff)
downloadsearxng-d83ee1e413f4c8a7a7cf0ba80d12945a85a63894.tar.gz
searxng-d83ee1e413f4c8a7a7cf0ba80d12945a85a63894.zip
Add clearfix to fix issue 2110
Diffstat (limited to 'searx/templates')
-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 %}