summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2005-07-02 01:49:41 +0000
committerScott Ullrich <sullrich@pfsense.org>2005-07-02 01:49:41 +0000
commit0366b748feb91380ec874f7bf2ed64c250c9c2c9 (patch)
tree932086ca1103917d41173da8f966c587779499a4 /etc
parent6eb1764727c45ad387f0409354bfa3345bc6b2d9 (diff)
downloadpfsense-0366b748feb91380ec874f7bf2ed64c250c9c2c9.zip
pfsense-0366b748feb91380ec874f7bf2ed64c250c9c2c9.tar.gz
Add rounded tabs to add. Fix bottom rounded area.
Diffstat (limited to 'etc')
-rw-r--r--etc/inc/pfsense-utils.inc14
1 files changed, 7 insertions, 7 deletions
diff --git a/etc/inc/pfsense-utils.inc b/etc/inc/pfsense-utils.inc
index 79dc1d6..dade06f 100644
--- a/etc/inc/pfsense-utils.inc
+++ b/etc/inc/pfsense-utils.inc
@@ -884,18 +884,18 @@ function get_disk_info() {
$tabscounter = 0;
foreach ($tab_array as $ta) {
if($ta[1] == true) {
- echo " <td><div id='active'></div></td>\n";
+ echo " <td bgcolor='#EEEEEE'><div id='tabactive'></div></td>\n";
} else {
- echo " <td><div id='deactive{$tabscounter}'></div></td>\n";
+ echo " <td bgcolor='#777777'><div id='tabdeactive{$tabscounter}'></div></td>\n";
}
$tabscounter++;
}
- echo "</tr>\n";
+ echo "</tr>\n<tr>\n";
foreach ($tab_array as $ta) {
if($ta[1] == true) {
- echo " <td class='tabact'><B>&nbsp;{$ta[0]}&nbsp;</div></a></td>\n";
+ echo " <td bgcolor='#EEEEEE'><B>&nbsp;{$ta[0]}&nbsp;<br>&nbsp;</div></a></td>\n";
} else {
- echo " <td class='tabinact'><B>&nbsp;<a href='{$ta[2]}'><font color='white'>{$ta[0]}</a>&nbsp;</div></a></td>\n";
+ echo " <td bgcolor='#777777'><B>&nbsp;<a href='{$ta[2]}'><font color='white'>{$ta[0]}</a>&nbsp;<br>&nbsp;</div></a></td>\n";
}
}
echo " </tr>\n";
@@ -903,9 +903,9 @@ function get_disk_info() {
echo "<script type=\"text/javascript\">";
echo "NiftyCheck();\n";
- echo "Rounded(\"div#active\",\"top\",\"#FFF\",\"#EEEEEE\",\"smooth\");\n";
+ echo "Rounded(\"div#tabactive\",\"top\",\"#FFF\",\"#EEEEEE\",\"smooth\");\n";
for($x=0; $x<$tabscounter; $x++)
- echo "Rounded(\"div#deactive{$x}\",\"top\",\"#FFF\",\"#777777\",\"smooth\");\n";
+ echo "Rounded(\"div#tabdeactive{$x}\",\"top\",\"#FFF\",\"#777777\",\"smooth\");\n";
echo "</script>";
}
OpenPOWER on IntegriCloud