Ticket #33557: 33557.diff
File 33557.diff, 4.8 KB (added by , 9 years ago) |
---|
-
src/wp-admin/css/common.css
2026 2026 margin-right: 190px; 2027 2027 } 2028 2028 2029 .metabox-holder h2, 2029 2030 .metabox-holder h3 { 2030 2031 font-size: 14px; 2031 2032 padding: 8px 12px; … … 2033 2034 line-height: 1.4; 2034 2035 } 2035 2036 2037 /* backwards compatibility with current nav-menus screen */ 2038 .nav-menus-php .metabox-holder h3 { 2039 padding: 10px 10px 11px 14px; 2040 line-height: 21px; 2041 } 2042 2036 2043 #templateside ul li a { 2037 2044 text-decoration: none; 2038 2045 } … … 3393 3400 font-size: 14px; 3394 3401 } 3395 3402 3396 .metabox-holder h 3{3403 .metabox-holder h2 { 3397 3404 padding: 12px; 3398 3405 } 3399 3406 -
src/wp-admin/css/dashboard.css
947 947 box-shadow: none; 948 948 } 949 949 950 #dashboard_browser_nag.postbox.browser-insecure h 3{950 #dashboard_browser_nag.postbox.browser-insecure h2 { 951 951 border-bottom-color: #cd5a5a; 952 952 color: #fff; 953 953 } 954 954 955 #dashboard_browser_nag.postbox h 3{955 #dashboard_browser_nag.postbox h2 { 956 956 border-bottom-color: #f6e2ac; 957 957 background: transparent none; 958 958 color: #fff; … … 966 966 967 967 /* Make the browser nags easier to read with Open Sans */ 968 968 969 #dashboard_browser_nag h 3.hndle {969 #dashboard_browser_nag h2.hndle { 970 970 border: none; 971 971 font-weight: 600; 972 972 font-size: 20px; -
src/wp-admin/css/edit.css
239 239 margin: 8px 0 5px; 240 240 } 241 241 242 #category-adder h4 { 242 .taxonomy-add-new { 243 display: inline-block; 243 244 margin: 10px 0; 245 font-weight: 600; 244 246 } 245 247 246 248 #side-sortables .add-menu-item-tabs, … … 627 629 position: absolute; 628 630 } 629 631 630 #poststuff h2 { 631 margin-top: 20px; 632 font-size: 1.5em; 633 margin-bottom: 15px; 634 padding: 0 0 3px; 635 clear: left; 636 } 637 632 #poststuff h2, 638 633 #poststuff h3 { 639 634 font-size: 14px; 640 635 padding: 8px 12px; … … 1358 1353 padding: 10px 10px; 1359 1354 } 1360 1355 1356 #poststuff h2, 1361 1357 #poststuff h3 { 1362 1358 padding: 12px; 1363 1359 } -
src/wp-admin/includes/meta-boxes.php
484 484 </div> 485 485 <?php if ( current_user_can( $taxonomy->cap->edit_terms ) ) : ?> 486 486 <div id="<?php echo $tax_name; ?>-adder" class="wp-hidden-children"> 487 <h4> 488 <a id="<?php echo $tax_name; ?>-add-toggle" href="#<?php echo $tax_name; ?>-add" class="hide-if-no-js"> 489 <?php 490 /* translators: %s: add new taxonomy label */ 491 printf( __( '+ %s' ), $taxonomy->labels->add_new_item ); 492 ?> 493 </a> 494 </h4> 487 <a id="<?php echo $tax_name; ?>-add-toggle" href="#<?php echo $tax_name; ?>-add" class="hide-if-no-js taxonomy-add-new"> 488 <?php 489 /* translators: %s: add new taxonomy label */ 490 printf( __( '+ %s' ), $taxonomy->labels->add_new_item ); 491 ?> 492 </a> 495 493 <p id="<?php echo $tax_name; ?>-add" class="category-add wp-hidden-child"> 496 494 <label class="screen-reader-text" for="new<?php echo $tax_name; ?>"><?php echo $taxonomy->labels->add_new_item; ?></label> 497 495 <input type="text" name="new<?php echo $tax_name; ?>" id="new<?php echo $tax_name; ?>" class="form-required form-input-tip" value="<?php echo esc_attr( $taxonomy->labels->new_item_name ); ?>" aria-required="true"/> … … 920 918 </div> 921 919 922 920 <div id="category-adder" class="wp-hidden-children"> 923 < h4><a id="category-add-toggle" href="#category-add"><?php _e( '+ Add New Category' ); ?></a></h4>921 <a id="category-add-toggle" href="#category-add" class="taxonomy-add-new"><?php _e( '+ Add New Category' ); ?></a> 924 922 <p id="link-category-add" class="wp-hidden-child"> 925 923 <label class="screen-reader-text" for="newcat"><?php _e( '+ Add New Category' ); ?></label> 926 924 <input type="text" name="newcat" id="newcat" class="form-required form-input-tip" value="<?php esc_attr_e( 'New category name' ); ?>" aria-required="true" /> -
src/wp-admin/includes/template-functions.php
993 993 echo '<span class="screen-reader-text">' . sprintf( __( 'Click to toggle %s panel' ), $box['title'] ) . '</span><br />'; 994 994 echo '</button>'; 995 995 } 996 echo "<h 3 class='hndle'><span>{$box['title']}</span></h3>\n";996 echo "<h2 class='hndle'><span>{$box['title']}</span></h2>\n"; 997 997 echo '<div class="inside">' . "\n"; 998 998 call_user_func($box['callback'], $object, $box); 999 999 echo "</div>\n";