diff --git src/wp-admin/css/common.css src/wp-admin/css/common.css
index e15b871..64e62b6 100644
|
|
html.wp-toolbar { |
2133 | 2133 | #pass-strength-result.short, |
2134 | 2134 | #ed_reply_toolbar #ed_reply_strong, |
2135 | 2135 | .item-controls .item-order a, |
2136 | | .feature-filter .feature-name { |
| 2136 | .feature-filter .feature-name, |
| 2137 | #comment-status-display { |
2137 | 2138 | font-weight: 600; |
2138 | 2139 | } |
2139 | 2140 | |
diff --git src/wp-admin/css/edit.css src/wp-admin/css/edit.css
index 323816e..6add37d 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: 23px; |
… |
… |
span.wp-media-buttons-icon:before { |
611 | 620 | padding: 8px 10px; |
612 | 621 | } |
613 | 622 | |
| 623 | #poststuff .stuffbox > h2 { |
| 624 | border-bottom: 1px solid #eee; |
| 625 | } |
| 626 | |
614 | 627 | #poststuff .inside { |
615 | 628 | margin: 6px 0 0 0; |
616 | 629 | } |
… |
… |
span.wp-media-buttons-icon:before { |
638 | 651 | font-weight: 600; |
639 | 652 | } |
640 | 653 | |
641 | | #post-visibility-select { |
| 654 | #post-visibility-select, |
| 655 | #comment-status-radio { |
642 | 656 | line-height: 1.5em; |
643 | 657 | margin-top: 3px; |
644 | 658 | } |
diff --git src/wp-admin/edit-form-comment.php src/wp-admin/edit-form-comment.php
index 3e48f93..15bd703 100644
|
|
if ( 'approved' === wp_get_comment_status( $comment ) && $comment->comment_post_ |
88 | 88 | |
89 | 89 | <div id="postbox-container-1" class="postbox-container"> |
90 | 90 | <div id="submitdiv" class="stuffbox" > |
91 | | <h2><?php _e( 'Status' ); ?></h2> |
| 91 | <h2><?php _e( 'Save' ); ?></h2> |
92 | 92 | <div class="inside"> |
93 | 93 | <div class="submitbox" id="submitcomment"> |
94 | 94 | <div id="minor-publishing"> |
95 | 95 | |
96 | 96 | <div id="misc-publishing-actions"> |
97 | 97 | |
98 | | <fieldset class="misc-pub-section misc-pub-comment-status" id="comment-status-radio"> |
| 98 | <div class="misc-pub-section misc-pub-comment-status" id="comment-status"> |
| 99 | <?php _e( 'Status:' ); ?> <span id="comment-status-display"> |
| 100 | <?php |
| 101 | switch ( $comment->comment_approved ) { |
| 102 | case '1': |
| 103 | _e( 'Approved' ); |
| 104 | break; |
| 105 | case '0': |
| 106 | _e( 'Pending' ); |
| 107 | break; |
| 108 | case 'spam': |
| 109 | _e( 'Spam' ); |
| 110 | break; |
| 111 | } |
| 112 | ?> |
| 113 | </span> |
| 114 | |
| 115 | <fieldset id="comment-status-radio"> |
99 | 116 | <legend class="screen-reader-text"><?php _e( 'Comment status' ); ?></legend> |
100 | 117 | <label><input type="radio"<?php checked( $comment->comment_approved, '1' ); ?> name="comment_status" value="1" /><?php _ex( 'Approved', 'comment status' ); ?></label><br /> |
101 | 118 | <label><input type="radio"<?php checked( $comment->comment_approved, '0' ); ?> name="comment_status" value="0" /><?php _ex( 'Pending', 'comment status' ); ?></label><br /> |
102 | 119 | <label><input type="radio"<?php checked( $comment->comment_approved, 'spam' ); ?> name="comment_status" value="spam" /><?php _ex( 'Spam', 'comment status' ); ?></label> |
103 | 120 | </fieldset> |
104 | | |
| 121 | </div><!-- .misc-pub-section --> |
| 122 | |
105 | 123 | <div class="misc-pub-section curtime misc-pub-curtime"> |
106 | 124 | <?php |
107 | 125 | /* translators: Publish box date format, see https://secure.php.net/date */ |