summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2009-08-20 15:16:04 -0400
committerScott Ullrich <sullrich@pfsense.org>2009-08-20 15:16:04 -0400
commit0f78d3ad6a5713a94dc54493f0946644e17c8058 (patch)
tree24c32d67007854ce4b647251b5c101cd352d9a46
parent2a87b190d68a59b4eb84ad611a223d3aac742066 (diff)
downloadpfsense-0f78d3ad6a5713a94dc54493f0946644e17c8058.zip
pfsense-0f78d3ad6a5713a94dc54493f0946644e17c8058.tar.gz
Make Status -> IPSec table sortable. Fix colors and styling on sortable table headers to match all other forms. Sponsored-by: BSD Perimeter Commercial Support
-rw-r--r--usr/local/www/diag_ipsec.php27
-rw-r--r--usr/local/www/themes/metallic/all.css8
-rw-r--r--usr/local/www/themes/nervecenter/all.css8
-rw-r--r--usr/local/www/themes/pfsense-dropdown/all.css8
-rw-r--r--usr/local/www/themes/pfsense/all.css8
-rw-r--r--usr/local/www/themes/pfsense_ng/all.css8
-rw-r--r--usr/local/www/themes/the_wall/all.css8
7 files changed, 43 insertions, 32 deletions
diff --git a/usr/local/www/diag_ipsec.php b/usr/local/www/diag_ipsec.php
index a080a5b..31342c3 100644
--- a/usr/local/www/diag_ipsec.php
+++ b/usr/local/www/diag_ipsec.php
@@ -57,6 +57,7 @@ $sad = ipsec_dump_sad();
?>
<body link="#0000CC" vlink="#0000CC" alink="#0000CC" onload="<?= $jsevents["body"]["onload"] ?>">
+<script src="/javascript/sorttable.js"></script>
<?php include("fbegin.inc"); ?>
<div id="inputerrors"></div>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
@@ -74,7 +75,7 @@ $sad = ipsec_dump_sad();
<tr>
<td>
<div id="mainarea">
- <table class="tabcont" width="100%" border="0" cellpadding="6" cellspacing="0">
+ <table class="tabcont" width="100%" border="0" cellpadding="6" cellspacing="0" class="sortable" name="sortabletable" id="sortabletable">
<tr>
<td nowrap class="listhdrr">Local IP</td>
<td nowrap class="listhdrr">Remote IP</a></td>
@@ -116,25 +117,23 @@ $sad = ipsec_dump_sad();
}
}
?>
- <tr>
- <td colspan="4">
- <p>
- <span class="vexpl">
- <span class="red">
- <strong>Note:<br /></strong>
- </span>
- You can configure your IPsec
- <a href="vpn_ipsec.php">here</a>.
- </span>
- </p>
- </td>
- </tr>
</table>
</div>
</td>
</tr>
</table>
+<p/>
+
+<span class="vexpl">
+ <span class="red">
+ <strong>Note:<br /></strong>
+ </span>
+ You can configure your IPsec
+ <a href="vpn_ipsec.php">here</a>.
+</span>
+
+
<?php include("fend.inc"); ?>
</body>
</html>
diff --git a/usr/local/www/themes/metallic/all.css b/usr/local/www/themes/metallic/all.css
index e9e610d..06f5b4d 100644
--- a/usr/local/www/themes/metallic/all.css
+++ b/usr/local/www/themes/metallic/all.css
@@ -1211,8 +1211,10 @@ div#log span.log-protocol-mini-header {
/* Sortable tables */
table.sortable thead {
- background-color:#eee;
- color:#666666;
- font-weight: bold;
cursor: default;
+ background-color: #EEEEEE;
+ padding-right: 12px;
+ padding-left: 12px;
+ padding-top: 12px;
+ padding-bottom: 12px;
}
diff --git a/usr/local/www/themes/nervecenter/all.css b/usr/local/www/themes/nervecenter/all.css
index c4568a8..3babfed 100644
--- a/usr/local/www/themes/nervecenter/all.css
+++ b/usr/local/www/themes/nervecenter/all.css
@@ -1243,8 +1243,10 @@ div#log span.log-protocol-mini-header {
/* Sortable tables */
table.sortable thead {
- background-color:#eee;
- color:#666666;
- font-weight: bold;
cursor: default;
+ background-color: #EEEEEE;
+ padding-right: 12px;
+ padding-left: 12px;
+ padding-top: 12px;
+ padding-bottom: 12px;
}
diff --git a/usr/local/www/themes/pfsense-dropdown/all.css b/usr/local/www/themes/pfsense-dropdown/all.css
index 6868ef5..1891f07 100644
--- a/usr/local/www/themes/pfsense-dropdown/all.css
+++ b/usr/local/www/themes/pfsense-dropdown/all.css
@@ -953,10 +953,12 @@ div#log span.log-protocol-mini-header {
/* Sortable tables */
table.sortable thead {
- background-color:#eee;
- color:#666666;
- font-weight: bold;
cursor: default;
+ background-color: #EEEEEE;
+ padding-right: 12px;
+ padding-left: 12px;
+ padding-top: 12px;
+ padding-bottom: 12px;
}
#graph {
diff --git a/usr/local/www/themes/pfsense/all.css b/usr/local/www/themes/pfsense/all.css
index aaa299f..e1b2200 100644
--- a/usr/local/www/themes/pfsense/all.css
+++ b/usr/local/www/themes/pfsense/all.css
@@ -961,10 +961,12 @@ div#log span.log-protocol-mini-header {
/* Sortable tables */
table.sortable thead {
- background-color:#eee;
- color:#666666;
- font-weight: bold;
cursor: default;
+ background-color: #EEEEEE;
+ padding-right: 12px;
+ padding-left: 12px;
+ padding-top: 12px;
+ padding-bottom: 12px;
}
#graph {
diff --git a/usr/local/www/themes/pfsense_ng/all.css b/usr/local/www/themes/pfsense_ng/all.css
index deb3f38..78ca6aa 100644
--- a/usr/local/www/themes/pfsense_ng/all.css
+++ b/usr/local/www/themes/pfsense_ng/all.css
@@ -1340,8 +1340,10 @@ div#log span.log-protocol-mini-header {
/* Sortable tables */
table.sortable thead {
- background-color:#eee;
- color:#666666;
- font-weight: bold;
cursor: default;
+ background-color: #EEEEEE;
+ padding-right: 12px;
+ padding-left: 12px;
+ padding-top: 12px;
+ padding-bottom: 12px;
}
diff --git a/usr/local/www/themes/the_wall/all.css b/usr/local/www/themes/the_wall/all.css
index 039285b..0fe39e2 100644
--- a/usr/local/www/themes/the_wall/all.css
+++ b/usr/local/www/themes/the_wall/all.css
@@ -1251,8 +1251,10 @@ div#log span.log-protocol-mini-header {
/* Sortable tables */
table.sortable thead {
- background-color:#eee;
- color:#666666;
- font-weight: bold;
cursor: default;
+ background-color: #EEEEEE;
+ padding-right: 12px;
+ padding-left: 12px;
+ padding-top: 12px;
+ padding-bottom: 12px;
}
OpenPOWER on IntegriCloud