Make WordPress Core

Ticket #43586: 43586.8.diff

File 43586.8.diff, 3.5 KB (added by BODA1982, 7 years ago)
  • src/wp-admin/css/common.css

     
    20572057        user-select: none;
    20582058}
    20592059
    2060 .postbox .inside,
     2060.postbox .inside {
     2061  padding: 0 12px 12px;
     2062  line-height: 1.4em;
     2063  font-size: 13px;
     2064}
     2065
    20612066.stuffbox .inside {
    2062         padding: 0 12px 12px;
    2063         line-height: 1.4em;
    2064         font-size: 13px;
     2067  padding: 0;
     2068  line-height: 1.4em;
     2069  font-size: 13px;
     2070  margin-top: 0;
    20652071}
    20662072
    20672073.postbox .inside {
     
    23592365}
    23602366
    23612367.edit-comment-author {
    2362         font-size: 14px;
    2363         line-height: 1.4;
    2364         font-weight: 600;
    23652368        color: #222;
    2366         margin: 2px 0 0 9px;
     2369        border-bottom: 1px solid #eee;
    23672370}
    23682371
    23692372#namediv h3 label, /* Back-compat for pre-4.4 */
  • src/wp-admin/css/edit.css

     
    607607        line-height: 1.4;
    608608}
    609609
     610#poststuff .stuffbox h2 {
     611  padding: 8px 10px;
     612}
     613
    610614#poststuff .inside {
    611615        margin: 6px 0 0 0;
    612616}
    613617
     618#poststuff .stuffbox .inside {
     619  margin: 0;
     620}
     621
    614622#poststuff .inside #parent_id,
    615623#poststuff .inside #page_template {
    616624        max-width: 100%;
     
    12461254
    12471255.stuffbox .editcomment {
    12481256        clear: none;
     1257        margin-top: 0;
    12491258}
    12501259
     1260#namediv.stuffbox .editcomment input {
     1261  width: 100%;
     1262}
     1263
     1264#namediv.stuffbox .editcomment.form-table td {
     1265  padding: 10px;
     1266}
     1267
    12511268#comment-status-radio p {
    12521269        margin: 3px 0 5px;
    12531270}
     
    14381455        #titlediv #title-prompt-text {
    14391456                padding: 10px 10px;
    14401457        }
    1441 
     1458       
     1459        #poststuff .stuffbox .inside {
     1460                padding: 0 2px 4px 0;
     1461        }
     1462       
    14421463        #poststuff h3.hndle, /* Back-compat for pre-4.4 */
    14431464        #poststuff .stuffbox > h3, /* Back-compat for pre-4.4 */
    14441465        #poststuff h2 {
    14451466                padding: 12px;
    14461467        }
     1468       
     1469        #namediv.stuffbox .editcomment.form-table td {
     1470          padding: 5px 10px;
     1471        }
    14471472
    14481473        .post-format-options {
    14491474                padding-right: 0;
  • src/wp-admin/edit-form-comment.php

     
    4141<div id="namediv" class="stuffbox">
    4242<div class="inside">
    4343<fieldset>
    44 <legend class="edit-comment-author"><?php _e( 'Author' ); ?></legend>
     44<h2 class="edit-comment-author">
     45        <span><?php _e( 'Author' ); ?></span>
     46</h2>
    4547<table class="form-table editcomment">
    4648<tbody>
    4749<tr>
    48         <td class="first"><label for="name"><?php _e( 'Name:' ); ?></label></td>
     50        <td class="first"><label for="name"><?php _e( 'Name' ); ?></label></td>
    4951        <td><input type="text" name="newcomment_author" size="30" value="<?php echo esc_attr( $comment->comment_author ); ?>" id="name" /></td>
    5052</tr>
    5153<tr>
    52         <td class="first"><label for="email"><?php _e( 'Email:' ); ?></label></td>
     54        <td class="first"><label for="email"><?php _e( 'Email' ); ?></label></td>
    5355        <td>
    5456                <input type="text" name="newcomment_author_email" size="30" value="<?php echo $comment->comment_author_email; ?>" id="email" />
    5557        </td>
    5658</tr>
    5759<tr>
    58         <td class="first"><label for="newcomment_author_url"><?php _e( 'URL:' ); ?></label></td>
     60        <td class="first"><label for="newcomment_author_url"><?php _e( 'URL' ); ?></label></td>
    5961        <td>
    6062                <input type="text" id="newcomment_author_url" name="newcomment_author_url" size="30" class="code" value="<?php echo esc_attr( $comment->comment_author_url ); ?>" />
    6163        </td>
     
    6264</tr>
    6365</tbody>
    6466</table>
    65 <br />
    6667</fieldset>
    6768</div>
    6869</div>