diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2006-01-19 06:50:28 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2006-01-19 06:50:28 +0000 |
commit | 0cb641ba72fc99c93cda61cf2828b404d8a0efbb (patch) | |
tree | a5db4617a6268695211c1b5b7a4d17db554fb6dc /etc | |
parent | 2a8143e5f200816720b00a759f18cd6a621e4701 (diff) | |
download | pfsense-0cb641ba72fc99c93cda61cf2828b404d8a0efbb.zip pfsense-0cb641ba72fc99c93cda61cf2828b404d8a0efbb.tar.gz |
MFC 9468
Change cursor to hand when over tabs (since they're links)
Diffstat (limited to 'etc')
-rw-r--r-- | etc/inc/pfsense-utils.inc | 14 |
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> {$ta[0]}"; + echo " <td bgcolor='#EEEEEE' onClick=\"document.location='{$ta[2]}'\" style=\"cursor: pointer; cursor: hand;\"><B> {$ta[0]}"; echo " "; echo "<font size='-12'> </td>\n"; } else { - echo " <td bgcolor='#777777' onClick=\"document.location='{$ta[2]}'\"><B> <a href='{$ta[2]}'>"; + echo " <td bgcolor='#777777' onClick=\"document.location='{$ta[2]}'\" style=\"cursor: pointer; cursor: hand;\"><B> <a href='{$ta[2]}'>"; echo "<font color='white'>{$ta[0]}</a> "; echo "<font size='-12'> </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 +?> |