bug 1758159 part 2: links

This commit is contained in:
Marc Delisle
2007-07-22 19:05:42 +00:00
parent 7b9e296f67
commit 08eb60f59a
2 changed files with 12 additions and 1 deletions

View File

@@ -95,8 +95,9 @@ echo '</div>' . "\n";
* Displays the MySQL servers choice form * Displays the MySQL servers choice form
*/ */
if ($GLOBALS['cfg']['LeftDisplayServers'] && (count($GLOBALS['cfg']['Servers']) > 1 || $server == 0 && count($GLOBALS['cfg']['Servers']) == 1)) { if ($GLOBALS['cfg']['LeftDisplayServers'] && (count($GLOBALS['cfg']['Servers']) > 1 || $server == 0 && count($GLOBALS['cfg']['Servers']) == 1)) {
echo '<div id="serverinfo">';
include './libraries/select_server.lib.php'; include './libraries/select_server.lib.php';
PMA_select_server(true, true); PMA_select_server(true, true);
echo '<hr />'; echo '</div><hr />';
} // end if LeftDisplayServers } // end if LeftDisplayServers
?> ?>

View File

@@ -206,3 +206,13 @@ div#left_tableList ul ul {
padding-bottom: 0.1em; padding-bottom: 0.1em;
border-bottom: 0.1em solid <?php echo $GLOBALS['cfg']['NaviColor']; ?>; border-bottom: 0.1em solid <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
} }
/* for the servers list in navi panel */
#serverinfo .item {
white-space: nowrap;
color: <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
}
#serverinfo a:hover {
background: <?php echo $GLOBALS['cfg']['NaviPointerBackground']; ?>;
color: <?php echo $GLOBALS['cfg']['NaviPointerColor']; ?>;
}