diff options
author | Jan C. Borchardt <hey@jancborchardt.net> | 2022-09-08 12:55:57 +0200 |
---|---|---|
committer | Carl Schwan <carl@carlschwan.eu> | 2022-09-08 18:24:29 +0200 |
commit | b0392f4a5c7711478ae95c7a41f320eea87de6ef (patch) | |
tree | b3384357731538cdb962cde4012da9ab0eb7f638 /core | |
parent | 1ade91a551fb88181e9ea940f44defa79428c0a6 (diff) | |
download | nextcloud-server-b0392f4a5c7711478ae95c7a41f320eea87de6ef.tar.gz nextcloud-server-b0392f4a5c7711478ae95c7a41f320eea87de6ef.zip |
Contacts menu height adjustment so it shows 4.5 entries
Signed-off-by: Jan C. Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'core')
-rw-r--r-- | core/css/server.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/css/server.css b/core/css/server.css index 0ac5350403d..528a2599a5a 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -875,7 +875,7 @@ span.ui-icon { #header .header-right > div#contactsmenu > .menu { /* show 2.5 to 4.5 entries depending on the screen height */ height: calc(100vh - 150px); - max-height: 275px; + max-height: 302px; min-height: 175px; width: 350px; } @@ -890,7 +890,7 @@ span.ui-icon { #header .header-right > div#contactsmenu > .menu .content { /* fixed max height of the parent container without the search input */ height: calc(100vh - 150px - 50px); - max-height: 225px; + max-height: 250px; min-height: 125px; overflow-y: auto; } |