# HG changeset patch # User Thomas De Schampheleire # Date 2018-05-21 14:55:35 # Node ID ef8d19a299c72eb8611e009a8e911717354ceabd # Parent b4c77ea1221fcce2eb56c65088ae8c5f3c1bd7ec admin: hooks: shorten input field of custom hooks to make place for delete button The delete button is currently on another line than the custom hook name and value. Reduce the size of the value input field to fix that. diff --git a/kallithea/templates/admin/settings/settings_hooks.html b/kallithea/templates/admin/settings/settings_hooks.html --- a/kallithea/templates/admin/settings/settings_hooks.html +++ b/kallithea/templates/admin/settings/settings_hooks.html @@ -23,7 +23,7 @@ ${h.form(url('admin_settings_hooks'), me
${h.hidden('hook_ui_key',hook.ui_key,id='hook_ui_key_'+input_id)} ${h.hidden('hook_ui_value',hook.ui_value,id='hook_ui_value_'+input_id)} - ${h.text('hook_ui_value_new',hook.ui_value,id=input_id,size=60,class_='form-control')} + ${h.text('hook_ui_value_new',hook.ui_value,id=input_id,size=50,class_='form-control')}