diff options
author | vijeth-aradhya <vijthaaa@gmail.com> | 2017-01-20 09:16:42 +0530 |
---|---|---|
committer | Andrew Browning <ayleph@thisshitistemp.com> | 2017-02-14 00:23:58 -0500 |
commit | 96f66a5fd410d05e22a4945b6d4aa7417d0e1ec3 (patch) | |
tree | 455b5e20682bbacbaa21e445c4a0e73a610991ae /mediagoblin/static/js | |
parent | df2de8e2d1205fc1725b017343872a77f34fcd7f (diff) | |
download | mediagoblin-96f66a5fd410d05e22a4945b6d4aa7417d0e1ec3.tar.lz mediagoblin-96f66a5fd410d05e22a4945b6d4aa7417d0e1ec3.tar.xz mediagoblin-96f66a5fd410d05e22a4945b6d4aa7417d0e1ec3.zip |
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
Signed-off-by: Andrew Browning <ayleph@thisshitistemp.com>
Diffstat (limited to 'mediagoblin/static/js')
-rw-r--r-- | mediagoblin/static/js/show_password.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/static/js/show_password.js b/mediagoblin/static/js/show_password.js index b3fbc862..12935124 100644 --- a/mediagoblin/static/js/show_password.js +++ b/mediagoblin/static/js/show_password.js @@ -18,7 +18,7 @@ $(document).ready(function(){ //Create a duplicate password field. We could change the input type dynamically, but this angers the IE gods (not just IE6). - $("#password").after('<input type="text" value="" name="password_clear" id="password_clear" /><label><input type="checkbox" id="password_boolean" />Show password</label>'); + $("#password").after('<input type="text" value="" name="password_clear" id="password_clear" style="width:100%" /><label><br/><input type="checkbox" id="password_boolean" />Show password</label>'); $('#password_clear').hide(); $('#password_boolean').click(function(){ if($('#password_boolean').prop("checked")) { |