From e1ceb050e19c7574bca146a8da7047ee4ff456b5 Mon Sep 17 00:00:00 2001
From: Marius Burkard <m.burkard@pixcept.de>
Date: Sun, 10 Jul 2016 05:02:35 -0400
Subject: [PATCH] Merge branch 'stable-3.1'

---
 interface/web/help/templates/help_faq_sections_list.htm |   24 +++++++++++-------------
 1 files changed, 11 insertions(+), 13 deletions(-)

diff --git a/interface/web/help/templates/help_faq_sections_list.htm b/interface/web/help/templates/help_faq_sections_list.htm
index 080db26..5a3733a 100644
--- a/interface/web/help/templates/help_faq_sections_list.htm
+++ b/interface/web/help/templates/help_faq_sections_list.htm
@@ -4,34 +4,32 @@
 <p><tmpl_var name="list_desc_txt"></p>
 
 
-        <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_sections_edit.php">
-                    <span>{tmpl_var name="faq_new_section_txt"}</span>
-                </button>
+                <button class="btn btn-default formbutton-success" type="button" data-load-content="help/faq_sections_edit.php">{tmpl_var name="faq_new_section_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_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><b>{tmpl_var name='hfs_name'}</b></td>
-                        <td>
-                            <a class="btn btn-default formbutton-delete" href="javascript: del_record('help/faq_sections_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">
+                            <a class="btn btn-default formbutton-danger formbutton-narrow" href="javascript: ISPConfig.confirm_action('help/faq_sections_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>
-                            <a class="button icons16 icoEdit" data-load-content="help/faq_sections_edit.php?id={tmpl_var name='id'}"><span>{tmpl_var name="faq_edit_txt"}</span></a>
+                        <td class="text-right">
+                            <a class="btn btn-default formbutton-default formbutton-narrow" data-load-content="help/faq_sections_edit.php?id={tmpl_var name='id'}"><span class="icon icon-edit"></span></a>
                         </td>
                     </tr>
                 </tmpl_loop>

--
Gitblit v1.9.1