Index: branches/liquidthreads/skins/monobook/main.css |
— | — | @@ -228,12 +228,12 @@ |
229 | 229 | |
230 | 230 | |
231 | 231 | /* light, background color scheme: |
232 | | -.lqt_post_color_1 a { color: #E0BF96 !important; } |
233 | | -.lqt_post_color_2 a { color: #D2E096 !important; } |
234 | | -.lqt_post_color_3 a { color: #96E0B4 !important; } |
235 | | -.lqt_post_color_4 a { color: #96CCE0 !important; } |
236 | | -.lqt_post_color_5 a { color: #C096E0 !important; } |
237 | | -.lqt_post_color_6 a { color: #E09696 !important; } |
| 232 | +.lqt_post_color_1 a { background-color: #E0BF96 !important; } |
| 233 | +.lqt_post_color_2 a { background-color: #D2E096 !important; } |
| 234 | +.lqt_post_color_3 a { background-color: #96E0B4 !important; } |
| 235 | +.lqt_post_color_4 a { background-color: #96CCE0 !important; } |
| 236 | +.lqt_post_color_5 a { background-color: #C096E0 !important; } |
| 237 | +.lqt_post_color_6 a { background-color: #E09696 !important; } |
238 | 238 | */ |
239 | 239 | |
240 | 240 | /* bright, forground color scheme: */ |
Index: branches/liquidthreads/extensions/LqtExtension.php |
— | — | @@ -201,7 +201,7 @@ |
202 | 202 | $subject = $this->request->getVal('lqt_subject_field', ''); |
203 | 203 | if ( $e->didSave && $subject != '' ) { |
204 | 204 | $thread->setSubject( Sanitizer::stripAllTags($subject) ); |
205 | | - } else if ( $e->didSave && $subject == '' && !$thread->superthread() ) { |
| 205 | + } else if ( $e->didSave && $edit_type !='summarize' && $subject == '' && !$thread->superthread() ) { |
206 | 206 | $thread->setSubject( '«no subject»' ); |
207 | 207 | } |
208 | 208 | } |