From cb866ecc7bb239994495e5b4aff81049876a4774 Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Mon, 11 Feb 2019 12:58:54 +0000 Subject: [PATCH] Make font size bigger on profile page We use 19px for tables almost everywhere now. This is one that escaped that change. --- app/templates/views/user-profile.html | 64 ++++++++++++++------------- 1 file changed, 33 insertions(+), 31 deletions(-) diff --git a/app/templates/views/user-profile.html b/app/templates/views/user-profile.html index 9950af7c5..24f3cdc02 100644 --- a/app/templates/views/user-profile.html +++ b/app/templates/views/user-profile.html @@ -10,40 +10,42 @@

Your profile

- {% call mapping_table( - caption='Your profile', - field_headings=['Label', 'Value', 'Action'], - field_headings_visible=False, - caption_visible=False - ) %} - {% call row() %} - {{ text_field('Name') }} - {{ text_field(current_user.name) }} - {{ edit_field('Change', url_for('.user_profile_name')) }} - {% endcall %} +
+ {% call mapping_table( + caption='Your profile', + field_headings=['Label', 'Value', 'Action'], + field_headings_visible=False, + caption_visible=False + ) %} + {% call row() %} + {{ text_field('Name') }} + {{ text_field(current_user.name) }} + {{ edit_field('Change', url_for('.user_profile_name')) }} + {% endcall %} - {% call row() %} - {{ text_field('Email address') }} - {{ text_field(current_user.email_address) }} - {% if can_see_edit %} - {{ edit_field('Change', url_for('.user_profile_email')) }} - {% else %} - {{ text_field('') }} - {% endif %} - {% endcall %} + {% call row() %} + {{ text_field('Email address') }} + {{ text_field(current_user.email_address) }} + {% if can_see_edit %} + {{ edit_field('Change', url_for('.user_profile_email')) }} + {% else %} + {{ text_field('') }} + {% endif %} + {% endcall %} - {% call row() %} - {{ text_field('Mobile number') }} - {{ optional_text_field(current_user.mobile_number) }} - {{ edit_field('Change', url_for('.user_profile_mobile_number')) }} - {% endcall %} + {% call row() %} + {{ text_field('Mobile number') }} + {{ optional_text_field(current_user.mobile_number) }} + {{ edit_field('Change', url_for('.user_profile_mobile_number')) }} + {% endcall %} - {% call row() %} - {{ text_field('Password') }} - {{ text_field('Last changed ' + current_user.password_changed_at|format_delta) }} - {{ edit_field('Change', url_for('.user_profile_password')) }} - {% endcall %} + {% call row() %} + {{ text_field('Password') }} + {{ text_field('Last changed ' + current_user.password_changed_at|format_delta) }} + {{ edit_field('Change', url_for('.user_profile_password')) }} + {% endcall %} - {% endcall %} + {% endcall %} +
{% endblock %}