Merge pull request #5025 from NamelessContributor/patch-1
Limit the width of usernames in tables
This commit is contained in:
@@ -76,3 +76,11 @@ table.table-sm {
|
|||||||
table.table-md {
|
table.table-md {
|
||||||
th, td { padding: 0.5rem; }
|
th, td { padding: 0.5rem; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
td > .user {
|
||||||
|
display: inline-block;
|
||||||
|
max-width: max(15vw, 150px);
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
vertical-align: bottom;
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user