Index: branches/liquidthreads/skins/monobook/main.css |
— | — | @@ -79,17 +79,22 @@ |
80 | 80 | display: table; /* Occupy only the width of the text, */ |
81 | 81 | width: auto; /* not the entire available width. */ |
82 | 82 | |
83 | | - border: 1px solid #ddd; |
| 83 | + border: 1px solid #c0c090; |
| 84 | + background-color: #faeaba; |
84 | 85 | margin: 1em 0; |
85 | 86 | padding: .5em 1em; |
86 | 87 | } |
87 | 88 | .lqt_summary_notice a { font-weight: bold; } |
88 | 89 | |
89 | 90 | .lqt_thread_permalink_summary { |
| 91 | +margin-right: 5em; |
| 92 | +} |
| 93 | +.lqt_thread_permalink_summary_body { |
| 94 | + background-color: #eee; |
| 95 | + border: 1px solid #ddd; |
90 | 96 | clear: both; |
91 | | -/* border: solid 1px #ddd;*/ |
92 | 97 | padding-left: 1em; padding-right: 1em; |
93 | | - margin: 3em 2em 0.7em 1em; |
| 98 | + margin: 2em 1em 1em 1em; |
94 | 99 | } |
95 | 100 | .lqt_thread_permalink_summary_title { |
96 | 101 | float: left; |
— | — | @@ -98,7 +103,7 @@ |
99 | 104 | } |
100 | 105 | .lqt_thread_permalink_summary_edit { |
101 | 106 | float: right; |
102 | | - margin-right: 2em; |
| 107 | + margin-right: 1em; |
103 | 108 | font-weight: bold; |
104 | 109 | font-size: smaller; |
105 | 110 | } |
Index: branches/liquidthreads/extensions/LqtExtension.php |
— | — | @@ -510,6 +510,7 @@ |
511 | 511 | function showSummary($t) { |
512 | 512 | if ( !$t->summary() ) return; |
513 | 513 | $this->output->addHTML(<<<HTML |
| 514 | + <div class='lqt_thread_permalink_summary'> |
514 | 515 | <span class="lqt_thread_permalink_summary_title"> |
515 | 516 | This thread has been summarized as follows: |
516 | 517 | </span><span class="lqt_thread_permalink_summary_edit"> |
— | — | @@ -517,9 +518,10 @@ |
518 | 519 | </span> |
519 | 520 | HTML |
520 | 521 | ); |
521 | | - $this->openDiv('lqt_thread_permalink_summary'); |
| 522 | + $this->openDiv('lqt_thread_permalink_summary_body'); |
522 | 523 | $this->showPostBody($t->summary()); |
523 | 524 | $this->closeDiv(); |
| 525 | + $this->closeDiv(); |
524 | 526 | } |
525 | 527 | |
526 | 528 | } |