r66608 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r66607‎ | r66608 | r66609 >
Date:13:01, 18 May 2010
Author:happy-melon
Status:reverted
Tags:
Comment:
Follow up r63707: update the default link colour in all skins to match what's actually been displayed to everyone since forever.
Modified paths:
  • /trunk/phase3/includes/Skin.php (modified) (history)
  • /trunk/phase3/skins/chick/main.css (modified) (history)
  • /trunk/phase3/skins/common/commonPrint.css (modified) (history)
  • /trunk/phase3/skins/modern/main.css (modified) (history)
  • /trunk/phase3/skins/monobook/main.css (modified) (history)
  • /trunk/phase3/skins/vector/main-ltr.css (modified) (history)
  • /trunk/phase3/skins/vector/main-rtl.css (modified) (history)

Diff [purge]

Index: trunk/phase3/skins/chick/main.css
@@ -19,7 +19,7 @@
2020 a:active { color: #ffa500; }
2121 a.stub { color: #772233; }
2222 a.new,
23 -#p-personal a.new { color:#ba0000; }
 23+#p-personal a.new { color:#CC2200; }
2424 a.new:visited,
2525 #p-personal a.new:visited { color:#a55858; }
2626
Index: trunk/phase3/skins/monobook/main.css
@@ -829,7 +829,7 @@
830830 background-color: white;
831831 }
832832 #p-cactions .new a {
833 - color: #ba0000;
 833+ color: #CC2200;
834834 }
835835 #p-cactions li a:hover {
836836 z-index: 3;
Index: trunk/phase3/skins/modern/main.css
@@ -318,7 +318,7 @@
319319 color: #772233;
320320 }
321321 a.new {
322 - color: #ba0000;
 322+ color: #CC2200;
323323 }
324324 a.new:visited {
325325 color: #a55858;
Index: trunk/phase3/skins/common/commonPrint.css
@@ -9,7 +9,7 @@
1010 /* Thanks to A List Apart (http://alistapart.com/) for useful extras */
1111 a.stub,
1212 a.new {
13 - color: #ba0000;
 13+ color: #CC2200;
1414 text-decoration: none;
1515 }
1616
Index: trunk/phase3/skins/vector/main-ltr.css
@@ -639,7 +639,7 @@
640640 color: #772233;
641641 }
642642 a.new, #p-personal a.new {
643 - color: #ba0000;
 643+ color: #CC2200;
644644 }
645645 a.new:visited, #p-personal a.new:visited {
646646 color: #a55858;
Index: trunk/phase3/skins/vector/main-rtl.css
@@ -639,7 +639,7 @@
640640 color: #772233;
641641 }
642642 a.new, #p-personal a.new {
643 - color: #ba0000;
 643+ color: #CC2200;
644644 }
645645 a.new:visited, #p-personal a.new:visited {
646646 color: #a55858;
Index: trunk/phase3/includes/Skin.php
@@ -557,9 +557,7 @@
558558 $underline = $undopt ? 'underline' : 'none';
559559 $s .= "a { text-decoration: $underline; }\n";
560560 }
561 - if( $wgUser->getOption( 'highlightbroken' ) ) {
562 - $s .= "a.new, #quickbar a.new { color: #CC2200; }\n";
563 - } else {
 561+ if( !$wgUser->getOption( 'highlightbroken' ) ) {
564562 $s .= <<<CSS
565563 a.new, #quickbar a.new,
566564 a.stub, #quickbar a.stub {

Follow-up revisions

RevisionCommit summaryAuthorDate
r67300Revert r66608: This goes against an intentional design decision. To discuss t...tparscal21:42, 3 June 2010

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r63707Add $wgAllowUserCssPrefs option to disable CSS-based preferences. These are ...happy-melon20:46, 13 March 2010

Status & tagging log