bug #1449845 Nowrap in character sets

This commit is contained in:
Sebastian Mendel
2006-06-20 12:12:15 +00:00
parent 652c57a9d7
commit 1f7dc05c30
3 changed files with 14 additions and 11 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - ChangeLog
$Id$ $Id$
$Source$ $Source$
2006-06-20 Sebastian Mendel <cybot_tm@users.sourceforge.net>
* themes/*/css/theme_right.css.php: bug #1449845 Nowrap in character sets
2006-06-15 Marc Delisle <lem9@users.sourceforge.net> 2006-06-15 Marc Delisle <lem9@users.sourceforge.net>
* libraries/sql_query_form.lib.php: Delimiter only if MySQL supports it * libraries/sql_query_form.lib.php: Delimiter only if MySQL supports it

View File

@@ -212,11 +212,11 @@ table tr.hover {
table .value { table .value {
text-align: <?php echo $right; ?>; text-align: <?php echo $right; ?>;
white-space: nowrap; white-space: normal;
} }
/* IE doesnt handles 'pre' right */ /* IE doesnt handles 'pre' right */
table [class=value] { table [class=value] {
white-space: pre; white-space: normal;
} }

View File

@@ -189,11 +189,11 @@ table tr.hover {
table .value { table .value {
text-align: <?php echo $right; ?>; text-align: <?php echo $right; ?>;
white-space: nowrap; white-space: normal;
} }
/* IE doesnt handles 'pre' right */ /* IE doesnt handles 'pre' right */
table [class=value] { table [class=value] {
white-space: pre; white-space: normal;
} }