diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-06-12 15:28:37 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-06-25 14:08:38 +0200 |
commit | f8f6529653299e64a900fe2044760310b9c7765a (patch) | |
tree | f2a38fd73bec66fc9cc9b9ec2db7556814cba649 /settings/css | |
parent | a4b5ff8420a074550c61292d29bb23f24b159795 (diff) | |
download | nextcloud-server-f8f6529653299e64a900fe2044760310b9c7765a.tar.gz nextcloud-server-f8f6529653299e64a900fe2044760310b9c7765a.zip |
Fixed multi line in users list
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'settings/css')
-rw-r--r-- | settings/css/settings.scss | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/settings/css/settings.scss b/settings/css/settings.scss index 691b8c3f498..dc36da9d8a7 100644 --- a/settings/css/settings.scss +++ b/settings/css/settings.scss @@ -1463,10 +1463,25 @@ doesnotexist:-o-prefocus, .strengthify-wrapper { display: block !important; } } + /* inputs like mail, username, password */ &:not(.userActions) > input:not([type='submit']) { width: 100%; min-width: 0; } + &.name { + word-break: break-all; + } + &.displayName, + &.mailAddress { + > input { + text-overflow: ellipsis; + } + } + &.name, + &.storageLocation { + // better multi-line visual + line-height: 1em; + } &.quota { .multiselect--active + progress { display: none; |