10 if( !defined( 'MEDIAWIKI' ) )
14 require_once( dirname(__FILE__
) . '/MonoBook.php' );
20 class SkinChick
extends SkinTemplate
{
21 function initPage( OutputPage
$out ) {
22 SkinTemplate
::initPage( $out );
23 $this->skinname
= 'chick';
24 $this->stylename
= 'chick';
25 $this->template
= 'MonoBookTemplate';
28 function setupSkinUserCss( OutputPage
$out ){
29 parent
::setupSkinUserCss( $out );
30 // Append to the default screen common & print styles...
31 $out->addStyle( 'chick/main.css', 'screen,handheld' );
32 $out->addStyle( 'chick/IE50Fixes.css', 'screen,handheld', 'lt IE 5.5000' );
33 $out->addStyle( 'chick/IE55Fixes.css', 'screen,handheld', 'IE 5.5000' );
34 $out->addStyle( 'chick/IE60Fixes.css', 'screen,handheld', 'IE 6' );