From 1656f5fba39a02f05212beda1f92ef47bbc8e178 Mon Sep 17 00:00:00 2001 From: Roan Kattouw Date: Tue, 20 Sep 2011 13:21:00 +0000 Subject: [PATCH] Reinstate IE*Fixes.css . This fixes most of the breakage from r74966, but there's one thing (icon placement) that's still broken in IE7 in RTL. Seems like it shouldn't be hard to fix though, I'll poke Trevor --- skins/MonoBook.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/skins/MonoBook.php b/skins/MonoBook.php index 055c4c2b13..1e7988c772 100644 --- a/skins/MonoBook.php +++ b/skins/MonoBook.php @@ -39,10 +39,10 @@ class SkinMonoBook extends SkinTemplate { } // TODO: Migrate all of these - //$out->addStyle( 'monobook/IE50Fixes.css', 'screen', 'lt IE 5.5000' ); - //$out->addStyle( 'monobook/IE55Fixes.css', 'screen', 'IE 5.5000' ); - //$out->addStyle( 'monobook/IE60Fixes.css', 'screen', 'IE 6' ); - //$out->addStyle( 'monobook/IE70Fixes.css', 'screen', 'IE 7' ); + $out->addStyle( 'monobook/IE50Fixes.css', 'screen', 'lt IE 5.5000' ); + $out->addStyle( 'monobook/IE55Fixes.css', 'screen', 'IE 5.5000' ); + $out->addStyle( 'monobook/IE60Fixes.css', 'screen', 'IE 6' ); + $out->addStyle( 'monobook/IE70Fixes.css', 'screen', 'IE 7' ); } } -- 2.20.1