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/faq_manage_questions_list.htm | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/interface/web/help/templates/faq_manage_questions_list.htm b/interface/web/help/templates/faq_manage_questions_list.htm index 2de35d2..843141f 100644 --- a/interface/web/help/templates/faq_manage_questions_list.htm +++ b/interface/web/help/templates/faq_manage_questions_list.htm @@ -14,8 +14,8 @@ <tr> <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,10 +23,10 @@ <tr> <td width="60%">{tmpl_var name='hf_question'}</td> <td width="30%">{tmpl_var name='hf_section'}</td> - <td width="5%"> + <td class="text-right" 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> - <td width="5%"> + <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></button> </td> </tr> -- Gitblit v1.9.1