summaryrefslogtreecommitdiffhomepage
path: root/modules/admin-full
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2009-06-07 13:37:07 +0000
committerJo-Philipp Wich <jow@openwrt.org>2009-06-07 13:37:07 +0000
commit2863c0e2ed9904c322fbf0f6c5d3f90ec2fdb030 (patch)
treedb8e83c5f1b61ae2e8a564abb1b3c192479119ae /modules/admin-full
parenta2d8fc3d2f994bff983c08014652fd3aee4d3431 (diff)
modules/admin-full: style fixes for iptables status page, restrict options column to 30% of the table width
Diffstat (limited to 'modules/admin-full')
-rw-r--r--modules/admin-full/luasrc/view/admin_status/iptables.htm4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/admin-full/luasrc/view/admin_status/iptables.htm b/modules/admin-full/luasrc/view/admin_status/iptables.htm
index 2b8f12ccc..60a498fad 100644
--- a/modules/admin-full/luasrc/view/admin_status/iptables.htm
+++ b/modules/admin-full/luasrc/view/admin_status/iptables.htm
@@ -91,7 +91,7 @@ $Id$
<th class="cbi-section-table-cell"><%:a_s_ipt_outputif Out%></th>
<th class="cbi-section-table-cell"><%:a_s_ipt_source Source%></th>
<th class="cbi-section-table-cell"><%:a_s_ipt_destination Destination%></th>
- <th class="cbi-section-table-cell"><%:a_s_ipt_options Options%></th>
+ <th class="cbi-section-table-cell" style="width:30%"><%:a_s_ipt_options Options%></th>
</tr>
<% for _, rule in ipairs(ipt:find({table=tbl, chain=chain})) do %>
@@ -106,7 +106,7 @@ $Id$
<td><%=link_iface(rule.outputif)%></td>
<td><%=rule.source%></td>
<td><%=rule.destination%></td>
- <td><small><%=#rule.options > 0 and table.concat(rule.options, " ") or "-"%></small></td>
+ <td style="width:30%"><small><%=#rule.options > 0 and table.concat(rule.options, " ") or "-"%></small></td>
</tr>
<% end %>