summaryrefslogtreecommitdiff
path: root/skins/Simple.php
blob: 87bb0b7ec867fa0b263a66429ef28eb56ec52da9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?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 );

	}
}