From 20e60ec9e61ba2a7783677c670a17a01a207dd9d Mon Sep 17 00:00:00 2001
From: vijeth-aradhya <vijthaaa@gmail.com>
Date: Fri, 20 Jan 2017 09:16:42 +0530
Subject: [PATCH] edit_profile.html: Consistency in the width of input fields
The width of all the input fields in user profile edit
form (also forms which wtforms render div function) is 100%
Fixes #996
---
mediagoblin/templates/mediagoblin/utils/wtforms.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/mediagoblin/templates/mediagoblin/utils/wtforms.html b/mediagoblin/templates/mediagoblin/utils/wtforms.html
index 7e16708..e292125 100644
a
|
b
|
|
40 | 40 | {{- render_label_p(field) }} |
41 | 41 | <div class="form_field_input"> |
42 | 42 | {% if autofocus_first %} |
43 | | {{ field(autofocus=True) }} |
| 43 | {{ field(autofocus=True, style="width:100%;") }} |
44 | 44 | {% else %} |
45 | | {{ field }} |
| 45 | {{ field(style="width:100%;") }} |
46 | 46 | {% endif %} |
47 | 47 | {%- if field.errors -%} |
48 | 48 | {% for error in field.errors %} |