Changeset - ef8d19a299c7
[Not reviewed]
default
0 1 0
Thomas De Schampheleire - 7 years ago 2018-05-21 14:55:35
thomas.de_schampheleire@nokia.com
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.
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
kallithea/templates/admin/settings/settings_hooks.html
Show inline comments
 
@@ -23,7 +23,7 @@ ${h.form(url('admin_settings_hooks'), me
 
                    <div>
 
                        ${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')}
 
                        <button type="button" class="btn btn-default btn-xs"
 
                            onclick="delete_hook(${hook.ui_id},'${'id%s' % hook.ui_id }')">
 
                            <i class="icon-trashcan"></i>
 
@@ -38,7 +38,7 @@ ${h.form(url('admin_settings_hooks'), me
 
                ${h.text('new_hook_ui_key',size=15,class_='form-control')}
 
            </label>
 
            <div>
 
                ${h.text('new_hook_ui_value',size=60,class_='form-control')}
 
                ${h.text('new_hook_ui_value',size=50,class_='form-control')}
 
            </div>
 
        </div>
 
        <div class="form-group">
0 comments (0 inline, 0 general)