From: Aryeh Gregor Date: Wed, 24 Dec 2008 19:07:11 +0000 (+0000) Subject: Revert r44528 "(bug 1941) Add textarea { font-family: monospace; } to shared.css... X-Git-Tag: 1.31.0-rc.0~43790 X-Git-Url: http://git.cyclocoop.org/%40spipnet%40?a=commitdiff_plain;h=350df0e76e92c4d8b31e4c9eec42fe1a7568d5ff;p=lhc%2Fweb%2Fwiklou.git Revert r44528 "(bug 1941) Add textarea { font-family: monospace; } to shared.css for Safari" Demonstrable regression for Lingala, per , and plausibly for some other poorly-supported scripts as well. Also harmed some other things: * Can make it hard to work with multiple scripts generally, since unusual characters may fall back to proportional fonts for some characters. * It's much harder to tell apart some kinds of similar-looking characters like dashes and hyphens. Plus a lot of people think it's ugly. Browser consistency shouldn't be a goal here per se -- different browsers/platforms have different display conventions, and we should respect that where possible unless it causes demonstrable problems (which this hasn't AFAICT). --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 6a072ee0a4..286f29d0f8 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -428,9 +428,6 @@ The following extensions are migrated into MediaWiki 1.14: * (bug 5506) Links to files on foreign repositories are now shown consistently as bluelinks e.g. in logs and edit summaries * (bug 16623) Add missing

tag in Special:LockDB -* (bug 1941) Explicitly tell browsers to use a monospaced font for textareas. - Safari apparently defaults to a proportional font, which can make editing - pages with preformatted text difficult * (bug 15849) Special:Movepage now throws a more specific error when trying to move a title to an interwiki target * (bug 16638) 8-bit URL fallback encoding now set on additional languages using diff --git a/skins/common/shared.css b/skins/common/shared.css index 82532f340c..6be252dd79 100644 --- a/skins/common/shared.css +++ b/skins/common/shared.css @@ -9,9 +9,6 @@ img.tex { vertical-align: middle; } span.texhtml { font-family: serif; } -/* (bug 1941) Safari defaults to a proportional font for textareas */ -textarea { font-family: monospace; } - /* add a bit of margin space between the preview and the toolbar */ /* this replaces the ugly


we used to insert into the page source */ #wikiPreview.ontop { margin-bottom: 1em; }