Index: trunk/extensions/LiquidThreads/lqt.css |
— | — | @@ -94,15 +94,12 @@ |
95 | 95 | padding: 0.5em !important; |
96 | 96 | background-color: #eeeeee; |
97 | 97 | border: solid 1pt #66aaff; |
98 | | - display: table; |
99 | 98 | } |
100 | 99 | |
101 | 100 | .lqt_post_new_message { |
102 | 101 | padding: 0.5em !important; |
103 | 102 | background-color: #eeeeee !important; |
104 | 103 | border: solid 1pt #66aaff; |
105 | | - display: table; |
106 | | - width: auto; |
107 | 104 | } |
108 | 105 | |
109 | 106 | .lqt_history_info { |
— | — | @@ -471,3 +468,14 @@ |
472 | 469 | color: #3333ff !important; |
473 | 470 | font-weight: bold !important; |
474 | 471 | } |
| 472 | + |
| 473 | +/* Fix for <pre> wrapping */ |
| 474 | +.lqt-new-messages pre { |
| 475 | + overflow-x: auto; /* Use horizontal scroller if needed; for Firefox 2, not needed in Firefox 3 */ |
| 476 | + white-space: pre-wrap; /* css-3 */ |
| 477 | + white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */ |
| 478 | + white-space: -pre-wrap; /* Opera 4-6 */ |
| 479 | + white-space: -o-pre-wrap; /* Opera 7 */ |
| 480 | + /* width: 99%; */ |
| 481 | + word-wrap: break-word; /* Internet Explorer 5.5+ */ |
| 482 | +} |