added fancy support for favicon in the admin area
git-svn-id: http://svn.automattic.com/wordpress/trunk@703 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
2d813377b2
commit
993b10afe9
|
@ -51,7 +51,8 @@ if ($standalone == 0) {
|
|||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<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 ?>" />
|
||||
<?php
|
||||
if ($redirect==1) {
|
||||
|
|
|
@ -66,8 +66,9 @@ window.close()
|
|||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<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 ?>" />
|
||||
<link rel="stylesheet" href="wp-admin.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="wp-favicon.png" />
|
||||
<script type="text/javascript" language="javascript">
|
||||
<!--
|
||||
function launchupload() {
|
||||
|
|
|
@ -35,14 +35,23 @@ if ('b' == $HTTP_GET_VARS['a']) {
|
|||
?><html>
|
||||
<head>
|
||||
<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 ?>" />
|
||||
<link rel="stylesheet" href="wp-admin.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="wp-favicon.png" />
|
||||
<style type="text/css" media="screen">
|
||||
form {
|
||||
padding: 3px;
|
||||
}
|
||||
.sidebar-categories {
|
||||
display: block;
|
||||
height: 6.6em;
|
||||
overflow: auto;
|
||||
background-color: #f4f4f4;
|
||||
}
|
||||
.sidebar-categories label {
|
||||
font-size: 10px;
|
||||
display: block;
|
||||
width: 90%;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
@ -55,8 +64,10 @@ form {
|
|||
<p>Title:
|
||||
<input type="text" name="post_title" size="20" tabindex="1" style="width: 100%;" />
|
||||
</p>
|
||||
<p class="sidebar-categories">Categories:
|
||||
<p>Categories:
|
||||
<span class="sidebar-categories">
|
||||
<?php dropdown_categories(); ?>
|
||||
</span>
|
||||
</p>
|
||||
<p>
|
||||
Post:
|
||||
|
|
Loading…
Reference in New Issue