Make WordPress Core

Ticket #43586: 43586.5.diff

File 43586.5.diff, 1.9 KB (added by rhetorical, 6 years ago)
  • src/wp-admin/css/common.css

    diff --git a/src/wp-admin/css/common.css b/src/wp-admin/css/common.css
    index cbae1c5d68..dd62d6283a 100644
    a b html.wp-toolbar { 
    20622062
    20632063.postbox .inside,
    20642064.stuffbox .inside {
    2065         padding: 0 12px 12px;
    20662065        line-height: 1.4em;
    20672066        font-size: 13px;
    20682067}
    body.iframe { 
    23662365        line-height: 1.4;
    23672366        font-weight: 600;
    23682367        color: #222;
    2369         margin: 2px 0 0 9px;
     2368        margin: 0px 0px 0px -10px;
     2369        padding: 2px 0px 9px 22px;
     2370        border-bottom: 1px solid #eee;
     2371        width: 100%;
    23702372}
    23712373
    23722374#namediv h3 label, /* Back-compat for pre-4.4 */
  • src/wp-admin/edit-form-comment.php

    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_ 
    4141<table class="form-table editcomment">
    4242<tbody>
    4343<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>
    4545        <td><input type="text" name="newcomment_author" size="30" value="<?php echo esc_attr( $comment->comment_author ); ?>" id="name" /></td>
    4646</tr>
    4747<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>
    4949        <td>
    5050                <input type="text" name="newcomment_author_email" size="30" value="<?php echo $comment->comment_author_email; ?>" id="email" />
    5151        </td>
    5252</tr>
    5353<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>
    5555        <td>
    5656                <input type="text" id="newcomment_author_url" name="newcomment_author_url" size="30" class="code" value="<?php echo esc_attr( $comment->comment_author_url ); ?>" />
    5757        </td>