aboutsummaryrefslogtreecommitdiffstats
path: root/config/haproxy-dev
diff options
context:
space:
mode:
authorthompsa <andy@fud.org.nz>2010-02-08 10:45:40 +1300
committerthompsa <andy@fud.org.nz>2010-02-08 10:45:40 +1300
commit04599c7730f238f1b573dae95db68104bbc4b908 (patch)
tree44ed0ee068fb9257dbc3b5b7e293847d53e975d8 /config/haproxy-dev
parent9ecfb48b82f8e33d8aa2aa5a7828826ddd7a47d3 (diff)
downloadpfsense-packages-04599c7730f238f1b573dae95db68104bbc4b908.tar.gz
pfsense-packages-04599c7730f238f1b573dae95db68104bbc4b908.tar.bz2
pfsense-packages-04599c7730f238f1b573dae95db68104bbc4b908.zip
Make the del icon on the generated row match the existing table.
Diffstat (limited to 'config/haproxy-dev')
-rwxr-xr-xconfig/haproxy-dev/haproxy_pool_edit.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/config/haproxy-dev/haproxy_pool_edit.php b/config/haproxy-dev/haproxy_pool_edit.php
index 5648f247..20104a5c 100755
--- a/config/haproxy-dev/haproxy_pool_edit.php
+++ b/config/haproxy-dev/haproxy_pool_edit.php
@@ -364,8 +364,9 @@ var addRowTo = (function() {
}
td = d.createElement("td");
td.rowSpan = "1";
+ td.setAttribute("class","list");
- td.innerHTML = '<input type="image" src="/themes/' + theme + '/images/icons/icon_x.gif" onclick="removeRow(this); return false;" value="Delete">';
+ td.innerHTML = '<img src="/themes/' + theme + '/images/icons/icon_x.gif" width="17" height="17" border="0" onclick="removeRow(this); return false;">';
tr.appendChild(td);
tbody.appendChild(tr);
});