mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 02:31:40 +09:00
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:
parent
efe7a6d05e
commit
debe44afdc
2 changed files with 4 additions and 4 deletions
|
|
@ -6,7 +6,7 @@
|
|||
#colorset_area .header{float:left;margin-right:.5em;padding-top:.2em}
|
||||
#colorset_area .footer{float:left}
|
||||
.pageAddContent{width:700px}
|
||||
.wgWrap{_display:inline;_zoom:1;display:inline-block;vertical-align:top;cursor:move;z-index:99;position:relative}
|
||||
.wgWrap{display:inline-block;*display:inline;*zoom:1;vertical-align:top;cursor:move;z-index:99;position:relative}
|
||||
.wgWrap .wgRight,
|
||||
.wgWrap .wgBoxRight {border:0;background:transparent url("../images/btn_resize.gif") no-repeat left bottom;width:12px;height:12px;position:absolute;bottom:1px;right:1px;cursor:pointer;z-index:99}
|
||||
.wgWrap .wgBorder,
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue