diff options
author | Julius Härtl <jus@bitgrid.net> | 2019-10-04 20:56:10 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2019-10-04 20:56:10 +0200 |
commit | bef426e3f4592a727a863fbba98a948562c80a85 (patch) | |
tree | 1c1d15ff5423cfd09804ec144d3eef04961131f9 /core/css | |
parent | d889019f00daca79dada476bba701d0128948541 (diff) | |
download | nextcloud-server-bef426e3f4592a727a863fbba98a948562c80a85.tar.gz nextcloud-server-bef426e3f4592a727a863fbba98a948562c80a85.zip |
Move to proper scroll container and add more space to height
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/header.scss | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/core/css/header.scss b/core/css/header.scss index c7017e16e8e..9f6ef765039 100644 --- a/core/css/header.scss +++ b/core/css/header.scss @@ -87,10 +87,12 @@ z-index: 2000; position: absolute; max-width: 350px; - max-height: $header-menu-entry-height * 7.5; // half entry + min-height: calc(44px * 1.5); // show at least 1.5 entries + max-height: calc(100vh - #{$header-height} * 2); right: 5px; // relative to parent top: $header-height; margin: 0; + overflow-y: scroll; -webkit-overflow-scrolling: touch; &:not(.popovermenu) { @@ -112,10 +114,7 @@ /* Use by the apps menu and the settings right menu */ #apps > ul, - &.settings-menu > ul { - max-height: calc(100vh - #{$header-height}); - overflow-y: scroll; - + &.settings-menu { li { a { display: inline-flex; @@ -321,13 +320,6 @@ nav[role='navigation'] { } } -#apps { - max-height: inherit; - overflow-x: hidden; - overflow-y: auto; - -webkit-overflow-scrolling: touch; -} - /* USER MENU -----------------------------------------------------------------*/ #settings { display: inline-block; |