diff options
author | Raimon <Raimon@phpBB.com> | 2011-06-19 16:40:25 +0200 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2011-06-26 11:10:05 +0200 |
commit | d59482366ad7c727dd5519b5acc898dd495473ba (patch) | |
tree | ec577e405d2c52a7c187ad1afd5aaa701fd99441 /phpBB/styles | |
parent | 882cb084d70cc428dcba9b07c45666a4a6615635 (diff) | |
download | forums-d59482366ad7c727dd5519b5acc898dd495473ba.tar forums-d59482366ad7c727dd5519b5acc898dd495473ba.tar.gz forums-d59482366ad7c727dd5519b5acc898dd495473ba.tar.bz2 forums-d59482366ad7c727dd5519b5acc898dd495473ba.tar.xz forums-d59482366ad7c727dd5519b5acc898dd495473ba.zip |
[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
Diffstat (limited to 'phpBB/styles')
-rw-r--r-- | phpBB/styles/prosilver/theme/forms.css | 2 |
1 files changed, 1 insertions, 1 deletions
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%; |