Work around a bizarre interpretation of standards by Mozilla (https://bugzilla.mozill...
authorAryeh Gregor <simetrical@users.mediawiki.org>
Fri, 5 Jan 2007 17:34:35 +0000 (17:34 +0000)
committerAryeh Gregor <simetrical@users.mediawiki.org>
Fri, 5 Jan 2007 17:34:35 +0000 (17:34 +0000)
RELEASE-NOTES
includes/Skin.php

index d3b97d0..c2cca1a 100644 (file)
@@ -462,6 +462,8 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
 * (bug 8330) Show "bytes" suffix on recent changes diff counter
 * (bug 8489) Support basic links in <gallery> caption attribute
 * (bug 8485) Correct Lingala number formatting
+* When links are underlined, the entire link text should be underlined, even
+  if it contains elements with a background color set.
 
 == Languages updated ==
 
index 662e229..2eef17e 100644 (file)
@@ -460,7 +460,7 @@ var wgAjaxWatch = {
                $s = '';
                if (($undopt = $wgUser->getOption("underline")) != 2) {
                        $underline = $undopt ? 'underline' : 'none';
-                       $s .= "a { text-decoration: $underline; }\n";
+                       $s .= "a, a * { text-decoration: $underline; }\n";
                }
                if( $wgUser->getOption( 'highlightbroken' ) ) {
                        $s .= "a.new, #quickbar a.new { color: #CC2200; }\n";