Make WordPress Core

Ticket #5626: 5626.2.diff

File 5626.2.diff, 2.8 KB (added by DD32, 17 years ago)

oops, Added the wrong file.. uses px instead of em.

  • wp-admin/admin-footer.php

     
    1 
     1</div><!-- wpcontent -->
     2</div><!-- wpwrap -->
    23<div id="footer">
    34<p><?php
    4 
     5do_action('in_admin_footer', '');
    56$upgrade = apply_filters( 'update_footer', '' );
    67echo __('Thank you for creating with <a href="http://wordpress.org/">WordPress</a>').' | '.__('<a href="http://codex.wordpress.org/">Documentation</a>').' | '.__('<a href="http://wordpress.org/support/forum/4">Feedback</a>').' '.$upgrade;
    7 
    88?></p>
    99</div>
    1010<?php do_action('admin_footer', ''); ?>
  • wp-admin/admin-header.php

     
    3838?>
    3939</head>
    4040<body class="wp-admin <?php echo apply_filters( 'admin_body_class', '' ); ?>">
     41<div id="wpwrap">
     42<div id="wpcontent">
    4143<div id="wphead">
    4244<h1><?php bloginfo('name'); ?> <span id="viewsite"><a href="<?php echo get_option('home') . '/'; ?>"><?php _e('Visit Site') ?></a></span></h1>
    4345</div>
     
    4951if ( $parent_file == 'options-general.php' ) {
    5052        require(ABSPATH . 'wp-admin/options-head.php');
    5153}
    52 ?>
     54?>
     55 No newline at end of file
  • wp-admin/includes/template.php

     
    628628function browse_happy() {
    629629        $getit = __( 'WordPress recommends a better browser' );
    630630        echo '
    631                 <p id="bh" style="text-align: center;"><a href="http://browsehappy.com/" title="'.$getit.'"><img src="images/browse-happy.gif" alt="Browse Happy" /></a></p>
     631                <p id="bh" style="float: right"><a href="http://browsehappy.com/" title="'.$getit.'"><img src="images/browse-happy.gif" alt="Browse Happy" /></a></p>
    632632                ';
    633633}
    634634
    635635if (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false)
    636         add_action( 'admin_footer', 'browse_happy' );
     636        add_action( 'in_admin_footer', 'browse_happy' );
    637637
    638638function the_attachment_links( $id = false ) {
    639639        $id = (int) $id;
  • wp-admin/wp-admin.css

     
    10191019
    10201020/* Admin Footer */
    10211021
     1022html, body {
     1023        height:100%;
     1024}
     1025#wpwrap {
     1026        position: relative;
     1027        min-height: 100%;
     1028}
     1029#wpcontent{
     1030        padding-bottom: 65px;
     1031}
    10221032#footer {
    10231033        clear: both;
    10241034        height: 65px;
     
    10261036        margin: 0;
    10271037        background: #464646 url('images/logo-ghost.png') no-repeat 20px 10px;
    10281038        color: #999;
     1039        position: relative;
     1040        margin-top: -75px;
    10291041}
    10301042
    10311043#footer a {