From 3f7df5166b21b2fb571ccf8a34852220ca9ecbda Mon Sep 17 00:00:00 2001 From: Andreas Granig <agranig@sipwise.com> Date: Wed, 27 Feb 2013 20:33:20 +0100 Subject: [PATCH] Fix table row height when displaying form buttons. --- share/templates/helpers/table_form.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/share/templates/helpers/table_form.tt b/share/templates/helpers/table_form.tt index 010968fe7b..b581ae32a1 100644 --- a/share/templates/helpers/table_form.tt +++ b/share/templates/helpers/table_form.tt @@ -21,8 +21,8 @@ [% END -%] <td class="span3"> <div class="sw_actions pull-right"> - <a class="btn btn-small btn-primary" href="[% c.uri_for_action("/${helper.controller}/edit", set.id) %]"><i class="icon-edit" style="line-height:1em;margin-top:2px"></i> Edit</a> - <a class="btn btn-small btn-secondary" href="[% c.uri_for_action("/${helper.controller}/delete", set.id) %]" data-confirm="Delete"><i class="icon-trash" style="line-height:1em;margin-top:2px"></i> Delete</a> + <a class="btn btn-small btn-primary" href="[% c.uri_for_action("/${helper.controller}/edit", set.id) %]" style="display:inline;line-height:16px;"><i class="icon-edit" style="line-height:1em;margin-top:2px"></i> Edit</a> + <a class="btn btn-small btn-secondary" href="[% c.uri_for_action("/${helper.controller}/delete", set.id) %]" data-confirm="Delete" style="display:inline;line-height:16px;"><i class="icon-trash" style="line-height:1em;margin-top:2px"></i> Delete</a> </div> </td> </tr>