From 44bb42ae0647fec85a98ea995d2eefb543243ab8 Mon Sep 17 00:00:00 2001 From: Gabriel Wicke Date: Thu, 29 Apr 2004 10:21:32 +0000 Subject: [PATCH] some IE6 textarea tweaks --- includes/EditPage.php | 6 +++--- includes/OutputPage.php | 4 ++-- includes/RawPage.php | 2 -- stylesheets/monobook/IE60Fixes.css | 3 ++- stylesheets/monobook/rtl.css | 1 + 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/includes/EditPage.php b/includes/EditPage.php index 7a1b6fd96c..a511cd529c 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -359,7 +359,7 @@ class EditPage {
{$commentsubject} -
" ); +
" ); } $wgOut->addHTML( "
\n" ); if($formtype =="preview" && !$wgUser->getOption("previewontop")) { diff --git a/includes/OutputPage.php b/includes/OutputPage.php index 1e0e423384..694f34d21e 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -536,8 +536,8 @@ class OutputPage { if($source) { $rows = $wgUser->getOption( "rows" ); $cols = $wgUser->getOption( "cols" ); - $text = "

\n"; + $text = "

\n
"; $this->addHTML( $text ); } diff --git a/includes/RawPage.php b/includes/RawPage.php index 4c2d03a038..b218612a96 100644 --- a/includes/RawPage.php +++ b/includes/RawPage.php @@ -30,8 +30,6 @@ class RawPage { echo $this->getrawtext(); wfAbruptExit(); } - - function getrawtext () { global $wgInputEncoding, $wgLang; diff --git a/stylesheets/monobook/IE60Fixes.css b/stylesheets/monobook/IE60Fixes.css index d99c295e92..c31f32c009 100644 --- a/stylesheets/monobook/IE60Fixes.css +++ b/stylesheets/monobook/IE60Fixes.css @@ -61,8 +61,9 @@ textarea { don't ask why..*/ margin-left: -12.2em; } -#tawrapper { +div.tawrapper { width: 100%; + text-align: left; overflow: hidden; } .special li { diff --git a/stylesheets/monobook/rtl.css b/stylesheets/monobook/rtl.css index ced3bb1ad7..f726e470e5 100644 --- a/stylesheets/monobook/rtl.css +++ b/stylesheets/monobook/rtl.css @@ -176,6 +176,7 @@ li#personaltools-login { /* IE 6 fix fixes, hide from everything else */ i {content: "\"/*" } * html textarea { + text-align: right; margin-right: -12.2em; margin-left: 0; } -- 2.20.1