Ticket #26348: 26348.2.patch
File 26348.2.patch, 1.7 KB (added by , 11 years ago) |
---|
-
src/wp-admin/css/ie.css
508 508 position: relative; 509 509 } 510 510 511 input[type=password] { 512 font-family: sans-serif; 513 } 514 511 515 /* IE6 leftovers */ 512 516 * html .row-actions { 513 517 visibility: visible; -
src/wp-admin/css/wp-admin.css
347 347 display: none; 348 348 } 349 349 350 .ie8 input[type=password] { 351 font-family: sans-serif; 352 } 353 350 354 /* general */ 351 355 html, 352 356 body { -
src/wp-login.php
57 57 add_action( 'login_head', 'wp_shake_js', 12 ); 58 58 59 59 ?><!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]--> 61 66 <head> 62 67 <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> 63 68 <title><?php bloginfo('name'); ?> › <?php echo $title; ?></title> … … 65 70 66 71 wp_admin_css( 'wp-admin', true ); 67 72 wp_admin_css( 'colors-fresh', true ); 73 wp_admin_css( 'ie', true ); 68 74 69 75 // Remove all stored post data on logging out. 70 76 // This could be added by add_action('login_head'...) like wp_shake_js()