00001 <?php
00010 if( !defined( 'MEDIAWIKI' ) )
00011 die( -1 );
00012
00014 require_once( dirname(__FILE__) . '/MonoBook.php' );
00015
00020 class SkinChick extends SkinTemplate {
00021 function initPage( OutputPage $out ) {
00022 SkinTemplate::initPage( $out );
00023 $this->skinname = 'chick';
00024 $this->stylename = 'chick';
00025 $this->template = 'MonoBookTemplate';
00026 }
00027
00028 function setupSkinUserCss( OutputPage $out ){
00029 parent::setupSkinUserCss( $out );
00030
00031 $out->addStyle( 'chick/main.css', 'screen,handheld' );
00032 $out->addStyle( 'chick/IE50Fixes.css', 'screen,handheld', 'lt IE 5.5000' );
00033 $out->addStyle( 'chick/IE55Fixes.css', 'screen,handheld', 'IE 5.5000' );
00034 $out->addStyle( 'chick/IE60Fixes.css', 'screen,handheld', 'IE 6' );
00035 }
00036 }
00037
00038