Changeset 44466
- Timestamp:
- 01/08/2019 06:18:17 AM (6 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/common.css
r44437 r44466 2062 2062 } 2063 2063 2064 .postbox .inside, 2065 .stuffbox .inside { 2064 .postbox .inside { 2066 2065 padding: 0 12px 12px; 2067 2066 line-height: 1.4em; 2068 2067 font-size: 13px; 2068 } 2069 2070 .stuffbox .inside { 2071 padding: 0; 2072 line-height: 1.4em; 2073 font-size: 13px; 2074 margin-top: 0; 2069 2075 } 2070 2076 … … 2364 2370 2365 2371 .edit-comment-author { 2366 font-size: 14px;2367 line-height: 1.4;2368 font-weight: 600;2369 2372 color: #222; 2370 margin: 2px 0 0 9px;2373 border-bottom: 1px solid #eee; 2371 2374 } 2372 2375 -
trunk/src/wp-admin/css/edit.css
r43309 r44466 608 608 } 609 609 610 #poststuff .stuffbox h2 { 611 padding: 8px 10px; 612 } 613 610 614 #poststuff .inside { 611 615 margin: 6px 0 0 0; 616 } 617 618 #poststuff .stuffbox .inside { 619 margin: 0; 612 620 } 613 621 … … 1247 1255 .stuffbox .editcomment { 1248 1256 clear: none; 1257 margin-top: 0; 1258 } 1259 1260 #namediv.stuffbox .editcomment input { 1261 width: 100%; 1262 } 1263 1264 #namediv.stuffbox .editcomment.form-table td { 1265 padding: 10px; 1249 1266 } 1250 1267 … … 1440 1457 } 1441 1458 1459 #poststuff .stuffbox .inside { 1460 padding: 0 2px 4px 0; 1461 } 1462 1442 1463 #poststuff h3.hndle, /* Back-compat for pre-4.4 */ 1443 1464 #poststuff .stuffbox > h3, /* Back-compat for pre-4.4 */ 1444 1465 #poststuff h2 { 1445 1466 padding: 12px; 1467 } 1468 1469 #namediv.stuffbox .editcomment.form-table td { 1470 padding: 5px 10px; 1446 1471 } 1447 1472 -
trunk/src/wp-admin/edit-form-comment.php
r44214 r44466 42 42 <div class="inside"> 43 43 <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> 45 47 <table class="form-table editcomment"> 46 48 <tbody> 47 49 <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> 49 51 <td><input type="text" name="newcomment_author" size="30" value="<?php echo esc_attr( $comment->comment_author ); ?>" id="name" /></td> 50 52 </tr> 51 53 <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> 53 55 <td> 54 56 <input type="text" name="newcomment_author_email" size="30" value="<?php echo $comment->comment_author_email; ?>" id="email" /> … … 56 58 </tr> 57 59 <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> 59 61 <td> 60 62 <input type="text" id="newcomment_author_url" name="newcomment_author_url" size="30" class="code" value="<?php echo esc_attr( $comment->comment_author_url ); ?>" /> … … 63 65 </tbody> 64 66 </table> 65 <br />66 67 </fieldset> 67 68 </div>
Note: See TracChangeset
for help on using the changeset viewer.