diff options
| author | Thomas Pointhuber <thomas.pointhuber@gmx.at> | 2014-11-04 14:32:53 +0100 |
|---|---|---|
| committer | Thomas Pointhuber <thomas.pointhuber@gmx.at> | 2014-11-04 14:32:53 +0100 |
| commit | a9b4f458e98ffcd5a2bce95fd95c28638a3a6b0f (patch) | |
| tree | bff4112090bc74e6164a0164ab7c811551c8fc51 /searx/templates/oscar/base.html | |
| parent | 46dd502592f5ad09fab761c9311065b72ee3e55d (diff) | |
| parent | 25312c53e170deb55bd48029e3b76b87692e1911 (diff) | |
Merge pull request #6 from pointhi/template_oscar
[enh] add no-js support
Diffstat (limited to 'searx/templates/oscar/base.html')
| -rw-r--r-- | searx/templates/oscar/base.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/searx/templates/oscar/base.html b/searx/templates/oscar/base.html index 0acece9d2..d9a3c0014 100644 --- a/searx/templates/oscar/base.html +++ b/searx/templates/oscar/base.html @@ -32,6 +32,12 @@ searx.method = "{{ method or 'POST' }}"; searx.autocompleter = {% if autocomplete %}true{% else %}false{% endif %}; </script> + <noscript> + <style type="text/css"> + .tab-content > .active_if_nojs {display: block;} + .hide_if_nojs {display: none !important;overflow:none !important;} + </style> + </noscript> </head> <body> <div class="container"> |