From a5010f97d9735a5fdb6041402e32f44081b6922e Mon Sep 17 00:00:00 2001 From: Trevor Parscal Date: Wed, 6 Oct 2010 20:37:34 +0000 Subject: [PATCH] Removed CSS file/rule which was added to fix a bug it never actually fixed. More investigation needs to be put into bug #19334 --- includes/EditPage.php | 2 -- skins/common/IE80Fixes.css | 15 --------------- 2 files changed, 17 deletions(-) delete mode 100644 skins/common/IE80Fixes.css diff --git a/includes/EditPage.php b/includes/EditPage.php index fac405f09e..929004f812 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -324,8 +324,6 @@ class EditPage { $wgOut->includeJQuery(); $wgOut->addModules( 'mediawiki.legacy.preview' ); } - // Bug #19334: textarea jumps when editing articles in IE8 - $wgOut->addStyle( 'common/IE80Fixes.css', 'screen', 'IE 8' ); $permErrors = $this->getEditPermissionErrors(); if ( $permErrors ) { diff --git a/skins/common/IE80Fixes.css b/skins/common/IE80Fixes.css deleted file mode 100644 index b6360f60eb..0000000000 --- a/skins/common/IE80Fixes.css +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Fixes textarea scrolling bug (bug #19334). The bug only occurs when a - * percentage width is given, so instead of width: 100%, use min-width: 100%; - * max-width: 100%. We also need to give a fixed width for the actual width - * property for the hack to work, although the actual value (500px here) ends - * up being ignored; min/max-width take precedence. - * - * More info: http://grantovich.net/posts/2009/06/that-weird-ie8-textarea-bug/ - */ -#wpTextbox1 { - height: 390px; - width: 500px; - min-width: 100%; - max-width: 100%; -} -- 2.20.1