diff options
author | Thomas Müller <DeepDiver1975@users.noreply.github.com> | 2016-10-06 17:12:10 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2016-10-11 15:53:27 +0200 |
commit | e6b51cb54c40e887bf39c72f21c6ecaf47ecb265 (patch) | |
tree | 6bad5e38de4c122a4ebdaa7be5adcf26c31c2f72 /core/css | |
parent | 9785343d6ac879b5e150b128f97b82e788a2df09 (diff) | |
download | nextcloud-server-e6b51cb54c40e887bf39c72f21c6ecaf47ecb265.tar.gz nextcloud-server-e6b51cb54c40e887bf39c72f21c6ecaf47ecb265.zip |
[9.2] Show avatar in share drop down (#25976)
* Show avatar in share drop down
* Fix share autocomplete vertical align with avatar
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/share.css | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/core/css/share.css b/core/css/share.css index 6ccb82a09ff..042c4ddf2ae 100644 --- a/core/css/share.css +++ b/core/css/share.css @@ -50,6 +50,19 @@ height: 32px; } +.share-autocomplete-item { + display: flex; +} +.share-autocomplete-item .autocomplete-item-text { + margin-left: 10px; + margin-right: 10px; + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; + line-height: 32px; + vertical-align: middle; +} + #shareWithList { list-style-type:none; padding:8px; |