Merge "(bug 26909) follow up r102947: fix the navigation with 'dir' and 'continue...
[lhc/web/wiklou.git] / skins / Simple.php
index 87bb0b7..0e1668b 100644 (file)
@@ -21,31 +21,23 @@ class SkinSimple extends SkinTemplate {
        var $skinname = 'simple', $stylename = 'simple',
                $template = 'MonoBookTemplate', $useHeadElement = true;
 
+       /**
+        * @param $out OutputPage
+        */
        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; }";
+               if ( $this->getUser()->getOption( 'underline' ) < 2 ) {
+                       $underline = "text-decoration: " . $this->getUser()->getOption( 'underline' ) ? 'underline !important' : 'none' . ";";
                }
                $style = implode( "\n", $rules );
-               if ( $wgContLang->getDir() === 'rtl' ) {
-                       $style = CSSJanus::transform( $style, true, false );
-               }
-               $out->addInlineStyle( $style );
+               $out->addInlineStyle( $style, 'flip' );
 
        }
 }