diff options
Diffstat (limited to 'searx/templates/oscar/macros.html')
| -rw-r--r-- | searx/templates/oscar/macros.html | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/searx/templates/oscar/macros.html b/searx/templates/oscar/macros.html index 1cf46074f..0e9dc227a 100644 --- a/searx/templates/oscar/macros.html +++ b/searx/templates/oscar/macros.html @@ -134,13 +134,11 @@ custom-select{% if rtl %}-rtl{% endif %} {%- endmacro %} {% macro support_toggle(supports) -%} - {%- if supports -%} - <span class="label label-success"> - {{- _("supported") -}} - </span> + {%- if supports == '?' -%} + <span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true" title="{{- _('broken') -}}"></span>{{- "" -}} + {%- elif supports -%} + <span class="glyphicon glyphicon-ok" aria-hidden="true" title="{{- _('supported') -}}"></span>{{- "" -}} {%- else -%} - <span class="label label-danger"> - {{- _("not supported") -}} - </span> + <span aria-hidden="true" title="{{- _('not supported') -}}"></span>{{- "" -}} {%- endif -%} {%- endmacro %} |