issue 1348 fixed. Make enough widget's width/height.

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@10276 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ChanMyeong 2012-02-29 14:52:42 +00:00
parent efe7a6d05e
commit debe44afdc
2 changed files with 4 additions and 4 deletions

View file

@ -434,20 +434,20 @@
$oEditorController = &getController('editor');
$body = $oEditorController->transComponent($body);
$widget_content_header = sprintf('%s<div class="wgWrap" style="_display:inline;_zoom:1;display:inline-block;vertical-align:top;%s">', $args->id, $style, $inner_style);
$widget_content_header = sprintf('%s<div class="wgWrap" style="display:inline-block;*display:inline;*zoom:1;vertical-align:top;%s">', $args->id, $style, $inner_style);
$widget_content_body = $body;
$widget_content_footer = '</div>';
break;
// If the widget box; it could
case 'widgetBox' :
$widget_content_header = sprintf('%s<div class="wgWrap" style="_display:inline;_zoom:1;display:inline-block;vertical-align:top;%s"><div class="deprecated"><div class="deprecated">', $args->id, $style, $inner_style);
$widget_content_header = sprintf('%s<div class="wgWrap" style="display:inline-block;*display:inline;*zoom:1;vertical-align:top;%s"><div class="deprecated"><div class="deprecated">', $args->id, $style, $inner_style);
$widget_content_body = $widgetbox_content;
break;
// If the General wijetil
default :
$widget_content_header = sprintf('%s<div class="wgWrap" style="_display:inline;_zoom:1;display:inline-block;vertical-align:top;%s">',$args->id,$style);
$widget_content_header = sprintf('%s<div class="wgWrap" style="display:inline-block;*display:inline;*zoom:1;vertical-align:top;%s">',$args->id,$style);
$widget_content_body = sprintf('%s<div class="deprecated">%s</div>', $inner_style,$widget_content);
$widget_content_footer = '</div>';
break;