Browse Source

Merge branch 'master' into patch-1

Noémi Ványi 4 years ago
parent
commit
935321226b
1 changed files with 9 additions and 7 deletions
  1. 9 7
      searx/templates/oscar/results.html

+ 9 - 7
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 %}