Enable autosizing for some textboxes

This commit makes textboxes auto-resize any time they might be used to
enter long passages of text which would otherwise make them scroll
internally.
This commit is contained in:
Chris Hill-Scott
2019-10-16 16:34:18 +01:00
parent 6c0e853db4
commit 6fa0f06f5d
5 changed files with 5 additions and 4 deletions

View File

@@ -17,7 +17,7 @@
<div class="grid-row">
<div class="column-two-thirds">
{% call form_wrapper() %}
{{ textbox(form.feedback, width='1-1', hint='', rows=10) }}
{{ textbox(form.feedback, width='1-1', hint='', rows=10, autosize=True) }}
{% if not current_user.is_authenticated %}
<h3 class="heading-medium">Do you want a reply?</h3>
<p>Leave your details below if youd like a response.</p>

View File

@@ -24,7 +24,7 @@
</p>
</div>
{% call form_wrapper() %}
{{ textbox(form.feedback, width='1-1', hint='', rows=10) }}
{{ textbox(form.feedback, width='1-1', hint='', rows=10, autosize=True) }}
{% if not current_user.is_authenticated %}
{{ textbox(form.name, width='1-1') }}
{{ textbox(form.email_address, width='1-1') }}