From d59482366ad7c727dd5519b5acc898dd495473ba Mon Sep 17 00:00:00 2001 From: Raimon Date: Sun, 19 Jun 2011 16:40:25 +0200 Subject: [PATCH] [ticket/10233] IE Emulation fix breaks PM posting layout The minimum and maximum width of 100% make the textarea dynamically adjust. However the smilies next to the textarea will float out of their containing div when the default width pre-min/max is specified as a too high value. PHPBB3-10233 --- phpBB/styles/prosilver/theme/forms.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/styles/prosilver/theme/forms.css b/phpBB/styles/prosilver/theme/forms.css index 3f85aa3099..803c608bcf 100644 --- a/phpBB/styles/prosilver/theme/forms.css +++ b/phpBB/styles/prosilver/theme/forms.css @@ -262,7 +262,7 @@ fieldset.submit-buttons input { #message-box textarea { font-family: "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif; - width: 700px; + width: 450px; height: 270px; min-width: 100%; max-width: 100%;