From 9701122df07c711ac9de3aae354f0569a9621746 Mon Sep 17 00:00:00 2001 From: zero Date: Mon, 19 Nov 2007 06:14:12 +0000 Subject: [PATCH] =?UTF-8?q?=EC=97=90=EB=94=94=ED=84=B0=20=EA=B8=B0?= =?UTF-8?q?=EB=B3=B8=20=EC=8A=A4=ED=82=A8=EC=97=90=EC=84=9C=20IE6=EC=97=90?= =?UTF-8?q?=EC=84=9C=20=EC=97=90=EB=94=94=ED=84=B0=20=EC=9E=85=EB=A0=A5=20?= =?UTF-8?q?=ED=8F=BC=EC=9D=B4=20=EC=B9=B8=EC=9D=84=20=EC=82=90=EC=A0=B8=20?= =?UTF-8?q?=EB=82=98=EC=98=A4=EB=8D=98=20=EB=AC=B8=EC=A0=9C=20=ED=95=B4?= =?UTF-8?q?=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3001 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- modules/editor/skins/default/css/editor.css | 2 +- modules/editor/skins/default/editor.html | 2 +- modules/editor/tpl/js/editor.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/editor/skins/default/css/editor.css b/modules/editor/skins/default/css/editor.css index b2c5a13b9..a6562c128 100644 --- a/modules/editor/skins/default/css/editor.css +++ b/modules/editor/skins/default/css/editor.css @@ -21,7 +21,7 @@ .xeEditor .editorInfo { background:#fbfbfb; padding:.5em; border:1px solid #e1e1dd; color:#999999; position:relative; margin:5px 20px 0 20px;} .xeEditor .close { cursor:pointer; position:absolute; top:3px; right:3px; _top:3px; _right:25px;} -.xeEditor .editor_iframe_box { background:#ffffff; clear:both; border:1px solid; border-color:#a6a6a6 #d8d8d8 #d8d8d8 #a6a6a6; padding:10px; margin:0 20px 0 20px; } +.xeEditor .editor_iframe_box { background:#ffffff; clear:both; border:1px solid; border-color:#a6a6a6 #d8d8d8 #d8d8d8 #a6a6a6; padding:5px; margin:0 20px 0 20px; } .xeEditor .editor_iframe_textarea { background:#ffffff; clear:both; border:1px solid; border-color:#a6a6a6 #d8d8d8 #d8d8d8 #a6a6a6; padding:.5em; margin:0 20px 0 20px; width:100%; font-size:1em; display:none;} .xeEditor .textAreaDragIndicator { text-align:center; background:url(../images/lineTextAreaDrag.gif) repeat-x left center; padding:5px 0 5px 0; } diff --git a/modules/editor/skins/default/editor.html b/modules/editor/skins/default/editor.html index c45f6c538..9cd093c51 100644 --- a/modules/editor/skins/default/editor.html +++ b/modules/editor/skins/default/editor.html @@ -137,7 +137,7 @@ -
+
diff --git a/modules/editor/tpl/js/editor.js b/modules/editor/tpl/js/editor.js index 10dda616e..a6d96dd99 100755 --- a/modules/editor/tpl/js/editor.js +++ b/modules/editor/tpl/js/editor.js @@ -103,7 +103,7 @@ function editorStart(editor_sequence, primary_key, content_key, resizable, edito // iframe obj를 찾음 var iframe_obj = editorGetIFrame(editor_sequence); if(!iframe_obj) return; - iframe_obj.style.width = "100%"; + xWidth(iframe_obj, xWidth(iframe_obj.parentNode)-12); // 현 에디터를 감싸고 있는 form문을 찾음 var fo_obj = editorGetForm(editor_sequence);