From fc08cfc46f08d9f406d024864af4127d5fa33e65 Mon Sep 17 00:00:00 2001 From: Nick Jenkins Date: Wed, 11 Oct 2006 06:58:36 +0000 Subject: [PATCH] (bug 7139) Increasing the visual width of the edit summary field on larger screen sizes, for the default monobook skin. Using 80% via CSS, so should fall back to the current hard-coded 60 character width for older web clients that don't support CSS. --- RELEASE-NOTES | 3 +++ skins/monobook/main.css | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 5398b698eb..a0e109b33f 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -28,6 +28,9 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * (bug 6835) Removing the includes/Parser.php::getTemplateArgs() function, because it seems to be unused. +* (bug 7139) Increasing the visual width of the edit summary field on larger + screen sizes, for the default monobook skin. + == Languages updated == diff --git a/skins/monobook/main.css b/skins/monobook/main.css index 95b4c7353a..354ef08f3d 100644 --- a/skins/monobook/main.css +++ b/skins/monobook/main.css @@ -1350,6 +1350,10 @@ ul#filetoc { padding-right: 2em; } +input#wpSummary { + width: 80%; +} + /* @bug 1714 */ input#wpSave, input#wpDiff { margin-right: 0.33em; -- 2.20.1