From: River Tarnell Date: Sun, 24 Jul 2005 06:43:15 +0000 (+0000) Subject: add missing image X-Git-Tag: 1.5.0beta4~48 X-Git-Url: http://git.cyclocoop.org/%24self?a=commitdiff_plain;h=9f6c026c362731d6e6353713f384852cf83e12ea;p=lhc%2Fweb%2Fwiklou.git add missing image link decoration fixes --- diff --git a/skins/Simple.php b/skins/Simple.php index 7178e9230c..1726bdad80 100644 --- a/skins/Simple.php +++ b/skins/Simple.php @@ -25,6 +25,47 @@ class SkinSimple extends SkinTemplate { $this->stylename = 'simple'; $this->template = 'MonoBookTemplate'; } + + function reallyDoGetUserStyles() { + global $wgUser; + $s = ''; + $s .= "/* highlightbroken: " . $wgUser->getOption('highlightbroken') . " */\n"; + if (($undopt = $wgUser->getOption("underline")) != 2) { + $underline = $undopt ? 'underline' : 'none'; + $s .= "a { text-decoration: $underline; }\n"; + } + if (!$wgUser->getOption('highlightbroken')) { + $s .= "a.new, #quickbar a.new { text-decoration: line-through; }\n"; + } else { + $s .= <<getOption('justify')) { + $s .= "#article, #bodyContent { text-align: justify; }\n"; + } + if (!$wgUser->getOption('showtoc')) { + $s .= "#toc { display: none; }\n"; + } + if (!$wgUser->getOption('editsection')) { + $s .= ".editsection { display: none; }\n"; + } + return $s; + } } ?> diff --git a/skins/simple/external.png b/skins/simple/external.png new file mode 100644 index 0000000000..67f62092d1 Binary files /dev/null and b/skins/simple/external.png differ diff --git a/skins/simple/main.css b/skins/simple/main.css index c1d4fa185b..4a75d64efe 100644 --- a/skins/simple/main.css +++ b/skins/simple/main.css @@ -323,13 +323,14 @@ div.tleft { border-width: 0.5em 1.4em 0.8em 0; } -#p-cactions .new a { color:#ba0000; } a.stub { color: #772233; } a.new, -#p-personal a.new { color:#ba0000; } -a.new:visited, -#p-personal a.new:visited { color:#a55858; } - +#p-personal a.new { + text-decoration: line-through; +} +li.new { + text-decoration: line-through; +} p.catlinks { text-align: center; width: 80%; @@ -392,3 +393,9 @@ div.prefsectiontip { font-size: 95%; margin-top: 1em; } + +#mw_trackbacks { + border-style: groove; + padding: 0.2em; +} +