nowrap for IE and pre for the rest

This commit is contained in:
Sebastian Mendel
2005-10-20 12:29:14 +00:00
parent f892e93431
commit 53f593fa58
2 changed files with 5 additions and 1 deletions

View File

@@ -17,6 +17,7 @@ $Source$
* libraries/left.js: dropped
* libraries/function.js: tuned PMA_merkRowsInit():
every table with class data now has mark and hover effect
* css/phpmyadmin.css.php: nowrap for IE and pre for the rest
2005-10-19 Alexander M. Turek <me@derrabus.de>
* lang/*.inc.php, libraries/mysql_charsets.lib.php: Correct description

View File

@@ -33,9 +33,12 @@ caption {
table .value {
text-align: right;
white-space: nowrap;
white-space: pre;
font-family: "Courier New", Courier, monospace;
}
/* IE doesnt handles 'pre' right */
table [class=value] {
white-space: pre;
}
table .unit,
table .name {