diff options
author | hanakin <midaym@gmail.com> | 2014-09-23 17:24:26 +0200 |
---|---|---|
committer | hanakin <midaym@gmail.com> | 2014-09-23 17:24:26 +0200 |
commit | fb610f99df53ad39cddf349190aaf4df0432e6c8 (patch) | |
tree | c251fa78678b0568c4a30afc5a2d8e295f150419 | |
parent | e00545588145e7d4d33cb9780673f36a6049f0eb (diff) | |
download | forums-fb610f99df53ad39cddf349190aaf4df0432e6c8.tar forums-fb610f99df53ad39cddf349190aaf4df0432e6c8.tar.gz forums-fb610f99df53ad39cddf349190aaf4df0432e6c8.tar.bz2 forums-fb610f99df53ad39cddf349190aaf4df0432e6c8.tar.xz forums-fb610f99df53ad39cddf349190aaf4df0432e6c8.zip |
[ticket/12889] Fix multiple select lists
PHPBB3-12889
-rw-r--r-- | phpBB/styles/prosilver/theme/forms.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/styles/prosilver/theme/forms.css b/phpBB/styles/prosilver/theme/forms.css index cbdeab11f9..5ac5e5cfd1 100644 --- a/phpBB/styles/prosilver/theme/forms.css +++ b/phpBB/styles/prosilver/theme/forms.css @@ -129,6 +129,10 @@ dd select { width: auto; } +dd select[multiple] { + width: 100%; +} + dd textarea { width: 85%; } |