Index: trunk/extensions/LiquidThreads/lqt.css |
— | — | @@ -94,12 +94,15 @@ |
95 | 95 | padding: 0.5em !important; |
96 | 96 | background-color: #eeeeee; |
97 | 97 | border: solid 1pt #66aaff; |
| 98 | + display: table; |
98 | 99 | } |
99 | 100 | |
100 | 101 | .lqt_post_new_message { |
101 | 102 | padding: 0.5em !important; |
102 | 103 | background-color: #eeeeee !important; |
103 | 104 | border: solid 1pt #66aaff; |
| 105 | + display: table; |
| 106 | + width: auto; |
104 | 107 | } |
105 | 108 | |
106 | 109 | .lqt_history_info { |
— | — | @@ -469,13 +472,6 @@ |
470 | 473 | font-weight: bold !important; |
471 | 474 | } |
472 | 475 | |
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+ */ |
| 476 | +.lqt-new-messages { |
| 477 | + table-layout: fixed; |
482 | 478 | } |
Index: trunk/extensions/LiquidThreads/lqt.js |
— | — | @@ -890,7 +890,9 @@ |
891 | 891 | |
892 | 892 | var newThread = $j(html); |
893 | 893 | |
894 | | - if ( $j('.lqt_toc').length ) { |
| 894 | + if ( $j('.TalkpagePager_nav').length ) { |
| 895 | + $j('.TalkpagePager_nav').after(newThread); |
| 896 | + } else if ( $j('.lqt_toc').length ) { |
895 | 897 | $j('.lqt_toc').after(newThread); |
896 | 898 | } else { |
897 | 899 | $j('.lqt-no-threads').replaceWith( newThread ); |