Fix wrapping and set all vertical alignment of cells to top

This commit is contained in:
David Cormier 2013-10-13 12:29:18 -04:00
parent 1e8d657608
commit d3f844acb4

View file

@ -29,15 +29,17 @@ table {
} }
td.time { td.time {
padding-right: 5px; padding-right: 5px;
vertical-align: top;
} }
td.prefix { td.prefix {
text-align: right; text-align: right;
vertical-align: middle; vertical-align: top;
padding-right: 5px; padding-right: 5px;
} }
td.message { td.message {
word-wrap: break-word; word-wrap: break-word;
vertical-align: top;
width: 100%; width: 100%;
} }
hr { hr {
@ -45,7 +47,7 @@ hr {
border-color: darkgreen; border-color: darkgreen;
} }
.text { .text {
white-space: pre; white-space: pre-wrap;
} }
/* Lastly, apply responsive CSS fixes as necessary */ /* Lastly, apply responsive CSS fixes as necessary */
@media (max-width: 767px) { @media (max-width: 767px) {