Merge "(bug 26909) follow up r102947: fix the navigation with 'dir' and 'continue...
[lhc/web/wiklou.git] / skins / Simple.php
index c0777d4..0e1668b 100644 (file)
@@ -33,18 +33,11 @@ class SkinSimple extends SkinTemplate {
                $rules = array();
                $underline = "";
 
-               if ( $this->getSkin()->getUser()->getOption( 'underline' ) < 2 ) {
-                       $underline = "text-decoration: " . $this->getSkin()->getUser()->getOption( 'underline' ) ? 'underline !important' : 'none' . ";";
-               }
-
-               /* Also inherits from resourceloader */
-               if( !$this->getSkin()->getUser()->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 );
-               $out->addInlineStyle( $style, /* flip css if RTL */true );
+               $out->addInlineStyle( $style, 'flip' );
 
        }
 }