From: Aryeh Gregor Date: Fri, 20 Oct 2006 03:41:33 +0000 (+0000) Subject: * (bug 6276) Stopped search field from getting too large in Cologne Blue X-Git-Tag: 1.31.0-rc.0~55428 X-Git-Url: http://git.cyclocoop.org//%22%22.str_replace%28%27%22%27%2C?a=commitdiff_plain;h=7b830673d7a3aef5d255e386c31f5e62d65b5887;p=lhc%2Fweb%2Fwiklou.git * (bug 6276) Stopped search field from getting too large in Cologne Blue * Fixed duplicate name/id value of "search" in Cologne Blue --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index d53b085dcf..6f4bb528a4 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -61,6 +61,8 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * (bug 2241) Fix collision of 'w' and 'd' accesskeys * (bug 5795) CSS class added to body based on page name for page-specific styling +* (bug 6276) Stopped search field from getting too large in Cologne Blue +* Fixed duplicate name/id value of "search" in Cologne Blue == Languages updated == diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index da38277f3a..51c0cc13b3 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -1030,7 +1030,7 @@ $wgCacheEpoch = '20030516000000'; * to ensure that client-side caches don't keep obsolete copies of global * styles. */ -$wgStyleVersion = '16'; +$wgStyleVersion = '17'; # Server-side caching: diff --git a/skins/CologneBlue.php b/skins/CologneBlue.php index 56127065df..801f5ed63d 100644 --- a/skins/CologneBlue.php +++ b/skins/CologneBlue.php @@ -304,9 +304,9 @@ class SkinCologneBlue extends Skin { $s = "
"; if ( "" != $label ) { $s .= "{$label}: "; } - $s .= "" - . "
"; + . "
"; return $s; } diff --git a/skins/common/cologneblue.css b/skins/common/cologneblue.css index c71eb2daf6..b1a2991ec9 100644 --- a/skins/common/cologneblue.css +++ b/skins/common/cologneblue.css @@ -94,4 +94,5 @@ a.printable { text-decoration: underline; } a.stub, #quickbar a.stub { color:#772233; text-decoration:none; } a.new, #quickbar a.new { color: #CC2200; } h2, h3, h4, h5, h6 { margin-bottom: 0; } -small { font-size: 75%; } \ No newline at end of file +small { font-size: 75%; } +input#searchtext { width: 106px; } \ No newline at end of file