Not .nowrap, but div.nowrap should have zero margin/padding.

This commit is contained in:
Michal Čihař
2004-04-28 14:34:13 +00:00
parent 147775e812
commit 1672df20d2
2 changed files with 5 additions and 0 deletions

View File

@@ -9,6 +9,8 @@ $Source$
* css/phpmyadmin.css.php: Force <button> to be displayed inline. * css/phpmyadmin.css.php: Force <button> to be displayed inline.
* libraries/common.lib.php: When only_db matches no database, do not show * libraries/common.lib.php: When only_db matches no database, do not show
any (bug #943626). any (bug #943626).
* css/phpmyadmin.css.php: Not .nowrap, but div.nowrap should have zero
margin/padding.
2004-04-28 Garvin Hicking <pma@supergarv.de> 2004-04-28 Garvin Hicking <pma@supergarv.de>
* left.php, main.php, server_databases.php, common.lib.php, * left.php, main.php, server_databases.php, common.lib.php,

View File

@@ -280,6 +280,9 @@ form.clock {
.nowrap { .nowrap {
white-space: nowrap; white-space: nowrap;
}
div.nowrap {
margin: 0px; margin: 0px;
padding: 0px; padding: 0px;
} }