A few places we were missing links to new stylesheet.
git-svn-id: https://develop.svn.wordpress.org/trunk@6782 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
fa92ba6ff6
commit
ea1c1ac2a6
@ -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
Block a user