기본 에디터 스킨의 에디터 도움말 및 html편집기의 margin/padding 맞춤

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3443 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-12-31 02:46:51 +00:00
parent 95b5d57403
commit 10d5997c12
2 changed files with 4 additions and 5 deletions

View file

@ -19,10 +19,10 @@
.xeEditor .optionD { padding:.5em 0 .5em .8em; overflow:hidden; float:left; border-right:1px solid #e0e0e0;} .xeEditor .optionD { padding:.5em 0 .5em .8em; overflow:hidden; float:left; border-right:1px solid #e0e0e0;}
.xeEditor .optionE { padding:4px 0 0 9px; overflow:hidden; float:left;} .xeEditor .optionE { padding:4px 0 0 9px; overflow:hidden; float:left;}
.xeEditor .editorInfo { background:transparent; padding:.5em; border:1px solid #e1e1dd; color:#999999; position:relative; margin:5px 20px 0 20px;} .xeEditor .editorInfo { background:transparent; padding:.5em; border:1px solid #e1e1dd; color:#999999; position:relative; margin:5px 10px 0 10px;}
.xeEditor .close { cursor:pointer; position:absolute; top:3px; right:3px; _top:3px; _right:25px;} .xeEditor .close { cursor:pointer; position:absolute; top:3px; right:3px; _top:3px; _right:15px;}
.xeEditor .editor_iframe_box { clear:both; border:1px solid; border-color:#a6a6a6 #d8d8d8 #d8d8d8 #a6a6a6; padding:3px; margin:3px 10px 5px 10px; } .xeEditor .editor_iframe_box { clear:both; border:1px solid; border-color:#a6a6a6 #d8d8d8 #d8d8d8 #a6a6a6; padding:3px; margin:3px 10px 5px 10px; }
.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 .editor_iframe_textarea { background:#ffffff; clear:both; border:1px solid; border-color:#a6a6a6 #d8d8d8 #d8d8d8 #a6a6a6; margin:5px 10px 0 10px; 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; } .xeEditor .textAreaDragIndicator { text-align:center; background:url(../images/lineTextAreaDrag.gif) repeat-x left center; padding:5px 0 5px 0; }
.xeEditor .textAreaDragIndicatorBar { background:url(../images/buttonTextAreaDrag.gif) no-repeat center; cursor:move;height:14px;} .xeEditor .textAreaDragIndicatorBar { background:url(../images/buttonTextAreaDrag.gif) no-repeat center; cursor:move;height:14px;}

View file

@ -43,7 +43,6 @@ function editorGetContent_xe(editor_sequence) {
return html; return html;
} }
// 에디터 내의 선택된 부분의 NODE를 return // 에디터 내의 선택된 부분의 NODE를 return
function editorGetSelectedNode(editor_sequence) { function editorGetSelectedNode(editor_sequence) {
var iframe_obj = editorGetIFrame(editor_sequence); var iframe_obj = editorGetIFrame(editor_sequence);
@ -122,7 +121,7 @@ function editorStart(editor_sequence, primary_key, content_key, editor_height) {
'<link rel="stylesheet" href="'+request_uri+'common/css/default.css" type="text/css" />'+ '<link rel="stylesheet" href="'+request_uri+'common/css/default.css" type="text/css" />'+
'<link rel="stylesheet" href="'+request_uri+editor_path+'css/editor.css" type="text/css" />'+ '<link rel="stylesheet" href="'+request_uri+editor_path+'css/editor.css" type="text/css" />'+
'<style style="text/css">'+ '<style style="text/css">'+
'body {font-size:9pt;margin:0px; height:'+editor_height+'px; background-color:transparent;}'+ 'body {font-size:9pt;margin:0px; height:'+editor_height+'px; background-color:transparent; line-height:140%;}'+
'blockquote, ol, ul { margin-left:40px; }'+ 'blockquote, ol, ul { margin-left:40px; }'+
'</style>'+ '</style>'+
'</head><body editor_sequence="'+editor_sequence+'">'+ '</head><body editor_sequence="'+editor_sequence+'">'+