diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-03-01 17:01:04 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2018-03-01 20:17:36 +0100 |
commit | c820ee8779105f6025d339ba72cfd36758f12491 (patch) | |
tree | 33b9535a83df3e7908485951a6605f1bfbbaf892 /settings/css | |
parent | d70a35b382df4dc62e8736164079dcf9d8e4b668 (diff) | |
download | nextcloud-server-c820ee8779105f6025d339ba72cfd36758f12491.tar.gz nextcloud-server-c820ee8779105f6025d339ba72cfd36758f12491.zip |
Ellipsize long values in the user management
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'settings/css')
-rw-r--r-- | settings/css/settings.scss | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/settings/css/settings.scss b/settings/css/settings.scss index 18bc4efa783..006a0697984 100644 --- a/settings/css/settings.scss +++ b/settings/css/settings.scss @@ -494,9 +494,10 @@ table.grid { td, th { &.name { padding-left: .8em; - width: 10em; - min-width: 10em; - max-width: 10em; + min-width: 5em; + max-width: 12em; + text-overflow: ellipsis; + overflow: hidden; } &.password { padding-left: .8em; @@ -510,10 +511,15 @@ td, th { &.password, &.displayName, &.mailAddress { - width: 12em; - min-width: 12em; + min-width: 5em; max-width: 12em; cursor: pointer; + span { + width: 90%; + display: inline-block; + text-overflow: ellipsis; + overflow: hidden; + } } &.mailAddress { cursor: pointer; |