diff --git src/wp-admin/comment.php src/wp-admin/comment.php
index ffca93e..ba700ba 100644
|
|
if ( $comment->comment_approved != '0' ) { // if not unapproved |
211 | 211 | </tr> |
212 | 212 | <tr> |
213 | 213 | <th scope="row"><?php /* translators: field name in comment form */ _ex('Comment', 'noun'); ?></th> |
214 | | <td> |
| 214 | <td class="comment-content"> |
215 | 215 | <?php comment_text( $comment ); ?> |
216 | | <p><a href="<?php echo admin_url( "comment.php?action=editcomment&c={$comment->comment_ID}" ); ?>"><?php esc_attr_e( 'Edit' ); ?></a></p> |
| 216 | <p class="edit-comment"><a href="<?php echo admin_url( "comment.php?action=editcomment&c={$comment->comment_ID}" ); ?>"><?php esc_attr_e( 'Edit' ); ?></a></p> |
217 | 217 | </td> |
218 | 218 | </tr> |
219 | 219 | </table> |
diff --git src/wp-admin/css/edit.css src/wp-admin/css/edit.css
index f1bf46d..a2ca97d 100644
|
|
p.popular-tags a { |
1131 | 1131 | padding: 10px 15px; |
1132 | 1132 | } |
1133 | 1133 | |
1134 | | .comment-ays td p:last-of-type { |
| 1134 | .comment-ays .comment-content a[href]:after { |
| 1135 | content: '(' attr( href ) ')'; |
| 1136 | display: inline-block; |
| 1137 | padding: 0 4px; |
| 1138 | color: #82878c; |
| 1139 | font-size: 13px; |
| 1140 | } |
| 1141 | |
| 1142 | .comment-ays .comment-content p.edit-comment { |
1135 | 1143 | margin-top: 10px; |
1136 | 1144 | } |
1137 | 1145 | |
| 1146 | .comment-ays .comment-content p.edit-comment a[href]:after { |
| 1147 | content: ''; |
| 1148 | padding: 0; |
| 1149 | } |
| 1150 | |
1138 | 1151 | .comment-ays-submit .button-cancel { |
1139 | 1152 | margin-left: 1em; |
1140 | 1153 | } |