From 44f7426c55a5d122c953b56e09fe05a441c98aa2 Mon Sep 17 00:00:00 2001 From: zero Date: Tue, 10 Jun 2008 05:23:56 +0000 Subject: [PATCH] =?UTF-8?q?#477=20=EB=B8=8C=EB=9D=BC=EC=9A=B0=EC=A0=80?= =?UTF-8?q?=EB=B3=84=EB=A1=9C=20=EB=AA=85=EC=8B=9C=EC=A0=81=EC=9C=BC?= =?UTF-8?q?=EB=A1=9C=20=EA=B8=B8=EC=9D=B4=EA=B0=80=20=EC=A0=95=ED=95=B4?= =?UTF-8?q?=EC=A7=80=EC=A7=80=20=EC=95=8A=EC=9D=80=20=EA=B0=9D=EC=B2=B4?= =?UTF-8?q?=EC=9D=98=20=EA=B8=B8=EC=9D=B4=EB=A5=BC=20=EA=B5=AC=ED=95=98?= =?UTF-8?q?=EC=A7=80=20=EB=AA=BB=ED=95=98=EB=8A=94=20=EA=B4=80=EA=B3=84?= =?UTF-8?q?=EB=A1=9C=20textarea=EC=9D=98=20=EA=B0=80=EB=A1=9C=20=EA=B8=B8?= =?UTF-8?q?=EC=9D=B4=EB=A5=BC=20=EB=B6=80=EB=AA=A8=20=EA=B0=9D=EC=B2=B4?= =?UTF-8?q?=EC=9D=98=2099%=EB=A1=9C=20=EC=A1=B0=EC=A0=88=ED=95=98=EC=97=AC?= =?UTF-8?q?=20=EB=AC=B8=EC=A0=9C=20=ED=95=B4=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@4267 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- modules/editor/skins/textarea/css/editor.css | 4 ++-- modules/editor/skins/textarea/editor.html | 2 +- modules/editor/skins/textarea/js/xe_interface.js | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/editor/skins/textarea/css/editor.css b/modules/editor/skins/textarea/css/editor.css index e29fa20c8..31a89edd8 100644 --- a/modules/editor/skins/textarea/css/editor.css +++ b/modules/editor/skins/textarea/css/editor.css @@ -1,4 +1,4 @@ @charset "utf-8"; -.xeTextareaEditor {width:100%; } -.xeTextareaEditor textarea { display:block; margin:10px 10px 0 10px; width:90%;} +.xeTextareaEditor {padding:10px; overflow:hidden; } +.xeTextareaEditor textarea { display:block; margin:0; padding:2px; } diff --git a/modules/editor/skins/textarea/editor.html b/modules/editor/skins/textarea/editor.html index 697011c71..ff2f9d35a 100644 --- a/modules/editor/skins/textarea/editor.html +++ b/modules/editor/skins/textarea/editor.html @@ -8,7 +8,7 @@
- +
diff --git a/modules/editor/skins/textarea/js/xe_interface.js b/modules/editor/skins/textarea/js/xe_interface.js index 8c3b9fc21..a006e002e 100644 --- a/modules/editor/skins/textarea/js/xe_interface.js +++ b/modules/editor/skins/textarea/js/xe_interface.js @@ -2,7 +2,7 @@ function editorStartTextarea(editor_sequence, content_key, primary_key) { var obj = xGetElementById('editor_'+editor_sequence); obj.form.setAttribute('editor_sequence', editor_sequence); - xWidth(obj,xWidth(obj.parentNode)-24); + obj.style.width = '99%'; editorRelKeys[editor_sequence] = new Array(); editorRelKeys[editor_sequence]["primary"] = obj.form[primary_key];