The branch, master has been updated via 7e482cac73748b9737870c7d02e7d393d3fb774b (commit) via 7bbd3ab1770c5b5c006ca52f88bdc215847dd14b (commit) from 93339354a2342a8ed19216829a6c5743b5a2256f (commit)
- Log ----------------------------------------------------------------- commit 7e482cac73748b9737870c7d02e7d393d3fb774b Merge: 7bbd3ab1770c5b5c006ca52f88bdc215847dd14b 93339354a2342a8ed19216829a6c5743b5a2256f Author: Piotr Przybylski piotrprz@gmail.com Date: Sat Mar 12 15:02:33 2011 +0100
Merge branch 'master' of ssh://phpmyadmin.git.sourceforge.net/gitroot/phpmyadmin/phpmyadmin
commit 7bbd3ab1770c5b5c006ca52f88bdc215847dd14b Author: Piotr Przybylski piotrprz@gmail.com Date: Sat Mar 12 00:20:04 2011 +0100
improved database group display
-----------------------------------------------------------------------
Summary of changes: libraries/List_Database.class.php | 2 +- themes/pmahomme/css/theme_left.css.php | 4 ++++ 2 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/libraries/List_Database.class.php b/libraries/List_Database.class.php index c94f438..3354a1e 100644 --- a/libraries/List_Database.class.php +++ b/libraries/List_Database.class.php @@ -371,7 +371,7 @@ require_once './libraries/List.class.php'; $return = '<ul id="databaseList" xml:lang="en" dir="ltr">' . "\n"; foreach ($this->getGroupedDetails($offset, $count) as $group => $dbs) { if (count($dbs) > 1) { - $return .= '<li>' . htmlspecialchars($group) . '<ul>' . "\n"; + $return .= '<li><span>' . htmlspecialchars($group) . '</span><ul>' . "\n"; // whether display db_name cut by the group part $cut = true; } else { diff --git a/themes/pmahomme/css/theme_left.css.php b/themes/pmahomme/css/theme_left.css.php index 757a3db..5733cb0 100644 --- a/themes/pmahomme/css/theme_left.css.php +++ b/themes/pmahomme/css/theme_left.css.php @@ -101,6 +101,10 @@ ul#databaseList { font-style: italic; }
+ul#databaseList span { + padding: 5px; +} + ul#databaseList a { display: block; padding:5px;
hooks/post-receive