diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-10-18 12:36:37 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2018-10-30 10:19:34 +0100 |
commit | 3e11515b9c4ab9f8cb9c3f48082d6d086801c0e7 (patch) | |
tree | 8331b0764ad86cb6981be831e887e28076a0b4df /apps | |
parent | 870e01518d1d0741b4f51eebaf5be186fd43cbf1 (diff) | |
download | nextcloud-server-3e11515b9c4ab9f8cb9c3f48082d6d086801c0e7.tar.gz nextcloud-server-3e11515b9c4ab9f8cb9c3f48082d6d086801c0e7.zip |
Merge contacts and add type of result to the UI
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/css/sharetabview.scss | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/apps/files_sharing/css/sharetabview.scss b/apps/files_sharing/css/sharetabview.scss index 11747e5c062..c3c55c10ba2 100644 --- a/apps/files_sharing/css/sharetabview.scss +++ b/apps/files_sharing/css/sharetabview.scss @@ -4,6 +4,10 @@ .share-autocomplete-item { display: flex; + + &.merged { + margin-left: 32px; + } .autocomplete-item-text { margin-left: 10px; margin-right: 10px; @@ -13,6 +17,21 @@ line-height: 32px; vertical-align: middle; flex-grow: 1; + .ui-state-highlight { + border: none; + margin: 0; + } + } + &.with-description { + .autocomplete-item-text { + line-height: 100%; + } + } + .autocomplete-item-details { + display: block; + line-height: 130%; + font-size: 90%; + opacity: 0.7; } } |