Make WordPress Core

Ticket #21897: 21897.4.diff

File 21897.4.diff, 2.3 KB (added by MikeHansenMe, 13 years ago)
  • wp-content/themes/twentyeleven/style.css

     
    21232123        font-weight: bold;
    21242124        left: 75%;
    21252125        position: absolute;
    2126         top: 45px;
    21272126        z-index: 1;
    21282127}
    21292128#respond .comment-notes,
  • wp-content/themes/twentytwelve/style.css

     
    11981198.required {
    11991199        color: red;
    12001200}
    1201 label ~ span.required {
    1202         display: block;
    1203         float: left;
    1204         margin: -18px 0 0 -16px;
    1205         margin: -1.285714286rem 0 0 -1.142857143rem;
    1206 }
    12071201
    12081202
    12091203/* =Front page template
  • wp-includes/comment-template.php

     
    15211521        $req = get_option( 'require_name_email' );
    15221522        $aria_req = ( $req ? " aria-required='true'" : '' );
    15231523        $fields =  array(
    1524                 'author' => '<p class="comment-form-author">' . '<label for="author">' . __( 'Name' ) . '</label> ' . ( $req ? '<span class="required">*</span>' : '' ) .
     1524                'author' => '<p class="comment-form-author">' . '<label for="author">' . __( 'Name' ) . ( $req ? ' <span class="required">*</span>' : '' ) . '</label> ' .
    15251525                            '<input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . ' /></p>',
    1526                 'email'  => '<p class="comment-form-email"><label for="email">' . __( 'Email' ) . '</label> ' . ( $req ? '<span class="required">*</span>' : '' ) .
     1526                'email'  => '<p class="comment-form-email"><label for="email">' . __( 'Email' ) . ( $req ? ' <span class="required">*</span>' : '' ) . '</label> ' .
    15271527                            '<input id="email" name="email" type="text" value="' . esc_attr(  $commenter['comment_author_email'] ) . '" size="30"' . $aria_req . ' /></p>',
    15281528                'url'    => '<p class="comment-form-url"><label for="url">' . __( 'Website' ) . '</label>' .
    15291529                            '<input id="url" name="url" type="text" value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30" /></p>',