Changeset 21025
- Timestamp:
- 06/07/2012 10:05:01 PM (12 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/css/wp-admin.dev.css
r21014 r21025 1893 1893 ------------------------------------------------------------------------------*/ 1894 1894 1895 body.admin-bar {1895 html.wp-toolbar { 1896 1896 padding-top: 28px; 1897 -webkit-box-sizing: border-box; 1898 -moz-box-sizing: border-box; 1899 box-sizing: border-box; 1897 1900 } 1898 1901 -
trunk/wp-admin/includes/template.php
r20891 r21025 1673 1673 1674 1674 function _wp_admin_html_begin() { 1675 $admin_html_class = ( is_admin_bar_showing() ) ? 'wp-toolbar' : ''; 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>
Note: See TracChangeset
for help on using the changeset viewer.