Limit the width of usernames in tables
Fixes the layout issues caused very long usernames in the forum and elsewhere.
This commit is contained in:
committed by
GitHub
parent
99221af855
commit
a43291018a
@@ -76,3 +76,11 @@ table.table-sm {
|
||||
table.table-md {
|
||||
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