Ticket #23702: 23702.diff
File 23702.diff, 1.2 KB (added by , 12 years ago) |
---|
-
wp-content/themes/twentythirteen/comments.php
50 50 51 51 <?php endif; // have_comments() ?> 52 52 53 <?php comment_form( ); ?>53 <?php comment_form( array( 'format' => 'html5' ) ); ?> 54 54 55 55 </div><!-- #comments --> 56 No newline at end of file -
wp-content/themes/twentythirteen/style.css
2406 2406 color: #ed331c; 2407 2407 } 2408 2408 2409 #commentform input[type="text"] { 2409 #commentform input[type="text"], 2410 #commentform input[type="email"], 2411 #commentform input[type="url"] { 2410 2412 max-width: 270px; 2411 2413 width: 60%; 2412 2414 } … … 3027 3029 width: calc(100% - 104px); 3028 3030 } 3029 3031 3030 #commentform input[type="text"] { 3032 #commentform input[type="text"], 3033 #commentform input[type="email"], 3034 #commentform input[type="url"] { 3031 3035 width: -webkit-calc(100% - 100px); 3032 3036 width: calc(100% - 100px); 3033 3037 }