diff options
author | Julius Härtl <jus@bitgrid.net> | 2020-01-08 15:22:44 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2020-01-08 15:22:44 +0100 |
commit | f2e466905f8eb6142f287b9fd5ef9e6c8bb683b6 (patch) | |
tree | 56129da496619129a26e549f25d8ed91d1de2f32 /core/css | |
parent | 7e95c88c5fa4734099884d3fcb5daa16858aa7db (diff) | |
download | nextcloud-server-f2e466905f8eb6142f287b9fd5ef9e6c8bb683b6.tar.gz nextcloud-server-f2e466905f8eb6142f287b9fd5ef9e6c8bb683b6.zip |
Fix contacts menu sizing
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/styles.scss | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/core/css/styles.scss b/core/css/styles.scss index 7c6b7f8ad59..ef4ac4c7123 100644 --- a/core/css/styles.scss +++ b/core/css/styles.scss @@ -990,16 +990,10 @@ span.ui-icon { } } -#contactsmenu > .menu { +#header .header-right > div#contactsmenu > .menu { /* show ~4.5 entries */ - height: 278px; + max-height: 278px; width: 350px; - max-width: 90%; - right: 13px; - - &::after { - right: 61px; - } .emptycontent { margin-top: 5vh !important; @@ -1011,8 +1005,10 @@ span.ui-icon { } .content { - max-height: calc(100% - #{$header-height}); - height: 100%; + /* fixed max height of the parent container without the search input */ + max-height: min(calc(278px - 50px), calc(100vh - 50px * 3)); + height: min(calc(278px - 50px), calc(100vh - 50px * 3)); + min-height: calc(44px * 1.5); overflow-y: auto; .footer { |