summaryrefslogtreecommitdiffstats
path: root/etc/inc/pfsense-utils.inc
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2006-01-19 06:50:28 +0000
committerScott Ullrich <sullrich@pfsense.org>2006-01-19 06:50:28 +0000
commit0cb641ba72fc99c93cda61cf2828b404d8a0efbb (patch)
treea5db4617a6268695211c1b5b7a4d17db554fb6dc /etc/inc/pfsense-utils.inc
parent2a8143e5f200816720b00a759f18cd6a621e4701 (diff)
downloadpfsense-0cb641ba72fc99c93cda61cf2828b404d8a0efbb.zip
pfsense-0cb641ba72fc99c93cda61cf2828b404d8a0efbb.tar.gz
MFC 9468
Change cursor to hand when over tabs (since they're links)
Diffstat (limited to 'etc/inc/pfsense-utils.inc')
-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 ecbb672..d67ed41 100644
--- a/etc/inc/pfsense-utils.inc
+++ b/etc/inc/pfsense-utils.inc
@@ -1212,20 +1212,20 @@ function display_top_tabs($tab_array) {
$tabscounter = 0;
foreach ($tab_array as $ta) {
if($ta[1] == true) {
- echo " <td bgcolor='#EEEEEE' onClick=\"document.location='{$ta[2]}'\"><div id='tabactive'></div></td>\n";
+ echo " <td bgcolor='#EEEEEE' onClick=\"document.location='{$ta[2]}'\" style=\"cursor: pointer; cursor: hand;\"><div id='tabactive'></div></td>\n";
} else {
- echo " <td bgcolor='#777777' onClick=\"document.location='{$ta[2]}'\"><div id='tabdeactive{$tabscounter}'></div></td>\n";
+ echo " <td bgcolor='#777777' onClick=\"document.location='{$ta[2]}'\" style=\"cursor: pointer; cursor: hand;\"><div id='tabdeactive{$tabscounter}'></div></td>\n";
}
$tabscounter++;
}
echo "</tr>\n<tr>\n";
foreach ($tab_array as $ta) {
if($ta[1] == true) {
- echo " <td bgcolor='#EEEEEE' onClick=\"document.location='{$ta[2]}'\"><B>&nbsp;&nbsp;&nbsp;{$ta[0]}";
+ echo " <td bgcolor='#EEEEEE' onClick=\"document.location='{$ta[2]}'\" style=\"cursor: pointer; cursor: hand;\"><B>&nbsp;&nbsp;&nbsp;{$ta[0]}";
echo "&nbsp;&nbsp;&nbsp;";
echo "<font size='-12'>&nbsp;</td>\n";
} else {
- echo " <td bgcolor='#777777' onClick=\"document.location='{$ta[2]}'\"><B>&nbsp;&nbsp;&nbsp;<a href='{$ta[2]}'>";
+ echo " <td bgcolor='#777777' onClick=\"document.location='{$ta[2]}'\" style=\"cursor: pointer; cursor: hand;\"><B>&nbsp;&nbsp;&nbsp;<a href='{$ta[2]}'>";
echo "<font color='white'>{$ta[0]}</a>&nbsp;&nbsp;&nbsp;";
echo "<font size='-12'>&nbsp;</td>\n";
}
@@ -1233,9 +1233,9 @@ function display_top_tabs($tab_array) {
echo "</tr>\n<tr height='5px'>\n";
foreach ($tab_array as $ta) {
if($ta[1] == true) {
- echo " <td bgcolor='#EEEEEE' onClick=\"document.location='{$ta[2]}'\"></td>\n";
+ echo " <td bgcolor='#EEEEEE' onClick=\"document.location='{$ta[2]}'\" style=\"cursor: pointer; cursor: hand;\"></td>\n";
} else {
- echo " <td bgcolor='#777777' onClick=\"document.location='{$ta[2]}'\"></td>\n";
+ echo " <td bgcolor='#777777' onClick=\"document.location='{$ta[2]}'\" style=\"cursor: pointer; cursor: hand;\"></td>\n";
}
$tabscounter++;
}
@@ -1616,4 +1616,4 @@ function print_value_list($list, $count = 10, $separator = ",") {
return $list;
}
-?> \ No newline at end of file
+?>
OpenPOWER on IntegriCloud