diff options
author | Adam Tauber <asciimoo@gmail.com> | 2016-11-01 23:11:38 +0100 |
---|---|---|
committer | Adam Tauber <asciimoo@gmail.com> | 2016-11-01 23:12:46 +0100 |
commit | 9782633054129fd28a3e785f293b0b34649a3550 (patch) | |
tree | fe69f48725738e2c06529fad0b6f597494888d2d /searx/static/themes/oscar/less | |
parent | e23c8f954b6ae0f1100167d39b73e2037384c154 (diff) | |
download | searxng-9782633054129fd28a3e785f293b0b34649a3550.tar.gz searxng-9782633054129fd28a3e785f293b0b34649a3550.zip |
[fix] menu without js - closes #747
Diffstat (limited to 'searx/static/themes/oscar/less')
-rw-r--r-- | searx/static/themes/oscar/less/logicodev/navbar.less | 37 |
1 files changed, 36 insertions, 1 deletions
diff --git a/searx/static/themes/oscar/less/logicodev/navbar.less b/searx/static/themes/oscar/less/logicodev/navbar.less index 2426210ca..411fd63c6 100644 --- a/searx/static/themes/oscar/less/logicodev/navbar.less +++ b/searx/static/themes/oscar/less/logicodev/navbar.less @@ -15,7 +15,7 @@ line-height: 30px; } -.navbar, .navbar-default{ +.navbar, .navbar-default, .menu { background-color: @black; border: none; border-top: 4px solid @light-green; @@ -52,3 +52,38 @@ .navbar-toggle { margin-top: 0; } + +.menu { + margin: 0; + padding: 0; + position: absolute; + top: 4px; + border: 0; + z-index: 1000000000; + height: 40px; + line-height: 40px; + ul { + padding: 0; + margin: 0; + li { + padding: 0 0.6em; + margin: 0; + float: left; + list-style: none; + a { + color: @dim-gray; + } + } + li.active a { + color: @light-green; + } + } +} + +.menu-right { + right: 2em; +} + +.menu-left { + left: 2em; +} |