Merge pull request #8605 from nextcloud/user-page-ellipsize

Ellipsize long values in the user management
This commit is contained in:
Roeland Jago Douma 2018-03-01 21:17:50 +01:00 committed by GitHub
commit e8f9257ec9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 5 deletions

View File

@ -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;