mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-27 15:19:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@573 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
ba7c2e3b02
commit
1d5e065dac
4 changed files with 68 additions and 1 deletions
|
|
@ -37,3 +37,46 @@ a.bold {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
div,body {
|
||||||
|
font-size:9pt;
|
||||||
|
font-weight:normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size:20pt;
|
||||||
|
font-weight:bold;
|
||||||
|
background-color:#efefef;
|
||||||
|
color:#0f217c;
|
||||||
|
padding:5px;
|
||||||
|
border-bottom:1px solid #445bcd;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
font-size:16pt;
|
||||||
|
font-weight:bold;
|
||||||
|
background-color:#efefef;
|
||||||
|
padding:3px;
|
||||||
|
border-bottom:1px solid #445bcd;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
font-size:13pt;
|
||||||
|
font-weight:normal;
|
||||||
|
background-color:#efefef;
|
||||||
|
padding:3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h4 {
|
||||||
|
font-size:10pt;
|
||||||
|
font-weight:bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
h5 {
|
||||||
|
font-size:9pt;
|
||||||
|
font-weight:normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
h6 {
|
||||||
|
font-size:8pt;
|
||||||
|
font-weight:normal;
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -30,6 +30,12 @@
|
||||||
<option value="6">24pt</option>
|
<option value="6">24pt</option>
|
||||||
<option value="7">36pt</option>
|
<option value="7">36pt</option>
|
||||||
</select>
|
</select>
|
||||||
|
<select onChange="editorChangeHeader(this,'{$upload_target_srl}')" id="editor_header_{$upload_target_srl}">
|
||||||
|
<option value="">{$lang->edit->header}</option>
|
||||||
|
<!--@foreach($lang->edit->header_list as $key=>$obj)-->
|
||||||
|
<option value="{$key}">{$obj}</option>
|
||||||
|
<!--@end-->
|
||||||
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- 에디팅 관련 아이콘 -->
|
<!-- 에디팅 관련 아이콘 -->
|
||||||
|
|
|
||||||
|
|
@ -52,7 +52,7 @@ function editorStart(upload_target_srl) {
|
||||||
'<html><head><meta http-equiv="content-type" content="text/html; charset=utf-8"/>'+
|
'<html><head><meta http-equiv="content-type" content="text/html; charset=utf-8"/>'+
|
||||||
'<link rel="stylesheet" href="./common/css/default.css" type="text/css" />'+
|
'<link rel="stylesheet" href="./common/css/default.css" type="text/css" />'+
|
||||||
'<link rel="stylesheet" href="'+editor_path+'/css/editor.css" type="text/css" />'+
|
'<link rel="stylesheet" href="'+editor_path+'/css/editor.css" type="text/css" />'+
|
||||||
'</head><body style="background-color:#FFFFFF;font-family:'+default_font+';font-size:9pt;" upload_target_srl="'+upload_target_srl+'">'+
|
'</head><body style="background-color:#FFFFFF;font-family:'+default_font+';" upload_target_srl="'+upload_target_srl+'">'+
|
||||||
content+
|
content+
|
||||||
'</body></html>'+
|
'</body></html>'+
|
||||||
'';
|
'';
|
||||||
|
|
@ -396,6 +396,14 @@ function editorChangeFontSize(obj,srl) {
|
||||||
obj.selectedIndex = 0;
|
obj.selectedIndex = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function editorChangeHeader(obj,srl) {
|
||||||
|
var value = obj.options[obj.selectedIndex].value;
|
||||||
|
if(!value) return;
|
||||||
|
value = "<"+value+">";
|
||||||
|
editorDo('formatblock',value,srl);
|
||||||
|
obj.selectedIndex = 0;
|
||||||
|
}
|
||||||
|
|
||||||
function editorDoInsertUrl(link, upload_target_srl) {
|
function editorDoInsertUrl(link, upload_target_srl) {
|
||||||
editorFocus(upload_target_srl);
|
editorFocus(upload_target_srl);
|
||||||
var iframe_obj = editorGetIFrame(srl);
|
var iframe_obj = editorGetIFrame(srl);
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,16 @@
|
||||||
"Arial",
|
"Arial",
|
||||||
);
|
);
|
||||||
|
|
||||||
|
$lang->edit->header = "형식";
|
||||||
|
$lang->edit->header_list = array(
|
||||||
|
"h1" => "큰 제목 (h1)",
|
||||||
|
"h2" => "중간 제목 (h2)",
|
||||||
|
"h3" => "작은 제목 (h3)",
|
||||||
|
"h4" => "제목 (h4)",
|
||||||
|
"h5" => "일반 (h5)",
|
||||||
|
"h6" => "작은글 (h6)",
|
||||||
|
);
|
||||||
|
|
||||||
$lang->edit->image_url = '이미지 경로';
|
$lang->edit->image_url = '이미지 경로';
|
||||||
|
|
||||||
$lang->edit->multimedia_url = '멀티미디어 경로';
|
$lang->edit->multimedia_url = '멀티미디어 경로';
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue