diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-02-15 16:00:23 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-02-15 16:00:23 +0000 |
commit | 481ddd09098242db05231a2e84c19c831d5cd033 (patch) | |
tree | faa1592dff5b5ad8bc98d0c5d3b8678ec56631ff /libs | |
parent | 6832010927ae4a2c287be9d49bd262d751efff5b (diff) |
libs/web: remove inline styles for interface badges
Diffstat (limited to 'libs')
-rw-r--r-- | libs/web/luasrc/view/cbi/firewall_zoneforwards.htm | 7 | ||||
-rw-r--r-- | libs/web/luasrc/view/cbi/firewall_zonelist.htm | 7 | ||||
-rw-r--r-- | libs/web/luasrc/view/cbi/network_netlist.htm | 2 |
3 files changed, 3 insertions, 13 deletions
diff --git a/libs/web/luasrc/view/cbi/firewall_zoneforwards.htm b/libs/web/luasrc/view/cbi/firewall_zoneforwards.htm index 5a2befd6e..f027ab3b1 100644 --- a/libs/web/luasrc/view/cbi/firewall_zoneforwards.htm +++ b/libs/web/luasrc/view/cbi/firewall_zoneforwards.htm @@ -27,12 +27,7 @@ if net then zempty = false %> -   - <%- if net:name() == self.network then -%> - <span style="background-color:#FFFFFF; border:1px solid #000000; padding:2px; font-weight:bold"><%=net:name()%>: - <%- else -%> - <span style="background-color:#FFFFFF; border:1px solid #CCCCCC; padding:2px"><%=net:name()%>: - <%- end -%> + <span class="ifacebadge<% if net:name() == self.network then %> ifacebadge-active<% end %>"><%=net:name()%>: <% local nempty = true for _, iface in ipairs(net:is_bridge() and net:get_interfaces() or { net:get_interface() }) do diff --git a/libs/web/luasrc/view/cbi/firewall_zonelist.htm b/libs/web/luasrc/view/cbi/firewall_zonelist.htm index 53fa83624..8aa69705d 100644 --- a/libs/web/luasrc/view/cbi/firewall_zonelist.htm +++ b/libs/web/luasrc/view/cbi/firewall_zonelist.htm @@ -59,12 +59,7 @@ if net then zempty = false %> -   - <%- if net:name() == self.network then -%> - <span style="background-color:#FFFFFF; border:1px solid #000000; padding:2px; font-weight:bold"><%=net:name()%>: - <%- else -%> - <span style="background-color:#FFFFFF; border:1px solid #CCCCCC; padding:2px"><%=net:name()%>: - <%- end -%> + <span class="ifacebadge<% if net:name() == self.network then %> ifacebadge-active<% end %>"><%=net:name()%>: <% local nempty = true for _, iface in ipairs(net:is_bridge() and net:get_interfaces() or { net:get_interface() }) do diff --git a/libs/web/luasrc/view/cbi/network_netlist.htm b/libs/web/luasrc/view/cbi/network_netlist.htm index 37a206ad6..35e0ed354 100644 --- a/libs/web/luasrc/view/cbi/network_netlist.htm +++ b/libs/web/luasrc/view/cbi/network_netlist.htm @@ -32,7 +32,7 @@ ifattr(checked[net:name()], "checked", "checked") %> />   <label<%=attr("for", cbid .. "." .. net:name())%>> -  <span style="background-color:#FFFFFF; border:1px solid #CCCCCC; padding:2px"><%=net:name()%>: + <span class="ifacebadge"><%=net:name()%>: <% local empty = true for _, iface in ipairs(net:is_bridge() and net:get_interfaces() or { net:get_interface() }) do |