diff options
author | Simon L <szaimen@e.mail.de> | 2023-02-16 01:06:25 +0100 |
---|---|---|
committer | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2023-02-16 00:26:19 +0000 |
commit | 2d93864cf5162c42fef736015b36164eca18a138 (patch) | |
tree | 7550715a0eab29564382719d44c713c811ad507d /core/src | |
parent | b36a31c918ad997e6d227dc7923791c487e18e51 (diff) | |
download | nextcloud-server-2d93864cf5162c42fef736015b36164eca18a138.tar.gz nextcloud-server-2d93864cf5162c42fef736015b36164eca18a138.zip |
fix too long entries in contacts-menu
Signed-off-by: Simon L <szaimen@e.mail.de>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'core/src')
-rw-r--r-- | core/src/views/ContactsMenu.vue | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/core/src/views/ContactsMenu.vue b/core/src/views/ContactsMenu.vue index f03652bb477..5d034785558 100644 --- a/core/src/views/ContactsMenu.vue +++ b/core/src/views/ContactsMenu.vue @@ -133,19 +133,15 @@ export default { .body { flex-grow: 1; padding-left: 8px; + min-width: 0; div { position: relative; width: 100%; - } - - .full-name, .last-message { - /* TODO: don't use fixed width */ - max-width: 204px; - overflow: hidden; - white-space: nowrap; + overflow-x: hidden; text-overflow: ellipsis; } + .last-message, .email-address { color: var(--color-text-maxcontrast); } |