Make WordPress Core

Ticket #23702: 23702.diff

File 23702.diff, 1.2 KB (added by obenland, 12 years ago)
  • wp-content/themes/twentythirteen/comments.php

     
    5050
    5151        <?php endif; // have_comments() ?>
    5252
    53         <?php comment_form(); ?>
     53        <?php comment_form( array( 'format' => 'html5' ) ); ?>
    5454
    5555</div><!-- #comments -->
     56 No newline at end of file
  • wp-content/themes/twentythirteen/style.css

     
    24062406        color: #ed331c;
    24072407}
    24082408
    2409 #commentform input[type="text"] {
     2409#commentform input[type="text"],
     2410#commentform input[type="email"],
     2411#commentform input[type="url"] {
    24102412        max-width: 270px;
    24112413        width: 60%;
    24122414}
     
    30273029                width:         calc(100% - 104px);
    30283030        }
    30293031
    3030         #commentform input[type="text"] {
     3032        #commentform input[type="text"],
     3033        #commentform input[type="email"],
     3034        #commentform input[type="url"] {
    30313035                width: -webkit-calc(100% - 100px);
    30323036                width:         calc(100% - 100px);
    30333037        }