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..982df505b6 100644
a
|
b
|
span.wp-media-buttons-icon:before { |
607 | 607 | line-height: 1.4; |
608 | 608 | } |
609 | 609 | |
| 610 | #poststuff .stuffbox h2 { |
| 611 | padding: 8px 10px; |
| 612 | } |
| 613 | |
610 | 614 | #poststuff .inside { |
611 | 615 | margin: 6px 0 0 0; |
612 | 616 | } |
613 | 617 | |
| 618 | #poststuff .stuffbox .inside { |
| 619 | margin: 0; |
| 620 | } |
| 621 | |
614 | 622 | #poststuff .inside #parent_id, |
615 | 623 | #poststuff .inside #page_template { |
616 | 624 | max-width: 100%; |
… |
… |
p.popular-tags a { |
1159 | 1167 | |
1160 | 1168 | .stuffbox .editcomment { |
1161 | 1169 | clear: none; |
| 1170 | margin-top: 0; |
| 1171 | } |
| 1172 | |
| 1173 | #namediv.stuffbox .editcomment input { |
| 1174 | width: 100%; |
| 1175 | } |
| 1176 | |
| 1177 | #namediv.stuffbox .editcomment.form-table td { |
| 1178 | padding: 10px; |
1162 | 1179 | } |
1163 | 1180 | |
1164 | 1181 | #comment-status-radio p { |
… |
… |
table.links-table { |
1363 | 1380 | #poststuff h2 { |
1364 | 1381 | padding: 12px; |
1365 | 1382 | } |
| 1383 | |
| 1384 | #namediv.stuffbox .editcomment.form-table td { |
| 1385 | padding: 5px 10px; |
| 1386 | } |
1366 | 1387 | |
1367 | 1388 | .post-format-options { |
1368 | 1389 | padding-right: 0; |
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> |