Ticket #26348: 26348.3.patch
File 26348.3.patch, 1.8 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 .login form .input { 513 font-family: sans-serif; 514 } 515 511 516 /* IE6 leftovers */ 512 517 * html .row-actions { 513 518 visibility: visible; -
src/wp-admin/css/wp-admin.css
347 347 display: none; 348 348 } 349 349 350 .ie8 input[type="password"], 351 .ie8 .login form .input { 352 font-family: sans-serif; 353 } 354 350 355 /* general */ 351 356 html, 352 357 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()