summaryrefslogtreecommitdiff
path: root/searx/templates
diff options
context:
space:
mode:
authorAdam Tauber <asciimoo@gmail.com>2017-01-27 01:19:49 +0100
committerAdam Tauber <asciimoo@gmail.com>2017-01-27 01:19:49 +0100
commitb3974fc8808147c10cbf8177d109599ec88ef35a (patch)
treedb74cf87b3e31a1b3944d1ea8eed30db985013d3 /searx/templates
parent52d108720254368c1ed9f83e7e1b48fec0f7f456 (diff)
downloadsearxng-b3974fc8808147c10cbf8177d109599ec88ef35a.tar.gz
searxng-b3974fc8808147c10cbf8177d109599ec88ef35a.zip
[fix] do not show glyph icons if noscript is enabled - #838
Diffstat (limited to 'searx/templates')
-rw-r--r--searx/templates/oscar/base.html5
1 files changed, 5 insertions, 0 deletions
diff --git a/searx/templates/oscar/base.html b/searx/templates/oscar/base.html
index 220f5f8b1..890204c7e 100644
--- a/searx/templates/oscar/base.html
+++ b/searx/templates/oscar/base.html
@@ -98,5 +98,10 @@
{% for script in scripts %}
<script src="{{ url_for('static', filename=script) }}"></script>
{% endfor %}
+ <noscript>
+ <style>
+ .glyphicon { display: none; }
+ </style>
+ </noscript>
</body>
</html>