Index: branches/liquidthreads/skins/monobook/main.css |
— | — | @@ -117,13 +117,12 @@ |
118 | 118 | .lqt_archive_teaser { |
119 | 119 | float: right; |
120 | 120 | border: 1px solid #ddd; |
121 | | - margin: 0.5em 0; |
| 121 | + margin: 1em 0 0.5em 0; |
122 | 122 | background-color: #eee; |
123 | 123 | padding: 0.4em; |
124 | 124 | display: table; width: auto; |
125 | 125 | } |
126 | 126 | .lqt_browse_archive { |
127 | | - display: block; |
128 | 127 | margin-bottom: 0.5em; |
129 | 128 | font-weight: bold; |
130 | 129 | } |
Index: branches/liquidthreads/extensions/LqtExtension.php |
— | — | @@ -635,14 +635,14 @@ |
636 | 636 | |
637 | 637 | if ( count($threadlinks) > 0 ) { |
638 | 638 | $this->openDiv('lqt_archive_teaser'); |
639 | | - $this->output->addHTML('The following threads were archived recently:'); |
| 639 | + $this->output->addHTML('Recently archived:'); |
640 | 640 | $this->outputList('ul', '', '', $threadlinks); |
641 | 641 | } else { |
642 | 642 | $this->openDiv(); |
643 | 643 | } |
644 | 644 | $url = $this->talkpageUrl($this->title, 'talkpage_archive'); |
645 | 645 | $this->output->addHTML(<<<HTML |
646 | | - <a href="$url" class="lqt_browse_archive">Browse the Archive</a> |
| 646 | + <p><a href="$url" class="lqt_browse_archive">Browse the Archive</a></p> |
647 | 647 | HTML |
648 | 648 | ); |
649 | 649 | $this->closeDiv(); |