mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-07-01 15:50:09 +00:00
wp_admin_css() improvements. Props mdawaffe. see #7011
git-svn-id: https://develop.svn.wordpress.org/trunk@7979 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -14,8 +14,9 @@ if ('b' == $_GET['a']) {
|
||||
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=UTF-8" />
|
||||
<title><?php _e('WordPress › Posted'); ?></title>
|
||||
<?php
|
||||
wp_admin_css( 'css/global' );
|
||||
wp_admin_css();
|
||||
wp_admin_css( 'global', true );
|
||||
wp_admin_css( 'wp-admin', true );
|
||||
wp_admin_css( 'colors', true );
|
||||
?>
|
||||
</head>
|
||||
<body>
|
||||
@@ -32,8 +33,9 @@ wp_admin_css();
|
||||
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('blog_charset'); ?>" />
|
||||
<title><?php _e('WordPress › Sidebar'); ?></title>
|
||||
<?php
|
||||
wp_admin_css( 'css/global' );
|
||||
wp_admin_css();
|
||||
wp_admin_css( 'global', true );
|
||||
wp_admin_css( 'wp-admin', true );
|
||||
wp_admin_css( 'colors', true );
|
||||
?>
|
||||
<style type="text/css" media="screen">
|
||||
form {
|
||||
|
||||
Reference in New Issue
Block a user