diff options
author | Trevor Parscal <tparscal@users.mediawiki.org> | 2010-10-06 20:37:34 +0000 |
---|---|---|
committer | Trevor Parscal <tparscal@users.mediawiki.org> | 2010-10-06 20:37:34 +0000 |
commit | a5010f97d9735a5fdb6041402e32f44081b6922e (patch) | |
tree | c8fcdb7c4a87242d588e05661f50d1c5b357c0a1 /skins/common/IE80Fixes.css | |
parent | 7f8bbb54f35eeea83269a8ef1b5c3b47450e787b (diff) | |
download | mediawikicore-a5010f97d9735a5fdb6041402e32f44081b6922e.tar.gz mediawikicore-a5010f97d9735a5fdb6041402e32f44081b6922e.zip |
Removed CSS file/rule which was added to fix a bug it never actually fixed. More investigation needs to be put into bug #19334
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/74387
Diffstat (limited to 'skins/common/IE80Fixes.css')
-rw-r--r-- | skins/common/IE80Fixes.css | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/skins/common/IE80Fixes.css b/skins/common/IE80Fixes.css deleted file mode 100644 index b6360f60eb7f..000000000000 --- 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%; -} |