From: Roan Kattouw Date: Tue, 20 Sep 2011 13:21:00 +0000 (+0000) Subject: Reinstate IE*Fixes.css . This fixes most of the breakage from r74966, but there's... X-Git-Tag: 1.31.0-rc.0~27534 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/exercices/journal.php?a=commitdiff_plain;h=1656f5fba39a02f05212beda1f92ef47bbc8e178;p=lhc%2Fweb%2Fwiklou.git 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 --- 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' ); } }