Don't overflow long usernames in the trades table
They can just ellipsis, that's fine, the full name is not essential when you're just scanning the list; you're gonna pop it open and see the full name during contact anyway.
This commit is contained in:
parent
5d577db649
commit
42b1bf3e8c
1 changed files with 5 additions and 2 deletions
|
@ -13,8 +13,11 @@ body.item_trades-index
|
||||||
width: 100%
|
width: 100%
|
||||||
table-layout: fixed
|
table-layout: fixed
|
||||||
|
|
||||||
th:nth-child(1), th:nth-child(2)
|
th, td
|
||||||
|
&:nth-child(1), &:nth-child(2)
|
||||||
width: 15ch
|
width: 15ch
|
||||||
|
overflow: hidden
|
||||||
|
text-overflow: ellipsis
|
||||||
|
|
||||||
.trade-list-names
|
.trade-list-names
|
||||||
list-style: none
|
list-style: none
|
||||||
|
|
Loading…
Reference in a new issue