diff --git src/wp-admin/css/common.css src/wp-admin/css/common.css
index 977102e..9c99d12 100644
|
|
html.wp-toolbar { |
2150 | 2150 | #pass-strength-result.short, |
2151 | 2151 | #ed_reply_toolbar #ed_reply_strong, |
2152 | 2152 | .item-controls .item-order a, |
2153 | | .feature-filter .feature-name { |
| 2153 | .feature-filter .feature-name, |
| 2154 | #comment-status-display { |
2154 | 2155 | font-weight: 600; |
2155 | 2156 | } |
2156 | 2157 | |
diff --git src/wp-admin/css/edit.css src/wp-admin/css/edit.css
index 4b03870..fc93d41 100644
|
|
form#tags-filter { |
448 | 448 | #post-body #visibility:before, |
449 | 449 | .curtime #timestamp:before, |
450 | 450 | #post-body .misc-pub-revisions:before, |
451 | | span.wp-media-buttons-icon:before { |
| 451 | span.wp-media-buttons-icon:before, |
| 452 | #post-body .misc-pub-response-to:before, |
| 453 | #post-body .misc-pub-comment-status:before { |
452 | 454 | color: #82878c; |
453 | 455 | } |
454 | 456 | |
455 | 457 | #post-body .misc-pub-post-status:before, |
456 | 458 | #post-body #visibility:before, |
457 | 459 | .curtime #timestamp:before, |
458 | | #post-body .misc-pub-revisions:before { |
| 460 | #post-body .misc-pub-revisions:before, |
| 461 | #post-body .misc-pub-response-to:before, |
| 462 | #post-body .misc-pub-comment-status:before { |
459 | 463 | font: normal 20px/1 dashicons; |
460 | 464 | speak: none; |
461 | 465 | display: inline-block; |
… |
… |
span.wp-media-buttons-icon:before { |
466 | 470 | -moz-osx-font-smoothing: grayscale; |
467 | 471 | } |
468 | 472 | |
469 | | #post-body .misc-pub-post-status:before { |
| 473 | #post-body .misc-pub-post-status:before, |
| 474 | #post-body .misc-pub-comment-status:before { |
470 | 475 | content: "\f173"; |
471 | 476 | } |
472 | 477 | |
… |
… |
span.wp-media-buttons-icon:before { |
484 | 489 | content: "\f321"; |
485 | 490 | } |
486 | 491 | |
| 492 | #post-body .misc-pub-response-to:before { |
| 493 | content: "\f101"; |
| 494 | } |
| 495 | |
487 | 496 | #timestampdiv { |
488 | 497 | padding-top: 5px; |
489 | 498 | line-height: 1.76923076; |
… |
… |
span.wp-media-buttons-icon:before { |
612 | 621 | padding: 8px 10px; |
613 | 622 | } |
614 | 623 | |
| 624 | #poststuff .stuffbox > h2 { |
| 625 | border-bottom: 1px solid #eee; |
| 626 | } |
| 627 | |
615 | 628 | #poststuff .inside { |
616 | 629 | margin: 6px 0 0 0; |
617 | 630 | } |
… |
… |
span.wp-media-buttons-icon:before { |
639 | 652 | font-weight: 600; |
640 | 653 | } |
641 | 654 | |
642 | | #post-visibility-select { |
| 655 | #post-visibility-select, |
| 656 | #comment-status-radio { |
643 | 657 | line-height: 1.5; |
644 | 658 | margin-top: 3px; |
645 | 659 | } |
diff --git src/wp-admin/edit-form-comment.php src/wp-admin/edit-form-comment.php
index b0b1363..675f115 100644
|
|
if ( 'approved' === wp_get_comment_status( $comment ) && $comment->comment_post_ |
87 | 87 | |
88 | 88 | <div id="postbox-container-1" class="postbox-container"> |
89 | 89 | <div id="submitdiv" class="stuffbox" > |
90 | | <h2><?php _e( 'Status' ); ?></h2> |
| 90 | <h2><?php _e( 'Save' ); ?></h2> |
91 | 91 | <div class="inside"> |
92 | 92 | <div class="submitbox" id="submitcomment"> |
93 | 93 | <div id="minor-publishing"> |
94 | 94 | |
95 | 95 | <div id="misc-publishing-actions"> |
96 | 96 | |
97 | | <fieldset class="misc-pub-section misc-pub-comment-status" id="comment-status-radio"> |
| 97 | <div class="misc-pub-section misc-pub-comment-status" id="comment-status"> |
| 98 | <?php _e( 'Status:' ); ?> <span id="comment-status-display"> |
| 99 | <?php |
| 100 | switch ( $comment->comment_approved ) { |
| 101 | case '1': |
| 102 | _e( 'Approved' ); |
| 103 | break; |
| 104 | case '0': |
| 105 | _e( 'Pending' ); |
| 106 | break; |
| 107 | case 'spam': |
| 108 | _e( 'Spam' ); |
| 109 | break; |
| 110 | } |
| 111 | ?> |
| 112 | </span> |
| 113 | |
| 114 | <fieldset id="comment-status-radio"> |
98 | 115 | <legend class="screen-reader-text"><?php _e( 'Comment status' ); ?></legend> |
99 | 116 | <label><input type="radio"<?php checked( $comment->comment_approved, '1' ); ?> name="comment_status" value="1" /><?php _ex( 'Approved', 'comment status' ); ?></label><br /> |
100 | 117 | <label><input type="radio"<?php checked( $comment->comment_approved, '0' ); ?> name="comment_status" value="0" /><?php _ex( 'Pending', 'comment status' ); ?></label><br /> |
101 | 118 | <label><input type="radio"<?php checked( $comment->comment_approved, 'spam' ); ?> name="comment_status" value="spam" /><?php _ex( 'Spam', 'comment status' ); ?></label> |
102 | 119 | </fieldset> |
103 | | |
| 120 | </div><!-- .misc-pub-section --> |
| 121 | |
104 | 122 | <div class="misc-pub-section curtime misc-pub-curtime"> |
105 | 123 | <?php |
106 | 124 | $submitted = sprintf( |