summaryrefslogtreecommitdiffstats
path: root/skins/Chick.php
diff options
context:
space:
mode:
Diffstat (limited to 'skins/Chick.php')
-rw-r--r--skins/Chick.php32
1 files changed, 32 insertions, 0 deletions
diff --git a/skins/Chick.php b/skins/Chick.php
new file mode 100644
index 0000000..c8eb815
--- /dev/null
+++ b/skins/Chick.php
@@ -0,0 +1,32 @@
+<?php
+/**
+ * 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.
+ *
+ * @file
+ * @ingroup Skins
+ */
+
+if( !defined( 'MEDIAWIKI' ) )
+ die( -1 );
+
+/** */
+require_once( dirname(__FILE__) . '/MonoBook.php' );
+
+/**
+ * Inherit main code from SkinTemplate, set the CSS and template filter.
+ * @ingroup Skins
+ */
+class SkinChick extends SkinTemplate {
+ var $skinname = 'chick', $stylename = 'chick',
+ $template = 'MonoBookTemplate', $useHeadElement = true;
+
+ function setupSkinUserCss( OutputPage $out ){
+ parent::setupSkinUserCss( $out );
+ // Append to the default screen common & print styles...
+ $out->addStyle( 'chick/main.css', 'screen,handheld' );
+ $out->addStyle( 'chick/IE50Fixes.css', 'screen,handheld', 'lt IE 5.5000' );
+ $out->addStyle( 'chick/IE55Fixes.css', 'screen,handheld', 'IE 5.5000' );
+ $out->addStyle( 'chick/IE60Fixes.css', 'screen,handheld', 'IE 6' );
+ }
+}