From f36346d45a8f1bc90fe852df78547795c6f8f64f Mon Sep 17 00:00:00 2001 From: Marius Cramer <m.cramer@pixcept.de> Date: Thu, 08 Jan 2015 04:41:05 -0500 Subject: [PATCH] - Layout fixes (column width and alignment) --- interface/web/help/templates/help_faq_sections_list.htm | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/interface/web/help/templates/help_faq_sections_list.htm b/interface/web/help/templates/help_faq_sections_list.htm index 906237e..a24c84a 100644 --- a/interface/web/help/templates/help_faq_sections_list.htm +++ b/interface/web/help/templates/help_faq_sections_list.htm @@ -17,18 +17,18 @@ <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> <td><b>{tmpl_var name='hfs_name'}</b></td> - <td> + <td class="text-right"> <a class="btn btn-default formbutton-danger formbutton-narrow" href="javascript: del_record('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></button> </td> - <td> + <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></button> </td> </tr> -- Gitblit v1.9.1