diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-07-02 21:43:46 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-07-02 21:43:46 +0000 |
commit | 63586b792f7314114e8f97901d58b0a472b345b1 (patch) | |
tree | 5dd9b09110d4303ca8812b2b97275e9e908ff7b0 | |
parent | 17982382d5492734da91b7a2bf6d84006db62402 (diff) | |
download | pfsense-63586b792f7314114e8f97901d58b0a472b345b1.zip pfsense-63586b792f7314114e8f97901d58b0a472b345b1.tar.gz |
Shorten the height of the tabs
-rw-r--r-- | etc/inc/pfsense-utils.inc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/etc/inc/pfsense-utils.inc b/etc/inc/pfsense-utils.inc index a225b29..74cf0f2 100644 --- a/etc/inc/pfsense-utils.inc +++ b/etc/inc/pfsense-utils.inc @@ -893,9 +893,13 @@ function get_disk_info() { echo "</tr>\n<tr>\n"; foreach ($tab_array as $ta) { if($ta[1] == true) { - echo " <td bgcolor='#EEEEEE'><B> {$ta[0]} <br> </div></a></td>\n"; + echo " <td bgcolor='#EEEEEE'><B> {$ta[0]}"; + echo " "; + echo "<font size='-12'><br> </div></td>\n"; } else { - echo " <td bgcolor='#777777'><B> <a href='{$ta[2]}'><font color='white'>{$ta[0]}</a> <br> </div></td>\n"; + echo " <td bgcolor='#777777'><B> <a href='{$ta[2]}'>"; + echo "<font color='white'>{$ta[0]}</a> "; + echo "<font size='-12'><br> </div></td>\n"; } } echo " </tr>\n"; |