diff options
author | Adam Tauber <asciimoo@gmail.com> | 2017-01-27 01:19:49 +0100 |
---|---|---|
committer | Adam Tauber <asciimoo@gmail.com> | 2017-01-27 01:19:49 +0100 |
commit | b3974fc8808147c10cbf8177d109599ec88ef35a (patch) | |
tree | db74cf87b3e31a1b3944d1ea8eed30db985013d3 /searx/templates | |
parent | 52d108720254368c1ed9f83e7e1b48fec0f7f456 (diff) | |
download | searxng-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.html | 5 |
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> |