Skip to content

Commit a77fc51

Browse files
authored
Update style.css to solve too wide title column
Solves too wide title column like in the case of https://www.pathofexile.com/forum/view-post/14987094 Also makes the title always on one line - nowrap, which keeps the line height always the same. You can reconsider this if you want to.
1 parent 4201df9 commit a77fc51

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

server/static/style.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,12 @@ td.icon img {
197197
transform: translate(-50%, -50%);
198198
}
199199

200+
td.title {
201+
max-width: 450px;
202+
overflow: hidden;
203+
white-space: nowrap;
204+
}
205+
200206
td.body {
201207
background-color: #262626;
202208
padding: 10px;

0 commit comments

Comments
 (0)