A few places we were missing links to new stylesheet.
git-svn-id: http://svn.automattic.com/wordpress/trunk@6782 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
6f0a785408
commit
76260edc29
|
@ -51,7 +51,10 @@ if ( !empty($content) ) {
|
|||
<head>
|
||||
<title><?php bloginfo('name') ?> › Bookmarklet — WordPress</title>
|
||||
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
|
||||
<?php wp_admin_css(); ?>
|
||||
<?php
|
||||
wp_admin_css( 'css/global' );
|
||||
wp_admin_css();
|
||||
?>
|
||||
|
||||
<style type="text/css">
|
||||
<!--
|
||||
|
|
|
@ -319,7 +319,10 @@ function wp_iframe($content_func /* ... */) {
|
|||
<head>
|
||||
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
|
||||
<title><?php bloginfo('name') ?> › <?php _e('Uploads'); ?> — WordPress</title>
|
||||
<?php wp_admin_css(); ?>
|
||||
<?php
|
||||
wp_admin_css( 'css/global' );
|
||||
wp_admin_css();
|
||||
?>
|
||||
<script type="text/javascript">
|
||||
//<![CDATA[
|
||||
function addLoadEvent(func) {if ( typeof wpOnload!='function'){wpOnload=func;}else{ var oldonload=wpOnload;wpOnload=function(){oldonload();func();}}}
|
||||
|
|
|
@ -13,7 +13,10 @@ if ('b' == $_GET['a']) {
|
|||
<head>
|
||||
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=UTF-8" />
|
||||
<title>WordPress › Posted</title>
|
||||
<?php wp_admin_css(); ?>
|
||||
<?php
|
||||
wp_admin_css( 'css/global' );
|
||||
wp_admin_css();
|
||||
?>
|
||||
</head>
|
||||
<body>
|
||||
<p>Posted !</p>
|
||||
|
@ -28,7 +31,10 @@ if ('b' == $_GET['a']) {
|
|||
<head>
|
||||
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('blog_charset'); ?>" />
|
||||
<title>WordPress › Sidebar</title>
|
||||
<?php wp_admin_css(); ?>
|
||||
<?php
|
||||
wp_admin_css( 'css/global' );
|
||||
wp_admin_css();
|
||||
?>
|
||||
<style type="text/css" media="screen">
|
||||
form {
|
||||
padding: 3px;
|
||||
|
|
|
@ -63,7 +63,10 @@ if ( 'inline' == $style ) : ?>
|
|||
<head>
|
||||
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
|
||||
<title><?php bloginfo('name') ?> › <?php _e('Uploads'); ?> — WordPress</title>
|
||||
<?php wp_admin_css(); ?>
|
||||
<?php
|
||||
wp_admin_css( 'css/global' );
|
||||
wp_admin_css();
|
||||
?>
|
||||
<script type="text/javascript">
|
||||
//<![CDATA[
|
||||
function addLoadEvent(func) {if ( typeof wpOnload!='function'){wpOnload=func;}else{ var oldonload=wpOnload;wpOnload=function(){oldonload();func();}}}
|
||||
|
|
|
@ -7,7 +7,10 @@ header('Content-Type: text/html; charset=' . get_bloginfo('charset'));
|
|||
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
|
||||
<title><?php _e('Rich Editor Help') ?></title>
|
||||
<script type="text/javascript" src="tiny_mce_popup.js"></script>
|
||||
<?php wp_admin_css(); ?>
|
||||
<?php
|
||||
wp_admin_css( 'css/global' );
|
||||
wp_admin_css();
|
||||
?>
|
||||
<style type="text/css">
|
||||
body {
|
||||
background-color: #eaf3ea;
|
||||
|
|
Loading…
Reference in New Issue