Index: trunk/phase3/skins/chick/main.css |
— | — | @@ -19,7 +19,7 @@ |
20 | 20 | a:active { color: #ffa500; } |
21 | 21 | a.stub { color: #772233; } |
22 | 22 | a.new, |
23 | | -#p-personal a.new { color:#ba0000; } |
| 23 | +#p-personal a.new { color:#CC2200; } |
24 | 24 | a.new:visited, |
25 | 25 | #p-personal a.new:visited { color:#a55858; } |
26 | 26 | |
Index: trunk/phase3/skins/monobook/main.css |
— | — | @@ -829,7 +829,7 @@ |
830 | 830 | background-color: white; |
831 | 831 | } |
832 | 832 | #p-cactions .new a { |
833 | | - color: #ba0000; |
| 833 | + color: #CC2200; |
834 | 834 | } |
835 | 835 | #p-cactions li a:hover { |
836 | 836 | z-index: 3; |
Index: trunk/phase3/skins/modern/main.css |
— | — | @@ -318,7 +318,7 @@ |
319 | 319 | color: #772233; |
320 | 320 | } |
321 | 321 | a.new { |
322 | | - color: #ba0000; |
| 322 | + color: #CC2200; |
323 | 323 | } |
324 | 324 | a.new:visited { |
325 | 325 | color: #a55858; |
Index: trunk/phase3/skins/common/commonPrint.css |
— | — | @@ -9,7 +9,7 @@ |
10 | 10 | /* Thanks to A List Apart (http://alistapart.com/) for useful extras */ |
11 | 11 | a.stub, |
12 | 12 | a.new { |
13 | | - color: #ba0000; |
| 13 | + color: #CC2200; |
14 | 14 | text-decoration: none; |
15 | 15 | } |
16 | 16 | |
Index: trunk/phase3/skins/vector/main-ltr.css |
— | — | @@ -639,7 +639,7 @@ |
640 | 640 | color: #772233; |
641 | 641 | } |
642 | 642 | a.new, #p-personal a.new { |
643 | | - color: #ba0000; |
| 643 | + color: #CC2200; |
644 | 644 | } |
645 | 645 | a.new:visited, #p-personal a.new:visited { |
646 | 646 | color: #a55858; |
Index: trunk/phase3/skins/vector/main-rtl.css |
— | — | @@ -639,7 +639,7 @@ |
640 | 640 | color: #772233; |
641 | 641 | } |
642 | 642 | a.new, #p-personal a.new { |
643 | | - color: #ba0000; |
| 643 | + color: #CC2200; |
644 | 644 | } |
645 | 645 | a.new:visited, #p-personal a.new:visited { |
646 | 646 | color: #a55858; |
Index: trunk/phase3/includes/Skin.php |
— | — | @@ -557,9 +557,7 @@ |
558 | 558 | $underline = $undopt ? 'underline' : 'none'; |
559 | 559 | $s .= "a { text-decoration: $underline; }\n"; |
560 | 560 | } |
561 | | - if( $wgUser->getOption( 'highlightbroken' ) ) { |
562 | | - $s .= "a.new, #quickbar a.new { color: #CC2200; }\n"; |
563 | | - } else { |
| 561 | + if( !$wgUser->getOption( 'highlightbroken' ) ) { |
564 | 562 | $s .= <<<CSS |
565 | 563 | a.new, #quickbar a.new, |
566 | 564 | a.stub, #quickbar a.stub { |