diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2018-03-01 21:17:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-01 21:17:50 +0100 |
commit | e8f9257ec9c29eca5b369807ad2c13e7bcedb72f (patch) | |
tree | eec50cce108f7fa9b3b15a7c80039fc75fedbe20 | |
parent | 7f736923d903e037a32a9fa45bfb98efec990d3e (diff) | |
parent | c820ee8779105f6025d339ba72cfd36758f12491 (diff) | |
download | nextcloud-server-e8f9257ec9c29eca5b369807ad2c13e7bcedb72f.tar.gz nextcloud-server-e8f9257ec9c29eca5b369807ad2c13e7bcedb72f.zip |
Merge pull request #8605 from nextcloud/user-page-ellipsize
Ellipsize long values in the user management
-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; |