From f4f981d8f98e4f74a8d69d05a31ab63e188ea808 Mon Sep 17 00:00:00 2001 From: Till Brehm <tbrehm@ispconfig.org> Date: Sun, 15 Nov 2015 08:00:17 -0500 Subject: [PATCH] Added missing delimiter settings in reseller form file. --- interface/web/help/templates/faq_manage_questions_list.htm | 18 +++++++++--------- 1 files changed, 9 insertions(+), 9 deletions(-) diff --git a/interface/web/help/templates/faq_manage_questions_list.htm b/interface/web/help/templates/faq_manage_questions_list.htm index b920e4f..7659d39 100644 --- a/interface/web/help/templates/faq_manage_questions_list.htm +++ b/interface/web/help/templates/faq_manage_questions_list.htm @@ -1,21 +1,21 @@ <h2>{tmpl_var name="faq_faq_questions_txt"}</h2> - <p>{tmpl_var name="toolsarea_head_txt"}</p> + <p class="fieldset-legend">{tmpl_var name="toolsarea_head_txt"}</p> <button class="btn btn-default formbutton-success" type="button" data-load-content="help/faq_edit.php">{tmpl_var name="faq_new_question_txt"}</button> - <p><tmpl_var name="faq_sections_txt"></p> + <p class="fieldset-legend"><tmpl_var name="faq_sections_txt"></p> <div class="table-wrapper marginTop15"> <table class="table"> <thead class="dark form-group-sm"> <tr> - <th>{tmpl_var name="faq_question_txt"}</th> + <th class="tiny-col">{tmpl_var name="faq_question_txt"}</th> <th>{tmpl_var name="faq_section_name_txt"}</th> - <th>{tmpl_var name="faq_delete_txt"}</th> - <th>{tmpl_var name="faq_edit_txt"}</th> + <th class="text-right">{tmpl_var name="faq_delete_txt"}</th> + <th class="text-right">{tmpl_var name="faq_edit_txt"}</th> </tr> </thead> <tbody> @@ -23,11 +23,11 @@ <tr> <td width="60%">{tmpl_var name='hf_question'}</td> <td width="30%">{tmpl_var name='hf_section'}</td> - <td width="5%"> - <a class="btn btn-default formbutton-danger formbutton-narrow" href="javascript: del_record('help/faq_delete.php?id={tmpl_var name='id'}&phpsessid={tmpl_var name='phpsessid'}','{tmpl_var name='delete_confirmation'}');"><span class="icon icon-delete"></span></button> + <td class="text-right" width="5%"> + <a class="btn btn-default formbutton-danger formbutton-narrow" href="javascript: ISPConfig.confirm_action('help/faq_delete.php?id={tmpl_var name='id'}&phpsessid={tmpl_var name='phpsessid'}','{tmpl_var name='delete_confirmation'}');"><span class="icon icon-delete"></span></a> </td> - <td width="5%"> - <a class="btn btn-default formbutton-default formbutton-narrow" data-load-content="help/faq_edit.php?id={tmpl_var name='id'}"><span class="icon icon-edit"></span></button> + <td class="text-right" width="5%"> + <a class="btn btn-default formbutton-default formbutton-narrow" data-load-content="help/faq_edit.php?id={tmpl_var name='id'}"><span class="icon icon-edit"></span></a> </td> </tr> </tmpl_loop> -- Gitblit v1.9.1