Index: branches/liquidthreads/skins/monobook/main.css |
— | — | @@ -144,6 +144,11 @@ |
145 | 145 | padding-bottom: 1em; |
146 | 146 | vertical-align: top; |
147 | 147 | } |
| 148 | +.lqt_archive_listing td p:first-child { |
| 149 | + /* The summary is wrapped in <p> tags by the wikitext parser, |
| 150 | + which messes up the vertical alignment. */ |
| 151 | + margin: 0; padding: 0; |
| 152 | +} |
148 | 153 | .lqt_archive_listing th { |
149 | 154 | text-align: left; |
150 | 155 | vertical-align: baseline; |
Index: branches/liquidthreads/extensions/LqtExtension.php |
— | — | @@ -645,7 +645,7 @@ |
646 | 646 | function showThread($t) { |
647 | 647 | $this->output->addHTML(<<<HTML |
648 | 648 | <tr> |
649 | | - <td>{$t->subjectWithoutIncrement()}</td> |
| 649 | + <td><a href="{$this->permalinkUrl($t)}">{$t->subjectWithoutIncrement()}</a></td> |
650 | 650 | <td> |
651 | 651 | HTML |
652 | 652 | ); $this->showPostBody($t->summary()); |