Make WordPress Core

Ticket #19196: 19196.6.patch

File 19196.6.patch, 1.6 KB (added by SergeyBiryukov, 13 years ago)
  • wp-admin/css/wp-admin.dev.css

     
    18931893  8.0 - Layout Blocks
    18941894------------------------------------------------------------------------------*/
    18951895
    1896 body.admin-bar {
     1896html.admin-bar {
    18971897        padding-top: 28px;
     1898        -webkit-box-sizing: border-box;
     1899        -moz-box-sizing: border-box;
     1900        box-sizing: border-box;
    18981901}
    18991902
    19001903.narrow {
  • wp-admin/includes/template.php

     
    16721672}
    16731673
    16741674function _wp_admin_html_begin() {
     1675        $admin_html_class = ( is_admin_bar_showing() ) ? 'admin-bar' : '';
    16751676?>
    16761677<!DOCTYPE html>
    16771678<!--[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(); ?>>
    16791680<![endif]-->
    16801681<!--[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(); ?>>
    16821683<!--<![endif]-->
    16831684<head>
    16841685<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />