Putting #mw_header in one line in Modern; this way, when you triple-click then copy...
[lhc/web/wiklou.git] / skins / Chick.php
1 <?php
2 /**
3 * See docs/skin.txt
4 *
5 * @todo document
6 * @file
7 * @ingroup Skins
8 */
9
10 if( !defined( 'MEDIAWIKI' ) )
11 die( -1 );
12
13 /** */
14 require_once( dirname(__FILE__) . '/MonoBook.php' );
15
16 /**
17 * @todo document
18 * @ingroup Skins
19 */
20 class SkinChick extends SkinTemplate {
21 function initPage( &$out ) {
22 SkinTemplate::initPage( $out );
23 $this->skinname = 'chick';
24 $this->stylename = 'chick';
25 $this->template = 'MonoBookTemplate';
26
27 // Append to the default screen common & print styles...
28 $this->addStyle( 'chick/main.css', 'screen,handheld' );
29 $this->addStyle( 'chick/IE50Fixes.css', 'screen,handheld', 'lt IE 5.5000' );
30 $this->addStyle( 'chick/IE55Fixes.css', 'screen,handheld', 'IE 5.5000' );
31 $this->addStyle( 'chick/IE60Fixes.css', 'screen,handheld', 'IE 6' );
32 }
33 }
34
35