diff --git a/src/wp-admin/css/common.css b/src/wp-admin/css/common.css
index cbae1c5d68..b53fe7c330 100644
|
a
|
b
|
body.iframe { |
| 2366 | 2366 | line-height: 1.4; |
| 2367 | 2367 | font-weight: 600; |
| 2368 | 2368 | color: #222; |
| 2369 | | margin: 2px 0 0 9px; |
| | 2369 | margin: 0px 0px 0px -10px; |
| | 2370 | padding: 2px 0px 8px 22px; |
| | 2371 | border-bottom: 1px solid #eee; |
| | 2372 | width: 100% |
| 2370 | 2373 | } |
| 2371 | 2374 | |
| 2372 | 2375 | #namediv h3 label, /* Back-compat for pre-4.4 */ |
diff --git a/src/wp-admin/edit-form-comment.php b/src/wp-admin/edit-form-comment.php
index e043908c30..24f351a7e7 100644
|
a
|
b
|
if ( 'approved' === wp_get_comment_status( $comment ) && $comment->comment_post_ |
| 41 | 41 | <table class="form-table editcomment"> |
| 42 | 42 | <tbody> |
| 43 | 43 | <tr> |
| 44 | | <td class="first"><label for="name"><?php _e( 'Name:' ); ?></label></td> |
| | 44 | <td class="first"><label for="name"><?php _e( 'Name' ); ?></label></td> |
| 45 | 45 | <td><input type="text" name="newcomment_author" size="30" value="<?php echo esc_attr( $comment->comment_author ); ?>" id="name" /></td> |
| 46 | 46 | </tr> |
| 47 | 47 | <tr> |
| 48 | | <td class="first"><label for="email"><?php _e( 'Email:' ); ?></label></td> |
| | 48 | <td class="first"><label for="email"><?php _e( 'Email' ); ?></label></td> |
| 49 | 49 | <td> |
| 50 | 50 | <input type="text" name="newcomment_author_email" size="30" value="<?php echo $comment->comment_author_email; ?>" id="email" /> |
| 51 | 51 | </td> |
| 52 | 52 | </tr> |
| 53 | 53 | <tr> |
| 54 | | <td class="first"><label for="newcomment_author_url"><?php _e( 'URL:' ); ?></label></td> |
| | 54 | <td class="first"><label for="newcomment_author_url"><?php _e( 'URL' ); ?></label></td> |
| 55 | 55 | <td> |
| 56 | 56 | <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 | 57 | </td> |