From 5ca959fa688255a8de61f89fe2751eb4d24a6912 Mon Sep 17 00:00:00 2001 From: Florian Schaal <florian@schaal-24.de> Date: Tue, 22 Mar 2016 09:22:07 -0400 Subject: [PATCH] fixed typo --- interface/web/help/templates/faq_manage_questions_list.htm | 26 ++++++++++++-------------- 1 files changed, 12 insertions(+), 14 deletions(-) diff --git a/interface/web/help/templates/faq_manage_questions_list.htm b/interface/web/help/templates/faq_manage_questions_list.htm index 1bc7822..7659d39 100644 --- a/interface/web/help/templates/faq_manage_questions_list.htm +++ b/interface/web/help/templates/faq_manage_questions_list.htm @@ -1,35 +1,33 @@ <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="button iconstxt icoAdd" type="button" data-load-content="help/faq_edit.php"> - <span>{tmpl_var name="faq_new_question_txt"}</span> - </button> + <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"> + <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> <tmpl_loop name="records"> - <tr class="tbl_row_<tmpl_if name='__EVEN__'}even<tmpl_else>uneven</tmpl_if>"> + <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-delete" href="javascript: del_record('help/faq_delete.php?id={tmpl_var name='id'}&phpsessid={tmpl_var name='phpsessid'}','{tmpl_var name='delete_confirmation'}');">{tmpl_var name="faq_delete_txt"}</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="button icons16 icoEdit" data-load-content="help/faq_edit.php?id={tmpl_var name='id'}"><span>{tmpl_var name="faq_edit_txt"}</span></a> + <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