From: Trevor Parscal Date: Tue, 12 Oct 2010 21:28:17 +0000 (+0000) Subject: Finished what r67300 started, by using #ba0000 as the broken "red" link color. X-Git-Tag: 1.31.0-rc.0~34528 X-Git-Url: https://git.cyclocoop.org/%28%28?a=commitdiff_plain;h=2b6e946799f9a72cc0fc065697bd5afb57af9263;p=lhc%2Fweb%2Fwiklou.git Finished what r67300 started, by using #ba0000 as the broken "red" link color. --- diff --git a/includes/ResourceLoaderModule.php b/includes/ResourceLoaderModule.php index 4faadf8099..5e822b5714 100644 --- a/includes/ResourceLoaderModule.php +++ b/includes/ResourceLoaderModule.php @@ -949,10 +949,10 @@ class ResourceLoaderUserOptionsModule extends ResourceLoaderModule { $rules[] = "a { text-decoration: " . ( $options['underline'] ? 'underline' : 'none' ) . "; }"; } if ( $options['highlightbroken'] ) { - $rules[] = "a.new, #quickbar a.new { color: #CC2200; }\n"; + $rules[] = "a.new, #quickbar a.new { color: #ba0000; }\n"; } else { $rules[] = "a.new, #quickbar a.new, a.stub, #quickbar a.stub { color: inherit; }"; - $rules[] = "a.new:after, #quickbar a.new:after { content: '?'; color: #CC2200; }"; + $rules[] = "a.new:after, #quickbar a.new:after { content: '?'; color: #ba0000; }"; $rules[] = "a.stub:after, #quickbar a.stub:after { content: '!'; color: #772233; }"; } if ( $options['justify'] ) {