Load messages in a less shitty and more consistent manner for extensions. Previously...
[lhc/web/wiklou.git] / skins / Chick.php
index 9721900..1ad6c7e 100644 (file)
@@ -1,9 +1,10 @@
 <?php
 /**
- * See skin.txt
+ * See docs/skin.txt
  *
  * @todo document
- * @addtogroup Skins
+ * @file
+ * @ingroup Skins
  */
 
 if( !defined( 'MEDIAWIKI' ) )
@@ -14,7 +15,7 @@ require_once( dirname(__FILE__) . '/MonoBook.php' );
 
 /**
  * @todo document
- * @addtogroup Skins
+ * @ingroup Skins
  */
 class SkinChick extends SkinTemplate {
        function initPage( &$out ) {
@@ -22,7 +23,13 @@ class SkinChick extends SkinTemplate {
                $this->skinname  = 'chick';
                $this->stylename = 'chick';
                $this->template  = 'MonoBookTemplate';
+
+               // Append to the default screen common & print styles...
+               $this->addStyle( 'chick/main.css', 'screen,handheld' );
+               $this->addStyle( 'chick/IE50Fixes.css', 'screen,handheld', 'lt IE 5.5000' );
+               $this->addStyle( 'chick/IE55Fixes.css', 'screen,handheld', 'IE 5.5000' );
+               $this->addStyle( 'chick/IE60Fixes.css', 'screen,handheld', 'IE 6' );
        }
 }
 
-?>
+