bug #1777249 [display] Remove horizontal lines in navigation panel

This commit is contained in:
Marc Delisle
2007-10-20 17:19:39 +00:00
parent 5abf6d7bb7
commit 6342e828ea
3 changed files with 2 additions and 9 deletions

View File

@@ -33,6 +33,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
- bug #1811519 [privileges] fixed used collation for accessing mysql.user in server privileges - bug #1811519 [privileges] fixed used collation for accessing mysql.user in server privileges
- it should not be possible to move or copy a table to information_schema - it should not be possible to move or copy a table to information_schema
- bug #1814733 win: copy db to mixed name db fails - bug #1814733 win: copy db to mixed name db fails
- bug #1777249 [display] Remove horizontal lines in navigation panel
2.11.1.2 (2007-10-17) 2.11.1.2 (2007-10-17)
- fixed XSS in server_status.php, thanks to Omer Singer, The DigiTrust Group - fixed XSS in server_status.php, thanks to Omer Singer, The DigiTrust Group

View File

@@ -98,6 +98,6 @@ if ($GLOBALS['cfg']['LeftDisplayServers'] && (count($GLOBALS['cfg']['Servers'])
echo '<div id="serverinfo">'; 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 '</div><hr />'; echo '</div><br />';
} // end if LeftDisplayServers } // end if LeftDisplayServers
?> ?>

View File

@@ -78,13 +78,11 @@ div#pmalogo,
div#leftframelinks, div#leftframelinks,
div#databaseList { div#databaseList {
text-align: center; text-align: center;
border-bottom: 0.05em solid <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
margin-bottom: 0.5em; margin-bottom: 0.5em;
padding-bottom: 0.5em; padding-bottom: 0.5em;
} }
ul#databaseList { ul#databaseList {
border-bottom: 0.05em solid <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
margin-bottom: 0.5em; margin-bottom: 0.5em;
padding-bottom: 0.5em; padding-bottom: 0.5em;
padding-<?php echo $left; ?>: 1.5em; padding-<?php echo $left; ?>: 1.5em;
@@ -141,11 +139,6 @@ div#leftframelinks a:hover {
font-size: 80%; font-size: 80%;
} }
/* leftdatabaselist */
div#left_tableList {
border-bottom: 0.05em solid <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
}
div#left_tableList ul { div#left_tableList ul {
list-style-type: none; list-style-type: none;
list-style-position: outside; list-style-position: outside;
@@ -204,7 +197,6 @@ div#left_tableList ul ul {
padding-<?php echo $left; ?>: 0.1em; padding-<?php echo $left; ?>: 0.1em;
border-<?php echo $left; ?>: 0.1em solid <?php echo $GLOBALS['cfg']['NaviColor']; ?>; border-<?php echo $left; ?>: 0.1em solid <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
padding-bottom: 0.1em; padding-bottom: 0.1em;
border-bottom: 0.1em solid <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
} }
/* for the servers list in navi panel */ /* for the servers list in navi panel */