From 7b830673d7a3aef5d255e386c31f5e62d65b5887 Mon Sep 17 00:00:00 2001 From: Aryeh Gregor Date: Fri, 20 Oct 2006 03:41:33 +0000 Subject: [PATCH] * (bug 6276) Stopped search field from getting too large in Cologne Blue * Fixed duplicate name/id value of "search" in Cologne Blue --- RELEASE-NOTES | 2 ++ includes/DefaultSettings.php | 2 +- skins/CologneBlue.php | 4 ++-- skins/common/cologneblue.css | 3 ++- 4 files changed, 7 insertions(+), 4 deletions(-) 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 -- 2.20.1