class nowrap was missing; div not allowed here

This commit is contained in:
Marc Delisle
2010-10-09 09:05:54 -04:00
parent 452dce72a2
commit 7d0c11c256
3 changed files with 10 additions and 2 deletions

View File

@@ -102,7 +102,7 @@ function PMA_getIcon($icon, $alternate = '', $container = false, $force_text = f
} }
if ($include_box) { if ($include_box) {
$button .= '<div class="nowrap">'; $button .= '<span class="nowrap">';
} }
if ($include_icon) { if ($include_icon) {
@@ -120,7 +120,7 @@ function PMA_getIcon($icon, $alternate = '', $container = false, $force_text = f
} }
if ($include_box) { if ($include_box) {
$button .= '</div>'; $button .= '</span>';
} }
return $button; return $button;

View File

@@ -610,6 +610,10 @@ td.disabled {
background-color: #cccccc; background-color: #cccccc;
} }
.nowrap {
white-space: nowrap;
}
/** /**
* login form * login form
*/ */

View File

@@ -585,6 +585,10 @@ td.disabled {
background-color: #cccccc; background-color: #cccccc;
} }
.nowrap {
white-space: nowrap;
}
/** /**
* login form * login form
*/ */