diff options
Diffstat (limited to 'searx/templates/oscar/preferences.html')
-rw-r--r-- | searx/templates/oscar/preferences.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/searx/templates/oscar/preferences.html b/searx/templates/oscar/preferences.html index d28589ae8..ab71b0683 100644 --- a/searx/templates/oscar/preferences.html +++ b/searx/templates/oscar/preferences.html @@ -264,18 +264,18 @@ </p> <table class="table table-striped"> <tr> - <th class="text-muted{% if rtl %} text-right{% endif %}">{{ _('Name') }}</th> - <th class="text-muted{% if rtl %} text-right{% endif %}">{{ _('Keywords') }}</th> - <th class="text-muted{% if rtl %} text-right{% endif %}">{{ _('Description') }}</th> - <th class="text-muted{% if rtl %} text-right{% endif %}">{{ _('Examples') }}</th> + <th{% if rtl %} class="text-right"{% endif %}>{{ _('Name') }}</th> + <th{% if rtl %} class="text-right"{% endif %}>{{ _('Keywords') }}</th> + <th{% if rtl %} class="text-right"{% endif %}>{{ _('Description') }}</th> + <th{% if rtl %} class="text-right"{% endif %}>{{ _('Examples') }}</th> </tr> {% for answerer in answerers %} <tr> - <td class="text-muted">{{ answerer.info.name }}</td> - <td class="text-muted">{{ answerer.keywords|join(', ') }}</td> - <td class="text-muted">{{ answerer.info.description }}</td> - <td class="text-muted">{{ answerer.info.examples|join(', ') }}</td> + <td>{{ answerer.info.name }}</td> + <td>{{ answerer.keywords|join(', ') }}</td> + <td>{{ answerer.info.description }}</td> + <td>{{ answerer.info.examples|join(', ') }}</td> </tr> {% endfor %} </table> |