diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-02-02 10:33:23 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-02-02 10:33:23 +0100 |
commit | 852073fc68dd8263db24c9bc24a784676a545532 (patch) | |
tree | a450c2af46c0638cf05bd2ebcb85de1aef0419f8 /view/css | |
parent | 17082cda3c1600354cb3b9a40dc49182c706d103 (diff) | |
download | volse-hubzilla-852073fc68dd8263db24c9bc24a784676a545532.tar.gz volse-hubzilla-852073fc68dd8263db24c9bc24a784676a545532.tar.bz2 volse-hubzilla-852073fc68dd8263db24c9bc24a784676a545532.zip |
dropdown menus should be restricted in height in normal view but not in collapsed view
Diffstat (limited to 'view/css')
-rw-r--r-- | view/css/bootstrap-red.css | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/view/css/bootstrap-red.css b/view/css/bootstrap-red.css index 39461ad32..f1ebb204e 100644 --- a/view/css/bootstrap-red.css +++ b/view/css/bootstrap-red.css @@ -35,6 +35,13 @@ aside .nav-pills > li > a, nav .dropdown-menu { margin-top: 0px; + max-height: 70vh; + overflow: auto; +} + +nav .navbar-collapse.in .dropdown-menu { + max-height: none; + overflow: none; } .wall-item-tools .dropdown-menu { |