diff --git a/src/wp-admin/css/common.css b/src/wp-admin/css/common.css
index cbae1c5d68..dd62d6283a 100644
--- a/src/wp-admin/css/common.css
+++ b/src/wp-admin/css/common.css
@@ -2062,7 +2062,6 @@ html.wp-toolbar {
 
 .postbox .inside,
 .stuffbox .inside {
-	padding: 0 12px 12px;
 	line-height: 1.4em;
 	font-size: 13px;
 }
@@ -2366,7 +2365,10 @@ body.iframe {
 	line-height: 1.4;
 	font-weight: 600;
 	color: #222;
-	margin: 2px 0 0 9px;
+	margin: 0px 0px 0px -10px;
+	padding: 2px 0px 9px 22px;
+	border-bottom: 1px solid #eee;
+	width: 100%;
 }
 
 #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/src/wp-admin/edit-form-comment.php
+++ b/src/wp-admin/edit-form-comment.php
@@ -41,17 +41,17 @@ if ( 'approved' === wp_get_comment_status( $comment ) && $comment->comment_post_
 <table class="form-table editcomment">
 <tbody>
 <tr>
-	<td class="first"><label for="name"><?php _e( 'Name:' ); ?></label></td>
+	<td class="first"><label for="name"><?php _e( 'Name' ); ?></label></td>
 	<td><input type="text" name="newcomment_author" size="30" value="<?php echo esc_attr( $comment->comment_author ); ?>" id="name" /></td>
 </tr>
 <tr>
-	<td class="first"><label for="email"><?php _e( 'Email:' ); ?></label></td>
+	<td class="first"><label for="email"><?php _e( 'Email' ); ?></label></td>
 	<td>
 		<input type="text" name="newcomment_author_email" size="30" value="<?php echo $comment->comment_author_email; ?>" id="email" />
 	</td>
 </tr>
 <tr>
-	<td class="first"><label for="newcomment_author_url"><?php _e( 'URL:' ); ?></label></td>
+	<td class="first"><label for="newcomment_author_url"><?php _e( 'URL' ); ?></label></td>
 	<td>
 		<input type="text" id="newcomment_author_url" name="newcomment_author_url" size="30" class="code" value="<?php echo esc_attr( $comment->comment_author_url ); ?>" />
 	</td>
