Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
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.
  • Loading branch information
nethew authored Oct 23, 2017
commit a77fc5193ab11a5ef59c92de563cd656774313f9
6 changes: 6 additions & 0 deletions server/static/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,12 @@ td.icon img {
transform: translate(-50%, -50%);
}

td.title {
max-width: 450px;
overflow: hidden;
white-space: nowrap;
}

td.body {
background-color: #262626;
padding: 10px;
Expand Down