We don't need $skin as a local variable.
[lhc/web/wiklou.git] / skins / Chick.php
index c591a9f..b8b9f34 100644 (file)
@@ -21,10 +21,16 @@ class SkinChick extends SkinTemplate {
        var $skinname = 'chick', $stylename = 'chick',
        $template = 'MonoBookTemplate', $useHeadElement = true;
 
+       /**
+        * @param $out OutputPage
+        */
        function setupSkinUserCss( OutputPage $out ){
                parent::setupSkinUserCss( $out );
-               // Append to the default screen common & print styles...
-               $out->addStyle( 'chick/main.css', 'screen,handheld' );
+
+               $out->addModuleStyles( 'skins.chick' );
+
+               // TODO: Migrate all of these to RL
+               $out->addStyle( 'chick/IE50Fixes.css', 'screen,handheld', 'lt IE 5.5000' );
                $out->addStyle( 'chick/IE55Fixes.css', 'screen,handheld', 'IE 5.5000' );
                $out->addStyle( 'chick/IE60Fixes.css', 'screen,handheld', 'IE 6' );
        }