Reverting r91756 per CR and bug 26470
[lhc/web/wiklou.git] / skins / Simple.php
1 <?php
2 /**
3 * Simple: A lightweight skin with a simple white-background sidebar and no
4 * top bar.
5 *
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 * Inherit main code from SkinTemplate, set the CSS and template filter.
18 * @ingroup Skins
19 */
20 class SkinSimple extends SkinTemplate {
21 var $skinname = 'simple', $stylename = 'simple',
22 $template = 'MonoBookTemplate', $useHeadElement = true;
23
24 /**
25 * @param $out OutputPage
26 */
27 function setupSkinUserCss( OutputPage $out ) {
28 parent::setupSkinUserCss( $out );
29
30 $out->addModuleStyles( 'skins.simple' );
31
32 /* Add some userprefs specific CSS styling */
33 global $wgUser, $wgContLang;
34 $rules = array();
35 $underline = "";
36
37 if ( $wgUser->getOption( 'underline' ) < 2 ) {
38 $underline = "text-decoration: " . $wgUser->getOption( 'underline' ) ? 'underline' : 'none' . ";";
39 }
40
41 /* Also inherits from resourceloader */
42 if( !$wgUser->getOption( 'highlightbroken' ) ) {
43 $rules[] = "a.new, a.stub { color: inherit; text-decoration: inherit;}";
44 $rules[] = "a.new:after { color: #CC2200; $underline;}";
45 $rules[] = "a.stub:after { $underline; }";
46 }
47 $style = implode( "\n", $rules );
48 if ( $wgContLang->getDir() === 'rtl' ) {
49 $style = CSSJanus::transform( $style, true, false );
50 }
51 $out->addInlineStyle( $style );
52
53 }
54 }