Broken admin menu
-
wp-admin classic 1.0 loads
ie-classicstylesheet unconditionally for all browsers, which leads to a broken admin menu: http://cl.ly/image/3G3A3V1t1H20.The solution is to load it conditionally for IE7, like WordPress core does:
http://core.trac.wordpress.org/browser/tags/3.8/src/wp-includes/script-loader.php#L556Add this line to the end of
wpadmin_classic()function:$GLOBALS['wp_styles']->add_data( 'ie-classic', 'conditional', 'lte IE 7' );That fixes it: http://cl.ly/image/253o2k0G0h17.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
The topic ‘Broken admin menu’ is closed to new replies.