Ticket #33557: 33557.6.patch
File 33557.6.patch, 2.6 KB (added by , 9 years ago) |
---|
-
src/wp-admin/css/common.css
1981 1981 margin-right: 190px; 1982 1982 } 1983 1983 1984 .metabox-holder h2, 1984 1985 .metabox-holder h3 { 1985 1986 font-size: 14px; 1986 1987 padding: 8px 12px; … … 1988 1989 line-height: 1.4; 1989 1990 } 1990 1991 1992 /* backwards compatibility with current nav-menus screen */ 1993 .nav-menus-php .metabox-holder h3 { 1994 padding: 10px 10px 11px 14px; 1995 line-height: 21px; 1996 } 1997 1991 1998 #templateside ul li a { 1992 1999 text-decoration: none; 1993 2000 } … … 3357 3364 font-size: 14px; 3358 3365 } 3359 3366 3360 .metabox-holder h 3{3367 .metabox-holder h2 { 3361 3368 padding: 12px; 3362 3369 } 3363 3370 -
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
616 616 position: absolute; 617 617 } 618 618 619 #poststuff h2 { 620 margin-top: 20px; 621 font-size: 1.5em; 622 margin-bottom: 15px; 623 padding: 0 0 3px; 624 clear: left; 625 } 626 619 #poststuff h2, 627 620 #poststuff h3 { 628 621 font-size: 14px; 629 622 padding: 8px 12px; … … 1347 1340 padding: 10px 10px; 1348 1341 } 1349 1342 1343 #poststuff h2, 1350 1344 #poststuff h3 { 1351 1345 padding: 12px; 1352 1346 } -
src/wp-admin/includes/template.php
1100 1100 echo '<span class="screen-reader-text">' . sprintf( __( 'Click to toggle %s panel' ), $box['title'] ) . '</span><br />'; 1101 1101 echo '</button>'; 1102 1102 } 1103 echo "<h 3 class='hndle'><span>{$box['title']}</span></h3>\n";1103 echo "<h2 class='hndle'><span>{$box['title']}</span></h2>\n"; 1104 1104 echo '<div class="inside">' . "\n"; 1105 1105 call_user_func($box['callback'], $object, $box); 1106 1106 echo "</div>\n";