Make WordPress Core

Ticket #26348: 26348.2.patch

File 26348.2.patch, 1.7 KB (added by ocean90, 11 years ago)
  • src/wp-admin/css/ie.css

     
    508508        position: relative;
    509509}
    510510
     511input[type=password] {
     512        font-family: sans-serif;
     513}
     514
    511515/* IE6 leftovers */
    512516* html .row-actions {
    513517        visibility: visible;
  • src/wp-admin/css/wp-admin.css

     
    347347        display: none;
    348348}
    349349
     350.ie8 input[type=password] {
     351        font-family: sans-serif;
     352}
     353
    350354/* general */
    351355html,
    352356body {
  • src/wp-login.php

     
    5757                add_action( 'login_head', 'wp_shake_js', 12 );
    5858
    5959        ?><!DOCTYPE html>
    60         <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
     60        <!--[if IE 8]>
     61                <html xmlns="http://www.w3.org/1999/xhtml" class="ie8" <?php language_attributes(); ?>>
     62        <![endif]-->
     63        <!--[if !(IE 8) ]><!-->
     64                <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
     65        <!--<![endif]-->
    6166        <head>
    6267        <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
    6368        <title><?php bloginfo('name'); ?> &rsaquo; <?php echo $title; ?></title>
     
    6570
    6671        wp_admin_css( 'wp-admin', true );
    6772        wp_admin_css( 'colors-fresh', true );
     73        wp_admin_css( 'ie', true );
    6874
    6975        // Remove all stored post data on logging out.
    7076        // This could be added by add_action('login_head'...) like wp_shake_js()