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