Make WordPress Core

Changeset 703


Ignore:
Timestamp:
01/03/2004 05:12:32 AM (21 years ago)
Author:
michelvaldrighi
Message:

added fancy support for favicon in the admin area

Location:
trunk/wp-admin
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/admin-header.php

    r633 r703  
    5252<head>
    5353<title>WordPress &rsaquo; <?php bloginfo('name') ?> &rsaquo; <?php echo $title; ?></title>
    54 <link rel="stylesheet" href="wp-admin.css" type="text/css" />
     54<link rel="stylesheet" href="../wp-images/wp-admin.css" type="text/css" />
     55<link rel="shortcut icon" href="wp-favicon.png" />
    5556<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $admin_area_charset ?>" />
    5657<?php
  • trunk/wp-admin/bookmarklet.php

    r694 r703  
    6767<head>
    6868<title>WordPress > Bookmarklet</title>
     69<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $admin_area_charset ?>" />
    6970<link rel="stylesheet" href="wp-admin.css" type="text/css" />
    70 <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $admin_area_charset ?>" />
     71<link rel="shortcut icon" href="wp-favicon.png" />
    7172<script type="text/javascript" language="javascript">
    7273<!--
  • trunk/wp-admin/sidebar.php

    r698 r703  
    3636<head>
    3737<title>WordPress > Sidebar</title>
    38 <link rel="stylesheet" href="wp-admin.css" type="text/css">
    3938<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $admin_area_charset ?>" />
     39<link rel="stylesheet" href="wp-admin.css" type="text/css" />
     40<link rel="shortcut icon" href="wp-favicon.png" />
    4041<style type="text/css" media="screen">
    4142form {
    4243    padding: 3px;
    4344}
     45.sidebar-categories {
     46    display: block;
     47    height: 6.6em;
     48    overflow: auto;
     49    background-color: #f4f4f4;
     50}
    4451.sidebar-categories label {
    4552    font-size: 10px;
     53    display: block;
     54    width: 90%;
    4655}
    4756</style>
     
    5665<input type="text" name="post_title" size="20" tabindex="1" style="width: 100%;" />
    5766</p>
    58 <p class="sidebar-categories">Categories:
     67<p>Categories:
     68<span class="sidebar-categories">
    5969<?php dropdown_categories(); ?>
     70</span>
    6071</p>
    6172<p>
Note: See TracChangeset for help on using the changeset viewer.