You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
388 B
11 lines
388 B
2 years ago
|
/*
|
||
|
Always show full name and handle:
|
||
|
- this removes the `...` and allows text to overflow past the column.
|
||
|
- this can look worse, but it can also prevent having to mouse over
|
||
|
to see the full name or handle.
|
||
|
- by default, it will also break long names onto a new line.
|
||
|
|
||
|
author: trwnh
|
||
|
license: Public Domain
|
||
|
*/
|
||
|
.display-name {overflow: visible; white-space: normal; word-wrap: break-word}
|