diff --git a/src/wp-admin/css/common.css b/src/wp-admin/css/common.css
index cbae1c5d68..23eebae236 100644
a
|
b
|
html.wp-toolbar { |
2060 | 2060 | user-select: none; |
2061 | 2061 | } |
2062 | 2062 | |
2063 | | .postbox .inside, |
| 2063 | .postbox .inside { |
| 2064 | padding: 0 12px 12px; |
| 2065 | line-height: 1.4em; |
| 2066 | font-size: 13px; |
| 2067 | } |
| 2068 | |
2064 | 2069 | .stuffbox .inside { |
2065 | | padding: 0 12px 12px; |
2066 | | line-height: 1.4em; |
2067 | | font-size: 13px; |
| 2070 | padding: 0; |
| 2071 | line-height: 1.4em; |
| 2072 | font-size: 13px; |
| 2073 | margin-top: 0; |
2068 | 2074 | } |
2069 | 2075 | |
2070 | 2076 | .postbox .inside { |
… |
… |
body.iframe { |
2362 | 2368 | } |
2363 | 2369 | |
2364 | 2370 | .edit-comment-author { |
2365 | | font-size: 14px; |
2366 | | line-height: 1.4; |
2367 | | font-weight: 600; |
2368 | 2371 | color: #222; |
2369 | | margin: 2px 0 0 9px; |
| 2372 | border-bottom: 1px solid #eee; |
2370 | 2373 | } |
2371 | 2374 | |
2372 | 2375 | #namediv h3 label, /* Back-compat for pre-4.4 */ |
diff --git a/src/wp-admin/css/edit.css b/src/wp-admin/css/edit.css
index 9c7c257f53..104e25f60d 100644
a
|
b
|
span.wp-media-buttons-icon:before { |
611 | 611 | margin: 6px 0 0 0; |
612 | 612 | } |
613 | 613 | |
| 614 | #poststuff .stuffbox .inside { |
| 615 | margin: 0; |
| 616 | } |
| 617 | |
614 | 618 | #poststuff .inside #parent_id, |
615 | 619 | #poststuff .inside #page_template { |
616 | 620 | max-width: 100%; |
… |
… |
p.popular-tags a { |
1159 | 1163 | |
1160 | 1164 | .stuffbox .editcomment { |
1161 | 1165 | clear: none; |
| 1166 | margin-top: 0; |
1162 | 1167 | } |
1163 | 1168 | |
| 1169 | |
1164 | 1170 | #comment-status-radio p { |
1165 | 1171 | margin: 3px 0 5px; |
1166 | 1172 | } |
diff --git a/src/wp-admin/edit-form-comment.php b/src/wp-admin/edit-form-comment.php
index e043908c30..499ed96a97 100644
a
|
b
|
if ( 'approved' === wp_get_comment_status( $comment ) && $comment->comment_post_ |
37 | 37 | <div id="namediv" class="stuffbox"> |
38 | 38 | <div class="inside"> |
39 | 39 | <fieldset> |
40 | | <legend class="edit-comment-author"><?php _e( 'Author' ); ?></legend> |
| 40 | <h2 class="edit-comment-author"> |
| 41 | <span><?php _e( 'Author' ); ?></span> |
| 42 | </h2> |
41 | 43 | <table class="form-table editcomment"> |
42 | 44 | <tbody> |
43 | 45 | <tr> |
44 | | <td class="first"><label for="name"><?php _e( 'Name:' ); ?></label></td> |
| 46 | <td class="first"><label for="name"><?php _e( 'Name' ); ?></label></td> |
45 | 47 | <td><input type="text" name="newcomment_author" size="30" value="<?php echo esc_attr( $comment->comment_author ); ?>" id="name" /></td> |
46 | 48 | </tr> |
47 | 49 | <tr> |
48 | | <td class="first"><label for="email"><?php _e( 'Email:' ); ?></label></td> |
| 50 | <td class="first"><label for="email"><?php _e( 'Email' ); ?></label></td> |
49 | 51 | <td> |
50 | 52 | <input type="text" name="newcomment_author_email" size="30" value="<?php echo $comment->comment_author_email; ?>" id="email" /> |
51 | 53 | </td> |
52 | 54 | </tr> |
53 | 55 | <tr> |
54 | | <td class="first"><label for="newcomment_author_url"><?php _e( 'URL:' ); ?></label></td> |
| 56 | <td class="first"><label for="newcomment_author_url"><?php _e( 'URL' ); ?></label></td> |
55 | 57 | <td> |
56 | 58 | <input type="text" id="newcomment_author_url" name="newcomment_author_url" size="30" class="code" value="<?php echo esc_attr( $comment->comment_author_url ); ?>" /> |
57 | 59 | </td> |
58 | 60 | </tr> |
59 | 61 | </tbody> |
60 | 62 | </table> |
61 | | <br /> |
62 | 63 | </fieldset> |
63 | 64 | </div> |
64 | 65 | </div> |