added fancy support for favicon in the admin area
git-svn-id: https://develop.svn.wordpress.org/trunk@703 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
bc92fb243e
commit
6b4503e624
@ -51,7 +51,8 @@ if ($standalone == 0) {
|
|||||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
<head>
|
<head>
|
||||||
<title>WordPress › <?php bloginfo('name') ?> › <?php echo $title; ?></title>
|
<title>WordPress › <?php bloginfo('name') ?> › <?php echo $title; ?></title>
|
||||||
<link rel="stylesheet" href="wp-admin.css" type="text/css" />
|
<link rel="stylesheet" href="../wp-images/wp-admin.css" type="text/css" />
|
||||||
|
<link rel="shortcut icon" href="wp-favicon.png" />
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $admin_area_charset ?>" />
|
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $admin_area_charset ?>" />
|
||||||
<?php
|
<?php
|
||||||
if ($redirect==1) {
|
if ($redirect==1) {
|
||||||
|
@ -66,8 +66,9 @@ window.close()
|
|||||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
<head>
|
<head>
|
||||||
<title>WordPress > Bookmarklet</title>
|
<title>WordPress > Bookmarklet</title>
|
||||||
<link rel="stylesheet" href="wp-admin.css" type="text/css" />
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $admin_area_charset ?>" />
|
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $admin_area_charset ?>" />
|
||||||
|
<link rel="stylesheet" href="wp-admin.css" type="text/css" />
|
||||||
|
<link rel="shortcut icon" href="wp-favicon.png" />
|
||||||
<script type="text/javascript" language="javascript">
|
<script type="text/javascript" language="javascript">
|
||||||
<!--
|
<!--
|
||||||
function launchupload() {
|
function launchupload() {
|
||||||
|
@ -35,14 +35,23 @@ if ('b' == $HTTP_GET_VARS['a']) {
|
|||||||
?><html>
|
?><html>
|
||||||
<head>
|
<head>
|
||||||
<title>WordPress > Sidebar</title>
|
<title>WordPress > Sidebar</title>
|
||||||
<link rel="stylesheet" href="wp-admin.css" type="text/css">
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $admin_area_charset ?>" />
|
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $admin_area_charset ?>" />
|
||||||
|
<link rel="stylesheet" href="wp-admin.css" type="text/css" />
|
||||||
|
<link rel="shortcut icon" href="wp-favicon.png" />
|
||||||
<style type="text/css" media="screen">
|
<style type="text/css" media="screen">
|
||||||
form {
|
form {
|
||||||
padding: 3px;
|
padding: 3px;
|
||||||
}
|
}
|
||||||
|
.sidebar-categories {
|
||||||
|
display: block;
|
||||||
|
height: 6.6em;
|
||||||
|
overflow: auto;
|
||||||
|
background-color: #f4f4f4;
|
||||||
|
}
|
||||||
.sidebar-categories label {
|
.sidebar-categories label {
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
|
display: block;
|
||||||
|
width: 90%;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
@ -55,8 +64,10 @@ form {
|
|||||||
<p>Title:
|
<p>Title:
|
||||||
<input type="text" name="post_title" size="20" tabindex="1" style="width: 100%;" />
|
<input type="text" name="post_title" size="20" tabindex="1" style="width: 100%;" />
|
||||||
</p>
|
</p>
|
||||||
<p class="sidebar-categories">Categories:
|
<p>Categories:
|
||||||
|
<span class="sidebar-categories">
|
||||||
<?php dropdown_categories(); ?>
|
<?php dropdown_categories(); ?>
|
||||||
|
</span>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
Post:
|
Post:
|
||||||
|
Loading…
Reference in New Issue
Block a user