Index: branches/liquidthreads/skins/monobook/main.css |
— | — | @@ -41,6 +41,11 @@ |
42 | 42 | display: none; |
43 | 43 | } |
44 | 44 | |
| 45 | +h1.lqt_header { |
| 46 | + |
| 47 | + font-size: 150%; /* same as h2 normally is */ |
| 48 | +} |
| 49 | + |
45 | 50 | .lqt_thread { |
46 | 51 | // display: none; |
47 | 52 | } |
— | — | @@ -78,14 +83,14 @@ |
79 | 84 | background-color: white; |
80 | 85 | } |
81 | 86 | |
82 | | -.lqt_post { border: solid 0px #ddd; margin-top: 0.1in; padding: 0.2em; } |
| 87 | +.lqt_post { border: solid 0px #ddd; margin-bottom: 0em; padding: 0 0 0.5em 0; } |
83 | 88 | |
84 | 89 | .lqt_post_highlight { border: solid 1px #fabd23; margin-top: 0.1in; padding: 0.2em; } |
85 | 90 | |
86 | 91 | .lqt_replies { margin-left: 0.25in; } |
87 | 92 | |
88 | 93 | .lqt_footer { |
89 | | - margin: 0.5em 0 0em 0 ; |
| 94 | + margin: 0em 0 0em 0 ; |
90 | 95 | font-size: smaller; |
91 | 96 | color: #777; |
92 | 97 | } |
— | — | @@ -94,10 +99,16 @@ |
95 | 100 | display: inline; |
96 | 101 | list-style-type: none; |
97 | 102 | padding-right: 0.6em; |
| 103 | + border-bottom: solid 1px #ddd; |
98 | 104 | } |
99 | 105 | |
100 | | -.lqt_topic_field { |
101 | | - margin-top: 0.5em; |
| 106 | +/*.lqt_footer > li:first-child { |
| 107 | + border-left: solid 1px #ddd; |
| 108 | + padding-left: 2pt; |
| 109 | +}*/ |
| 110 | + |
| 111 | +#lqt_subject_field { |
| 112 | + margin-top: 0.7em; |
102 | 113 | margin-bottom: 0.5em; |
103 | 114 | } |
104 | 115 | |
Index: branches/liquidthreads/extensions/LqtExtension.php |
— | — | @@ -254,7 +254,7 @@ |
255 | 255 | |
256 | 256 | function showThreadHeading( $thread ) { |
257 | 257 | if ( $thread->hasSubject() ) |
258 | | - $this->output->addHTML( wfElement( "h{$this->headerLevel}", null, $thread->subject() ) ); |
| 258 | + $this->output->addHTML( wfElement( "h{$this->headerLevel}", array('class'=>'lqt_header'), $thread->subject() ) ); |
259 | 259 | } |
260 | 260 | |
261 | 261 | function showThread( $thread ) { |
— | — | @@ -286,7 +286,7 @@ |
287 | 287 | if( $this->request->getBool('lqt_new_thread_form') ) { |
288 | 288 | $this->showNewThreadForm(); |
289 | 289 | } else { |
290 | | - $this->output->addHTML("<a href=\"{$this->title->getFullURL('lqt_new_thread_form=1')}\">Start a Discussion</a>"); |
| 290 | + $this->output->addHTML("<strong><a href=\"{$this->title->getFullURL('lqt_new_thread_form=1')}\">Start a Discussion</a></strong>"); |
291 | 291 | } |
292 | 292 | $threads = Thread::allThreadsOfArticle($this->article); |
293 | 293 | foreach($threads as $t) { |