summaryrefslogtreecommitdiff
path: root/searx/templates/oscar/search_full.html
diff options
context:
space:
mode:
authorThomas Pointhuber <thomas.pointhuber@gmx.at>2015-01-15 16:03:30 +0100
committerThomas Pointhuber <thomas.pointhuber@gmx.at>2015-01-15 16:03:30 +0100
commitde6064994ef4854ccfb960947398f7b0cd565030 (patch)
tree352bee4d75db2c10eadd5a7a108e9f06fb3b7346 /searx/templates/oscar/search_full.html
parent525833bea7ea41f4794899dc0e8f6b3d05e21a85 (diff)
[enh] show text "Start search" instead of icon, if javascript is disabled
Diffstat (limited to 'searx/templates/oscar/search_full.html')
-rw-r--r--searx/templates/oscar/search_full.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/templates/oscar/search_full.html b/searx/templates/oscar/search_full.html
index 5818286ec..b1fe39eb2 100644
--- a/searx/templates/oscar/search_full.html
+++ b/searx/templates/oscar/search_full.html
@@ -4,7 +4,7 @@
<div class="input-group col-md-8 col-md-offset-2">
<input type="search" name="q" class="form-control input-lg autofocus" id="q" placeholder="{{ _('Search for...') }}" autocomplete="off" value="{{ q }}">
<span class="input-group-btn">
- <button type="submit" class="btn btn-default input-lg">{{ icon('search') }}<span class="sr-only">{{ _('Start search') }}</span></button>
+ <button type="submit" class="btn btn-default input-lg"><span class="hide_if_nojs">{{ icon('search') }}</span><span class="hidden active_if_nojs">{{ _('Start search') }}</span></button>
</span>
</div>