diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-10-18 12:37:26 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2018-10-30 10:19:34 +0100 |
commit | 5059605c99cad4b97da2ced87cb4f3babdfe63ac (patch) | |
tree | c97ba794034341838367bc8a7d31d7fe729ed6ec /apps | |
parent | 3e11515b9c4ab9f8cb9c3f48082d6d086801c0e7 (diff) | |
download | nextcloud-server-5059605c99cad4b97da2ced87cb4f3babdfe63ac.tar.gz nextcloud-server-5059605c99cad4b97da2ced87cb4f3babdfe63ac.zip |
Increase max-width of the share autocompletion suggestions
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/css/sharetabview.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_sharing/css/sharetabview.scss b/apps/files_sharing/css/sharetabview.scss index c3c55c10ba2..246e1d48c36 100644 --- a/apps/files_sharing/css/sharetabview.scss +++ b/apps/files_sharing/css/sharetabview.scss @@ -224,8 +224,8 @@ } .ui-autocomplete { - /* limit dropdown height to 4 1/2 entries */ - max-height: calc(36px * 4.5);; + /* limit dropdown height to 7 entries */ + max-height: calc(36px * 7); overflow-y: auto; overflow-x: hidden; z-index: 1550 !important; |