Ticket #19196: 19196.6.patch
File 19196.6.patch, 1.6 KB (added by , 13 years ago) |
---|
-
wp-admin/css/wp-admin.dev.css
1893 1893 8.0 - Layout Blocks 1894 1894 ------------------------------------------------------------------------------*/ 1895 1895 1896 body.admin-bar {1896 html.admin-bar { 1897 1897 padding-top: 28px; 1898 -webkit-box-sizing: border-box; 1899 -moz-box-sizing: border-box; 1900 box-sizing: border-box; 1898 1901 } 1899 1902 1900 1903 .narrow { -
wp-admin/includes/template.php
1672 1672 } 1673 1673 1674 1674 function _wp_admin_html_begin() { 1675 $admin_html_class = ( is_admin_bar_showing() ) ? 'admin-bar' : ''; 1675 1676 ?> 1676 1677 <!DOCTYPE html> 1677 1678 <!--[if IE 8]> 1678 <html xmlns="http://www.w3.org/1999/xhtml" class="ie8 " <?php do_action('admin_xml_ns'); ?> <?php language_attributes(); ?>>1679 <html xmlns="http://www.w3.org/1999/xhtml" class="ie8 <?php echo $admin_html_class; ?>" <?php do_action('admin_xml_ns'); ?> <?php language_attributes(); ?>> 1679 1680 <![endif]--> 1680 1681 <!--[if !(IE 8) ]><!--> 1681 <html xmlns="http://www.w3.org/1999/xhtml" <?php do_action('admin_xml_ns'); ?> <?php language_attributes(); ?>>1682 <html xmlns="http://www.w3.org/1999/xhtml" class="<?php echo $admin_html_class; ?>" <?php do_action('admin_xml_ns'); ?> <?php language_attributes(); ?>> 1682 1683 <!--<![endif]--> 1683 1684 <head> 1684 1685 <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />