Fix Bug #31547 - Category links need less spacing and better wrapping
[lhc/web/wiklou.git] / skins / Chick.php
index f3e06f3..2362263 100644 (file)
@@ -1,32 +1,35 @@
 <?php
 /**
- * See skin.doc
+ * Chick: A lightweight Monobook skin with no sidebar, the sidebar links are
+ * given at the bottom of the page instead, as in the unstyled MySkin.
  *
- * @todo document
- * @package MediaWiki
- * @subpackage Skins
+ * @file
+ * @ingroup Skins
  */
 
+if( !defined( 'MEDIAWIKI' ) )
+       die( -1 );
+
 /** */
-if ($wgUsePHPTal) {
-require_once('includes/SkinPHPTal.php');
+require_once( dirname(__FILE__) . '/MonoBook.php' );
 
 /**
- * See skin.doc
- *
- * @todo document
- * @package MediaWiki
- * @subpackage Skins
+ * Inherit main code from SkinTemplate, set the CSS and template filter.
+ * @ingroup Skins
  */
-class SkinChick extends SkinPHPTal {
-       function initPage( &$out ) {
-               SkinPHPTal::initPage( $out );
-               $this->skinname = 'chick';
-               $this->template = 'Chick';
-       }
-       function suppressUrlExpansion() { return true; }
-       function printSource() { return ''; }
-}
+class SkinChick extends SkinTemplate {
+       var $skinname = 'chick', $stylename = 'chick',
+       $template = 'MonoBookTemplate', $useHeadElement = true;
 
+       /**
+        * @param $out OutputPage
+        */
+       function setupSkinUserCss( OutputPage $out ){
+               parent::setupSkinUserCss( $out );
+
+               $out->addModuleStyles( 'skins.chick' );
+
+               // TODO: Migrate all of these to RL
+               $out->addStyle( 'chick/IE60Fixes.css', 'screen,handheld', 'IE 6' );
+       }
 }
-?>