wiki.techinc.nl/skins/Simple.php
Derk-Jan Hartman 27680a2d84 Finish porting the Simple skin to resourceloader.
* quickbar CSS removed, since simple doesn't even have #quickbar.
* default of line-trough removed, since this is already present in the skin CSS.
Fixes part of bug 26649
2011-01-22 21:16:34 +00:00

51 lines
1.3 KiB
PHP

<?php
/**
* Simple: A lightweight skin with a simple white-background sidebar and no
* top bar.
*
* @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 SkinSimple extends SkinTemplate {
var $skinname = 'simple', $stylename = 'simple',
$template = 'MonoBookTemplate', $useHeadElement = true;
function setupSkinUserCss( OutputPage $out ) {
parent::setupSkinUserCss( $out );
$out->addModuleStyles( 'skins.simple' );
/* Add some userprefs specific CSS styling */
global $wgUser, $wgContLang;
$rules = array();
$underline = "";
if ( $wgUser->getOption( 'underline' ) < 2 ) {
$underline = "text-decoration: " . $wgUser->getOption( 'underline' ) ? 'underline' : 'none' . ";";
}
/* Also inherits from resourceloader */
if( !$wgUser->getOption( 'highlightbroken' ) ) {
$rules[] = "a.new, a.stub { color: inherit; text-decoration: inherit;}";
$rules[] = "a.new:after { color: #CC2200; $underline;}";
$rules[] = "a.stub:after { $underline; }";
}
$style = implode( "\n", $rules );
if ( $wgContLang->getDir() === 'rtl' ) {
$style = CSSJanus::transform( $style, true, false );
}
$out->addInlineStyle( $style );
}
}