mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Ellipsize long values in the user management
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
parent
d70a35b382
commit
c820ee8779
1 changed files with 11 additions and 5 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue