diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-12-20 03:57:40 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-12-20 03:57:40 +0000 |
commit | b89300eb67e43b9da28550547882338894017b43 (patch) | |
tree | feefb6ca396d4fd21946c691c3a0a08aa125b2e5 /libs | |
parent | 187212326d452e4ae7478f8c73afad77c2d06183 (diff) |
libs/web: prevent break between action buttons in tblsection template
Diffstat (limited to 'libs')
-rw-r--r-- | libs/web/luasrc/view/cbi/tblsection.htm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/web/luasrc/view/cbi/tblsection.htm b/libs/web/luasrc/view/cbi/tblsection.htm index 1a2d689a7..5f6381f05 100644 --- a/libs/web/luasrc/view/cbi/tblsection.htm +++ b/libs/web/luasrc/view/cbi/tblsection.htm @@ -85,14 +85,14 @@ end -%> <%- if self.sortable then -%> - <td class="cbi-section-table-cell" style="width:50px"> + <td class="cbi-section-table-cell" style="padding:3px; white-space:nowrap"> <a href="#" onclick="return cbi_row_swap(this, true, 'cbi.sts.<%=self.config%>.<%=self.sectiontype%>')" title="<%:Move up%>"><img src="<%=resource%>/cbi/up.gif" alt="<%:Move up%>" /></a> <a href="#" onclick="return cbi_row_swap(this, false, 'cbi.sts.<%=self.config%>.<%=self.sectiontype%>')" title="<%:Move down%>"><img src="<%=resource%>/cbi/down.gif" alt="<%:Move down%>" /></a> </td> <%- end -%> <%- if self.extedit or self.addremove then -%> - <td class="cbi-section-table-cell" style="width:50px"> + <td class="cbi-section-table-cell" style="padding:3px; white-space:nowrap"> <%- if self.extedit then -%> <a href=" <%- if type(self.extedit) == "string" then -%> |