mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 01:27:36 +01:00
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>
|
<head>
|
||||||
<title><?php bloginfo('name') ?> › Bookmarklet — WordPress</title>
|
<title><?php bloginfo('name') ?> › Bookmarklet — WordPress</title>
|
||||||
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
|
<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">
|
<style type="text/css">
|
||||||
<!--
|
<!--
|
||||||
|
@ -319,7 +319,10 @@ function wp_iframe($content_func /* ... */) {
|
|||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
|
<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>
|
<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">
|
<script type="text/javascript">
|
||||||
//<![CDATA[
|
//<![CDATA[
|
||||||
function addLoadEvent(func) {if ( typeof wpOnload!='function'){wpOnload=func;}else{ var oldonload=wpOnload;wpOnload=function(){oldonload();func();}}}
|
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>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=UTF-8" />
|
||||||
<title>WordPress › Posted</title>
|
<title>WordPress › Posted</title>
|
||||||
<?php wp_admin_css(); ?>
|
<?php
|
||||||
|
wp_admin_css( 'css/global' );
|
||||||
|
wp_admin_css();
|
||||||
|
?>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<p>Posted !</p>
|
<p>Posted !</p>
|
||||||
@ -28,7 +31,10 @@ if ('b' == $_GET['a']) {
|
|||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('blog_charset'); ?>" />
|
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('blog_charset'); ?>" />
|
||||||
<title>WordPress › Sidebar</title>
|
<title>WordPress › Sidebar</title>
|
||||||
<?php wp_admin_css(); ?>
|
<?php
|
||||||
|
wp_admin_css( 'css/global' );
|
||||||
|
wp_admin_css();
|
||||||
|
?>
|
||||||
<style type="text/css" media="screen">
|
<style type="text/css" media="screen">
|
||||||
form {
|
form {
|
||||||
padding: 3px;
|
padding: 3px;
|
||||||
|
@ -63,7 +63,10 @@ if ( 'inline' == $style ) : ?>
|
|||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
|
<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>
|
<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">
|
<script type="text/javascript">
|
||||||
//<![CDATA[
|
//<![CDATA[
|
||||||
function addLoadEvent(func) {if ( typeof wpOnload!='function'){wpOnload=func;}else{ var oldonload=wpOnload;wpOnload=function(){oldonload();func();}}}
|
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'); ?>" />
|
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
|
||||||
<title><?php _e('Rich Editor Help') ?></title>
|
<title><?php _e('Rich Editor Help') ?></title>
|
||||||
<script type="text/javascript" src="tiny_mce_popup.js"></script>
|
<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">
|
<style type="text/css">
|
||||||
body {
|
body {
|
||||||
background-color: #eaf3ea;
|
background-color: #eaf3ea;
|
||||||
|
Loading…
Reference in New Issue
Block a user