From 2b6e946799f9a72cc0fc065697bd5afb57af9263 Mon Sep 17 00:00:00 2001 From: Trevor Parscal Date: Tue, 12 Oct 2010 21:28:17 +0000 Subject: [PATCH] Finished what r67300 started, by using #ba0000 as the broken "red" link color. --- includes/ResourceLoaderModule.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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'] ) { -- 2.20.1