Make ‘New folder’ textbox full width

Looks neater when it aligns with everything else.
This commit is contained in:
Chris Hill-Scott
2019-02-01 12:07:47 +00:00
committed by GitHub
parent 02fb5f69dd
commit 1208cdaeea

View File

@@ -16,7 +16,7 @@
<div id="move_to_new_folder_form">
<fieldset class="js-will-stick-at-bottom-when-scrolling">
<legend class="visuallyhidden">Move to a new folder</legend>
{{ textbox(templates_and_folders_form.move_to_new_folder_name) }}
{{ textbox(templates_and_folders_form.move_to_new_folder_name, width='1-1') }}
{{ page_footer('Move to a new folder', button_name='operation', button_value='move-to-new-folder') }}
</fieldset>
</div>
@@ -24,7 +24,7 @@
<div id="add_new_folder_form">
<fieldset class="js-will-stick-at-bottom-when-scrolling">
<legend class="visuallyhidden">Add a new folder</legend>
{{ textbox(templates_and_folders_form.add_new_folder_name) }}
{{ textbox(templates_and_folders_form.add_new_folder_name, width='1-1') }}
{{ page_footer('New folder', button_name='operation', button_value='add-new-folder') }}
</fieldset>
</div>