Index: trunk/extensions/ArticleFeedbackv5/modules/jquery.articleFeedbackv5/jquery.articleFeedbackv5.special.css |
— | — | @@ -451,10 +451,12 @@ |
452 | 452 | } |
453 | 453 | #articlefeedbackv5-noteflyover-close { |
454 | 454 | display: block; |
455 | | - float: right; |
| 455 | + position: absolute; |
| 456 | + top: 0; |
| 457 | + right: 25px; |
| 458 | + margin-top: 14px; |
456 | 459 | width: 16px; |
457 | 460 | height: 16px; |
458 | | - margin-top: -20px; |
459 | 461 | /* @embed */ |
460 | 462 | background-image: url(images/bg-close-off.png); |
461 | 463 | background-repeat: no-repeat; |
— | — | @@ -467,11 +469,12 @@ |
468 | 470 | } |
469 | 471 | #articlefeedbackv5-noteflyover-helpbutton { |
470 | 472 | display: block; |
471 | | - float: right; |
| 473 | + position: absolute; |
| 474 | + top: 0; |
| 475 | + right: 50px; |
| 476 | + margin-top: 13px; |
472 | 477 | width: 20px; |
473 | 478 | height: 20px; |
474 | | - margin-top: -18px; |
475 | | - margin-right: 30px; |
476 | 479 | /* @embed */ |
477 | 480 | background-image: url(images/bg-tooltip-trigger.png); |
478 | 481 | background-repeat: no-repeat; |
— | — | @@ -516,10 +519,25 @@ |
517 | 520 | height: 360px; |
518 | 521 | } |
519 | 522 | .articleFeedbackv5-activity-pane { |
520 | | - height: 60px; |
| 523 | + height: 70px; |
521 | 524 | } |
522 | 525 | .articleFeedbackv5-activity-log-items { |
523 | | - height: 280px; |
| 526 | + height: 290px; |
524 | 527 | overflow: auto; |
525 | | - padding: 10px; |
526 | 528 | } |
| 529 | +.articleFeedbackv5-activity-count { |
| 530 | + background-color: #ddd; |
| 531 | + padding: 3px 10px 3px 10px; |
| 532 | +} |
| 533 | +.articleFeedbackv5-activity-item { |
| 534 | + padding: 5px 10px; |
| 535 | + color: #555; |
| 536 | +} |
| 537 | +.articleFeedbackv5-activity-item a { |
| 538 | + font-weight: bold; |
| 539 | +} |
| 540 | +.articleFeedbackv5-activity-item .articleFeedbackv5-activity-item-action { |
| 541 | + font-weight: bold; |
| 542 | + color: red; |
| 543 | + padding: 0 5px; |
| 544 | +} |
Index: trunk/extensions/ArticleFeedbackv5/api/ApiViewActivityArticleFeedbackv5.php |
— | — | @@ -128,16 +128,18 @@ |
129 | 129 |
|
130 | 130 | // $user $did_something_on $date
|
131 | 131 | $html .= $this->getUserLink($item->log_user, $item->log_user_text)
|
132 | | - . Html::element( 'div', array(),
|
| 132 | + . Html::element( 'span', array(
|
| 133 | + 'class' => 'articleFeedbackv5-activity-item-action'
|
| 134 | + ),
|
133 | 135 | wfMessage( 'articlefeedbackv5-activity-' . $item->log_action,
|
134 | 136 | array())->text() )
|
135 | 137 | . $wgLang->timeanddate( $item->log_timestamp );
|
136 | 138 |
|
137 | 139 | // optional: <div class="articleFeedbackv5-activity-notes">$notes</div>
|
138 | 140 | if (!empty($item->log_comment)) {
|
139 | | - $html .= Html::element( 'div',
|
| 141 | + $html .= Html::element( 'span',
|
140 | 142 | array('class' => 'articlefeedbackv5-activity-notes'),
|
141 | | - $item->log_comment);
|
| 143 | + ': ' . $item->log_comment);
|
142 | 144 | }
|
143 | 145 |
|
144 | 146 | // </div> for class="articleFeedbackv5-activity-item"
|