Adjust the width of the fields on the form submission

Did several things, including:

 - Call the individual form field rendering macros instead of the auto
   whole-form renderer so we get better control over the TextArea
 - Use the textarea specific form field rendering macro
 - Adds textarea styling to the css
 - Sets the input, textarea styling to be 460 px wide (the width of
   the form section, not including padding)
This commit is contained in:
Christopher Allan Webber
2011-06-24 23:49:37 -05:00
parent 528f9acd23
commit 353f927e9f
2 changed files with 5 additions and 3 deletions

View File

@@ -146,8 +146,8 @@ a.mediagoblin_logo:hover {
font-size:28px;
}
.form_field_input input {
width:300px;
.form_field_input input, .form_field_input textarea {
width:460px;
font-size:18px;
}