From b7edd3fa2652a0eaa68e8ec445908df3152f80db Mon Sep 17 00:00:00 2001 From: thisgun Date: Fri, 23 Jun 2017 12:26:34 +0900 Subject: [PATCH 01/10] =?UTF-8?q?=EA=B7=B8=EB=88=84=EB=B3=B4=EB=93=9C=20AN?= =?UTF-8?q?D=20=EA=B2=80=EC=83=89=EC=9D=84=20=EC=9D=B4=EC=9A=A9=ED=95=9C?= =?UTF-8?q?=20=EC=B7=A8=EC=95=BD=EC=A0=90=20=EC=88=98=EC=A0=95=20(17-455)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bbs/search.php | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/bbs/search.php b/bbs/search.php index 32ebf3e99..9aa1ca42b 100644 --- a/bbs/search.php +++ b/bbs/search.php @@ -54,15 +54,19 @@ if ($stx) { $g5_search['read_level'][] = $row['bo_read_level']; } - $search_query = 'sfl='.urlencode($sfl).'&stx='.urlencode($stx).'&sop='.$sop; - - - $text_stx = get_text(stripslashes($stx)); - $op1 = ''; // 검색어를 구분자로 나눈다. 여기서는 공백 $s = explode(' ', strip_tags($stx)); + + if( count($s) > 1 ){ + $s = array_slice($s, 0, 2); + $stx = implode(' ', $s); + } + + $text_stx = get_text(stripslashes($stx)); + + $search_query = 'sfl='.urlencode($sfl).'&stx='.urlencode($stx).'&sop='.$sop; // 검색필드를 구분자로 나눈다. 여기서는 + $field = explode('||', trim($sfl)); @@ -233,4 +237,4 @@ if (!$sop) $sop = 'or'; include_once($search_skin_path.'/search.skin.php'); include_once('./_tail.php'); -?> +?> \ No newline at end of file From f365e8abe10c18475b8a549b949f204245209cf1 Mon Sep 17 00:00:00 2001 From: thisgun Date: Wed, 28 Jun 2017 14:33:28 +0900 Subject: [PATCH 02/10] =?UTF-8?q?1:1=20=EB=AC=B8=EC=9D=98=20=ED=8E=98?= =?UTF-8?q?=EC=9D=B4=EC=A7=95=20=EC=98=A4=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bbs/qalist.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bbs/qalist.php b/bbs/qalist.php index cff719f2a..2e5dd0640 100644 --- a/bbs/qalist.php +++ b/bbs/qalist.php @@ -110,7 +110,7 @@ if(is_file($skin_file)) { $list_href = G5_BBS_URL.'/qalist.php'; $write_href = G5_BBS_URL.'/qawrite.php'; - $list_pages = preg_replace('/(\.php)(&|&)/i', '$1?', get_paging(G5_IS_MOBILE ? $qaconfig['qa_mobile_page_rows'] : $qaconfig['qa_page_rows'], $page, $total_page, './qalist.php'.$qstr.'&page=')); + $list_pages = preg_replace('/(\.php)(&|&)/i', '$1?', get_paging(G5_IS_MOBILE ? $config['cf_mobile_pages'] : $config['cf_write_pages'], $page, $total_page, './qalist.php'.$qstr.'&page=')); $stx = get_text(stripslashes($stx)); include_once($skin_file); From 7f6b5d1b588cebc03b539ce8051644bdbfc407ee Mon Sep 17 00:00:00 2001 From: thisgun Date: Mon, 3 Jul 2017 09:50:13 +0900 Subject: [PATCH 03/10] =?UTF-8?q?cheditor=20js=20=EC=97=85=EB=A1=9C?= =?UTF-8?q?=EB=93=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugin/editor/cheditor5/cheditor.js | 61 ++++++++++++++++++++++++++++- 1 file changed, 59 insertions(+), 2 deletions(-) diff --git a/plugin/editor/cheditor5/cheditor.js b/plugin/editor/cheditor5/cheditor.js index adc925981..7321de001 100644 --- a/plugin/editor/cheditor5/cheditor.js +++ b/plugin/editor/cheditor5/cheditor.js @@ -1082,7 +1082,7 @@ cheditor.prototype = { showError('현재 브라우저에서 ' + self.templateFile + ' 파일을 사용할 수 없습니다.'); } }, - +/* getCDATASection : function (node) { var elem, data; if (node.hasChildNodes()) { @@ -1100,6 +1100,14 @@ cheditor.prototype = { } return null; }, +*/ + getCDATASection : function (node) { + var text = node.textContent || node.text; + text = text.replace(/\n/g, ''); + text = text.replace(/(\s+?)<([^>]*)>/g, '<$2>'); + text = this.trimSpace(text); + return text; + }, setToolbarBgPosition : function (elem, attr) { elem.style.backgroundPosition = attr; @@ -2036,7 +2044,7 @@ cheditor.prototype = { container.style.width = self.config.editorWidth; self.cheditor.container = container; }, - +/* loadTemplate : function (xmlDoc) { var self = this, tmpl = xmlDoc.getElementsByTagName('Template').item(0), @@ -2083,6 +2091,55 @@ cheditor.prototype = { self.cheditor.htmlEditable.style.visibility = 'hidden'; container.appendChild(self.cheditor.htmlEditable); }, +*/ + + loadTemplate : function (xmlDoc) { + var cdata, container, dragHandle, html, modalFrame, popupWindow, tmpDiv, tmpl, toolbar; + tmpl = xmlDoc.getElementsByTagName('Template').item(0); + if (!tmpl) { + throw 'Template 노드를 설정할 수 없습니다.'; + } + cdata = tmpl.getElementsByTagName('Container').item(0).getElementsByTagName('Html').item(0); + if (!cdata) { + throw 'XML CDATA 오류'; + } + html = this.getCDATASection(cdata); + tmpDiv = document.createElement('div'); + tmpDiv.innerHTML = html; + container = tmpDiv.firstChild; + + toolbar = tmpl.getElementsByTagName('Toolbar').item(0); + this.createEditorElement(container, toolbar); + + cdata = tmpl.getElementsByTagName('PopupWindow').item(0).getElementsByTagName('Html').item(0); + if (!cdata) { + throw 'XML CDATA 오류'; + } + html = this.getCDATASection(cdata); + tmpDiv.innerHTML = html; + popupWindow = tmpDiv.firstChild; + this.cheditor.popupElem = popupWindow; + + dragHandle = popupWindow.firstChild; + this.cheditor.dragHandle = dragHandle; + this.cheditor.popupTitle = dragHandle.getElementsByTagName('label')[0]; + this.cheditor.popupFrameWrapper = dragHandle.nextSibling; + container.appendChild(popupWindow); + + modalFrame = document.createElement('div'); + modalFrame.className = 'cheditor-modalPopupTransparent'; + this.cheditor.modalBackground = modalFrame; + this.cheditor.modalBackground.id = 'popupModalBackground'; + this.cheditor.modalBackground.className = 'cheditor-popupModalBackground'; + container.parentNode.insertBefore(modalFrame, container); + + this.cheditor.htmlEditable = document.createElement('iframe'); + this.cheditor.htmlEditable.style.display = 'none'; + this.cheditor.htmlEditable.style.width = '1px'; + this.cheditor.htmlEditable.style.height = '1px'; + this.cheditor.htmlEditable.style.visibility = 'hidden'; + container.appendChild(this.cheditor.htmlEditable); + }, imageEvent : function (img, action) { var self = this, From 0575cdab18fde6a93b3da5fdd0a2c51017df9193 Mon Sep 17 00:00:00 2001 From: thisgun Date: Mon, 3 Jul 2017 10:06:52 +0900 Subject: [PATCH 04/10] =?UTF-8?q?=EC=8A=A4=EB=A7=88=ED=8A=B8=EC=97=90?= =?UTF-8?q?=EB=94=94=ED=84=B0=202.9.0=20=EB=B2=84=EC=A0=84=EC=9C=BC?= =?UTF-8?q?=EB=A1=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugin/editor/smarteditor2/SmartEditor2.html | 78 + .../editor/smarteditor2/SmartEditor2Skin.html | 1518 +- .../smarteditor2/SmartEditor2Skin_en_US.html | 790 + .../smarteditor2/SmartEditor2Skin_ja_JP.html | 798 + .../smarteditor2/SmartEditor2Skin_ko_KR.html | 790 + .../smarteditor2/SmartEditor2Skin_zh_CN.html | 790 + .../smarteditor2/SmartEditor2Skin_zh_TW.html | 790 + .../smarteditor2/SmartEditor2noframe.html | 850 + plugin/editor/smarteditor2/config.js | 1 + .../smarteditor2/css/en_US/smart_editor2.css | 192 + .../css/en_US/smart_editor2_in.css | 24 + .../css/en_US/smart_editor2_items.css | 447 + .../css/en_US/smart_editor2_out.css | 12 + .../smarteditor2/css/ja_JP/smart_editor2.css | 190 + .../css/ja_JP/smart_editor2_in.css | 24 + .../css/ja_JP/smart_editor2_items.css | 447 + .../css/ja_JP/smart_editor2_out.css | 12 + .../smarteditor2/css/ko_KR/smart_editor2.css | 193 + .../css/ko_KR/smart_editor2_in.css | 24 + .../css/ko_KR/smart_editor2_items.css | 462 + .../css/ko_KR/smart_editor2_out.css | 12 + .../smarteditor2/css/zh_CN/smart_editor2.css | 190 + .../css/zh_CN/smart_editor2_in.css | 24 + .../css/zh_CN/smart_editor2_items.css | 447 + .../css/zh_CN/smart_editor2_out.css | 12 + .../smarteditor2/css/zh_TW/smart_editor2.css | 190 + .../css/zh_TW/smart_editor2_in.css | 24 + .../css/zh_TW/smart_editor2_items.css | 417 + .../css/zh_TW/smart_editor2_out.css | 12 + plugin/editor/smarteditor2/editor.lib.php | 2 +- plugin/editor/smarteditor2/img/bg_spell.gif | Bin 0 -> 46 bytes .../editor/smarteditor2/img/bx_set_110302.gif | Bin 0 -> 34462 bytes .../editor/smarteditor2/img/en_US/btn_set.png | Bin 0 -> 74008 bytes .../smarteditor2/img/en_US/text_tool_set.png | Bin 0 -> 19897 bytes plugin/editor/smarteditor2/img/icon_set.gif | Bin 4611 -> 5957 bytes .../editor/smarteditor2/img/ja_JP/btn_set.png | Bin 0 -> 65756 bytes .../smarteditor2/img/ja_JP/text_tool_set.png | Bin 0 -> 20409 bytes .../editor/smarteditor2/img/ko_KR/btn_set.png | Bin 1469116 -> 77167 bytes .../smarteditor2/img/ko_KR/text_tool_set.png | Bin 11403 -> 19808 bytes .../editor/smarteditor2/img/zh_CN/btn_set.png | Bin 0 -> 37660 bytes .../smarteditor2/img/zh_CN/text_tool_set.png | Bin 0 -> 19897 bytes .../editor/smarteditor2/img/zh_TW/btn_set.png | Bin 0 -> 64362 bytes .../smarteditor2/img/zh_TW/text_tool_set.png | Bin 0 -> 19897 bytes .../js/SE2B_Configuration_General.js | 52 - .../js/SE2B_Configuration_Service.js | 71 - plugin/editor/smarteditor2/js/jindo.min.js | 1 - .../editor/smarteditor2/js/jindo_component.js | 1 - .../editor/smarteditor2/js/lib/jindo2.all.js | 2 +- .../smarteditor2/js/lib/jindo_component.js | 2 +- .../js/{ => service}/HuskyEZCreator.js | 283 +- .../js/{ => service}/SE2BasicCreator.js | 39 +- .../js/{ => service}/SE2M_Configuration.js | 20 +- .../js/service/hp_SE_OuterIFrameControl.js | 128 + .../js/service/hp_SE_ToolbarToggler.js | 48 + .../js/service/husky_SE2B_Lang_en_US.js | 39 + .../js/service/husky_SE2B_Lang_ja_JP.js | 39 + .../js/service/husky_SE2B_Lang_ko_KR.js | 39 + .../js/service/husky_SE2B_Lang_zh_CN.js | 39 + .../js/service/husky_SE2B_Lang_zh_TW.js | 39 + plugin/editor/smarteditor2/js/smarteditor2.js | 41408 ++++++++-------- .../smarteditor2/js/smarteditor2.min.js | 19 +- .../smarteditor2/smart_editor2_inputarea.html | 14 +- .../smart_editor2_inputarea_ie8.html | 16 +- 63 files changed, 30108 insertions(+), 21953 deletions(-) create mode 100644 plugin/editor/smarteditor2/SmartEditor2.html create mode 100644 plugin/editor/smarteditor2/SmartEditor2Skin_en_US.html create mode 100644 plugin/editor/smarteditor2/SmartEditor2Skin_ja_JP.html create mode 100644 plugin/editor/smarteditor2/SmartEditor2Skin_ko_KR.html create mode 100644 plugin/editor/smarteditor2/SmartEditor2Skin_zh_CN.html create mode 100644 plugin/editor/smarteditor2/SmartEditor2Skin_zh_TW.html create mode 100644 plugin/editor/smarteditor2/SmartEditor2noframe.html create mode 100644 plugin/editor/smarteditor2/css/en_US/smart_editor2.css create mode 100644 plugin/editor/smarteditor2/css/en_US/smart_editor2_in.css create mode 100644 plugin/editor/smarteditor2/css/en_US/smart_editor2_items.css create mode 100644 plugin/editor/smarteditor2/css/en_US/smart_editor2_out.css create mode 100644 plugin/editor/smarteditor2/css/ja_JP/smart_editor2.css create mode 100644 plugin/editor/smarteditor2/css/ja_JP/smart_editor2_in.css create mode 100644 plugin/editor/smarteditor2/css/ja_JP/smart_editor2_items.css create mode 100644 plugin/editor/smarteditor2/css/ja_JP/smart_editor2_out.css create mode 100644 plugin/editor/smarteditor2/css/ko_KR/smart_editor2.css create mode 100644 plugin/editor/smarteditor2/css/ko_KR/smart_editor2_in.css create mode 100644 plugin/editor/smarteditor2/css/ko_KR/smart_editor2_items.css create mode 100644 plugin/editor/smarteditor2/css/ko_KR/smart_editor2_out.css create mode 100644 plugin/editor/smarteditor2/css/zh_CN/smart_editor2.css create mode 100644 plugin/editor/smarteditor2/css/zh_CN/smart_editor2_in.css create mode 100644 plugin/editor/smarteditor2/css/zh_CN/smart_editor2_items.css create mode 100644 plugin/editor/smarteditor2/css/zh_CN/smart_editor2_out.css create mode 100644 plugin/editor/smarteditor2/css/zh_TW/smart_editor2.css create mode 100644 plugin/editor/smarteditor2/css/zh_TW/smart_editor2_in.css create mode 100644 plugin/editor/smarteditor2/css/zh_TW/smart_editor2_items.css create mode 100644 plugin/editor/smarteditor2/css/zh_TW/smart_editor2_out.css create mode 100644 plugin/editor/smarteditor2/img/bg_spell.gif create mode 100644 plugin/editor/smarteditor2/img/bx_set_110302.gif create mode 100644 plugin/editor/smarteditor2/img/en_US/btn_set.png create mode 100644 plugin/editor/smarteditor2/img/en_US/text_tool_set.png create mode 100644 plugin/editor/smarteditor2/img/ja_JP/btn_set.png create mode 100644 plugin/editor/smarteditor2/img/ja_JP/text_tool_set.png create mode 100644 plugin/editor/smarteditor2/img/zh_CN/btn_set.png create mode 100644 plugin/editor/smarteditor2/img/zh_CN/text_tool_set.png create mode 100644 plugin/editor/smarteditor2/img/zh_TW/btn_set.png create mode 100644 plugin/editor/smarteditor2/img/zh_TW/text_tool_set.png delete mode 100644 plugin/editor/smarteditor2/js/SE2B_Configuration_General.js delete mode 100644 plugin/editor/smarteditor2/js/SE2B_Configuration_Service.js delete mode 100644 plugin/editor/smarteditor2/js/jindo.min.js delete mode 100644 plugin/editor/smarteditor2/js/jindo_component.js rename plugin/editor/smarteditor2/js/{ => service}/HuskyEZCreator.js (82%) rename plugin/editor/smarteditor2/js/{ => service}/SE2BasicCreator.js (78%) rename plugin/editor/smarteditor2/js/{ => service}/SE2M_Configuration.js (86%) create mode 100644 plugin/editor/smarteditor2/js/service/hp_SE_OuterIFrameControl.js create mode 100644 plugin/editor/smarteditor2/js/service/hp_SE_ToolbarToggler.js create mode 100644 plugin/editor/smarteditor2/js/service/husky_SE2B_Lang_en_US.js create mode 100644 plugin/editor/smarteditor2/js/service/husky_SE2B_Lang_ja_JP.js create mode 100644 plugin/editor/smarteditor2/js/service/husky_SE2B_Lang_ko_KR.js create mode 100644 plugin/editor/smarteditor2/js/service/husky_SE2B_Lang_zh_CN.js create mode 100644 plugin/editor/smarteditor2/js/service/husky_SE2B_Lang_zh_TW.js diff --git a/plugin/editor/smarteditor2/SmartEditor2.html b/plugin/editor/smarteditor2/SmartEditor2.html new file mode 100644 index 000000000..9470b7b9f --- /dev/null +++ b/plugin/editor/smarteditor2/SmartEditor2.html @@ -0,0 +1,78 @@ + + + + +네이버 :: Smart Editor 2 ™ + + + +
+ + +

+ + + + +

+
+ + + + + \ No newline at end of file diff --git a/plugin/editor/smarteditor2/SmartEditor2Skin.html b/plugin/editor/smarteditor2/SmartEditor2Skin.html index b2cf2fc21..5f02a69bc 100644 --- a/plugin/editor/smarteditor2/SmartEditor2Skin.html +++ b/plugin/editor/smarteditor2/SmartEditor2Skin.html @@ -1,549 +1,548 @@ - - - - - - -네이버 :: Smart Editor 2 ™ - - - - - - - - - - - - - - - - - - -
-
글쓰기영역으로 바로가기 -
- -
-
    -
  • - -
    -
    -
      -
    • -
    • -
    • -
    • -
    • -
    • -
    • -
    -
    -
    - -
  • - -
  • - -
    -
    -
      -
    • -
    • -
    • -
    • -
    • -
    • -
    • -
    • -
    • -
    • -
    -
    -
    - -
  • -
    -
  • - -
  • - -
  • - -
  • - -
  • - - - -
  • - -
  • - - - -
  • - -
  • - -
  • -
    -
  • - -
  • - -
  • - -
  • - -
  • - -
    -
    -
      -
    • -
    • -
    • -
    • -
    • -
    • -
    • -
    -
    -

    직접 입력

    - - - - - -
    - -
    -
    -
    -
    - -
  • -
    -
  • -
    -
      -
    • -
    • -
    • -
    • -
    -
    -
  • -
    -
  • - - - -
  • -
    - - -
  • - -
    -
    -
    -
      -
    • -
      -
        -
      • - - -
      -
      -
    • -
    • -
      -
        -
      • - - -
      -
      -
    • -
    • -
      -
        -
      • - - -
      -
      -
    • -
    • -
      -
        -
      • - - -
      -
      -
    • -
    • -
      -
        -
      • - - -
      -
      -
    • -
    • -
      -
        -
      • - - -
      -
      -
    • -
    -

    - -

    -
    -
    -
    - -
  • - -
  • - - -
    -
    -
    -
    - 칸수 지정 -
    -
    -
    - - -
    -
    -
    - - -
    -
    - - - - - - - - - - - - - - - - - - - -
        
        
        
    -
    -
    - 속성직접입력 -
    -
    -
    -
    -
    -
    - - - -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    - - - -
    -
    -
    -
    -
    -
    - - - -
    -
    -
    -
    -
    -
    - 표스타일 -
    -
    -
    - - - -
    -
    -
    -

    - -

    - -
    - -
    -
    -
    - - -
  • - -
  • - - -
    -
    -
    - -

    찾기/바꾸기

    -
      -
    • -
    • -
    -
    -
    -
    -
    -

    - -

    -
    - - -
    -
    -
    - - -
  • -
-
    -
  • -
-
- -
- + + + + + + +네이버 :: Smart Editor 2 ™ + + + + + + + + + + + + + + + + + +
+
글쓰기영역으로 바로가기 +
+ +
+
    +
  • + +
    +
    +
      +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    +
    +
    + +
  • + +
  • + +
    +
    +
      +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    +
    +
    + +
  • +
    +
  • + +
  • + +
  • + +
  • + +
  • + + + +
  • + +
  • + + + +
  • + +
  • + +
  • +
    +
  • + +
  • + +
  • + +
  • + +
  • + +
    +
    +
      +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    +
    +

    직접 입력

    + + + + + +
    + +
    +
    +
    +
    + +
  • +
    +
  • +
    +
      +
    • +
    • +
    • +
    • +
    +
    +
  • +
    +
  • + + + +
  • +
    + + +
  • + +
    +
    +
    +
      +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    +

    + +

    +
    +
    +
    + +
  • + +
  • + + +
    +
    +
    +
    + 칸수 지정 +
    +
    +
    + + +
    +
    +
    + + +
    +
    + + + + + + + + + + + + + + + + + + + +
        
        
        
    +
    +
    + 속성직접입력 +
    +
    +
    +
    +
    +
    + + + +
    +
    +
    +
    +
    + + +
    +
    +
    +
    +
    + + + +
    +
    +
    +
    +
    +
    + + + +
    +
    +
    +
    +
    +
    + 표스타일 +
    +
    +
    + + + +
    +
    +
    +

    + +

    + +
    + +
    +
    +
    + + +
  • + +
  • + + +
    +
    +
    + +

    찾기/바꾸기

    +
      +
    • +
    • +
    +
    +
    +
    +
    +

    + +

    +
    + + +
    +
    +
    + + +
  • +
+
    +
  • +
+
+ +
+ - -
- -
- - - - - - - - - -
- - -
- - -
- - - - -
- - -
- - -
-
- - -
- -
    -
  • -
  • -
  • -
-
- -
- -
-
- - - - + +
+ +
+ + + + + + + + + +
+ + +
+ + +
+ + + + +
+ + +
+ + +
+
+ + +
+ +
    +
  • +
  • +
  • +
+
+ +
+ + + +
+
+ + + + \ No newline at end of file diff --git a/plugin/editor/smarteditor2/SmartEditor2Skin_en_US.html b/plugin/editor/smarteditor2/SmartEditor2Skin_en_US.html new file mode 100644 index 000000000..6b6b3f236 --- /dev/null +++ b/plugin/editor/smarteditor2/SmartEditor2Skin_en_US.html @@ -0,0 +1,790 @@ + + + + + + +네이버 :: Smart Editor 2 ™ + + + + + + + + + + + + + +Version: 2.9.0.4a256db + + +
+
글쓰기영역으로 바로가기 +
+ +
+
    +
  • + +
    +
    +
      +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    +
    +
    + +
  • + +
  • + +
    +
    +
      +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    +
    +
    + +
  • +
    +
  • + +
  • + +
  • + +
  • + +
  • + + + +
  • + +
  • + + + +
  • + +
  • + +
  • +
    +
  • + +
  • + +
  • + +
  • + +
  • + +
  • + +
  • + +
  • + +
  • + +
    +
    +
      +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    +
    +

    Enter

    + + + + + +
    + +
    +
    +
    +
    + +
  • +
    +
  • + + + +
  • +
    + + +
  • + +
    +
    +
    +
      +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    +

    + +

    +
    +
    +
    + +
  • + +
  • + + +
    +
    +
    +
    + Designate Number of Blanks +
    +
    +
    + + +
    +
    +
    + + +
    +
    + + + + + + + + + + + + + + + + + + + +
        
        
        
    +
    +
    + Enter Attributes +
    +
    +
    +
    +
    +
    + + + +
    +
    +
    +
    +
    + + +
    +
    +
    +
    +
    + + + +
    +
    +
    +
    +
    +
    + + + +
    +
    +
    +
    +
    +
    + Table Style +
    +
    +
    + + + +
    +
    +
    +

    + +

    + +
    + +
    +
    +
    + + +
  • + +
  • + + +
    +
    +
    + +

    Find/Change

    +
      +
    • +
    • +
    +
    +
    +
    +
    +

    + +

    +
    + + +
    +
    +
    + + +
  • +
+
+ +
+ + + + + +
+ +
+ + + + + + + + + +
+ + +
+ + +
+ + + + +
+ + +
+ + +
+
+ + +
+ +
    +
  • +
  • +
  • +
+
+ +
+ + + +
+
+ + + + + \ No newline at end of file diff --git a/plugin/editor/smarteditor2/SmartEditor2Skin_ja_JP.html b/plugin/editor/smarteditor2/SmartEditor2Skin_ja_JP.html new file mode 100644 index 000000000..caf47851c --- /dev/null +++ b/plugin/editor/smarteditor2/SmartEditor2Skin_ja_JP.html @@ -0,0 +1,798 @@ + + + + + + +네이버 :: Smart Editor 2 ™ + + + + + + + + + + + + + + + + + + +
+
글쓰기영역으로 바로가기 +
+ +
+
    +
  • + +
    +
    +
      +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    +
    +
    + +
  • + +
  • + +
    +
    +
      +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    +
    +
    + +
  • +
    +
  • + +
  • + +
  • + +
  • + +
  • + + + +
  • + +
  • + + + +
  • + +
  • + +
  • +
    +
  • + +
  • + +
  • + +
  • + +
  • + +
    +
    +
      +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    +
    +

    直接入力

    + + + + + +
    + +
    +
    +
    +
    + +
  • +
    +
  • +
    +
      +
    • +
    • +
    • +
    • +
    +
    +
  • +
    +
  • + + + +
  • +
    + + +
  • + +
    +
    +
    +
      +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    +

    + +

    +
    +
    +
    + +
  • + +
  • + + +
    +
    +
    +
    + セル数指定 +
    +
    +
    + + +
    +
    +
    + + +
    +
    + + + + + + + + + + + + + + + + + + + +
        
        
        
    +
    +
    + プロパティ直接入力 +
    +
    +
    +
    +
    +
    + + + +
    +
    +
    +
    +
    + + +
    +
    +
    +
    +
    + + + +
    +
    +
    +
    +
    +
    + + + +
    +
    +
    +
    +
    +
    + 表スタイル +
    +
    +
    + + + +
    +
    +
    +

    + +

    + +
    + +
    +
    +
    + + +
  • + +
  • + + +
    +
    +
    + +

    検索/置換

    +
      +
    • +
    • +
    +
    +
    +
    +
    +

    + +

    +
    + + +
    +
    +
    + + +
  • +
+
    +
  • +
+
+ +
+ + + + + +
+ +
+ + + + + + + + + +
+ + +
+ + +
+ + + + +
+ + +
+ + +
+
+ + +
+ +
    +
  • +
  • +
  • +
+
+ +
+ + + +
+
+ + + + + \ No newline at end of file diff --git a/plugin/editor/smarteditor2/SmartEditor2Skin_ko_KR.html b/plugin/editor/smarteditor2/SmartEditor2Skin_ko_KR.html new file mode 100644 index 000000000..3087cad78 --- /dev/null +++ b/plugin/editor/smarteditor2/SmartEditor2Skin_ko_KR.html @@ -0,0 +1,790 @@ + + + + + + +네이버 :: Smart Editor 2 ™ + + + + + + + + + + + + + +Version: 2.9.0.4a256db + + +
+
글쓰기영역으로 바로가기 +
+ +
+
    +
  • + +
    +
    +
      +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    +
    +
    + +
  • + +
  • + +
    +
    +
      +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    +
    +
    + +
  • +
    +
  • + +
  • + +
  • + +
  • + +
  • + + + +
  • + +
  • + + + +
  • + +
  • + +
  • +
    +
  • + +
  • + +
  • + +
  • + +
  • + +
  • + +
  • + +
  • + +
  • + +
    +
    +
      +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    +
    +

    직접 입력

    + + + + + +
    + +
    +
    +
    +
    + +
  • +
    +
  • + + + +
  • +
    + + +
  • + +
    +
    +
    +
      +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    +

    + +

    +
    +
    +
    + +
  • + +
  • + + +
    +
    +
    +
    + 칸수 지정 +
    +
    +
    + + +
    +
    +
    + + +
    +
    + + + + + + + + + + + + + + + + + + + +
        
        
        
    +
    +
    + 속성직접입력 +
    +
    +
    +
    +
    +
    + + + +
    +
    +
    +
    +
    + + +
    +
    +
    +
    +
    + + + +
    +
    +
    +
    +
    +
    + + + +
    +
    +
    +
    +
    +
    + 표스타일 +
    +
    +
    + + + +
    +
    +
    +

    + +

    + +
    + +
    +
    +
    + + +
  • + +
  • + + +
    +
    +
    + +

    찾기/바꾸기

    +
      +
    • +
    • +
    +
    +
    +
    +
    +

    + +

    +
    + + +
    +
    +
    + + +
  • +
+
+ +
+ + + + + +
+ +
+ + + + + + + + + +
+ + +
+ + +
+ + + + +
+ + +
+ + +
+
+ + +
+ +
    +
  • +
  • +
  • +
+
+ +
+ + + +
+
+ + + + + \ No newline at end of file diff --git a/plugin/editor/smarteditor2/SmartEditor2Skin_zh_CN.html b/plugin/editor/smarteditor2/SmartEditor2Skin_zh_CN.html new file mode 100644 index 000000000..a0f53b967 --- /dev/null +++ b/plugin/editor/smarteditor2/SmartEditor2Skin_zh_CN.html @@ -0,0 +1,790 @@ + + + + + + +네이버 :: Smart Editor 2 ™ + + + + + + + + + + + + + +Version: 2.9.0.4a256db + + +
+
글쓰기영역으로 바로가기 +
+ +
+
    +
  • + +
    +
    +
      +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    +
    +
    + +
  • + +
  • + +
    +
    +
      +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    +
    +
    + +
  • +
    +
  • + +
  • + +
  • + +
  • + +
  • + + + +
  • + +
  • + + + +
  • + +
  • + +
  • +
    +
  • + +
  • + +
  • + +
  • + +
  • + +
  • + +
  • + +
  • + +
  • + +
    +
    +
      +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    +
    +

    直接输入

    + + + + + +
    + +
    +
    +
    +
    + +
  • +
    +
  • + + + +
  • +
    + + +
  • + +
    +
    +
    +
      +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    +

    + +

    +
    +
    +
    + +
  • + +
  • + + +
    +
    +
    +
    + 指定格数 +
    +
    +
    + + +
    +
    +
    + + +
    +
    + + + + + + + + + + + + + + + + + + + +
        
        
        
    +
    +
    + 直接输入属性 +
    +
    +
    +
    +
    +
    + + + +
    +
    +
    +
    +
    + + +
    +
    +
    +
    +
    + + + +
    +
    +
    +
    +
    +
    + + + +
    +
    +
    +
    +
    +
    + 表格 +
    +
    +
    + + + +
    +
    +
    +

    + +

    + +
    + +
    +
    +
    + + +
  • + +
  • + + +
    +
    +
    + +

    查找/改变

    +
      +
    • +
    • +
    +
    +
    +
    +
    +

    + +

    +
    + + +
    +
    +
    + + +
  • +
+
+ +
+ + + + + +
+ +
+ + + + + + + + + +
+ + +
+ + +
+ + + + +
+ + +
+ + +
+
+ + +
+ +
    +
  • +
  • +
  • +
+
+ +
+ + + +
+
+ + + + + \ No newline at end of file diff --git a/plugin/editor/smarteditor2/SmartEditor2Skin_zh_TW.html b/plugin/editor/smarteditor2/SmartEditor2Skin_zh_TW.html new file mode 100644 index 000000000..90a3429b7 --- /dev/null +++ b/plugin/editor/smarteditor2/SmartEditor2Skin_zh_TW.html @@ -0,0 +1,790 @@ + + + + + + +네이버 :: Smart Editor 2 ™ + + + + + + + + + + + + + +Version: 2.9.0.4a256db + + +
+
글쓰기영역으로 바로가기 +
+ +
+
    +
  • + +
    +
    +
      +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    +
    +
    + +
  • + +
  • + +
    +
    +
      +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    +
    +
    + +
  • +
    +
  • + +
  • + +
  • + +
  • + +
  • + + + +
  • + +
  • + + + +
  • + +
  • + +
  • +
    +
  • + +
  • + +
  • + +
  • + +
  • + +
  • + +
  • + +
  • + +
  • + +
    +
    +
      +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    +
    +

    直接輸入

    + + + + + +
    + +
    +
    +
    +
    + +
  • +
    +
  • + + + +
  • +
    + + +
  • + +
    +
    +
    +
      +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    +

    + +

    +
    +
    +
    + +
  • + +
  • + + +
    +
    +
    +
    + 指定間數 +
    +
    +
    + + +
    +
    +
    + + +
    +
    + + + + + + + + + + + + + + + + + + + +
        
        
        
    +
    +
    + 直接輸入屬性 +
    +
    +
    +
    +
    +
    + + + +
    +
    +
    +
    +
    + + +
    +
    +
    +
    +
    + + + +
    +
    +
    +
    +
    +
    + + + +
    +
    +
    +
    +
    +
    + 表格形式 +
    +
    +
    + + + +
    +
    +
    +

    + +

    + +
    + +
    +
    +
    + + +
  • + +
  • + + +
    +
    +
    + +

    查詢/改變

    +
      +
    • +
    • +
    +
    +
    +
    +
    +

    + +

    +
    + + +
    +
    +
    + + +
  • +
+
+ +
+ + + + + +
+ +
+ + + + + + + + + +
+ + +
+ + +
+ + + + +
+ + +
+ + +
+
+ + +
+ +
    +
  • +
  • +
  • +
+
+ +
+ + + +
+
+ + + + + \ No newline at end of file diff --git a/plugin/editor/smarteditor2/SmartEditor2noframe.html b/plugin/editor/smarteditor2/SmartEditor2noframe.html new file mode 100644 index 000000000..5edc725c2 --- /dev/null +++ b/plugin/editor/smarteditor2/SmartEditor2noframe.html @@ -0,0 +1,850 @@ + + + + + + +네이버 :: Smart Editor 2 ™ + + + + + + + + + + + + + +Version: 2.9.0.4a256db + + +
+
글쓰기영역으로 바로가기 +
+ +
+
    +
  • + +
    +
    +
      +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    +
    +
    + +
  • + +
  • + +
    +
    +
      +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    +
    +
    + +
  • +
    +
  • + +
  • + +
  • + +
  • + +
  • + + + +
  • + +
  • + + + +
  • + +
  • + +
  • +
    +
  • + +
  • + +
  • + +
  • + +
  • + +
  • + +
  • + +
  • + +
  • + +
    +
    +
      +
    • +
    • +
    • +
    • +
    • +
    • +
    • +
    +
    +

    직접 입력

    + + + + + +
    + +
    +
    +
    +
    + +
  • +
    +
  • + + + +
  • +
    + + +
  • + +
    +
    +
    +
      +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    • +
      +
        +
      • + + +
      +
      +
    • +
    +

    + +

    +
    +
    +
    + +
  • + +
  • + + +
    +
    +
    +
    + 칸수 지정 +
    +
    +
    + + +
    +
    +
    + + +
    +
    + + + + + + + + + + + + + + + + + + + +
        
        
        
    +
    +
    + 속성직접입력 +
    +
    +
    +
    +
    +
    + + + +
    +
    +
    +
    +
    + + +
    +
    +
    +
    +
    + + + +
    +
    +
    +
    +
    +
    + + + +
    +
    +
    +
    +
    +
    + 표스타일 +
    +
    +
    + + + +
    +
    +
    +

    + +

    + +
    + +
    +
    +
    + + +
  • + +
  • + + +
    +
    +
    + +

    찾기/바꾸기

    +
      +
    • +
    • +
    +
    +
    +
    +
    +

    + +

    +
    + + +
    +
    +
    + + +
  • +
+
+ +
+ + + + + +
+ +
+ + + + + + + + + +
+ + +
+ + +
+ + + + +
+ + +
+ + +
+
+ + +
+ +
    +
  • +
  • +
  • +
+
+ +
+ + + +
+
+ + + +
+ + + + +
+ +
+
+ + + + + \ No newline at end of file diff --git a/plugin/editor/smarteditor2/config.js b/plugin/editor/smarteditor2/config.js index 0790864a1..5ebbdea41 100644 --- a/plugin/editor/smarteditor2/config.js +++ b/plugin/editor/smarteditor2/config.js @@ -13,6 +13,7 @@ bUseToolbar : true, // 툴바 사용 여부 (true:사용/ false:사용하지 않음) bUseVerticalResizer : true, // 입력창 크기 조절바 사용 여부 (true:사용/ false:사용하지 않음) bUseModeChanger : true, // 모드 탭(Editor | HTML | TEXT) 사용 여부 (true:사용/ false:사용하지 않음) + bSkipXssFilter : true, // client-side xss filter 무시 여부 (true:사용하지 않음 / 그외:사용) //aAdditionalFontList : aAdditionalFontSet, // 추가 글꼴 목록 fOnBeforeUnload : function(){ //alert("완료!"); diff --git a/plugin/editor/smarteditor2/css/en_US/smart_editor2.css b/plugin/editor/smarteditor2/css/en_US/smart_editor2.css new file mode 100644 index 000000000..9d7c4703d --- /dev/null +++ b/plugin/editor/smarteditor2/css/en_US/smart_editor2.css @@ -0,0 +1,192 @@ +@charset "UTF-8"; +/* NHN Web Standardization Team (http://html.nhndesign.com/) HHJ 090226 */ +/* COMMON */ +body,#smart_editor2,#smart_editor2 p,#smart_editor2 h1,#smart_editor2 h2,#smart_editor2 h3,#smart_editor2 h4,#smart_editor2 h5,#smart_editor2 h6,#smart_editor2 ul,#smart_editor2 ol,#smart_editor2 li,#smart_editor2 dl,#smart_editor2 dt,#smart_editor2 dd,#smart_editor2 table,#smart_editor2 th,#smart_editor2 td,#smart_editor2 form,#smart_editor2 fieldset,#smart_editor2 legend,#smart_editor2 input,#smart_editor2 textarea,#smart_editor2 button,#smart_editor2 select{margin:0;padding:0} +#smart_editor2,#smart_editor2 h1,#smart_editor2 h2,#smart_editor2 h3,#smart_editor2 h4,#smart_editor2 h5,#smart_editor2 h6,#smart_editor2 input,#smart_editor2 textarea,#smart_editor2 select,#smart_editor2 table,#smart_editor2 button{font-family:'돋움',Dotum,Helvetica,sans-serif;font-size:12px;color:#666} +#smart_editor2 span,#smart_editor2 em{font-size:12px} +#smart_editor2 em,#smart_editor2 address{font-style:normal} +#smart_editor2 img,#smart_editor2 fieldset{border:0} +#smart_editor2 hr{display:none} +#smart_editor2 ol,#smart_editor2 ul{list-style:none} +#smart_editor2 button{border:0;background:none;font-size:11px;vertical-align:top;cursor:pointer} +#smart_editor2 button span,#smart_editor2 button em{visibility:hidden;overflow:hidden;position:absolute;top:0;font-size:0;line-height:0} +#smart_editor2 legend,#smart_editor2 .blind{visibility:hidden;overflow:hidden;position:absolute;width:0;height:0;font-size:0;line-height:0} +#smart_editor2 .input_ty1{height:14px;margin:0;padding:4px 2px 0 4px;border:1px solid #c7c7c7;font-size:11px;color:#666} +#smart_editor2 a:link,#smart_editor2 a:visited,#smart_editor2 a:active,#smart_editor2 a:focus{color:#666;text-decoration:none} +#smart_editor2 a:hover{color:#666;text-decoration:underline} +/* LAYOUT */ +#smart_editor2 .se2_header{margin:10px 0 29px 0} +#smart_editor2 .se2_bi{float:left;width:93px;height:20px;margin:0;padding:0;background:url("../../img/en_US/btn_set.png?160622") -343px -358px no-repeat;font-size:0;line-height:0;text-indent:-10000px;vertical-align:middle} +#smart_editor2 .se2_allhelp{display:inline-block;width:18px;height:18px;padding:0;background:url("../../img/en_US/btn_set.png?160622") -437px -358px no-repeat;font-size:0;line-height:0;text-indent:-10000px;vertical-align:middle} +#smart_editor2 #smart_editor2_content{position:relative;border:1px solid #b5b5b5} +#smart_editor2 .se2_tool{overflow:visible;position:relative;z-index:25} +/* EDITINGAREA */ +#smart_editor2 .se2_input_area{position:relative;z-index:22;height:400px;margin:0;padding:0;*zoom:1} +#smart_editor2 .se2_input_wysiwyg,#smart_editor2 .se2_input_syntax{display:block;overflow:auto;width:100%;height:100%;margin:0;*margin:-1px 0 0 0;border:0} +/* EDITINGMODE */ +#smart_editor2 .se2_conversion_mode{position:relative;height:15px;padding-top:1px;border-top:1px solid #b5b5b5;background:url("../../img/icon_set.gif?141007") 0 -896px repeat-x} +#smart_editor2 .se2_inputarea_controller{display:block;clear:both;position:relative;width:100%;height:15px;background:url("../../img/icon_set.gif?141007") center -47px no-repeat;text-align:center;cursor:n-resize} +#smart_editor2 .se2_inputarea_controller span{display:block;visibility:visible;height:15px;font-size:0;line-height:0;color:#fff;white-space:nowrap} +#smart_editor2 .ly_controller{display:block;position:absolute;bottom:2px;left:50%;width:287px;margin-left:-148px;padding:8px 0 7px 9px;border:1px solid #827f7c;background:#fffdef} +#smart_editor2 .ly_controller p{color:#666;font-size:11px;letter-spacing:-1px;line-height:11px} +#smart_editor2 .ly_controller .bt_clse,#smart_editor2 .ly_controller .ic_arr{position:absolute;background:url("../../img/ico_extend.png") no-repeat} +#smart_editor2 .ly_controller .bt_clse{top:5px;right:4px;width:14px;height:15px;background-position:1px -43px} +#smart_editor2 .ly_controller .ic_arr{top:25px;left:50%;width:10px;height:6px;margin-left:-5px;background-position:0 -65px} +#smart_editor2 .se2_converter{float:left;position:absolute;top:-1px;right:3px;z-index:20} +#smart_editor2 .se2_converter li{float:left} +#smart_editor2 .se2_converter .se2_to_editor{width:59px;height:15px;background:url("../../img/en_US/btn_set.png?160622") 0 -85px no-repeat;vertical-align:top} +#smart_editor2 .se2_converter .se2_to_html{width:59px;height:15px;background:url("../../img/en_US/btn_set.png?160622") -59px -70px no-repeat;vertical-align:top} +#smart_editor2 .se2_converter .se2_to_text{width:60px;height:15px;background:url("../../img/en_US/btn_set.png?160622") -417px -466px no-repeat;vertical-align:top} +#smart_editor2 .se2_converter .active .se2_to_editor{width:59px;height:15px;background:url("../../img/en_US/btn_set.png?160622") 0 -70px no-repeat;vertical-align:top} +#smart_editor2 .se2_converter .active .se2_to_html{width:59px;height:15px;background:url("../../img/en_US/btn_set.png?160622") -59px -85px no-repeat;vertical-align:top} +#smart_editor2 .se2_converter .active .se2_to_text{width:60px;height:15px;background:url("../../img/en_US/btn_set.png?160622") -417px -481px no-repeat;vertical-align:top} +/* EDITINGAREA_HTMLSRC */ +#smart_editor2 .off .ico_btn,#smart_editor2 .off .se2_more,#smart_editor2 .off .se2_more2,#smart_editor2 .off .se2_font_family,#smart_editor2 .off .se2_font_size,#smart_editor2 .off .se2_bold,#smart_editor2 .off .se2_underline,#smart_editor2 .off .se2_italic,#smart_editor2 .off .se2_tdel,#smart_editor2 .off .se2_fcolor,#smart_editor2 .off .se2_fcolor_more,#smart_editor2 .off .se2_bgcolor,#smart_editor2 .off .se2_bgcolor_more,#smart_editor2 .off .se2_left,#smart_editor2 .off .se2_center,#smart_editor2 .off .se2_right,#smart_editor2 .off .se2_justify,#smart_editor2 .off .se2_ol,#smart_editor2 .off .se2_ul,#smart_editor2 .off .se2_indent,#smart_editor2 .off .se2_outdent,#smart_editor2 .off .se2_lineheight,#smart_editor2 .off .se2_del_style,#smart_editor2 .off .se2_blockquote,#smart_editor2 .off .se2_summary,#smart_editor2 .off .se2_footnote,#smart_editor2 .off .se2_url,#smart_editor2 .off .se2_emoticon,#smart_editor2 .off .se2_character,#smart_editor2 .off .se2_table,#smart_editor2 .off .se2_find,#smart_editor2 .off .se2_spelling,#smart_editor2 .off .se2_sup,#smart_editor2 .off .se2_sub,#smart_editor2 .off .se2_text_tool_more,#smart_editor2 .off .se2_new,#smart_editor2 .off .selected_color,#smart_editor2 .off .se2_lineSticker{-ms-filter:alpha(opacity=50);opacity:.5;cursor:default;filter:alpha(opacity=50)} +/* LAYER */ +#smart_editor2 .se2_text_tool .se2_layer{display:none;float:left;position:absolute;top:20px;left:0;z-index:50;margin:0;padding:0;border:1px solid #bcbbbb;background:#fafafa} +#smart_editor2 .se2_text_tool li.active{z-index:50} +#smart_editor2 .se2_text_tool .active .se2_layer{display:block} +#smart_editor2 .se2_text_tool .active li .se2_layer{display:none} +#smart_editor2 .se2_text_tool .active .active .se2_layer{display:block} +#smart_editor2 .se2_text_tool .se2_layer .se2_in_layer{float:left;margin:0;padding:0;border:1px solid #fff;background:#fafafa} +#smart_editor2 .se2_content_loading{display:none;z-index:10;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center} +#smart_editor2 .se2_content_loading img{position:absolute;top:50%;left:50%;margin:-27px 0 0 -27px} +#smart_editor2 .se2_alert_wrap{display:none;z-index:20;position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;text-align:center} +#smart_editor2 .se2_alert_wrap.active{display:block} +#smart_editor2 .se2_alert_wrap .dimmed{position:absolute;top:0;left:0;width:100%;height:100%;background:#000;opacity:0.4;filter:alpha(opacity=40)} +#smart_editor2 .se2_alert_wrap .ie_cover{position:absolute;top:0;left:0;width:100%;height:100%;background:#fff;opacity:0;filter:alpha(opacity=0)} +#smart_editor2 .se2_alert_wrap .va_line{display:inline-block;height:100%;vertical-align:middle;*zoom:1} +#smart_editor2 .se2_alert_wrap .se2_alert_content{z-index:10;position:relative;display:inline-block;*display:inline;*zoom:1;border:1px solid #727272;background:#fff;padding:26px 33px 22px;vertical-align:middle} +#smart_editor2 .se2_alert_wrap .se2_alert_content{margin-top:47px} +#smart_editor2 .se2_alert_wrap .txt1{color:#333;line-height:18px} +#smart_editor2 .se2_alert_wrap .txt2{margin-top:3px;color:#999} +#smart_editor2 .se2_alert_wrap .btn_close,#smart_editor2 .se2_alert_btns button{background:url("../../img/en_US/btn_set.png?160622") no-repeat} +#smart_editor2 .se2_alert_wrap .btn_close{z-index:10;position:absolute;top:7px;right:7px;width:11px;height:11px;background-position:-122px -32px;text-indent:-5000px} +#smart_editor2 .se2_alert_btns{margin-top:19px} +#smart_editor2 .se2_alert_btns button{display:inline;float:none;width:48px;height:27px} +#smart_editor2 .se2_alert_btns button + button{margin-left:10px} +#smart_editor2 .se2_alert_btns .se2_confirm{background-position:-369px -434px} +#smart_editor2 .se2_alert_btns .se2_cancel{background-position:-419px -434px} +/* TEXT_TOOLBAR */ +#smart_editor2 .se2_text_tool{position:relative;clear:both;z-index:30;padding:4px 0 4px 3px;background:#f4f4f4 url("../../img/bg_text_tool.gif") 0 0 repeat-x;border-bottom:1px solid #b5b5b5;*zoom:1} +#smart_editor2 .se2_text_tool:after{content:"";display:block;clear:both} +#smart_editor2 .se2_text_tool ul{float:left;display:inline;margin-right:3px;padding-left:1px;white-space:nowrap} +#smart_editor2 .se2_text_tool li{_display:inline;float:left;position:relative;z-index:30} +#smart_editor2 .se2_text_tool button,#smart_editor2 .se2_multy .se2_icon{width:21px;height:21px;background:url("../../img/en_US/text_tool_set.png?140317") no-repeat;vertical-align:top} +#smart_editor2 .se2_text_tool .se2_font_type{position:relative} +#smart_editor2 .se2_text_tool .se2_font_type li{margin-left:3px} +#smart_editor2 .se2_text_tool .se2_font_type button{text-align:left} +#smart_editor2 .se2_text_tool .se2_font_type button.se2_font_family span,#smart_editor2 .se2_text_tool .se2_font_type button.se2_font_size span{display:inline-block;visibility:visible;position:static;width:52px;height:20px;padding:0 0 0 6px;font-size:12px;line-height:20px;*line-height:22px;color:#333;*zoom:1} +#smart_editor2 .se2_text_tool .se2_multy{position:absolute;top:0;right:0;padding-left:0;margin-right:0;white-space:nowrap;border-left:1px solid #e0dedf} +#smart_editor2 .se2_text_tool .se2_multy .se2_mn{float:left;white-space:nowrap} +#smart_editor2 .se2_text_tool .se2_multy button{background-image:none} +#smart_editor2 .se2_text_tool .se2_multy .se2_photo{width:55px} +#smart_editor2 .se2_text_tool .se2_multy .se2_map{width:47px} +#smart_editor2 .se2_text_tool .se2_multy .se2_icon{display:inline-block;visibility:visible;overflow:visible;position:static;width:16px;height:29px;margin:-1px 2px 0 -1px;background-position:0 -132px;line-height:30px;vertical-align:top} +#smart_editor2 .se2_text_tool .se2_multy button,#smart_editor2 .se2_text_tool .se2_multy button span{height:29px;line-height:29px} +#smart_editor2 .se2_text_tool .se2_map .se2_icon{background-position:-29px -132px} +#smart_editor2 .se2_text_tool button span.se2_mntxt{display:inline-block;visibility:visible;overflow:visible;_overflow-y:hidden;position:relative;*margin-right:-1px;width:auto;height:29px;font-weight:normal;font-size:11px;line-height:30px;*line-height:29px;_line-height:30px;color:#444;letter-spacing:-1px;vertical-align:top} +#smart_editor2 .se2_text_tool .se2_multy .se2_photo{margin-right:1px} +#smart_editor2 .se2_text_tool .se2_multy .hover .ico_btn{background:#e8e8e8} +#smart_editor2 .se2_text_tool .se2_multy .se2_mn.hover{background:#e0dedf} +/* TEXT_TOOLBAR : ROUNDING */ +#smart_editor2 ul li.first_child button span.tool_bg, #smart_editor2 ul li.last_child button span.tool_bg, #smart_editor2 ul li.single_child button span.tool_bg{visibility:visible;height:21px} +#smart_editor2 ul li.first_child button span.tool_bg{left:-1px;width:3px;background:url("../../img/bg_button_left.gif?20121228") no-repeat} +#smart_editor2 ul li.last_child button span.tool_bg{right:0px;_right:-1px;width:2px;background:url("../../img/bg_button_right.gif") no-repeat} +#smart_editor2 ul li.single_child{padding-right:1px} +#smart_editor2 ul li.single_child button span.tool_bg{left:0;background:url("../../img/bg_button.gif?20121228") no-repeat;width:22px} +#smart_editor2 div.se2_text_tool ul li.hover button span.tool_bg{background-position:0 -21px} +#smart_editor2 div.se2_text_tool ul li.active button span.tool_bg, #smart_editor2 div.se2_text_tool ul li.active li.active button span.tool_bg{background-position:0 -42px} +#smart_editor2 div.se2_text_tool ul li.active li button span.tool_bg{background-position:0 0} +/* TEXT_TOOLBAR : SUB_MENU */ +#smart_editor2 .se2_sub_text_tool{display:none;position:absolute;top:20px;left:0;z-index:40;width:auto;height:29px;padding:0 4px 0 0;border:1px solid #b5b5b5;border-top:1px solid #9a9a9a;background:#f4f4f4} +#smart_editor2 .active .se2_sub_text_tool{display:block} +#smart_editor2 .se2_sub_text_tool ul{float:left;height:25px;margin:0;padding:4px 0 0 4px} +/* TEXT_TOOLBAR : SUB_MENU_SIZE */ +#smart_editor2 .se2_sub_step1{width:88px} +#smart_editor2 .se2_sub_step2{width:199px} +#smart_editor2 .se2_sub_step2_1{width:178px} +/* TEXT_TOOLBAR : BUTTON */ +#smart_editor2 .se2_text_tool .se2_font_family{width:70px;height:21px;background-position:0 -10px} +#smart_editor2 .se2_text_tool .hover .se2_font_family{background-position:0 -72px} +#smart_editor2 .se2_text_tool .active .se2_font_family{background-position:0 -103px} +#smart_editor2 .se2_text_tool .se2_font_size{width:45px;height:21px;background-position:-70px -10px} +#smart_editor2 .se2_text_tool .hover .se2_font_size{background-position:-70px -72px} +#smart_editor2 .se2_text_tool .active .se2_font_size{background-position:-70px -103px} +#smart_editor2 .se2_text_tool .se2_bold{background-position:-115px -10px} +#smart_editor2 .se2_text_tool .hover .se2_bold{background-position:-115px -72px} +#smart_editor2 .se2_text_tool .active .se2_bold{background-position:-115px -103px} +#smart_editor2 .se2_text_tool .se2_underline{background-position:-136px -10px} +#smart_editor2 .se2_text_tool .hover .se2_underline{background-position:-136px -72px} +#smart_editor2 .se2_text_tool .active .se2_underline{background-position:-136px -103px} +#smart_editor2 .se2_text_tool .se2_italic{background-position:-157px -10px} +#smart_editor2 .se2_text_tool .hover .se2_italic{background-position:-157px -72px} +#smart_editor2 .se2_text_tool .active .se2_italic{background-position:-157px -103px} +#smart_editor2 .se2_text_tool .se2_tdel{background-position:-178px -10px} +#smart_editor2 .se2_text_tool .hover .se2_tdel{background-position:-178px -72px} +#smart_editor2 .se2_text_tool .active .se2_tdel{background-position:-178px -103px} +#smart_editor2 .se2_text_tool .se2_fcolor{position:relative;background-position:-199px -10px} +#smart_editor2 .se2_text_tool .hover .se2_fcolor{background-position:-199px -72px} +#smart_editor2 .se2_text_tool .active .se2_fcolor{background-position:-199px -103px} +#smart_editor2 .se2_text_tool .se2_fcolor_more{background-position:-220px -10px;width:10px} +#smart_editor2 .se2_text_tool .hover .se2_fcolor_more{background-position:-220px -72px} +#smart_editor2 .se2_text_tool .active .se2_fcolor_more{background-position:-220px -103px} +#smart_editor2 .se2_text_tool .selected_color{position:absolute;top:14px;left:5px;width:11px;height:3px;font-size:0} +#smart_editor2 .se2_text_tool .se2_ol,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .se2_ol{background-position:-345px -10px} +#smart_editor2 .se2_text_tool .se2_ul,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .se2_ul{background-position:-366px -10px} +#smart_editor2 .se2_text_tool .hover .se2_ol,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .hover .se2_ol{background-position:-345px -72px} +#smart_editor2 .se2_text_tool .hover .se2_ul,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .hover .se2_ul{background-position:-366px -72px} +#smart_editor2 .se2_text_tool .active .se2_ol,#smart_editor2 .se2_text_tool .active .active .se2_ol{background-position:-345px -103px} +#smart_editor2 .se2_text_tool .active .se2_ul,#smart_editor2 .se2_text_tool .active .active .se2_ul{background-position:-366px -103px} +#smart_editor2 .se2_text_tool .se2_indent,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .se2_indent{background-position:-408px -10px} +#smart_editor2 .se2_text_tool .se2_outdent,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .se2_outdent{background-position:-387px -10px} +#smart_editor2 .se2_text_tool .hover .se2_indent,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .hover .se2_indent{background-position:-408px -72px} +#smart_editor2 .se2_text_tool .hover .se2_outdent,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .hover .se2_outdent{background-position:-387px -72px} +#smart_editor2 .se2_text_tool .active .se2_indent,#smart_editor2 .se2_text_tool .active .active .se2_indent{background-position:-408px -103px} +#smart_editor2 .se2_text_tool .active .se2_outdent,#smart_editor2 .se2_text_tool .active .active .se2_outdent{background-position:-387px -103px} +#smart_editor2 .se2_text_tool .se2_lineheight{background-position:-429px -10px} +#smart_editor2 .se2_text_tool .hover .se2_lineheight{background-position:-429px -72px} +#smart_editor2 .se2_text_tool .active .se2_lineheight{background-position:-429px -103px} +#smart_editor2 .se2_text_tool .se2_url{background-position:-513px -10px} +#smart_editor2 .se2_text_tool .hover .se2_url{background-position:-513px -72px} +#smart_editor2 .se2_text_tool .active .se2_url{background-position:-513px -103px} +#smart_editor2 .se2_text_tool .se2_bgcolor{position:relative;background-position:-230px -10px} +#smart_editor2 .se2_text_tool .hover .se2_bgcolor{background-position:-230px -72px} +#smart_editor2 .se2_text_tool .active .se2_bgcolor{background-position:-230px -103px} +#smart_editor2 .se2_text_tool .se2_bgcolor_more{background-position:-251px -10px;width:10px} +#smart_editor2 .se2_text_tool .hover .se2_bgcolor_more{background-position:-251px -72px} +#smart_editor2 .se2_text_tool .active .se2_bgcolor_more{background-position:-251px -103px} +#smart_editor2 .se2_text_tool .se2_left{background-position:-261px -10px} +#smart_editor2 .se2_text_tool .hover .se2_left{background-position:-261px -72px} +#smart_editor2 .se2_text_tool .active .se2_left{background-position:-261px -103px} +#smart_editor2 .se2_text_tool .se2_center{background-position:-282px -10px} +#smart_editor2 .se2_text_tool .hover .se2_center{background-position:-282px -72px} +#smart_editor2 .se2_text_tool .active .se2_center{background-position:-282px -103px} +#smart_editor2 .se2_text_tool .se2_right{background-position:-303px -10px} +#smart_editor2 .se2_text_tool .hover .se2_right{background-position:-303px -72px} +#smart_editor2 .se2_text_tool .active .se2_right{background-position:-303px -103px} +#smart_editor2 .se2_text_tool .se2_justify{background-position:-324px -10px} +#smart_editor2 .se2_text_tool .hover .se2_justify{background-position:-324px -72px} +#smart_editor2 .se2_text_tool .active .se2_justify{background-position:-324px -103px} +#smart_editor2 .se2_text_tool .se2_blockquote{background-position:-471px -10px} +#smart_editor2 .se2_text_tool .hover .se2_blockquote{background-position:-471px -72px} +#smart_editor2 .se2_text_tool .active .se2_blockquote{background-position:-471px -103px} +#smart_editor2 .se2_text_tool .se2_character{background-position:-555px -10px} +#smart_editor2 .se2_text_tool .hover .se2_character{background-position:-555px -72px} +#smart_editor2 .se2_text_tool .active .se2_character{background-position:-555px -103px} +#smart_editor2 .se2_text_tool .se2_table{background-position:-576px -10px} +#smart_editor2 .se2_text_tool .hover .se2_table{background-position:-576px -72px} +#smart_editor2 .se2_text_tool .active .se2_table{background-position:-576px -103px} +#smart_editor2 .se2_text_tool .se2_find{background-position:-597px -10px} +#smart_editor2 .se2_text_tool .hover .se2_find{background-position:-597px -72px} +#smart_editor2 .se2_text_tool .active .se2_find{background-position:-597px -103px} +#smart_editor2 .se2_text_tool .se2_sup{background-position:-660px -10px} +#smart_editor2 .se2_text_tool .hover .se2_sup{background-position:-660px -72px} +#smart_editor2 .se2_text_tool .active .se2_sup{background-position:-660px -103px} +#smart_editor2 .se2_text_tool .se2_sub{background-position:-681px -10px} +#smart_editor2 .se2_text_tool .hover .se2_sub{background-position:-681px -72px} +#smart_editor2 .se2_text_tool .active .se2_sub{background-position:-681px -103px} +#smart_editor2 .se2_text_tool .se2_text_tool_more{background-position:0 -41px;width:13px} +#smart_editor2 .se2_text_tool .se2_text_tool_more span.tool_bg{background:none} +#smart_editor2 .se2_text_tool .hover .se2_text_tool_more{background-position:-13px -41px} +#smart_editor2 .se2_text_tool .active .se2_text_tool_more{background-position:-26px -41px} diff --git a/plugin/editor/smarteditor2/css/en_US/smart_editor2_in.css b/plugin/editor/smarteditor2/css/en_US/smart_editor2_in.css new file mode 100644 index 000000000..fdecc092d --- /dev/null +++ b/plugin/editor/smarteditor2/css/en_US/smart_editor2_in.css @@ -0,0 +1,24 @@ +@charset "UTF-8"; +/* NHN Web Standardization Team (http://html.nhndesign.com/) HHJ 090226 */ +/* COMMON */ +body,.se2_inputarea{margin:0;padding:0;font-family:'돋움',Dotum,Helvetica,Sans-serif;font-size:12px;line-height:1.5} +/* body,.se2_inputarea,.se2_inputarea th,.se2_inputarea td{margin:0;padding:0;font-family:'돋움',Dotum,Helvetica,Sans-serif;font-size:12px;line-height:1.5;color:#666} */ +.se2_inputarea p,.se2_inputarea br{margin:0;padding:0} +.se2_inputarea{margin:15px;word-wrap:break-word;*word-wrap:normal;*word-break:break-all} +.se2_inputarea td{word-break:break-all} +.se2_inputarea_890{width:741px;margin:20px 0 10px 64px} +.se2_inputarea_698{width:548px;margin:20px 0 10px 64px} +@media screen and (-webkit-min-device-pixel-ratio: 0) { + .se2_inputarea td:empty:after,.se2_inputarea td > p:empty:after{content:"\00A0";line-height:1} +} +/* TEXT_TOOLBAR : QUOTE */ +.se2_quote1{margin:0 0 30px 20px;padding:0 8px;border-left:2px solid #ccc;color:#888} +.se2_quote2{margin:0 0 30px 13px;padding:0 8px 0 16px;background:url("../../img/bg_quote2.gif") 0 3px no-repeat;color:#888} +.se2_quote3{margin:0 0 30px;padding:12px 10px 11px;border:1px dashed #ccc;color:#888} +.se2_quote4{margin:0 0 30px;padding:12px 10px 11px;border:1px dashed #66b246;color:#888} +.se2_quote5{margin:0 0 30px;padding:12px 10px 11px;border:1px dashed #ccc;background:#fafafa;color:#888} +.se2_quote6{margin:0 0 30px;padding:12px 10px 11px;border:1px solid #e5e5e5;color:#888} +.se2_quote7{margin:0 0 30px;padding:12px 10px 11px;border:1px solid #66b246;color:#888} +.se2_quote8{margin:0 0 30px;padding:12px 10px 11px;border:1px solid #e5e5e5;background:#fafafa;color:#888} +.se2_quote9{margin:0 0 30px;padding:12px 10px 11px;border:2px solid #e5e5e5;color:#888} +.se2_quote10{margin:0 0 30px;padding:12px 10px 11px;border:2px solid #e5e5e5;background:#fafafa;color:#888} diff --git a/plugin/editor/smarteditor2/css/en_US/smart_editor2_items.css b/plugin/editor/smarteditor2/css/en_US/smart_editor2_items.css new file mode 100644 index 000000000..96d7d8cd1 --- /dev/null +++ b/plugin/editor/smarteditor2/css/en_US/smart_editor2_items.css @@ -0,0 +1,447 @@ +@charset "UTF-8"; +/* NHN Web Standardization Team (http://html.nhndesign.com/) HHJ 090226 */ +/* TEXT_TOOLBAR : FONTNAME */ +#smart_editor2 .se2_tool .se2_l_font_fam{width:184px;margin:0;padding:0} +#smart_editor2 .se2_tool .se2_l_font_fam li{display:block;width:184px;height:21px;margin:0;padding:0;color:#333;cursor:pointer} +#smart_editor2 .se2_l_font_fam .hover,#smart_editor2 .se2_l_font_fam .active{background:#ebebeb} +#smart_editor2 .se2_l_font_fam button{width:182px;height:21px;margin:0;padding:2px 0 2px 0px;background:none;text-align:left} +#smart_editor2 .se2_l_font_fam button span{display:block;visibility:visible;overflow:visible;position:relative;top:auto;left:auto;width:auto;height:auto;margin:0 0 0 4px;padding:0;font-size:12px;line-height:normal;color:#333} +#smart_editor2 .se2_l_font_fam button span span{display:inline;visibility:visible;overflow:visible;width:auto;height:auto;margin:0 0 0 4px;font-family:Verdana;font-size:12px;line-height:14px;color:#888} +#smart_editor2 .se2_l_font_fam button span em{visibility:visible;overflow:auto;position:static;width:auto;height:auto;margin-right:-4px;font-size:12px;color:#888} +#smart_editor2 .se2_l_font_fam .se2_division{width:162px;height:2px !important;margin:1px 0 1px 0px;border:0;background:url("../../img/bg_line1.gif") 0 0 repeat-x;font-size:0;cursor:default} +/* TEXT_TOOLBAR : FONTSIZE */ +#smart_editor2 .se2_tool .se2_l_font_size{width:302px;margin:0;padding:0} +#smart_editor2 .se2_tool .se2_l_font_size li{width:302px;margin:0;padding:0;color:#333;cursor:pointer} +#smart_editor2 .se2_l_font_size .hover,#smart_editor2 .se2_l_font_size .active{background:#ebebeb} +#smart_editor2 .se2_l_font_size button{width:300px;height:auto;margin:0;padding:2px 0 1px 0px;*padding:4px 0 1px 0px;background:none;text-align:left} +#smart_editor2 .se2_l_font_size button span{display:block;visibility:visible;overflow:visible;position:relative;top:auto;left:auto;width:auto;height:auto;margin:0 0 0 4px;padding:0;line-height:normal;color:#373737;letter-spacing:0px} +#smart_editor2 .se2_l_font_size button span span{display:inline;margin:0 0 0 5px;padding:0} +#smart_editor2 .se2_l_font_size span em{visibility:visible;overflow:auto;position:static;width:auto;height:auto;color:#888} +/* TEXT_TOOLBAR : FONTCOLOR */ +#smart_editor2 .se2_palette{float:left;position:relative;width:225px;margin:0;padding:11px 0 10px 0} +#smart_editor2 .se2_palette .se2_pick_color{_display:inline;float:left;clear:both;width:205px;margin:0 0 0 11px;padding:0} +#smart_editor2 .se2_palette .se2_pick_color li{float:left;width:12px;height:12px;margin:0;padding:0} +#smart_editor2 .se2_palette .se2_pick_color li button{width:11px;height:11px;border:0} +#smart_editor2 .se2_palette .se2_pick_color li button span{display:block;visibility:visible;overflow:visible;position:absolute;top:1px;left:1px;width:11px;height:11px} +#smart_editor2 .se2_palette .se2_pick_color li button span span{visibility:hidden;overflow:hidden;position:absolute;top:0;left:0;width:0;height:0} +#smart_editor2 .se2_palette .se2_pick_color .hover button,#smart_editor2 .se2_palette .se2_pick_color .active button{width:11px;height:11px;border:1px solid #666} +#smart_editor2 .se2_palette .se2_pick_color .hover span,#smart_editor2 .se2_palette .se2_pick_color .active span{width:7px;height:7px;border:1px solid #fff} +#smart_editor2 .se2_palette .se2_view_more{_display:inline;float:left;width:46px;height:23px;margin:1px 0 0 1px;background:url("../../img/en_US/btn_set.png?160622") 0 -47px no-repeat} +#smart_editor2 .se2_palette .se2_view_more2{_display:inline;float:left;width:46px;height:23px;margin:1px 0 0 1px;background:url("../../img/en_US/btn_set.png?160622") 0 -24px no-repeat} +#smart_editor2 .se2_palette h4{_display:inline;float:left;width:203px;margin:9px 0 0 11px;padding:10px 0 4px 0;background:url("../../img/bg_line1.gif") repeat-x;font-weight:normal;font-size:12px;line-height:14px;color:#333;letter-spacing:-1px} +#smart_editor2 .se2_palette2{float:left;_float:none;width:214px;margin:9px 0 0 0;padding:11px 0 0 11px;background:url("../../img/bg_line1.gif") repeat-x} +#smart_editor2 .se2_palette2 .se2_color_set{float:left} +#smart_editor2 .se2_palette2 .se2_selected_color{_display:inline;float:left;width:83px;height:18px;margin:0;border:1px solid #c7c7c7;background:#fff} +#smart_editor2 .se2_palette2 .se2_selected_color span{_display:inline;float:left;width:79px;height:14px;margin:2px} +#smart_editor2 .se2_palette2 .input_ty1{_display:inline;float:left;width:67px;height:16px;margin:0 3px 0 3px;padding:2px 2px 0 4px;font-family:tahoma;font-size:11px} +#smart_editor2 .se2_palette2 button.se2_btn_insert{float:left;width:35px;height:21px;margin-left:2px;padding:0;background:url("../../img/en_US/btn_set.png?160622") -83px 0 no-repeat} +#smart_editor2 .se2_gradation1{float:left;_float:none;width:201px;height:128px;margin:4px 0 0 0;border:1px solid #c7c7c7;cursor:crosshair} +#smart_editor2 .se2_gradation2{float:left;_float:none;width:201px;height:10px;margin:4px 0 1px 0;border:1px solid #c7c7c7;cursor:crosshair} +/* TEXT_TOOLBAR : BGCOLOR */ +#smart_editor2 .se2_palette_bgcolor{width:225px;margin:11px 0 0;padding:0} +#smart_editor2 .se2_palette_bgcolor .se2_background{width:205px;margin:0 11px 0 11px} +#smart_editor2 .se2_palette_bgcolor .se2_background li{width:68px;height:20px} +#smart_editor2 .se2_palette_bgcolor .se2_background button{width:67px;height:19px;border:0} +#smart_editor2 .se2_palette_bgcolor .se2_background span{left:0;display:block;visibility:visible;overflow:visible;width:65px;height:17px;padding:0} +#smart_editor2 .se2_palette_bgcolor .se2_background span span{display:block;visibility:visible;overflow:visible;width:64px;height:16px;padding:3px 0 0 3px;font-size:11px;line-height:14px;text-align:left} +#smart_editor2 .se2_palette_bgcolor .se2_background .hover span{width:65px;height:17px;border:1px solid #666} +#smart_editor2 .se2_palette_bgcolor .se2_background .hover span span{width:62px;height:14px;padding:1px 0 0 1px;border:1px solid #fff} +/* TEXT_TOOLBAR : LINEHEIGHT */ +#smart_editor2 .se2_l_line_height{width:107px;margin:0;padding:0} +#smart_editor2 .se2_l_line_height li{width:107px;margin:0;padding:0;border-top:0;border-bottom:0;color:#333;cursor:pointer} +#smart_editor2 .se2_l_line_height .hover{background:#ebebeb} +#smart_editor2 .se2_l_line_height button{width:105px;height:19px;margin:0;padding:3px 0 2px 0px;background:none;text-align:left} +#smart_editor2 .se2_l_line_height button span{visibility:visible;overflow:visible;position:relative;width:auto;height:auto;margin:0;padding:0 0 0 15px;font-size:12px;line-height:normal;color:#373737} +#smart_editor2 .se2_l_line_height li button.active span{background:url("../../img/icon_set.gif?141007") 5px -30px no-repeat} +#smart_editor2 .se2_l_line_height_user{clear:both;width:83px;margin:5px 0 0 12px;padding:10px 0 0 0;_padding:11px 0 0 0;background:url("../../img/bg_line1.gif") repeat-x} +#smart_editor2 .se2_l_line_height_user h3{margin:0 0 4px 0;_margin:0 0 2px -1px;padding:0;line-height:14px;color:#000;letter-spacing:-1px} +#smart_editor2 .se2_l_line_height_user .bx_input{display:block;position:relative;width:83px} +#smart_editor2 .se2_l_line_height_user .btn_up{position:absolute;top:2px;*top:3px;left:68px;width:13px;height:8px;background:url("../../img/en_US/btn_set.png?160622") -86px -54px no-repeat} +#smart_editor2 .se2_l_line_height_user .btn_down{position:absolute;top:10px;*top:11px;left:68px;width:13px;height:8px;background:url("../../img/en_US/btn_set.png?160622") -86px -62px no-repeat} +#smart_editor2 .se2_l_line_height_user .btn_area{margin:5px 0 10px 0} +#smart_editor2 .se2_tool .btn_area .se2_btn_apply3{width:41px;height:24px;background:url("../../img/en_US/btn_set.png?160622") no-repeat} +#smart_editor2 .se2_tool .btn_area .se2_btn_cancel3{width:42px;height:24px;margin-left:3px;background:url("../../img/en_US/btn_set.png?160622") -41px 0 no-repeat} +/* TEXT_TOOLBAR : QUOTE */ +#smart_editor2 .se2_quote{width:425px;height:56px} +#smart_editor2 .se2_quote ul{_display:inline;float:left;margin:11px 0 0 9px;padding:0} +#smart_editor2 .se2_quote li{_display:inline;float:left;margin:0 0 0 2px;padding:0} +#smart_editor2 .se2_quote button{width:34px;height:34px;margin:0;padding:0;background:url("../../img/en_US/btn_set.png?160622") no-repeat;cursor:pointer} +#smart_editor2 .se2_quote button span{left:0;display:block;visibility:visible;overflow:visible;width:32px;height:32px;margin:0;padding:0;border:1px solid #c7c7c7} +#smart_editor2 .se2_quote button span span{visibility:hidden;overflow:hidden;position:absolute;top:0;left:0;width:0;height:0;margin:0;padding:0} +#smart_editor2 .se2_quote .se2_quote1{background-position:1px -375px} +#smart_editor2 .se2_quote .se2_quote2{background-position:-32px -375px} +#smart_editor2 .se2_quote .se2_quote3{background-position:-65px -375px} +#smart_editor2 .se2_quote .se2_quote4{background-position:-98px -375px} +#smart_editor2 .se2_quote .se2_quote5{background-position:-131px -375px} +#smart_editor2 .se2_quote .se2_quote6{background-position:-164px -375px} +#smart_editor2 .se2_quote .se2_quote7{background-position:-197px -375px} +#smart_editor2 .se2_quote .se2_quote8{background-position:-230px -375px} +#smart_editor2 .se2_quote .se2_quote9{background-position:-263px -375px} +#smart_editor2 .se2_quote .se2_quote10{background-position:-296px -375px} +#smart_editor2 .se2_quote .hover button span,#smart_editor2 .se2_quote .active button span{width:30px;height:30px;margin:0;padding:0;border:2px solid #44b525} +#smart_editor2 .se2_quote .hover button span span,#smart_editor2 .se2_quote .active button span span{visibility:hidden;overflow:hidden;position:absolute;top:0;left:0;width:0;height:0;margin:0;padding:0} +#smart_editor2 .se2_quote .se2_cancel2{float:left;width:40px;height:35px;margin:11px 0 0 5px;background:url("../../img/en_US/btn_set.png?160622") -46px -24px no-repeat} +#smart_editor2 .se2_quote .se2_cancel2 span{visibility:hidden;overflow:hidden;position:absolute;top:0;left:0;width:0;height:0;margin:0;padding:0} +/* TEXT_TOOLBAR : HYPERLINK */ +#smart_editor2 .se2_url2{width:281px;padding:11px 11px 6px 11px;color:#666} +#smart_editor2 .se2_url2 .input_ty1{display:block;width:185px;height:16px;margin:0 5px 5px 0;*margin:-1px 5px 5px 0;padding:5px 2px 0 4px} +#smart_editor2 .se2_url2 .se2_url_new{width:15px;height:15px;margin:-1px 3px 1px -1px;*margin:-2px 3px 2px -1px;vertical-align:middle} +#smart_editor2 .se2_url2 label{font-size:11px;line-height:14px;vertical-align:middle} +#smart_editor2 .se2_url2 .se2_apply{position:absolute;top:13px;right:51px;width:41px;height:24px;margin:-1px 3px 1px 0;background:url("../../img/en_US/btn_set.png?160622") no-repeat} +#smart_editor2 .se2_url2 .se2_cancel{position:absolute;top:13px;right:6px;width:42px;height:24px;margin:-1px 3px 1px 0;background:url("../../img/en_US/btn_set.png?160622") -41px 0 no-repeat} +/* TEXT_TOOLBAR : SCHARACTER */ +#smart_editor2 .se2_bx_character{width:553px;height:272px;margin:0;padding:0;background:url("../../img/bx_set_110302.gif") 9px -1230px no-repeat} +#smart_editor2 .se2_bx_character .se2_char_tab{_display:inline;float:left;position:relative;width:527px;margin:11px 10px 200px 11px;padding:0 0 0 1px} +#smart_editor2 .se2_bx_character .se2_char_tab li{position:static;margin:0 0 0 -1px;padding:0} +#smart_editor2 .se2_bx_character .se2_char1{width:93px;height:26px;background:url("../../img/en_US/btn_set.png?160622") 0 -812px no-repeat} +#smart_editor2 .se2_bx_character .se2_char2{width:104px;height:26px;background:url("../../img/en_US/btn_set.png?160622") -92px -812px no-repeat} +#smart_editor2 .se2_bx_character .se2_char3{width:121px;height:26px;background:url("../../img/en_US/btn_set.png?160622") -195px -812px no-repeat} +#smart_editor2 .se2_bx_character .se2_char4{width:55px;height:26px;background:url("../../img/en_US/btn_set.png?160622") -315px -812px no-repeat} +#smart_editor2 .se2_bx_character .se2_char5{width:86px;height:26px;background:url("../../img/en_US/btn_set.png?160622") -369px -812px no-repeat} +#smart_editor2 .se2_bx_character .se2_char6{width:73px;height:26px;background:url("../../img/en_US/btn_set.png?160622") -454px -812px no-repeat} +#smart_editor2 .se2_bx_character .active .se2_char1{width:93px;height:26px;background:url("../../img/en_US/btn_set.png?160622") 0 -838px no-repeat} +#smart_editor2 .se2_bx_character .active .se2_char2{width:104px;height:26px;background:url("../../img/en_US/btn_set.png?160622") -92px -838px no-repeat} +#smart_editor2 .se2_bx_character .active .se2_char3{width:121px;height:26px;background:url("../../img/en_US/btn_set.png?160622") -195px -838px no-repeat} +#smart_editor2 .se2_bx_character .active .se2_char4{width:55px;height:26px;background:url("../../img/en_US/btn_set.png?160622") -315px -838px no-repeat} +#smart_editor2 .se2_bx_character .active .se2_char5{width:86px;height:26px;background:url("../../img/en_US/btn_set.png?160622") -369px -838px no-repeat} +#smart_editor2 .se2_bx_character .active .se2_char6{width:73px;height:26px;background:url("../../img/en_US/btn_set.png?160622") -454px -838px no-repeat} +#smart_editor2 .se2_bx_character .se2_s_character{display:none;position:absolute;top:26px;left:0;width:532px;height:194px;margin:0;padding:0} +#smart_editor2 .se2_bx_character .active .se2_s_character{display:block} +#smart_editor2 .se2_bx_character .se2_s_character ul{float:left;width:506px;height:172px;margin:0;padding:9px 0 0 11px} +#smart_editor2 .se2_bx_character .se2_s_character li{_display:inline;float:left;position:relative;width:20px;height:18px;margin:0 0 1px 1px;background:#fff} +#smart_editor2 .se2_bx_character .se2_s_character button{width:20px;height:18px;margin:0;padding:2px;background:none} +#smart_editor2 .se2_bx_character .se2_s_character .hover,#smart_editor2 .se2_bx_character .se2_s_character .active{background:url("../../img/en_US/btn_set.png?160622") -446px -274px no-repeat} +#smart_editor2 .se2_bx_character .se2_s_character button span{left:0;display:block;visibility:visible;overflow:visible;width:14px;height:16px;margin:3px 0 0 3px;border:0;background:none;font-size:12px;line-height:normal} +#smart_editor2 .se2_apply_character{clear:both;position:relative;padding:0 0 0 11px} +#smart_editor2 .se2_apply_character label{margin:0 3px 0 0;font-size:12px;color:#666;letter-spacing:-1px} +#smart_editor2 .se2_apply_character .input_ty1{width:364px;height:17px;margin:-1px 5px 1px 0;padding:4px 0 0 5px;font-size:12px;color:#666;letter-spacing:0;vertical-align:middle} +#smart_editor2 .se2_apply_character .se2_confirm{width:41px;height:24px;margin-right:3px;background:url("../../img/en_US/btn_set.png?160622") no-repeat;vertical-align:middle} +#smart_editor2 .se2_apply_character .se2_cancel{width:42px;height:24px;background:url("../../img/en_US/btn_set.png?160622") -41px 0 no-repeat;vertical-align:middle} +/* TEXT_TOOLBAR : TABLECREATOR */ +#smart_editor2 .se2_table_set{position:relative;width:166px;margin:3px 11px 0 11px;padding:8px 0 0 0} +#smart_editor2 .se2_table_set .se2_cell_num{float:left;width:73px} +#smart_editor2 .se2_table_set .se2_cell_num dt{float:left;clear:both;width:30px;height:23px;margin:0;padding:0} +#smart_editor2 .se2_table_set .se2_cell_num dt label{display:block;margin:5px 0 0 0;font-size:11px;color:#666} +#smart_editor2 .se2_table_set .se2_cell_num dd{float:left;position:relative;width:42px;height:23px;margin:0;padding:0} +#smart_editor2 .se2_table_set .se2_cell_num .input_ty2{display:block;width:20px;height:16px;*margin:-1px 0 0 0;padding:2px 19px 0 0px;border:1px solid #c7c7c7;font-family:tahoma,verdana,times New Roman;font-size:11px;color:#666;text-align:right;*direction:rtl} +#smart_editor2 .se2_table_set .se2_cell_num .input_ty2::-ms-clear{display:none} +#smart_editor2 .se2_table_set .se2_pre_table{float:right;width:91px;height:43px;background:#c7c7c7;border-spacing:1px} +#smart_editor2 .se2_table_set .se2_pre_table tr{background:#fff} +#smart_editor2 .se2_table_set .se2_pre_table td{font-size:0;line-height:0} +#smart_editor2 .se2_table_set .se2_add{position:absolute;top:2px;right:3px;width:13px;height:8px;background:url("../../img/en_US/btn_set.png?160622") -86px -54px no-repeat} +#smart_editor2 .se2_table_set .se2_del{position:absolute;top:10px;right:3px;width:13px;height:8px;background:url("../../img/en_US/btn_set.png?160622") -86px -62px no-repeat} +/* TEXT_TOOLBAR : TABLEEDITOR */ +#smart_editor2 .se2_table_set .se2_t_proper1{float:left;width:166px;margin:7px 0 0 0;padding:10px 0 5px;background:url("../../img/bg_line1.gif") repeat-x} +#smart_editor2 .se2_table_set .se2_t_proper1 dt{width:166px;margin:0 0 6px 0} +#smart_editor2 .se2_table_set .se2_t_proper1 dd{width:166px} +#smart_editor2 .se2_table_set .se2_t_proper1 dt input{width:15px;height:15px;margin:-1px 3px 1px 0;_margin:-2px 3px 2px 0;vertical-align:middle} +#smart_editor2 .se2_table_set .se2_t_proper1 dt label{font-weight:bold;font-size:11px;color:#666;letter-spacing:-1px;vertical-align:middle} +#smart_editor2 .se2_table_set .se2_t_proper1_1{float:left;position:relative;z-index:59;width:166px;margin:1px 0 0 0} +#smart_editor2 .se2_table_set .se2_t_proper1_2{z-index:54;margin:0} +#smart_editor2 .se2_table_set .se2_t_proper1_3{z-index:53;margin:0} +#smart_editor2 .se2_table_set .se2_t_proper1_4{z-index:52;margin:0} +#smart_editor2 .se2_table_set .se2_t_proper1_1 dt{_display:inline;float:left;clear:both;width:66px;height:22px;margin:1px 0 0 18px} +#smart_editor2 .se2_table_set .se2_t_proper1_1 dt label{display:block;margin:4px 0 0 0;font-weight:normal;font-size:11px;color:#666;letter-spacing:-1px} +#smart_editor2 .se2_table_set .se2_t_proper1_1 dd{float:left;position:relative;width:82px;height:23px} +#smart_editor2 .se2_table_set .se2_t_proper1_1 .input_ty1{width:72px;height:16px;*margin:-1px 0 0 0;padding:2px 2px 0 6px;font-family:tahoma,verdana,times New Roman;font-size:11px;color:#666} +#smart_editor2 .se2_table_set .se2_t_proper1_1 .input_ty3{float:left;width:49px;height:16px;margin:0 3px 0 0;padding:2px 4px 0 4px;border:1px solid #c7c7c7;font-family:tahoma,verdana,times New Roman;font-size:11px;color:#666} +#smart_editor2 .se2_table_set .se2_t_proper1_1 .se2_add{top:2px;right:2px} +#smart_editor2 .se2_table_set .se2_t_proper1_1 .se2_del{top:10px;right:2px} +#smart_editor2 .se2_table_set .se2_t_proper1_1 .se2_color_set .input_ty1{_display:inline;float:left;width:67px;height:16px;margin:0 3px 0 3px;padding:2px 2px 0 4px;font-family:tahoma,verdana,times New Roman;font-size:11px} +#smart_editor2 .se2_select_ty1{position:relative;width:80px;height:18px;border:1px solid #c7c7c7;background:#fff;font-size:11px;line-height:14px;text-align:left} +#smart_editor2 .se2_select_ty1 span{float:left;width:54px;height:18px;margin:0 0 0 5px;font-size:11px;line-height:14px;color:#666} +#smart_editor2 .se2_select_ty1 .se2_b_style0{position:relative;top:3px;left:-3px;white-space:nowrap} +#smart_editor2 .se2_select_ty1 .se2_b_style1{height:15px;margin:3px 0 0 4px;font-size:11px;line-height:14px;color:#666;letter-spacing:-1px} +#smart_editor2 .se2_select_ty1 .se2_b_style2{background:url("../../img/bg_set.gif") 0 -50px repeat-x} +#smart_editor2 .se2_select_ty1 .se2_b_style3{background:url("../../img/bg_set.gif") 0 -68px repeat-x} +#smart_editor2 .se2_select_ty1 .se2_b_style4{background:url("../../img/bg_set.gif") 0 -85px repeat-x} +#smart_editor2 .se2_select_ty1 .se2_b_style5{background:url("../../img/bg_set.gif") 0 -103px repeat-x} +#smart_editor2 .se2_select_ty1 .se2_b_style6{background:url("../../img/bg_set.gif") 0 -121px repeat-x} +#smart_editor2 .se2_select_ty1 .se2_b_style7{background:url("../../img/bg_set.gif") 0 -139px repeat-x} +#smart_editor2 .se2_select_ty1 .se2_view_more{position:absolute;top:1px;right:1px;width:13px;height:16px;background:url("../../img/en_US/btn_set.png?160622") -112px -54px no-repeat} +#smart_editor2 .se2_select_ty1 .se2_view_more2{position:absolute;top:1px;right:1px;width:13px;height:16px;background:url("../../img/en_US/btn_set.png?160622") -99px -54px no-repeat} +/* TEXT_TOOLBAR : TABLEEDITOR > BORDER */ +#smart_editor2 .se2_table_set .se2_b_t_b1{border-top:1px solid #b1b1b1} +#smart_editor2 .se2_layer_b_style{position:absolute;top:20px;right:0px;width:80px;padding-bottom:1px;border:1px solid #c7c7c7;border-top:1px solid #a8a8a8;background:#fff} +#smart_editor2 .se2_layer_b_style ul{width:80px;margin:0;padding:1px 0 0 0} +#smart_editor2 .se2_layer_b_style li{width:80px;height:18px;margin:0;padding:0} +#smart_editor2 .se2_layer_b_style .hover,#smart_editor2 .se2_layer_b_style .active{background:#ebebeb} +#smart_editor2 .se2_layer_b_style button{width:80px;height:18px;background:none} +#smart_editor2 .se2_layer_b_style button span{left:0;display:block;visibility:visible;overflow:visible;width:71px;height:18px;margin:0 0 0 5px;font-size:11px;line-height:15px;text-align:left} +#smart_editor2 .se2_layer_b_style button span span{visibility:hidden;overflow:hidden;position:absolute;top:0;left:0;width:0;height:0} +#smart_editor2 .se2_layer_b_style .se2_b_style1 span{margin:3px 0 0 4px;font-size:11px;line-height:14px;color:#666;letter-spacing:-1px} +#smart_editor2 .se2_layer_b_style .se2_b_style2 span{background:url("../../img/bg_set.gif") 0 -50px repeat-x} +#smart_editor2 .se2_layer_b_style .se2_b_style3 span{background:url("../../img/bg_set.gif") 0 -68px repeat-x} +#smart_editor2 .se2_layer_b_style .se2_b_style4 span{background:url("../../img/bg_set.gif") 0 -86px repeat-x} +#smart_editor2 .se2_layer_b_style .se2_b_style5 span{background:url("../../img/bg_set.gif") 0 -103px repeat-x} +#smart_editor2 .se2_layer_b_style .se2_b_style6 span{background:url("../../img/bg_set.gif") 0 -121px repeat-x} +#smart_editor2 .se2_layer_b_style .se2_b_style7 span{background:url("../../img/bg_set.gif") 0 -139px repeat-x} +/* TEXT_TOOLBAR : TABLEEDITOR > COLOR */ +#smart_editor2 .se2_pre_color{float:left;width:18px;height:18px;border:1px solid #c7c7c7} +#smart_editor2 .se2_pre_color button{float:left;width:14px;height:14px;margin:2px 0 0 2px;padding:0} +#smart_editor2 .se2_pre_color button span{overflow:hidden;position:absolute;top:-10000px;left:-10000px;z-index:-100;width:0;height:0} +/* TEXT_TOOLBAR : TABLEEDITOR > DIMMED */ +#smart_editor2 .se2_table_set .se2_t_dim1{clear:both;position:absolute;top:71px;left:16px;z-index:60;width:157px;height:118px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_table_set .se2_t_dim2{position:absolute;top:116px;left:16px;z-index:55;width:157px;height:45px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_table_set .se2_t_dim3{clear:both;position:absolute;top:192px;left:16px;z-index:51;width:157px;height:39px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +/* TEXT_TOOLBAR : TABLEEDITOR > STYLE PREVIEW */ +#smart_editor2 .se2_table_set .se2_t_proper2{float:left;position:relative;z-index:50;width:166px;margin:2px 0 0 0} +#smart_editor2 .se2_table_set .se2_t_proper2 dt{float:left;width:84px;height:33px;margin:4px 0 0 0} +#smart_editor2 .se2_table_set .se2_t_proper2 dt input{width:15px;height:15px;margin:-1px 3px 1px 0;_margin:-2px 3px 2px 0;vertical-align:middle} +#smart_editor2 .se2_table_set .se2_t_proper2 dt label{font-weight:bold;font-size:11px;color:#666;letter-spacing:-1px;vertical-align:middle} +#smart_editor2 .se2_table_set .se2_t_proper2 dd{float:left;width:66px;height:33px} +#smart_editor2 .se2_select_ty2{position:relative;width:65px;height:31px;border:1px solid #c7c7c7;background:#fff;font-size:11px;line-height:14px;text-align:left} +#smart_editor2 .se2_select_ty2 span{float:left;width:45px;height:25px;margin:3px 0 0 3px;background:url("../../img/en_US/btn_set.png?160622") repeat-x} +#smart_editor2 .se2_select_ty2 .se2_t_style1{background-position:0 -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style2{background-position:-46px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style3{background-position:-92px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style4{background-position:-138px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style5{background-position:-184px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style6{background-position:-230px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style7{background-position:-276px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style8{background-position:-322px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style9{background-position:0 -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style10{background-position:-46px -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style11{background-position:-92px -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style12{background-position:-138px -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style13{background-position:-184px -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style14{background-position:-230px -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style15{background-position:-276px -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style16{background-position:-322px -436px} +#smart_editor2 .se2_select_ty2 .se2_view_more{position:absolute;top:1px;right:1px;_right:0px;width:13px !important;height:29px !important;background:url("../../img/en_US/btn_set.png?160622") -357px -48px no-repeat !important} +#smart_editor2 .se2_select_ty2 .se2_view_more2{position:absolute;top:1px;right:1px;_right:0px;width:13px !important;height:29px !important;background:url("../../img/en_US/btn_set.png?160622") -344px -48px no-repeat !important} +#smart_editor2 .se2_select_ty2 .se2_view_more span{display:none} +/* TEXT_TOOLBAR : TABLEEDITOR > STYLE */ +#smart_editor2 .se2_layer_t_style{position:absolute;top:33px;right:15px;width:208px;border:1px solid #c7c7c7;border-top:1px solid #a8a8a8;background:#fff} +#smart_editor2 .se2_layer_t_style ul{width:204px;height:126px;margin:1px 2px;padding:1px 0 0 0;background:#fff} +#smart_editor2 .se2_layer_t_style li{_display:inline;float:left;width:45px;height:25px;margin:1px;padding:1px;border:1px solid #fff} +#smart_editor2 .se2_layer_t_style .hover,#smart_editor2 .se2_layer_t_style .active{border:1px solid #666;background:#fff} +#smart_editor2 .se2_layer_t_style button{width:45px;height:25px;background:url("../../img/en_US/btn_set.png?160622") repeat-x !important} +#smart_editor2 .se2_layer_t_style .se2_t_style1{background-position:0 -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style2{background-position:-46px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style3{background-position:-92px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style4{background-position:-138px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style5{background-position:-184px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style6{background-position:-230px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style7{background-position:-276px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style8{background-position:-322px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style9{background-position:0 -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style10{background-position:-46px -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style11{background-position:-92px -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style12{background-position:-138px -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style13{background-position:-184px -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style14{background-position:-230px -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style15{background-position:-276px -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style16{background-position:-322px -436px !important} +#smart_editor2 .se2_table_set .se2_btn_area{float:left;width:166px;margin:6px 0 0 0;padding:12px 0 8px 0;background:url("../../img/bg_line1.gif") repeat-x;text-align:center} +#smart_editor2 .se2_table_set button.se2_apply{width:41px;height:24px;margin-right:3px;background:url("../../img/en_US/btn_set.png?160622") no-repeat} +#smart_editor2 .se2_table_set button.se2_cancel{width:42px;height:24px;background:url("../../img/en_US/btn_set.png?160622") -41px 0 no-repeat} +#smart_editor2 .se2_table_set .se2_rd{width:14px;height:14px;vertical-align:middle} +#smart_editor2 .se2_table_set .se2_celltit{font-size:11px;font-size:11px;color:#666;letter-spacing:-1px} +#smart_editor2 .se2_table_set dt label.se2_celltit{display:inline} +/* TEXT_TOOLBAR : FINDREPLACE */ +#smart_editor2 .se2_bx_find_revise{position:relative;width:255px;margin:0;padding:0} +#smart_editor2 .se2_bx_find_revise .se2_close{position:absolute;top:5px;right:8px;width:20px;height:20px;background:url("../../img/en_US/btn_set.png?160622") -484px -45px no-repeat} +#smart_editor2 .se2_bx_find_revise h3{margin:0;padding:10px 0 13px 10px;background:url("../../img/bg_find_h3.gif") 0 -1px repeat-x;font-size:12px;line-height:14px;letter-spacing:-1px} +#smart_editor2 .se2_bx_find_revise ul{position:relative;margin:8px 0 0 0;padding:0 0 0 12px} +#smart_editor2 .se2_bx_find_revise ul li{_display:inline;float:left;position:static;margin:0 0 0 -1px;padding:0} +#smart_editor2 .se2_bx_find_revise .se2_tabfind{width:117px;height:26px;background:url("../../img/en_US/btn_set.png?160622") 0 -100px no-repeat} +#smart_editor2 .se2_bx_find_revise .se2_tabrevise{width:117px;height:26px;background:url("../../img/en_US/btn_set.png?160622") -116px -100px no-repeat} +#smart_editor2 .se2_bx_find_revise .active .se2_tabfind{width:117px;height:26px;background:url("../../img/en_US/btn_set.png?160622") 0 -126px no-repeat} +#smart_editor2 .se2_bx_find_revise .active .se2_tabrevise{width:117px;height:26px;background:url("../../img/en_US/btn_set.png?160622") -116px -126px no-repeat} +#smart_editor2 .se2_bx_find_revise .se2_in_bx_find dl{_display:inline;float:left;width:223px;margin:0 0 0 9px;padding:7px 0 13px 14px;background:url("../../img/bx_set_110302.gif") -289px -1518px no-repeat} +#smart_editor2 .se2_bx_find_revise .se2_in_bx_revise dl{_display:inline;float:left;width:223px;margin:0 0 0 9px;padding:7px 0 13px 14px;background:url("../../img/bx_set_110302.gif") -289px -1619px no-repeat} +#smart_editor2 .se2_bx_find_revise dt{_display:inline;float:left;clear:both;width:59px;margin:1px 0 2px 0} +#smart_editor2 .se2_bx_find_revise dd{float:left;margin:0 0 2px 0} +#smart_editor2 .se2_bx_find_revise label{float:left;padding:5px 0 0 0;font-size:11px;color:#666;letter-spacing:-2px} +#smart_editor2 .se2_bx_find_revise input{float:left;width:145px;height:12px;margin:1px 0 0 0;padding:3px 2px 3px 4px;font-size:12px;color:#666} +#smart_editor2 .se2_bx_find_revise .se2_find_btns{float:left;clear:both;width:255px;padding:8px 0 10px 0;text-align:center} +#smart_editor2 .se2_bx_find_revise .se2_find_next{width:65px;height:24px;margin:0 3px 0 0;background:url("../../img/en_US/btn_set.png?160622") -180px -48px no-repeat} +#smart_editor2 .se2_bx_find_revise .se2_find_next2{width:61px;height:24px;margin:0 3px 0 0;background:url("../../img/en_US/btn_set.png?160622") -180px -24px no-repeat} +#smart_editor2 .se2_bx_find_revise .se2_revise1{width:54px;height:24px;margin:0 3px 0 0;background:url("../../img/en_US/btn_set.png?160622") -245px -48px no-repeat} +#smart_editor2 .se2_bx_find_revise .se2_revise2{width:67px;height:24px;margin:0 3px 0 0;background:url("../../img/en_US/btn_set.png?160622") -245px -24px no-repeat} +#smart_editor2 .se2_bx_find_revise .se2_cancel{width:42px;height:24px;background:url("../../img/en_US/btn_set.png?160622") -41px 0 no-repeat} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE */ +#smart_editor2 .se2_qmax{position:absolute;width:18px;height:18px;background:url("../../img/en_US/btn_set.png?160622") -339px -169px no-repeat} +#smart_editor2 .se2_qeditor{position:absolute;top:0;left:0;width:273px;margin:0;padding:0;border:1px solid #c7c7c7;border-right:1px solid #ababab;border-bottom:1px solid #ababab;background:#fafafa} +#smart_editor2 .se2_qeditor label,#smart_editor2 .se2_qeditor span,#smart_editor2 .se2_qeditor dt{font-size:11px;color:#666;letter-spacing:-1px} +#smart_editor2 .se2_qbar{position:relative;width:273px;height:11px;background:url("../../img/bx_set_110302.gif") 0 -731px no-repeat} +#smart_editor2 .se2_qbar .se2_qmini{position:absolute;top:-1px;right:0;*right:-1px;_right:-3px;width:18px;height:14px;background:url("../../img/en_US/btn_set.png?160622") -315px -170px no-repeat} +#smart_editor2 .se2_qbar .se2_qmini button{width:20px;height:14px;margin-top:-1px} +#smart_editor2 .se2_qeditor .se2_qbody0{float:left;border:1px solid #fefefe} +#smart_editor2 .se2_qeditor .se2_qbody{position:relative;z-index:90;width:264px;padding:4px 0 0 7px} +#smart_editor2 .se2_qeditor .se2_qe1{overflow:hidden;width:264px} +#smart_editor2 .se2_qeditor .se2_qe1 dt{float:left;width:27px;height:18px;padding:4px 0 0 0} +#smart_editor2 .se2_qeditor .se2_qe1 dd{float:left;width:95px;height:22px;margin-right:8px} +#smart_editor2 .se2_qeditor .se2_addrow{width:40px;height:19px;background:url("../../img/en_US/btn_set.png?160622") no-repeat -385px -49px} +#smart_editor2 .se2_qeditor .se2_addcol{width:55px;height:19px;background:url("../../img/en_US/btn_set.png?160622") no-repeat -425px -49px} +#smart_editor2 .se2_qeditor .se2_seprow{width:40px;height:19px;background:url("../../img/en_US/btn_set.png?160622") no-repeat -385px -68px} +#smart_editor2 .se2_qeditor .se2_sepcol{width:55px;height:19px;background:url("../../img/en_US/btn_set.png?160622") no-repeat -425px -68px} +#smart_editor2 .se2_qeditor .se2_delrow{width:40px;height:19px;background:url("../../img/en_US/btn_set.png?160622") no-repeat -385px -106px} +#smart_editor2 .se2_qeditor .se2_delcol{width:55px;height:19px;background:url("../../img/en_US/btn_set.png?160622") no-repeat -425px -106px} +#smart_editor2 .se2_qeditor .se2_merrow{width:76px;height:19px;background:url("../../img/en_US/btn_set.png?160622") no-repeat -385px -125px} +#smart_editor2 .se2_qeditor .se2_mercol{width:76px;height:19px;background:url("../../img/en_US/btn_set.png?160622") no-repeat -425px -125px} +#smart_editor2 .se2_qeditor .se2_seprow_off{width:40px;height:19px;background:url("../../img/en_US/btn_set.png?160622") no-repeat -385px -87px} +#smart_editor2 .se2_qeditor .se2_sepcol_off{width:55px;height:19px;background:url("../../img/en_US/btn_set.png?160622") no-repeat -425px -87px} +#smart_editor2 .se2_qeditor .se2_merrow_off{width:76px;height:19px;background:url("../../img/en_US/btn_set.png?160622") no-repeat -385px -144px} +#smart_editor2 .se2_qeditor .se2_mercol_off{width:76px;height:19px;background:url("../../img/en_US/btn_set.png?160622") no-repeat -425px -144px} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > CELL_BACKGROUND */ +#smart_editor2 .se2_qeditor .se2_qe2{_display:inline;float:left;position:relative;z-index:100;width:255px;margin:2px 0 0 1px;padding:7px 0 0 0;background:url("../../img/bg_line1.gif") repeat-x;zoom:1} +#smart_editor2 .se2_qeditor .se2_qe2_1 dt{float:left;width:83px;padding:3px 0 0 0} +#smart_editor2 .se2_qeditor .se2_qe2_1 dt input{width:15px;height:15px;margin:-1px 1px 1px -1px;vertical-align:middle} +#smart_editor2 .se2_qeditor .se2_qe2_1 dd{float:left;position:relative;zoom:1} +#smart_editor2 .se2_qeditor .se2_qe2_3{padding:7px 0 6px 0} +/* My글양식 없을때 */ +#smart_editor2 .se2_qeditor .se2_qe2_2{position:relative;_position:absolute} +#smart_editor2 .se2_qeditor .se2_qe2_2 dt{float:left;width:50px;padding:3px 0 0 13px} +#smart_editor2 .se2_qeditor .se2_qe2_2 dt input{width:15px;height:15px;margin:-1px 2px 1px -1px;vertical-align:middle} +#smart_editor2 .se2_qeditor .se2_qe2_2 dd{float:left} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > STYLE */ +#smart_editor2 .se2_table_set .se2_qbody .se2_t_proper2{float:left;*float:none;position:static;width:256px;margin:5px 0 0 1px} +#smart_editor2 .se2_qeditor .se2_qe3 dt{float:left;width:83px;padding:0} +#smart_editor2 .se2_qeditor .se2_qe3 dt label{font-weight:normal} +#smart_editor2 .se2_qeditor .se2_qe3 dt input{width:15px;height:15px;margin:-1px 1px 1px -1px;vertical-align:middle} +#smart_editor2 .se2_qeditor .se2_qe3 dd .se2_qe3_table{position:relative} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > CELL_BACKGROUND PREWVIEW */ +#smart_editor2 .se2_qeditor .se2_pre_color{float:left;width:18px;height:18px;border:1px solid #c7c7c7} +#smart_editor2 .se2_qeditor .se2_pre_color button{float:left;width:14px;height:14px;margin:2px 0 0 2px;padding:0} +#smart_editor2 .se2_qeditor .se2_pre_color button span{overflow:hidden;position:absolute;top:-10000px;left:-10000px;z-index:-100;width:0;height:0} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > CELL_BACKGROUND LAYER */ +#smart_editor2 .se2_qeditor .se2_layer{float:left;clear:both;position:absolute;top:20px;left:0;margin:0;padding:0;border:1px solid #c7c7c7;border-top:1px solid #9a9a9a;background:#fafafa} +#smart_editor2 .se2_qeditor .se2_layer .se2_in_layer{float:left;margin:0;padding:0;border:1px solid #fff;background:#fafafa} +#smart_editor2 .se2_qeditor .se2_layer button{vertical-align:top} +#smart_editor2 .se2_qeditor .se2_layer .se2_pick_color li{position:relative} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > CELL_BACKGROUND IMAGE */ +#smart_editor2 .se2_qeditor .se2_pre_bgimg{float:left;width:14px;height:14px;padding:2px;border:1px solid #c7c7c7} +#smart_editor2 .se2_qeditor .se2_qe2_2 button{width:16px;height:16px;background:url("../../img/en_US/btn_set.png?160622") 0 -261px no-repeat} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > CELL_BACKGROUND IMAGE LAYER */ +#smart_editor2 .se2_cellimg_set{_display:inline;float:left;width:136px;margin:4px 3px 0 4px;padding-bottom:4px} +#smart_editor2 .se2_cellimg_set li{_display:inline;float:left;width:16px;height:16px;margin:0 1px 1px 0} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg0{background-position:-255px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg1{background-position:0 -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg2{background-position:-17px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg3{background-position:-34px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg4{background-position:-51px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg5{background-position:-68px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg6{background-position:-85px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg7{background-position:-102px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg8{background-position:-119px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg9{background-position:-136px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg10{background-position:-153px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg11{background-position:-170px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg12{background-position:-187px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg13{background-position:-204px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg14{background-position:-221px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg15{background-position:-238px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg16{background-position:-255px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg17{background-position:0 -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg18{background-position:-17px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg19{background-position:-34px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg20{background-position:-51px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg21{background-position:-68px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg22{background-position:-85px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg23{background-position:-102px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg24{background-position:-119px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg25{background-position:-136px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg26{background-position:-153px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg27{background-position:-170px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg28{background-position:-187px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg29{background-position:-204px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg30{background-position:-221px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg31{background-position:-238px -278px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg button{width:14px;height:14px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg1{background-position:-1px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg2{background-position:-18px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg3{background-position:-35px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg4{background-position:-52px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg5{background-position:-69px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg6{background-position:-86px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg7{background-position:-103px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg8{background-position:-120px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg9{background-position:-137px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg10{background-position:-154px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg11{background-position:-171px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg12{background-position:-188px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg13{background-position:-205px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg14{background-position:-222px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg15{background-position:-239px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg16{background-position:-256px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg17{background-position:-1px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg18{background-position:-18px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg19{background-position:-35px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg20{background-position:-52px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg21{background-position:-69px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg22{background-position:-86px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg23{background-position:-103px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg24{background-position:-120px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg25{background-position:-137px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg26{background-position:-154px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg27{background-position:-171px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg28{background-position:-188px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg29{background-position:-205px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg30{background-position:-222px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg31{background-position:-239px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg32{background-position:-256px -279px} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > MY REVIEW */ +#smart_editor2 .se2_btn_area{_display:inline;float:left;clear:both;width:166px;margin:5px 0 0 1px;padding:7px 0 6px 0;background:url("../../img/bg_line1.gif") repeat-x;text-align:center} +#smart_editor2 .se2_btn_area .se2_btn_save{width:97px;height:21px;background:url("../../img/en_US/btn_set.png?160622") -369px -163px no-repeat} +/* TEXT_TOOLBAR : QUICKEDITOR_IMAGE */ +#smart_editor2 .se2_qe10{width:166px;margin:0;*margin:-2px 0 0 0} +#smart_editor2 .se2_qe10 label{margin:0 1px 0 0;vertical-align:middle} +#smart_editor2 .se2_qe10 .se2_sheight{margin-left:4px} +#smart_editor2 .se2_qe10 .input_ty1{width:30px;height:13px;margin:0 0 1px 1px;padding:3px 4px 0 1px;font-size:11px;letter-spacing:0;text-align:right;vertical-align:middle} +#smart_editor2 .se2_qe10 .se2_sreset{width:41px;height:19px;margin-left:3px;background:url("../../img/en_US/btn_set.png?160622") -401px -184px no-repeat;vertical-align:middle} +#smart_editor2 .se2_qe10_1{margin-top:4px;padding:10px 0 3px;background:url("../../img/bg_line1.gif") repeat-x} +#smart_editor2 .se2_qe10_1 input{width:15px;height:15px;margin:-1px 3px 1px -1px;vertical-align:middle} +#smart_editor2 .se2_qe11{float:left;width:166px;margin:4px 0 0 0;padding:7px 0 2px 0;background:url("../../img/bg_line1.gif") repeat-x} +#smart_editor2 .se2_qe11_1{float:left;width:99px} +#smart_editor2 .se2_qe11_1 dt{float:left;width:56px;height:15px;padding:5px 0 0 0} +#smart_editor2 .se2_qe11_1 dd{float:left;position:relative;width:38px;height:20px} +#smart_editor2 .se2_qe11_1 .input_ty1{display:block;width:29px;height:15px;margin:0;*margin:-1px 0 1px 0;padding:3px 1px 0 5px;font-size:11px;letter-spacing:0;text-align:left} +#smart_editor2 .se2_qe11_1 .se2_add{position:absolute;top:2px;right:3px;width:13px;height:8px;background:url("../../img/en_US/btn_set.png?160622") -86px -54px no-repeat} +#smart_editor2 .se2_qe11_1 .se2_del{position:absolute;top:10px;right:3px;width:13px;height:8px;background:url("../../img/en_US/btn_set.png?160622") -86px -62px no-repeat} +#smart_editor2 .se2_qe11_2{float:left;width:67px} +#smart_editor2 .se2_qe11_2 dt{float:left;width:47px;margin:5px 0 0 0} +#smart_editor2 .se2_qe11_2 dd{float:left;position:relative;width:20px} +#smart_editor2 .se2_qe12{float:left;width:166px;margin:3px 0 0 0;padding:7px 0 0 0;background:url("../../img/bg_line1.gif") repeat-x} +#smart_editor2 .se2_qe12 dt{float:left;margin:5px 4px 0 0} +#smart_editor2 .se2_qe12 dd{float:left;padding:0 0 6px 0} +#smart_editor2 .se2_qe12 .se2_align0{float:left;width:19px;height:21px;background:url("../../img/en_US/btn_set.png?160622") -276px -121px no-repeat} +#smart_editor2 .se2_qe12 .se2_align1{float:left;width:19px;height:21px;background:url("../../img/en_US/btn_set.png?160622") -295px -121px no-repeat} +#smart_editor2 .se2_qe12 .se2_align2{float:left;width:20px;height:21px;background:url("../../img/en_US/btn_set.png?160622") -314px -121px no-repeat} +#smart_editor2 .se2_qe13{position:relative;z-index:10;zoom:1} +#smart_editor2 .se2_qe13 dt{float:left;width:62px;padding:3px 0 0} +#smart_editor2 .se2_qe13 dt input{width:15px;height:15px;margin:-1px 1px 1px -1px;vertical-align:middle;zoom:1} +#smart_editor2 .se2_qe13 dt .se2_qdim2{width:32px} +#smart_editor2 .se2_qe13 dd .se2_select_ty1{width:38px} +#smart_editor2 .se2_qe13 dd .se2_select_ty1 span{width:15px} +#smart_editor2 .se2_qe13 dd .input_ty1{width:20px} +#smart_editor2 .se2_qe13 dd .se2_palette2 .input_ty1{width:67px} +#smart_editor2 .se2_qe13 .se2_add{*top:3px} +#smart_editor2 .se2_qe13 .se2_del{*top:11px} +#smart_editor2 .se2_qe13 .se2_layer_b_style{right:-2px;_right:0} +#smart_editor2 .se2_qe13 .se2_layer_b_style li span{width:auto;margin:0 4px 0 5px;padding-top:2px} +#smart_editor2 .se2_qe13 dd{_display:inline;float:left;position:relative;width:29px;margin-right:5px;_margin-right:3px;zoom:1} +#smart_editor2 .se2_qe13 dd .se2_palette h4{margin-top:9px;font-family:dotum;font-size:12px} +#smart_editor2 .se2_qe13 dd.dd_type{width:38px} +#smart_editor2 .se2_qe13 dd.dd_type2{width:37px;margin-right:3px} +#smart_editor2 .se2_qe13 dd.dd_type2 .input_ty1{width:29px} +#smart_editor2 .se2_qe13 dd.dd_type2 button{right:2px;_right:1px} +#smart_editor2 .se2_qe13 dd.dd_type3{width:20px;margin:0} +#smart_editor2 .se2_qe13_v1{_display:inline;float:left;margin:2px 0 1px} +#smart_editor2 .se2_qe13_v1 dt{padding:4px 0 0 1px} +#smart_editor2 .se2_qe13_v2{_display:inline;float:left;position:relative;z-index:100;width:165px;margin:4px 0 0 1px;zoom:1} +#smart_editor2 .se2_qe13_v2 dd{width:18px;margin:0} +#smart_editor2 .se2_qeditor .se2_qdim1{clear:both;position:absolute;top:25px;left:160px;width:76px;height:23px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim2{clear:both;position:absolute;top:55px;left:24px;z-index:110;width:92px;height:22px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim3{clear:both;position:absolute;top:55px;left:118px;z-index:110;width:56px;height:22px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim4{clear:both;position:absolute;top:81px;left:23px;z-index:35;width:140px;height:35px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim5{clear:both;position:absolute;top:31px;left:106px;width:68px;height:26px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim6c{clear:both;position:absolute;top:25px;left:34px;width:40px;height:23px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim6r{clear:both;position:absolute;top:25px;left:74px;width:57px;height:23px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_highedit{float:right;width:56px;height:21px;margin:-27px 8px 0 0;background:url("../../img/en_US/btn_set.png?160622") -329px -142px no-repeat} +#smart_editor2 .se2_qeditor .se2_qdim7{clear:both;position:absolute;top:55px;left:24px;z-index:110;width:150px;height:48px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim8{clear:both;position:absolute;top:105px;left:24px;z-index:110;width:150px;height:37px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim9{clear:both;position:absolute;top:55px;left:111px;z-index:110;width:65px;height:24px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim10{clear:both;position:absolute;top:55px;left:100px;z-index:110;width:77px;height:24px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim11{clear:both;position:absolute;top:55px;left:65px;z-index:110;width:115px;height:24px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} diff --git a/plugin/editor/smarteditor2/css/en_US/smart_editor2_out.css b/plugin/editor/smarteditor2/css/en_US/smart_editor2_out.css new file mode 100644 index 000000000..0baf3770e --- /dev/null +++ b/plugin/editor/smarteditor2/css/en_US/smart_editor2_out.css @@ -0,0 +1,12 @@ +@charset "UTF-8"; +/* NHN Web Standardization Team (http://html.nhndesign.com/) HHJ 090226 */ +/* COMMON */ +.se2_outputarea, .se2_outputarea th, .se2_outputarea td{margin:0;padding:0;color:#666;font-size:12px;font-family:'돋움',Dotum,'굴림',Gulim,Helvetica,Sans-serif;line-height:1.5} +.se2_outputarea p{margin:0;padding:0} +.se2_outputarea a:hover{text-decoration:underline} +.se2_outputarea a:link{color:#0000ff} +.se2_outputarea ul{margin:0 0 0 40px;padding:0} +.se2_outputarea ul li{margin:0;list-style-type:disc;padding:0} +.se2_outputarea ul ul li{list-style-type:circle} +.se2_outputarea ul ul ul li{list-style-type:square} +.se2_outputarea img, .se2_outputarea fieldset{border:0} diff --git a/plugin/editor/smarteditor2/css/ja_JP/smart_editor2.css b/plugin/editor/smarteditor2/css/ja_JP/smart_editor2.css new file mode 100644 index 000000000..739b6bf22 --- /dev/null +++ b/plugin/editor/smarteditor2/css/ja_JP/smart_editor2.css @@ -0,0 +1,190 @@ +@charset "UTF-8"; +/* NHN Web Standardization Team (http://html.nhndesign.com/) HHJ 090226 */ +/* COMMON */ +body,#smart_editor2,#smart_editor2 p,#smart_editor2 h1,#smart_editor2 h2,#smart_editor2 h3,#smart_editor2 h4,#smart_editor2 h5,#smart_editor2 h6,#smart_editor2 ul,#smart_editor2 ol,#smart_editor2 li,#smart_editor2 dl,#smart_editor2 dt,#smart_editor2 dd,#smart_editor2 table,#smart_editor2 th,#smart_editor2 td,#smart_editor2 form,#smart_editor2 fieldset,#smart_editor2 legend,#smart_editor2 input,#smart_editor2 textarea,#smart_editor2 button,#smart_editor2 select{margin:0;padding:0} +#smart_editor2,#smart_editor2 h1,#smart_editor2 h2,#smart_editor2 h3,#smart_editor2 h4,#smart_editor2 h5,#smart_editor2 h6,#smart_editor2 input,#smart_editor2 textarea,#smart_editor2 select,#smart_editor2 table,#smart_editor2 button{font-family:'돋움',Dotum,Helvetica,sans-serif;font-size:12px;color:#666} +#smart_editor2 span,#smart_editor2 em{font-size:12px} +#smart_editor2 em,#smart_editor2 address{font-style:normal} +#smart_editor2 img,#smart_editor2 fieldset{border:0} +#smart_editor2 hr{display:none} +#smart_editor2 ol,#smart_editor2 ul{list-style:none} +#smart_editor2 button{border:0;background:none;font-size:11px;vertical-align:top;cursor:pointer} +#smart_editor2 button span,#smart_editor2 button em{visibility:hidden;overflow:hidden;position:absolute;top:0;font-size:0;line-height:0} +#smart_editor2 legend,#smart_editor2 .blind{visibility:hidden;overflow:hidden;position:absolute;width:0;height:0;font-size:0;line-height:0} +#smart_editor2 .input_ty1{height:14px;margin:0;padding:4px 2px 0 4px;border:1px solid #c7c7c7;font-size:11px;color:#666} +#smart_editor2 a:link,#smart_editor2 a:visited,#smart_editor2 a:active,#smart_editor2 a:focus{color:#666;text-decoration:none} +#smart_editor2 a:hover{color:#666;text-decoration:underline} +/* LAYOUT */ +#smart_editor2 .se2_header{margin:10px 0 29px 0} +#smart_editor2 .se2_bi{float:left;width:93px;height:20px;margin:0;padding:0;background:url("../../img/ja_JP/btn_set.png?160622") -343px -358px no-repeat;font-size:0;line-height:0;text-indent:-10000px;vertical-align:middle} +#smart_editor2 .se2_allhelp{display:inline-block;width:18px;height:18px;padding:0;background:url("../../img/ja_JP/btn_set.png?160622") -437px -358px no-repeat;font-size:0;line-height:0;text-indent:-10000px;vertical-align:middle} +#smart_editor2 #smart_editor2_content{position:relative;border:1px solid #b5b5b5} +#smart_editor2 .se2_tool{overflow:visible;position:relative;z-index:25} +/* EDITINGAREA */ +#smart_editor2 .se2_input_area{position:relative;z-index:22;height:400px;margin:0;padding:0;*zoom:1} +#smart_editor2 .se2_input_wysiwyg,#smart_editor2 .se2_input_syntax{display:block;overflow:auto;width:100%;height:100%;margin:0;*margin:-1px 0 0 0;border:0} +/* EDITINGMODE */ +#smart_editor2 .se2_conversion_mode{position:relative;height:15px;padding-top:1px;border-top:1px solid #b5b5b5;background:url("../../img/icon_set.gif?141007") 0 -896px repeat-x} +#smart_editor2 .se2_inputarea_controller{display:block;clear:both;position:relative;width:100%;height:15px;background:url("../../img/icon_set.gif?141007") center -47px no-repeat;text-align:center;cursor:n-resize} +#smart_editor2 .se2_inputarea_controller span{display:block;visibility:visible;height:15px;font-size:0;line-height:0;color:#fff;white-space:nowrap} +#smart_editor2 .ly_controller{display:block;position:absolute;bottom:2px;left:50%;width:287px;margin-left:-148px;padding:8px 0 7px 9px;border:1px solid #827f7c;background:#fffdef} +#smart_editor2 .ly_controller p{color:#666;font-size:11px;letter-spacing:-1px;line-height:11px} +#smart_editor2 .ly_controller .bt_clse,#smart_editor2 .ly_controller .ic_arr{position:absolute;background:url("../../img/ico_extend.png") no-repeat} +#smart_editor2 .ly_controller .bt_clse{top:5px;right:4px;width:14px;height:15px;background-position:1px -43px} +#smart_editor2 .ly_controller .ic_arr{top:25px;left:50%;width:10px;height:6px;margin-left:-5px;background-position:0 -65px} +#smart_editor2 .se2_converter{float:left;position:absolute;top:-1px;right:3px;z-index:20} +#smart_editor2 .se2_converter li{float:left} +#smart_editor2 .se2_converter .se2_to_editor{width:59px;height:15px;background:url("../../img/ja_JP/btn_set.png?160622") 0 -85px no-repeat;vertical-align:top} +#smart_editor2 .se2_converter .se2_to_html{width:59px;height:15px;background:url("../../img/ja_JP/btn_set.png?160622") -59px -70px no-repeat;vertical-align:top} +#smart_editor2 .se2_converter .se2_to_text{width:60px;height:15px;background:url("../../img/ja_JP/btn_set.png?160622") -417px -466px no-repeat;vertical-align:top} +#smart_editor2 .se2_converter .active .se2_to_editor{width:59px;height:15px;background:url("../../img/ja_JP/btn_set.png?160622") 0 -70px no-repeat;vertical-align:top} +#smart_editor2 .se2_converter .active .se2_to_html{width:59px;height:15px;background:url("../../img/ja_JP/btn_set.png?160622") -59px -85px no-repeat;vertical-align:top} +#smart_editor2 .se2_converter .active .se2_to_text{width:60px;height:15px;background:url("../../img/ja_JP/btn_set.png?160622") -417px -481px no-repeat;vertical-align:top} +/* EDITINGAREA_HTMLSRC */ +#smart_editor2 .off .ico_btn,#smart_editor2 .off .se2_more,#smart_editor2 .off .se2_more2,#smart_editor2 .off .se2_font_family,#smart_editor2 .off .se2_font_size,#smart_editor2 .off .se2_bold,#smart_editor2 .off .se2_underline,#smart_editor2 .off .se2_italic,#smart_editor2 .off .se2_tdel,#smart_editor2 .off .se2_fcolor,#smart_editor2 .off .se2_fcolor_more,#smart_editor2 .off .se2_bgcolor,#smart_editor2 .off .se2_bgcolor_more,#smart_editor2 .off .se2_left,#smart_editor2 .off .se2_center,#smart_editor2 .off .se2_right,#smart_editor2 .off .se2_justify,#smart_editor2 .off .se2_ol,#smart_editor2 .off .se2_ul,#smart_editor2 .off .se2_indent,#smart_editor2 .off .se2_outdent,#smart_editor2 .off .se2_lineheight,#smart_editor2 .off .se2_del_style,#smart_editor2 .off .se2_blockquote,#smart_editor2 .off .se2_summary,#smart_editor2 .off .se2_footnote,#smart_editor2 .off .se2_url,#smart_editor2 .off .se2_emoticon,#smart_editor2 .off .se2_character,#smart_editor2 .off .se2_table,#smart_editor2 .off .se2_find,#smart_editor2 .off .se2_spelling,#smart_editor2 .off .se2_sup,#smart_editor2 .off .se2_sub,#smart_editor2 .off .se2_text_tool_more,#smart_editor2 .off .se2_new,#smart_editor2 .off .selected_color,#smart_editor2 .off .se2_lineSticker{-ms-filter:alpha(opacity=50);opacity:.5;cursor:default;filter:alpha(opacity=50)} +/* LAYER */ +#smart_editor2 .se2_text_tool .se2_layer{display:none;float:left;position:absolute;top:20px;left:0;z-index:50;margin:0;padding:0;border:1px solid #bcbbbb;background:#fafafa} +#smart_editor2 .se2_text_tool li.active{z-index:50} +#smart_editor2 .se2_text_tool .active .se2_layer{display:block} +#smart_editor2 .se2_text_tool .active li .se2_layer{display:none} +#smart_editor2 .se2_text_tool .active .active .se2_layer{display:block} +#smart_editor2 .se2_text_tool .se2_layer .se2_in_layer{float:left;margin:0;padding:0;border:1px solid #fff;background:#fafafa} +#smart_editor2 .se2_content_loading{display:none;z-index:10;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center} +#smart_editor2 .se2_content_loading img{position:absolute;top:50%;left:50%;margin:-27px 0 0 -27px} +#smart_editor2 .se2_alert_wrap{display:none;z-index:20;position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;text-align:center} +#smart_editor2 .se2_alert_wrap.active{display:block} +#smart_editor2 .se2_alert_wrap .dimmed{position:absolute;top:0;left:0;width:100%;height:100%;background:#000;opacity:0.4;filter:alpha(opacity=40)} +#smart_editor2 .se2_alert_wrap .ie_cover{position:absolute;top:0;left:0;width:100%;height:100%;background:#fff;opacity:0;filter:alpha(opacity=0)} +#smart_editor2 .se2_alert_wrap .va_line{display:inline-block;height:100%;vertical-align:middle;*zoom:1} +#smart_editor2 .se2_alert_wrap .se2_alert_content{z-index:10;position:relative;display:inline-block;*display:inline;*zoom:1;border:1px solid #727272;background:#fff;padding:26px 33px 22px;vertical-align:middle} +#smart_editor2 .se2_alert_wrap .se2_alert_content{margin-top:47px} +#smart_editor2 .se2_alert_wrap .txt1{color:#333;line-height:18px} +#smart_editor2 .se2_alert_wrap .txt2{margin-top:3px;color:#999} +#smart_editor2 .se2_alert_wrap .btn_close,#smart_editor2 .se2_alert_btns button{background:url("../../img/ja_JP/btn_set.png?160622") no-repeat} +#smart_editor2 .se2_alert_wrap .btn_close{z-index:10;position:absolute;top:7px;right:7px;width:11px;height:11px;background-position:-122px -32px;text-indent:-5000px} +#smart_editor2 .se2_alert_btns{margin-top:19px} +#smart_editor2 .se2_alert_btns button{display:inline;float:none;width:48px;height:27px} +#smart_editor2 .se2_alert_btns button + button{margin-left:10px} +#smart_editor2 .se2_alert_btns .se2_confirm{background-position:-369px -434px} +#smart_editor2 .se2_alert_btns .se2_cancel{background-position:-419px -434px} +/* TEXT_TOOLBAR */ +#smart_editor2 .se2_text_tool{position:relative;clear:both;z-index:30;padding:4px 0 4px 3px;background:#f4f4f4 url("../../img/bg_text_tool.gif") 0 0 repeat-x;border-bottom:1px solid #b5b5b5;*zoom:1} +#smart_editor2 .se2_text_tool:after{content:"";display:block;clear:both} +#smart_editor2 .se2_text_tool ul{float:left;display:inline;margin-right:3px;padding-left:1px;white-space:nowrap} +#smart_editor2 .se2_text_tool li{_display:inline;float:left;position:relative;z-index:30} +#smart_editor2 .se2_text_tool button,#smart_editor2 .se2_multy .se2_icon{width:21px;height:21px;background:url("../../img/ja_JP/text_tool_set.png?140317") no-repeat;vertical-align:top} +#smart_editor2 .se2_text_tool .se2_font_type{position:relative} +#smart_editor2 .se2_text_tool .se2_font_type li{margin-left:3px} +#smart_editor2 .se2_text_tool .se2_font_type button{text-align:left} +#smart_editor2 .se2_text_tool .se2_font_type button.se2_font_family span,#smart_editor2 .se2_text_tool .se2_font_type button.se2_font_size span{display:inline-block;visibility:visible;position:static;width:52px;height:20px;padding:0 0 0 6px;font-size:12px;line-height:20px;*line-height:22px;color:#333;*zoom:1} +#smart_editor2 .se2_text_tool .se2_multy{position:absolute;top:0;right:0;padding-left:0;margin-right:0;white-space:nowrap;border-left:1px solid #e0dedf} +#smart_editor2 .se2_text_tool .se2_multy .se2_mn{float:left;white-space:nowrap} +#smart_editor2 .se2_text_tool .se2_multy button{background-image:none;width:47px} +#smart_editor2 .se2_text_tool .se2_multy .se2_icon{display:inline-block;visibility:visible;overflow:visible;position:static;width:16px;height:29px;margin:-1px 2px 0 -1px;background-position:0 -132px;line-height:30px;vertical-align:top} +#smart_editor2 .se2_text_tool .se2_multy button,#smart_editor2 .se2_text_tool .se2_multy button span{height:29px;line-height:29px} +#smart_editor2 .se2_text_tool .se2_map .se2_icon{background-position:-29px -132px} +#smart_editor2 .se2_text_tool button span.se2_mntxt{display:inline-block;visibility:visible;overflow:visible;_overflow-y:hidden;position:relative;*margin-right:-1px;width:auto;height:29px;font-weight:normal;font-size:11px;line-height:30px;*line-height:29px;_line-height:30px;color:#444;letter-spacing:-1px;vertical-align:top} +#smart_editor2 .se2_text_tool .se2_multy .se2_photo{margin-right:1px} +#smart_editor2 .se2_text_tool .se2_multy .hover .ico_btn{background:#e8e8e8} +#smart_editor2 .se2_text_tool .se2_multy .se2_mn.hover{background:#e0dedf} +/* TEXT_TOOLBAR : ROUNDING */ +#smart_editor2 ul li.first_child button span.tool_bg, #smart_editor2 ul li.last_child button span.tool_bg, #smart_editor2 ul li.single_child button span.tool_bg{visibility:visible;height:21px} +#smart_editor2 ul li.first_child button span.tool_bg{left:-1px;width:3px;background:url("../../img/bg_button_left.gif?20121228") no-repeat} +#smart_editor2 ul li.last_child button span.tool_bg{right:0px;_right:-1px;width:2px;background:url("../../img/bg_button_right.gif") no-repeat} +#smart_editor2 ul li.single_child{padding-right:1px} +#smart_editor2 ul li.single_child button span.tool_bg{left:0;background:url("../../img/bg_button.gif?20121228") no-repeat;width:22px} +#smart_editor2 div.se2_text_tool ul li.hover button span.tool_bg{background-position:0 -21px} +#smart_editor2 div.se2_text_tool ul li.active button span.tool_bg, #smart_editor2 div.se2_text_tool ul li.active li.active button span.tool_bg{background-position:0 -42px} +#smart_editor2 div.se2_text_tool ul li.active li button span.tool_bg{background-position:0 0} +/* TEXT_TOOLBAR : SUB_MENU */ +#smart_editor2 .se2_sub_text_tool{display:none;position:absolute;top:20px;left:0;z-index:40;width:auto;height:29px;padding:0 4px 0 0;border:1px solid #b5b5b5;border-top:1px solid #9a9a9a;background:#f4f4f4} +#smart_editor2 .active .se2_sub_text_tool{display:block} +#smart_editor2 .se2_sub_text_tool ul{float:left;height:25px;margin:0;padding:4px 0 0 4px} +/* TEXT_TOOLBAR : SUB_MENU_SIZE */ +#smart_editor2 .se2_sub_step1{width:88px} +#smart_editor2 .se2_sub_step2{width:199px} +#smart_editor2 .se2_sub_step2_1{width:178px} +/* TEXT_TOOLBAR : BUTTON */ +#smart_editor2 .se2_text_tool .se2_font_family{width:70px;height:21px;background-position:0 -10px} +#smart_editor2 .se2_text_tool .hover .se2_font_family{background-position:0 -72px} +#smart_editor2 .se2_text_tool .active .se2_font_family{background-position:0 -103px} +#smart_editor2 .se2_text_tool .se2_font_size{width:45px;height:21px;background-position:-70px -10px} +#smart_editor2 .se2_text_tool .hover .se2_font_size{background-position:-70px -72px} +#smart_editor2 .se2_text_tool .active .se2_font_size{background-position:-70px -103px} +#smart_editor2 .se2_text_tool .se2_bold{background-position:-115px -10px} +#smart_editor2 .se2_text_tool .hover .se2_bold{background-position:-115px -72px} +#smart_editor2 .se2_text_tool .active .se2_bold{background-position:-115px -103px} +#smart_editor2 .se2_text_tool .se2_underline{background-position:-136px -10px} +#smart_editor2 .se2_text_tool .hover .se2_underline{background-position:-136px -72px} +#smart_editor2 .se2_text_tool .active .se2_underline{background-position:-136px -103px} +#smart_editor2 .se2_text_tool .se2_italic{background-position:-157px -10px} +#smart_editor2 .se2_text_tool .hover .se2_italic{background-position:-157px -72px} +#smart_editor2 .se2_text_tool .active .se2_italic{background-position:-157px -103px} +#smart_editor2 .se2_text_tool .se2_tdel{background-position:-178px -10px} +#smart_editor2 .se2_text_tool .hover .se2_tdel{background-position:-178px -72px} +#smart_editor2 .se2_text_tool .active .se2_tdel{background-position:-178px -103px} +#smart_editor2 .se2_text_tool .se2_fcolor{position:relative;background-position:-199px -10px} +#smart_editor2 .se2_text_tool .hover .se2_fcolor{background-position:-199px -72px} +#smart_editor2 .se2_text_tool .active .se2_fcolor{background-position:-199px -103px} +#smart_editor2 .se2_text_tool .se2_fcolor_more{background-position:-220px -10px;width:10px} +#smart_editor2 .se2_text_tool .hover .se2_fcolor_more{background-position:-220px -72px} +#smart_editor2 .se2_text_tool .active .se2_fcolor_more{background-position:-220px -103px} +#smart_editor2 .se2_text_tool .selected_color{position:absolute;top:14px;left:5px;width:11px;height:3px;font-size:0} +#smart_editor2 .se2_text_tool .se2_ol,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .se2_ol{background-position:-345px -10px} +#smart_editor2 .se2_text_tool .se2_ul,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .se2_ul{background-position:-366px -10px} +#smart_editor2 .se2_text_tool .hover .se2_ol,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .hover .se2_ol{background-position:-345px -72px} +#smart_editor2 .se2_text_tool .hover .se2_ul,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .hover .se2_ul{background-position:-366px -72px} +#smart_editor2 .se2_text_tool .active .se2_ol,#smart_editor2 .se2_text_tool .active .active .se2_ol{background-position:-345px -103px} +#smart_editor2 .se2_text_tool .active .se2_ul,#smart_editor2 .se2_text_tool .active .active .se2_ul{background-position:-366px -103px} +#smart_editor2 .se2_text_tool .se2_indent,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .se2_indent{background-position:-408px -10px} +#smart_editor2 .se2_text_tool .se2_outdent,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .se2_outdent{background-position:-387px -10px} +#smart_editor2 .se2_text_tool .hover .se2_indent,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .hover .se2_indent{background-position:-408px -72px} +#smart_editor2 .se2_text_tool .hover .se2_outdent,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .hover .se2_outdent{background-position:-387px -72px} +#smart_editor2 .se2_text_tool .active .se2_indent,#smart_editor2 .se2_text_tool .active .active .se2_indent{background-position:-408px -103px} +#smart_editor2 .se2_text_tool .active .se2_outdent,#smart_editor2 .se2_text_tool .active .active .se2_outdent{background-position:-387px -103px} +#smart_editor2 .se2_text_tool .se2_lineheight{background-position:-429px -10px} +#smart_editor2 .se2_text_tool .hover .se2_lineheight{background-position:-429px -72px} +#smart_editor2 .se2_text_tool .active .se2_lineheight{background-position:-429px -103px} +#smart_editor2 .se2_text_tool .se2_url{background-position:-513px -10px} +#smart_editor2 .se2_text_tool .hover .se2_url{background-position:-513px -72px} +#smart_editor2 .se2_text_tool .active .se2_url{background-position:-513px -103px} +#smart_editor2 .se2_text_tool .se2_bgcolor{position:relative;background-position:-230px -10px} +#smart_editor2 .se2_text_tool .hover .se2_bgcolor{background-position:-230px -72px} +#smart_editor2 .se2_text_tool .active .se2_bgcolor{background-position:-230px -103px} +#smart_editor2 .se2_text_tool .se2_bgcolor_more{background-position:-251px -10px;width:10px} +#smart_editor2 .se2_text_tool .hover .se2_bgcolor_more{background-position:-251px -72px} +#smart_editor2 .se2_text_tool .active .se2_bgcolor_more{background-position:-251px -103px} +#smart_editor2 .se2_text_tool .se2_left{background-position:-261px -10px} +#smart_editor2 .se2_text_tool .hover .se2_left{background-position:-261px -72px} +#smart_editor2 .se2_text_tool .active .se2_left{background-position:-261px -103px} +#smart_editor2 .se2_text_tool .se2_center{background-position:-282px -10px} +#smart_editor2 .se2_text_tool .hover .se2_center{background-position:-282px -72px} +#smart_editor2 .se2_text_tool .active .se2_center{background-position:-282px -103px} +#smart_editor2 .se2_text_tool .se2_right{background-position:-303px -10px} +#smart_editor2 .se2_text_tool .hover .se2_right{background-position:-303px -72px} +#smart_editor2 .se2_text_tool .active .se2_right{background-position:-303px -103px} +#smart_editor2 .se2_text_tool .se2_justify{background-position:-324px -10px} +#smart_editor2 .se2_text_tool .hover .se2_justify{background-position:-324px -72px} +#smart_editor2 .se2_text_tool .active .se2_justify{background-position:-324px -103px} +#smart_editor2 .se2_text_tool .se2_blockquote{background-position:-471px -10px} +#smart_editor2 .se2_text_tool .hover .se2_blockquote{background-position:-471px -72px} +#smart_editor2 .se2_text_tool .active .se2_blockquote{background-position:-471px -103px} +#smart_editor2 .se2_text_tool .se2_character{background-position:-555px -10px} +#smart_editor2 .se2_text_tool .hover .se2_character{background-position:-555px -72px} +#smart_editor2 .se2_text_tool .active .se2_character{background-position:-555px -103px} +#smart_editor2 .se2_text_tool .se2_table{background-position:-576px -10px} +#smart_editor2 .se2_text_tool .hover .se2_table{background-position:-576px -72px} +#smart_editor2 .se2_text_tool .active .se2_table{background-position:-576px -103px} +#smart_editor2 .se2_text_tool .se2_find{background-position:-597px -10px} +#smart_editor2 .se2_text_tool .hover .se2_find{background-position:-597px -72px} +#smart_editor2 .se2_text_tool .active .se2_find{background-position:-597px -103px} +#smart_editor2 .se2_text_tool .se2_sup{background-position:-660px -10px} +#smart_editor2 .se2_text_tool .hover .se2_sup{background-position:-660px -72px} +#smart_editor2 .se2_text_tool .active .se2_sup{background-position:-660px -103px} +#smart_editor2 .se2_text_tool .se2_sub{background-position:-681px -10px} +#smart_editor2 .se2_text_tool .hover .se2_sub{background-position:-681px -72px} +#smart_editor2 .se2_text_tool .active .se2_sub{background-position:-681px -103px} +#smart_editor2 .se2_text_tool .se2_text_tool_more{background-position:0 -41px;width:13px} +#smart_editor2 .se2_text_tool .se2_text_tool_more span.tool_bg{background:none} +#smart_editor2 .se2_text_tool .hover .se2_text_tool_more{background-position:-13px -41px} +#smart_editor2 .se2_text_tool .active .se2_text_tool_more{background-position:-26px -41px} diff --git a/plugin/editor/smarteditor2/css/ja_JP/smart_editor2_in.css b/plugin/editor/smarteditor2/css/ja_JP/smart_editor2_in.css new file mode 100644 index 000000000..fdecc092d --- /dev/null +++ b/plugin/editor/smarteditor2/css/ja_JP/smart_editor2_in.css @@ -0,0 +1,24 @@ +@charset "UTF-8"; +/* NHN Web Standardization Team (http://html.nhndesign.com/) HHJ 090226 */ +/* COMMON */ +body,.se2_inputarea{margin:0;padding:0;font-family:'돋움',Dotum,Helvetica,Sans-serif;font-size:12px;line-height:1.5} +/* body,.se2_inputarea,.se2_inputarea th,.se2_inputarea td{margin:0;padding:0;font-family:'돋움',Dotum,Helvetica,Sans-serif;font-size:12px;line-height:1.5;color:#666} */ +.se2_inputarea p,.se2_inputarea br{margin:0;padding:0} +.se2_inputarea{margin:15px;word-wrap:break-word;*word-wrap:normal;*word-break:break-all} +.se2_inputarea td{word-break:break-all} +.se2_inputarea_890{width:741px;margin:20px 0 10px 64px} +.se2_inputarea_698{width:548px;margin:20px 0 10px 64px} +@media screen and (-webkit-min-device-pixel-ratio: 0) { + .se2_inputarea td:empty:after,.se2_inputarea td > p:empty:after{content:"\00A0";line-height:1} +} +/* TEXT_TOOLBAR : QUOTE */ +.se2_quote1{margin:0 0 30px 20px;padding:0 8px;border-left:2px solid #ccc;color:#888} +.se2_quote2{margin:0 0 30px 13px;padding:0 8px 0 16px;background:url("../../img/bg_quote2.gif") 0 3px no-repeat;color:#888} +.se2_quote3{margin:0 0 30px;padding:12px 10px 11px;border:1px dashed #ccc;color:#888} +.se2_quote4{margin:0 0 30px;padding:12px 10px 11px;border:1px dashed #66b246;color:#888} +.se2_quote5{margin:0 0 30px;padding:12px 10px 11px;border:1px dashed #ccc;background:#fafafa;color:#888} +.se2_quote6{margin:0 0 30px;padding:12px 10px 11px;border:1px solid #e5e5e5;color:#888} +.se2_quote7{margin:0 0 30px;padding:12px 10px 11px;border:1px solid #66b246;color:#888} +.se2_quote8{margin:0 0 30px;padding:12px 10px 11px;border:1px solid #e5e5e5;background:#fafafa;color:#888} +.se2_quote9{margin:0 0 30px;padding:12px 10px 11px;border:2px solid #e5e5e5;color:#888} +.se2_quote10{margin:0 0 30px;padding:12px 10px 11px;border:2px solid #e5e5e5;background:#fafafa;color:#888} diff --git a/plugin/editor/smarteditor2/css/ja_JP/smart_editor2_items.css b/plugin/editor/smarteditor2/css/ja_JP/smart_editor2_items.css new file mode 100644 index 000000000..f3a58e6c0 --- /dev/null +++ b/plugin/editor/smarteditor2/css/ja_JP/smart_editor2_items.css @@ -0,0 +1,447 @@ +@charset "UTF-8"; +/* NHN Web Standardization Team (http://html.nhndesign.com/) HHJ 090226 */ +/* TEXT_TOOLBAR : FONTNAME */ +#smart_editor2 .se2_tool .se2_l_font_fam{width:186px;margin:0;padding:0} +#smart_editor2 .se2_tool .se2_l_font_fam li{display:block;width:186px;height:21px;margin:0;padding:0;color:#333;cursor:pointer} +#smart_editor2 .se2_l_font_fam .hover,#smart_editor2 .se2_l_font_fam .active{background:#ebebeb} +#smart_editor2 .se2_l_font_fam button{width:184px;height:21px;margin:0;padding:2px 0 2px 0px;background:none;text-align:left} +#smart_editor2 .se2_l_font_fam button span{display:block;visibility:visible;overflow:visible;position:relative;top:auto;left:auto;width:auto;height:auto;margin:0 0 0 4px;padding:0;font-size:12px;line-height:normal;color:#333} +#smart_editor2 .se2_l_font_fam button span span{display:inline;visibility:visible;overflow:visible;width:auto;height:auto;margin:0 0 0 4px;font-family:Verdana;font-size:12px;line-height:14px;color:#888} +#smart_editor2 .se2_l_font_fam button span em{visibility:visible;overflow:auto;position:static;width:auto;height:auto;margin-right:-4px;font-size:12px;color:#888} +#smart_editor2 .se2_l_font_fam .se2_division{width:162px;height:2px !important;margin:1px 0 1px 0px;border:0;background:url("../../img/bg_line1.gif") 0 0 repeat-x;font-size:0;cursor:default} +/* TEXT_TOOLBAR : FONTSIZE */ +#smart_editor2 .se2_tool .se2_l_font_size{width:302px;margin:0;padding:0} +#smart_editor2 .se2_tool .se2_l_font_size li{width:302px;margin:0;padding:0;color:#333;cursor:pointer} +#smart_editor2 .se2_l_font_size .hover,#smart_editor2 .se2_l_font_size .active{background:#ebebeb} +#smart_editor2 .se2_l_font_size button{width:300px;height:auto;margin:0;padding:2px 0 1px 0px;*padding:4px 0 1px 0px;background:none;text-align:left} +#smart_editor2 .se2_l_font_size button span{display:block;visibility:visible;overflow:visible;position:relative;top:auto;left:auto;width:auto;height:auto;margin:0 0 0 4px;padding:0;line-height:normal;color:#373737;letter-spacing:0px} +#smart_editor2 .se2_l_font_size button span span{display:inline;margin:0 0 0 5px;padding:0} +#smart_editor2 .se2_l_font_size span em{visibility:visible;overflow:auto;position:static;width:auto;height:auto;color:#888} +/* TEXT_TOOLBAR : FONTCOLOR */ +#smart_editor2 .se2_palette{float:left;position:relative;width:225px;margin:0;padding:11px 0 10px 0} +#smart_editor2 .se2_palette .se2_pick_color{_display:inline;float:left;clear:both;width:205px;margin:0 0 0 11px;padding:0} +#smart_editor2 .se2_palette .se2_pick_color li{float:left;width:12px;height:12px;margin:0;padding:0} +#smart_editor2 .se2_palette .se2_pick_color li button{width:11px;height:11px;border:0} +#smart_editor2 .se2_palette .se2_pick_color li button span{display:block;visibility:visible;overflow:visible;position:absolute;top:1px;left:1px;width:11px;height:11px} +#smart_editor2 .se2_palette .se2_pick_color li button span span{visibility:hidden;overflow:hidden;position:absolute;top:0;left:0;width:0;height:0} +#smart_editor2 .se2_palette .se2_pick_color .hover button,#smart_editor2 .se2_palette .se2_pick_color .active button{width:11px;height:11px;border:1px solid #666} +#smart_editor2 .se2_palette .se2_pick_color .hover span,#smart_editor2 .se2_palette .se2_pick_color .active span{width:7px;height:7px;border:1px solid #fff} +#smart_editor2 .se2_palette .se2_view_more{_display:inline;float:left;width:46px;height:23px;margin:1px 0 0 1px;background:url("../../img/ja_JP/btn_set.png?160622") 0 -47px no-repeat} +#smart_editor2 .se2_palette .se2_view_more2{_display:inline;float:left;width:46px;height:23px;margin:1px 0 0 1px;background:url("../../img/ja_JP/btn_set.png?160622") 0 -24px no-repeat} +#smart_editor2 .se2_palette h4{_display:inline;float:left;width:203px;margin:9px 0 0 11px;padding:10px 0 4px 0;background:url("../../img/bg_line1.gif") repeat-x;font-weight:normal;font-size:12px;line-height:14px;color:#333;letter-spacing:-1px} +#smart_editor2 .se2_palette2{float:left;_float:none;width:214px;margin:9px 0 0 0;padding:11px 0 0 11px;background:url("../../img/bg_line1.gif") repeat-x} +#smart_editor2 .se2_palette2 .se2_color_set{float:left} +#smart_editor2 .se2_palette2 .se2_selected_color{_display:inline;float:left;width:83px;height:18px;margin:0;border:1px solid #c7c7c7;background:#fff} +#smart_editor2 .se2_palette2 .se2_selected_color span{_display:inline;float:left;width:79px;height:14px;margin:2px} +#smart_editor2 .se2_palette2 .input_ty1{_display:inline;float:left;width:67px;height:16px;margin:0 3px 0 3px;padding:2px 2px 0 4px;font-family:tahoma;font-size:11px} +#smart_editor2 .se2_palette2 button.se2_btn_insert{float:left;width:35px;height:21px;margin-left:2px;padding:0;background:url("../../img/ja_JP/btn_set.png?160622") -80px 0 no-repeat} +#smart_editor2 .se2_gradation1{float:left;_float:none;width:201px;height:128px;margin:4px 0 0 0;border:1px solid #c7c7c7;cursor:crosshair} +#smart_editor2 .se2_gradation2{float:left;_float:none;width:201px;height:10px;margin:4px 0 1px 0;border:1px solid #c7c7c7;cursor:crosshair} +/* TEXT_TOOLBAR : BGCOLOR */ +#smart_editor2 .se2_palette_bgcolor{width:225px;margin:11px 0 0;padding:0} +#smart_editor2 .se2_palette_bgcolor .se2_background{width:205px;margin:0 11px 0 11px} +#smart_editor2 .se2_palette_bgcolor .se2_background li{width:68px;height:20px} +#smart_editor2 .se2_palette_bgcolor .se2_background button{width:67px;height:19px;border:0} +#smart_editor2 .se2_palette_bgcolor .se2_background span{left:0;display:block;visibility:visible;overflow:visible;width:65px;height:17px;padding:0} +#smart_editor2 .se2_palette_bgcolor .se2_background span span{display:block;visibility:visible;overflow:visible;width:64px;height:16px;padding:3px 0 0 3px;font-size:11px;line-height:14px;text-align:left} +#smart_editor2 .se2_palette_bgcolor .se2_background .hover span{width:65px;height:17px;border:1px solid #666} +#smart_editor2 .se2_palette_bgcolor .se2_background .hover span span{width:62px;height:14px;padding:1px 0 0 1px;border:1px solid #fff} +/* TEXT_TOOLBAR : LINEHEIGHT */ +#smart_editor2 .se2_l_line_height{width:107px;margin:0;padding:0} +#smart_editor2 .se2_l_line_height li{width:107px;margin:0;padding:0;border-top:0;border-bottom:0;color:#333;cursor:pointer} +#smart_editor2 .se2_l_line_height .hover{background:#ebebeb} +#smart_editor2 .se2_l_line_height button{width:105px;height:19px;margin:0;padding:3px 0 2px 0px;background:none;text-align:left} +#smart_editor2 .se2_l_line_height button span{visibility:visible;overflow:visible;position:relative;width:auto;height:auto;margin:0;padding:0 0 0 15px;font-size:12px;line-height:normal;color:#373737} +#smart_editor2 .se2_l_line_height li button.active span{background:url("../../img/icon_set.gif?141007") 5px -30px no-repeat} +#smart_editor2 .se2_l_line_height_user{clear:both;width:83px;margin:5px 0 0 12px;padding:10px 0 0 0;_padding:11px 0 0 0;background:url("../../img/bg_line1.gif") repeat-x} +#smart_editor2 .se2_l_line_height_user h3{margin:0 0 4px 0;_margin:0 0 2px -1px;padding:0;line-height:14px;color:#000;letter-spacing:-1px} +#smart_editor2 .se2_l_line_height_user .bx_input{display:block;position:relative;width:83px} +#smart_editor2 .se2_l_line_height_user .btn_up{position:absolute;top:2px;*top:3px;left:68px;width:13px;height:8px;background:url("../../img/ja_JP/btn_set.png?160622") -86px -54px no-repeat} +#smart_editor2 .se2_l_line_height_user .btn_down{position:absolute;top:10px;*top:11px;left:68px;width:13px;height:8px;background:url("../../img/ja_JP/btn_set.png?160622") -86px -62px no-repeat} +#smart_editor2 .se2_l_line_height_user .btn_area{margin:5px 0 10px 0} +#smart_editor2 .se2_tool .btn_area .se2_btn_apply3{width:41px;height:24px;background:url("../../img/ja_JP/btn_set.png?160622") no-repeat} +#smart_editor2 .se2_tool .btn_area .se2_btn_cancel3{width:39px;height:24px;margin-left:3px;background:url("../../img/ja_JP/btn_set.png?160622") -41px 0 no-repeat} +/* TEXT_TOOLBAR : QUOTE */ +#smart_editor2 .se2_quote{width:425px;height:56px} +#smart_editor2 .se2_quote ul{_display:inline;float:left;margin:11px 0 0 9px;padding:0} +#smart_editor2 .se2_quote li{_display:inline;float:left;margin:0 0 0 2px;padding:0} +#smart_editor2 .se2_quote button{width:34px;height:34px;margin:0;padding:0;background:url("../../img/ja_JP/btn_set.png?160622") no-repeat;cursor:pointer} +#smart_editor2 .se2_quote button span{left:0;display:block;visibility:visible;overflow:visible;width:32px;height:32px;margin:0;padding:0;border:1px solid #c7c7c7} +#smart_editor2 .se2_quote button span span{visibility:hidden;overflow:hidden;position:absolute;top:0;left:0;width:0;height:0;margin:0;padding:0} +#smart_editor2 .se2_quote .se2_quote1{background-position:1px -375px} +#smart_editor2 .se2_quote .se2_quote2{background-position:-32px -375px} +#smart_editor2 .se2_quote .se2_quote3{background-position:-65px -375px} +#smart_editor2 .se2_quote .se2_quote4{background-position:-98px -375px} +#smart_editor2 .se2_quote .se2_quote5{background-position:-131px -375px} +#smart_editor2 .se2_quote .se2_quote6{background-position:-164px -375px} +#smart_editor2 .se2_quote .se2_quote7{background-position:-197px -375px} +#smart_editor2 .se2_quote .se2_quote8{background-position:-230px -375px} +#smart_editor2 .se2_quote .se2_quote9{background-position:-263px -375px} +#smart_editor2 .se2_quote .se2_quote10{background-position:-296px -375px} +#smart_editor2 .se2_quote .hover button span,#smart_editor2 .se2_quote .active button span{width:30px;height:30px;margin:0;padding:0;border:2px solid #44b525} +#smart_editor2 .se2_quote .hover button span span,#smart_editor2 .se2_quote .active button span span{visibility:hidden;overflow:hidden;position:absolute;top:0;left:0;width:0;height:0;margin:0;padding:0} +#smart_editor2 .se2_quote .se2_cancel2{float:left;width:40px;height:35px;margin:11px 0 0 5px;background:url("../../img/ja_JP/btn_set.png?160622") -46px -24px no-repeat} +#smart_editor2 .se2_quote .se2_cancel2 span{visibility:hidden;overflow:hidden;position:absolute;top:0;left:0;width:0;height:0;margin:0;padding:0} +/* TEXT_TOOLBAR : HYPERLINK */ +#smart_editor2 .se2_url2{width:281px;padding:11px 11px 6px 11px;color:#666} +#smart_editor2 .se2_url2 .input_ty1{display:block;width:185px;height:16px;margin:0 5px 5px 0;*margin:-1px 5px 5px 0;padding:5px 2px 0 4px} +#smart_editor2 .se2_url2 .se2_url_new{width:15px;height:15px;margin:-1px 3px 1px -1px;*margin:-2px 3px 2px -1px;vertical-align:middle} +#smart_editor2 .se2_url2 label{font-size:11px;line-height:14px;vertical-align:middle} +#smart_editor2 .se2_url2 .se2_apply{position:absolute;top:13px;right:51px;width:41px;height:24px;margin:-1px 3px 1px 0;background:url("../../img/ja_JP/btn_set.png?160622") no-repeat} +#smart_editor2 .se2_url2 .se2_cancel{position:absolute;top:13px;right:9px;width:39px;height:24px;margin:-1px 3px 1px 0;background:url("../../img/ja_JP/btn_set.png?160622") -41px 0 no-repeat} +/* TEXT_TOOLBAR : SCHARACTER */ +#smart_editor2 .se2_bx_character{width:469px;height:272px;margin:0;padding:0;background:url("../../img/bx_set_110302.gif") 9px -1230px no-repeat} +#smart_editor2 .se2_bx_character .se2_char_tab{_display:inline;float:left;position:relative;width:443px;margin:11px 10px 200px 11px;padding:0 0 0 1px} +#smart_editor2 .se2_bx_character .se2_char_tab li{position:static;margin:0 0 0 -1px;padding:0} +#smart_editor2 .se2_bx_character .se2_char1{width:72px;height:26px;background:url("../../img/ja_JP/btn_set.png?160622") 0 -204px no-repeat} +#smart_editor2 .se2_bx_character .se2_char2{width:84px;height:26px;background:url("../../img/ja_JP/btn_set.png?160622") -71px -204px no-repeat} +#smart_editor2 .se2_bx_character .se2_char3{width:67px;height:26px;background:url("../../img/ja_JP/btn_set.png?160622") -154px -204px no-repeat} +#smart_editor2 .se2_bx_character .se2_char4{width:62px;height:26px;background:url("../../img/ja_JP/btn_set.png?160622") -220px -204px no-repeat} +#smart_editor2 .se2_bx_character .se2_char5{width:104px;height:26px;background:url("../../img/ja_JP/btn_set.png?160622") -281px -204px no-repeat} +#smart_editor2 .se2_bx_character .se2_char6{width:59px;height:26px;background:url("../../img/ja_JP/btn_set.png?160622") -384px -204px no-repeat} +#smart_editor2 .se2_bx_character .active .se2_char1{width:72px;height:26px;background:url("../../img/ja_JP/btn_set.png?160622") 0 -230px no-repeat} +#smart_editor2 .se2_bx_character .active .se2_char2{width:84px;height:26px;background:url("../../img/ja_JP/btn_set.png?160622") -71px -230px no-repeat} +#smart_editor2 .se2_bx_character .active .se2_char3{width:67px;height:26px;background:url("../../img/ja_JP/btn_set.png?160622") -154px -230px no-repeat} +#smart_editor2 .se2_bx_character .active .se2_char4{width:62px;height:26px;background:url("../../img/ja_JP/btn_set.png?160622") -220px -230px no-repeat} +#smart_editor2 .se2_bx_character .active .se2_char5{width:104px;height:26px;background:url("../../img/ja_JP/btn_set.png?160622") -281px -230px no-repeat !important} +#smart_editor2 .se2_bx_character .active .se2_char6{width:59px;height:26px;background:url("../../img/ja_JP/btn_set.png?160622") -384px -230px no-repeat} +#smart_editor2 .se2_bx_character .se2_s_character{display:none;position:absolute;top:26px;left:0;width:448px;height:194px;margin:0;padding:0} +#smart_editor2 .se2_bx_character .active .se2_s_character{display:block} +#smart_editor2 .se2_bx_character .se2_s_character ul{float:left;width:422px;height:172px;margin:0;padding:9px 0 0 11px} +#smart_editor2 .se2_bx_character .se2_s_character li{_display:inline;float:left;position:relative;width:20px;height:18px;margin:0 0 1px 1px;background:#fff} +#smart_editor2 .se2_bx_character .se2_s_character button{width:20px;height:18px;margin:0;padding:2px;background:none} +#smart_editor2 .se2_bx_character .se2_s_character .hover,#smart_editor2 .se2_bx_character .se2_s_character .active{background:url("../../img/ja_JP/btn_set.png?160622") -446px -274px no-repeat} +#smart_editor2 .se2_bx_character .se2_s_character button span{left:0;display:block;visibility:visible;overflow:visible;width:14px;height:16px;margin:3px 0 0 3px;border:0;background:none;font-size:12px;line-height:normal} +#smart_editor2 .se2_apply_character{clear:both;position:relative;padding:0 0 0 11px} +#smart_editor2 .se2_apply_character label{margin:0 3px 0 0;font-size:12px;color:#666;letter-spacing:-1px} +#smart_editor2 .se2_apply_character .input_ty1{width:283px;height:17px;margin:-1px 5px 1px 0;padding:4px 0 0 5px;font-size:12px;color:#666;letter-spacing:0;vertical-align:middle} +#smart_editor2 .se2_apply_character .se2_confirm{width:41px;height:24px;margin-right:3px;background:url("../../img/ja_JP/btn_set.png?160622") no-repeat;vertical-align:middle} +#smart_editor2 .se2_apply_character .se2_cancel{width:39px;height:24px;background:url("../../img/ja_JP/btn_set.png?160622") -41px 0 no-repeat;vertical-align:middle} +/* TEXT_TOOLBAR : TABLECREATOR */ +#smart_editor2 .se2_table_set{position:relative;width:166px;margin:3px 11px 0 11px;padding:8px 0 0 0} +#smart_editor2 .se2_table_set .se2_cell_num{float:left;width:73px} +#smart_editor2 .se2_table_set .se2_cell_num dt{float:left;clear:both;width:17px;height:23px;margin:0;padding:0} +#smart_editor2 .se2_table_set .se2_cell_num dt label{display:block;margin:5px 0 0 0;font-size:11px;color:#666} +#smart_editor2 .se2_table_set .se2_cell_num dd{float:left;position:relative;width:54px;height:23px;margin:0;padding:0} +#smart_editor2 .se2_table_set .se2_cell_num .input_ty2{display:block;width:32px;height:16px;*margin:-1px 0 0 0;padding:2px 19px 0 0px;border:1px solid #c7c7c7;font-family:tahoma,verdana,times New Roman;font-size:11px;color:#666;text-align:right;*direction:rtl} +#smart_editor2 .se2_table_set .se2_cell_num .input_ty2::-ms-clear{display:none} +#smart_editor2 .se2_table_set .se2_pre_table{float:right;width:91px;height:43px;background:#c7c7c7;border-spacing:1px} +#smart_editor2 .se2_table_set .se2_pre_table tr{background:#fff} +#smart_editor2 .se2_table_set .se2_pre_table td{font-size:0;line-height:0} +#smart_editor2 .se2_table_set .se2_add{position:absolute;top:2px;right:3px;width:13px;height:8px;background:url("../../img/ja_JP/btn_set.png?160622") -86px -54px no-repeat} +#smart_editor2 .se2_table_set .se2_del{position:absolute;top:10px;right:3px;width:13px;height:8px;background:url("../../img/ja_JP/btn_set.png?160622") -86px -62px no-repeat} +/* TEXT_TOOLBAR : TABLEEDITOR */ +#smart_editor2 .se2_table_set .se2_t_proper1{float:left;width:166px;margin:7px 0 0 0;padding:10px 0 5px;background:url("../../img/bg_line1.gif") repeat-x} +#smart_editor2 .se2_table_set .se2_t_proper1 dt{width:166px;margin:0 0 6px 0} +#smart_editor2 .se2_table_set .se2_t_proper1 dd{width:166px} +#smart_editor2 .se2_table_set .se2_t_proper1 dt input{width:15px;height:15px;margin:-1px 3px 1px 0;_margin:-2px 3px 2px 0;vertical-align:middle} +#smart_editor2 .se2_table_set .se2_t_proper1 dt label{font-weight:bold;font-size:11px;color:#666;letter-spacing:-1px;vertical-align:middle} +#smart_editor2 .se2_table_set .se2_t_proper1_1{float:left;position:relative;z-index:59;width:166px;margin:1px 0 0 0} +#smart_editor2 .se2_table_set .se2_t_proper1_2{z-index:54;margin:0} +#smart_editor2 .se2_table_set .se2_t_proper1_3{z-index:53;margin:0} +#smart_editor2 .se2_table_set .se2_t_proper1_4{z-index:52;margin:0} +#smart_editor2 .se2_table_set .se2_t_proper1_1 dt{_display:inline;float:left;clear:both;width:66px;height:22px;margin:1px 0 0 18px} +#smart_editor2 .se2_table_set .se2_t_proper1_1 dt label{display:block;margin:4px 0 0 0;font-weight:normal;font-size:11px;color:#666;letter-spacing:-1px} +#smart_editor2 .se2_table_set .se2_t_proper1_1 dd{float:left;position:relative;width:82px;height:23px} +#smart_editor2 .se2_table_set .se2_t_proper1_1 .input_ty1{width:72px;height:16px;*margin:-1px 0 0 0;padding:2px 2px 0 6px;font-family:tahoma,verdana,times New Roman;font-size:11px;color:#666} +#smart_editor2 .se2_table_set .se2_t_proper1_1 .input_ty3{float:left;width:49px;height:16px;margin:0 3px 0 0;padding:2px 4px 0 4px;border:1px solid #c7c7c7;font-family:tahoma,verdana,times New Roman;font-size:11px;color:#666} +#smart_editor2 .se2_table_set .se2_t_proper1_1 .se2_add{top:2px;right:2px} +#smart_editor2 .se2_table_set .se2_t_proper1_1 .se2_del{top:10px;right:2px} +#smart_editor2 .se2_table_set .se2_t_proper1_1 .se2_color_set .input_ty1{_display:inline;float:left;width:67px;height:16px;margin:0 3px 0 3px;padding:2px 2px 0 4px;font-family:tahoma,verdana,times New Roman;font-size:11px} +#smart_editor2 .se2_select_ty1{position:relative;width:80px;height:18px;border:1px solid #c7c7c7;background:#fff;font-size:11px;line-height:14px;text-align:left} +#smart_editor2 .se2_select_ty1 span{float:left;width:54px;height:18px;margin:0 0 0 5px;font-size:11px;line-height:14px;color:#666} +#smart_editor2 .se2_select_ty1 .se2_b_style0{position:relative;top:3px;left:-3px;white-space:nowrap} +#smart_editor2 .se2_select_ty1 .se2_b_style1{height:15px;margin:3px 0 0 4px;font-size:11px;line-height:14px;color:#666;letter-spacing:-1px} +#smart_editor2 .se2_select_ty1 .se2_b_style2{background:url("../../img/bg_set.gif") 0 -50px repeat-x} +#smart_editor2 .se2_select_ty1 .se2_b_style3{background:url("../../img/bg_set.gif") 0 -68px repeat-x} +#smart_editor2 .se2_select_ty1 .se2_b_style4{background:url("../../img/bg_set.gif") 0 -85px repeat-x} +#smart_editor2 .se2_select_ty1 .se2_b_style5{background:url("../../img/bg_set.gif") 0 -103px repeat-x} +#smart_editor2 .se2_select_ty1 .se2_b_style6{background:url("../../img/bg_set.gif") 0 -121px repeat-x} +#smart_editor2 .se2_select_ty1 .se2_b_style7{background:url("../../img/bg_set.gif") 0 -139px repeat-x} +#smart_editor2 .se2_select_ty1 .se2_view_more{position:absolute;top:1px;right:1px;width:13px;height:16px;background:url("../../img/ja_JP/btn_set.png?160622") -112px -54px no-repeat} +#smart_editor2 .se2_select_ty1 .se2_view_more2{position:absolute;top:1px;right:1px;width:13px;height:16px;background:url("../../img/ja_JP/btn_set.png?160622") -99px -54px no-repeat} +/* TEXT_TOOLBAR : TABLEEDITOR > BORDER */ +#smart_editor2 .se2_table_set .se2_b_t_b1{border-top:1px solid #b1b1b1} +#smart_editor2 .se2_layer_b_style{position:absolute;top:20px;right:0px;width:80px;padding-bottom:1px;border:1px solid #c7c7c7;border-top:1px solid #a8a8a8;background:#fff} +#smart_editor2 .se2_layer_b_style ul{width:80px;margin:0;padding:1px 0 0 0} +#smart_editor2 .se2_layer_b_style li{width:80px;height:18px;margin:0;padding:0} +#smart_editor2 .se2_layer_b_style .hover,#smart_editor2 .se2_layer_b_style .active{background:#ebebeb} +#smart_editor2 .se2_layer_b_style button{width:80px;height:18px;background:none} +#smart_editor2 .se2_layer_b_style button span{left:0;display:block;visibility:visible;overflow:visible;width:71px;height:18px;margin:0 0 0 5px;font-size:11px;line-height:15px;text-align:left} +#smart_editor2 .se2_layer_b_style button span span{visibility:hidden;overflow:hidden;position:absolute;top:0;left:0;width:0;height:0} +#smart_editor2 .se2_layer_b_style .se2_b_style1 span{margin:3px 0 0 4px;font-size:11px;line-height:14px;color:#666;letter-spacing:-1px} +#smart_editor2 .se2_layer_b_style .se2_b_style2 span{background:url("../../img/bg_set.gif") 0 -50px repeat-x} +#smart_editor2 .se2_layer_b_style .se2_b_style3 span{background:url("../../img/bg_set.gif") 0 -68px repeat-x} +#smart_editor2 .se2_layer_b_style .se2_b_style4 span{background:url("../../img/bg_set.gif") 0 -86px repeat-x} +#smart_editor2 .se2_layer_b_style .se2_b_style5 span{background:url("../../img/bg_set.gif") 0 -103px repeat-x} +#smart_editor2 .se2_layer_b_style .se2_b_style6 span{background:url("../../img/bg_set.gif") 0 -121px repeat-x} +#smart_editor2 .se2_layer_b_style .se2_b_style7 span{background:url("../../img/bg_set.gif") 0 -139px repeat-x} +/* TEXT_TOOLBAR : TABLEEDITOR > COLOR */ +#smart_editor2 .se2_pre_color{float:left;width:18px;height:18px;border:1px solid #c7c7c7} +#smart_editor2 .se2_pre_color button{float:left;width:14px;height:14px;margin:2px 0 0 2px;padding:0} +#smart_editor2 .se2_pre_color button span{overflow:hidden;position:absolute;top:-10000px;left:-10000px;z-index:-100;width:0;height:0} +/* TEXT_TOOLBAR : TABLEEDITOR > DIMMED */ +#smart_editor2 .se2_table_set .se2_t_dim1{clear:both;position:absolute;top:71px;left:16px;z-index:60;width:157px;height:118px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_table_set .se2_t_dim2{position:absolute;top:116px;left:16px;z-index:55;width:157px;height:45px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_table_set .se2_t_dim3{clear:both;position:absolute;top:192px;left:16px;z-index:51;width:157px;height:39px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +/* TEXT_TOOLBAR : TABLEEDITOR > STYLE PREVIEW */ +#smart_editor2 .se2_table_set .se2_t_proper2{float:left;position:relative;z-index:50;width:166px;margin:2px 0 0 0} +#smart_editor2 .se2_table_set .se2_t_proper2 dt{float:left;width:90px;height:33px;margin:4px 0 0 0} +#smart_editor2 .se2_table_set .se2_t_proper2 dt input{width:15px;height:15px;margin:-1px 3px 1px 0;_margin:-2px 3px 2px 0;vertical-align:middle} +#smart_editor2 .se2_table_set .se2_t_proper2 dt label{font-weight:bold;font-size:11px;color:#666;letter-spacing:-1px;vertical-align:middle} +#smart_editor2 .se2_table_set .se2_t_proper2 dd{float:left;width:66px;height:33px} +#smart_editor2 .se2_select_ty2{position:relative;width:65px;height:31px;border:1px solid #c7c7c7;background:#fff;font-size:11px;line-height:14px;text-align:left} +#smart_editor2 .se2_select_ty2 span{float:left;width:45px;height:25px;margin:3px 0 0 3px;background:url("../../img/ja_JP/btn_set.png?160622") repeat-x} +#smart_editor2 .se2_select_ty2 .se2_t_style1{background-position:0 -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style2{background-position:-46px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style3{background-position:-92px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style4{background-position:-138px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style5{background-position:-184px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style6{background-position:-230px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style7{background-position:-276px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style8{background-position:-322px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style9{background-position:0 -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style10{background-position:-46px -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style11{background-position:-92px -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style12{background-position:-138px -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style13{background-position:-184px -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style14{background-position:-230px -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style15{background-position:-276px -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style16{background-position:-322px -436px} +#smart_editor2 .se2_select_ty2 .se2_view_more{position:absolute;top:1px;right:1px;_right:0px;width:13px !important;height:29px !important;background:url("../../img/ja_JP/btn_set.png?160622") -353px -48px no-repeat !important} +#smart_editor2 .se2_select_ty2 .se2_view_more2{position:absolute;top:1px;right:1px;_right:0px;width:13px !important;height:29px !important;background:url("../../img/ja_JP/btn_set.png?160622") -340px -48px no-repeat !important} +#smart_editor2 .se2_select_ty2 .se2_view_more span{display:none} +/* TEXT_TOOLBAR : TABLEEDITOR > STYLE */ +#smart_editor2 .se2_layer_t_style{position:absolute;top:33px;right:15px;width:208px;border:1px solid #c7c7c7;border-top:1px solid #a8a8a8;background:#fff} +#smart_editor2 .se2_layer_t_style ul{width:204px;height:126px;margin:1px 2px;padding:1px 0 0 0;background:#fff} +#smart_editor2 .se2_layer_t_style li{_display:inline;float:left;width:45px;height:25px;margin:1px;padding:1px;border:1px solid #fff} +#smart_editor2 .se2_layer_t_style .hover,#smart_editor2 .se2_layer_t_style .active{border:1px solid #666;background:#fff} +#smart_editor2 .se2_layer_t_style button{width:45px;height:25px;background:url("../../img/ja_JP/btn_set.png?160622") repeat-x !important} +#smart_editor2 .se2_layer_t_style .se2_t_style1{background-position:0 -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style2{background-position:-46px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style3{background-position:-92px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style4{background-position:-138px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style5{background-position:-184px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style6{background-position:-230px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style7{background-position:-276px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style8{background-position:-322px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style9{background-position:0 -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style10{background-position:-46px -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style11{background-position:-92px -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style12{background-position:-138px -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style13{background-position:-184px -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style14{background-position:-230px -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style15{background-position:-276px -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style16{background-position:-322px -436px !important} +#smart_editor2 .se2_table_set .se2_btn_area{float:left;width:166px;margin:6px 0 0 0;padding:12px 0 8px 0;background:url("../../img/bg_line1.gif") repeat-x;text-align:center} +#smart_editor2 .se2_table_set button.se2_apply{width:41px;height:24px;margin-right:3px;background:url("../../img/ja_JP/btn_set.png?160622") no-repeat} +#smart_editor2 .se2_table_set button.se2_cancel{width:39px;height:24px;background:url("../../img/ja_JP/btn_set.png?160622") -41px 0 no-repeat} +#smart_editor2 .se2_table_set .se2_rd{width:14px;height:14px;vertical-align:middle} +#smart_editor2 .se2_table_set .se2_celltit{font-size:11px;font-size:11px;color:#666;letter-spacing:-1px} +#smart_editor2 .se2_table_set dt label.se2_celltit{display:inline} +/* TEXT_TOOLBAR : FINDREPLACE */ +#smart_editor2 .se2_bx_find_revise{position:relative;width:255px;margin:0;padding:0} +#smart_editor2 .se2_bx_find_revise .se2_close{position:absolute;top:5px;right:8px;width:20px;height:20px;background:url("../../img/ja_JP/btn_set.png?160622") -151px -1px no-repeat} +#smart_editor2 .se2_bx_find_revise h3{margin:0;padding:10px 0 13px 10px;background:url("../../img/bg_find_h3.gif") 0 -1px repeat-x;font-size:12px;line-height:14px;letter-spacing:-1px} +#smart_editor2 .se2_bx_find_revise ul{position:relative;margin:8px 0 0 0;padding:0 0 0 12px} +#smart_editor2 .se2_bx_find_revise ul li{_display:inline;float:left;position:static;margin:0 0 0 -1px;padding:0} +#smart_editor2 .se2_bx_find_revise .se2_tabfind{width:117px;height:26px;background:url("../../img/ja_JP/btn_set.png?160622") 0 -100px no-repeat} +#smart_editor2 .se2_bx_find_revise .se2_tabrevise{width:117px;height:26px;background:url("../../img/ja_JP/btn_set.png?160622") -116px -100px no-repeat} +#smart_editor2 .se2_bx_find_revise .active .se2_tabfind{width:117px;height:26px;background:url("../../img/ja_JP/btn_set.png?160622") 0 -126px no-repeat} +#smart_editor2 .se2_bx_find_revise .active .se2_tabrevise{width:117px;height:26px;background:url("../../img/ja_JP/btn_set.png?160622") -116px -126px no-repeat} +#smart_editor2 .se2_bx_find_revise .se2_in_bx_find dl{_display:inline;float:left;width:223px;margin:0 0 0 9px;padding:7px 0 13px 14px;background:url("../../img/bx_set_110302.gif") -289px -1518px no-repeat} +#smart_editor2 .se2_bx_find_revise .se2_in_bx_revise dl{_display:inline;float:left;width:223px;margin:0 0 0 9px;padding:7px 0 13px 14px;background:url("../../img/bx_set_110302.gif") -289px -1619px no-repeat} +#smart_editor2 .se2_bx_find_revise dt{_display:inline;float:left;clear:both;width:60px;margin:1px 0 2px 0} +#smart_editor2 .se2_bx_find_revise dd{float:left;margin:0 0 2px 0} +#smart_editor2 .se2_bx_find_revise label{float:left;padding:5px 0 0 0;font-size:11px;color:#666;letter-spacing:-2px} +#smart_editor2 .se2_bx_find_revise input{float:left;width:145px;height:12px;margin:1px 0 0 0;padding:3px 2px 3px 4px;font-size:12px;color:#666} +#smart_editor2 .se2_bx_find_revise .se2_find_btns{float:left;clear:both;width:255px;padding:8px 0 10px 0;text-align:center} +#smart_editor2 .se2_bx_find_revise .se2_find_next{width:65px;height:24px;margin:0 3px 0 0;background:url("../../img/ja_JP/btn_set.png?160622") -180px -48px no-repeat} +#smart_editor2 .se2_bx_find_revise .se2_find_next2{width:61px;height:24px;margin:0 3px 0 0;background:url("../../img/ja_JP/btn_set.png?160622") -180px -24px no-repeat} +#smart_editor2 .se2_bx_find_revise .se2_revise1{width:54px;height:24px;margin:0 3px 0 0;background:url("../../img/ja_JP/btn_set.png?160622") -245px -48px no-repeat} +#smart_editor2 .se2_bx_find_revise .se2_revise2{width:70px;height:24px;margin:0 3px 0 0;background:url("../../img/ja_JP/btn_set.png?160622") -245px -24px no-repeat} +#smart_editor2 .se2_bx_find_revise .se2_cancel{width:39px;height:24px;background:url("../../img/ja_JP/btn_set.png?160622") -41px 0 no-repeat} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE */ +#smart_editor2 .se2_qmax{position:absolute;width:18px;height:18px;background:url("../../img/ja_JP/btn_set.png?160622") -339px -169px no-repeat} +#smart_editor2 .se2_qeditor{position:absolute;top:0;left:0;width:183px;margin:0;padding:0;border:1px solid #c7c7c7;border-right:1px solid #ababab;border-bottom:1px solid #ababab;background:#fafafa} +#smart_editor2 .se2_qeditor label,#smart_editor2 .se2_qeditor span,#smart_editor2 .se2_qeditor dt{font-size:11px;color:#666;letter-spacing:-1px} +#smart_editor2 .se2_qbar{position:relative;width:183px;height:11px;background:url("../../img/bx_set_110302.gif") 0 -731px no-repeat} +#smart_editor2 .se2_qbar .se2_qmini{position:absolute;top:-1px;right:0;*right:-1px;_right:-3px;width:18px;height:14px;background:url("../../img/ja_JP/btn_set.png?160622") -315px -170px no-repeat} +#smart_editor2 .se2_qbar .se2_qmini button{width:20px;height:14px;margin-top:-1px} +#smart_editor2 .se2_qeditor .se2_qbody0{float:left;border:1px solid #fefefe} +#smart_editor2 .se2_qeditor .se2_qbody{position:relative;z-index:90;width:174px;padding:4px 0 0 7px} +#smart_editor2 .se2_qeditor .se2_qe1{overflow:hidden;width:174px} +#smart_editor2 .se2_qeditor .se2_qe1 dt{float:left;width:22px;height:18px;padding:4px 0 0 0} +#smart_editor2 .se2_qeditor .se2_qe1 dd{float:left;width:65px;height:22px} +#smart_editor2 .se2_qeditor .se2_addrow{width:28px;height:19px;background:url("../../img/ja_JP/btn_set.png?160622") no-repeat -385px -49px} +#smart_editor2 .se2_qeditor .se2_addcol{width:29px;height:19px;background:url("../../img/ja_JP/btn_set.png?160622") no-repeat -413px -49px} +#smart_editor2 .se2_qeditor .se2_seprow{width:28px;height:19px;background:url("../../img/ja_JP/btn_set.png?160622") no-repeat -385px -68px} +#smart_editor2 .se2_qeditor .se2_sepcol{width:29px;height:19px;background:url("../../img/ja_JP/btn_set.png?160622") no-repeat -413px -68px} +#smart_editor2 .se2_qeditor .se2_delrow{width:28px;height:19px;background:url("../../img/ja_JP/btn_set.png?160622") no-repeat -385px -106px} +#smart_editor2 .se2_qeditor .se2_delcol{width:29px;height:19px;background:url("../../img/ja_JP/btn_set.png?160622") no-repeat -413px -106px} +#smart_editor2 .se2_qeditor .se2_merrow{width:57px;height:19px;background:url("../../img/ja_JP/btn_set.png?160622") no-repeat -385px -125px} +#smart_editor2 .se2_qeditor .se2_mercol{width:57px;height:19px;background:url("../../img/ja_JP/btn_set.png?160622") no-repeat -413px -125px} +#smart_editor2 .se2_qeditor .se2_seprow_off{width:28px;height:19px;background:url("../../img/ja_JP/btn_set.png?160622") no-repeat -385px -87px} +#smart_editor2 .se2_qeditor .se2_sepcol_off{width:29px;height:19px;background:url("../../img/ja_JP/btn_set.png?160622") no-repeat -413px -87px} +#smart_editor2 .se2_qeditor .se2_merrow_off{width:57px;height:19px;background:url("../../img/ja_JP/btn_set.png?160622") no-repeat -385px -144px} +#smart_editor2 .se2_qeditor .se2_mercol_off{width:57px;height:19px;background:url("../../img/ja_JP/btn_set.png?160622") no-repeat -413px -144px} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > CELL_BACKGROUND */ +#smart_editor2 .se2_qeditor .se2_qe2{_display:inline;float:left;position:relative;z-index:100;width:165px;margin:2px 0 0 1px;padding:7px 0 0 0;background:url("../../img/bg_line1.gif") repeat-x;zoom:1} +#smart_editor2 .se2_qeditor .se2_qe2_1 dt{float:left;width:69px;padding:3px 0 0 0} +#smart_editor2 .se2_qeditor .se2_qe2_1 dt input{width:15px;height:15px;margin:-1px 1px 1px -1px;vertical-align:middle} +#smart_editor2 .se2_qeditor .se2_qe2_1 dd{float:left;position:relative;zoom:1} +#smart_editor2 .se2_qeditor .se2_qe2_3{padding:7px 0 6px 0} +/* My글양식 없을때 */ +#smart_editor2 .se2_qeditor .se2_qe2_2{position:relative;_position:absolute} +#smart_editor2 .se2_qeditor .se2_qe2_2 dt{float:left;width:50px;padding:3px 0 0 13px} +#smart_editor2 .se2_qeditor .se2_qe2_2 dt input{width:15px;height:15px;margin:-1px 2px 1px -1px;vertical-align:middle} +#smart_editor2 .se2_qeditor .se2_qe2_2 dd{float:left} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > STYLE */ +#smart_editor2 .se2_table_set .se2_qbody .se2_t_proper2{float:left;*float:none;position:static;width:166px;margin:5px 0 0 1px} +#smart_editor2 .se2_qeditor .se2_qe3 dt{float:left;width:69px;padding:0} +#smart_editor2 .se2_qeditor .se2_qe3 dt label{font-weight:normal} +#smart_editor2 .se2_qeditor .se2_qe3 dt input{width:15px;height:15px;margin:-1px 1px 1px -1px;vertical-align:middle} +#smart_editor2 .se2_qeditor .se2_qe3 dd .se2_qe3_table{position:relative} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > CELL_BACKGROUND PREWVIEW */ +#smart_editor2 .se2_qeditor .se2_pre_color{float:left;width:18px;height:18px;border:1px solid #c7c7c7} +#smart_editor2 .se2_qeditor .se2_pre_color button{float:left;width:14px;height:14px;margin:2px 0 0 2px;padding:0} +#smart_editor2 .se2_qeditor .se2_pre_color button span{overflow:hidden;position:absolute;top:-10000px;left:-10000px;z-index:-100;width:0;height:0} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > CELL_BACKGROUND LAYER */ +#smart_editor2 .se2_qeditor .se2_layer{float:left;clear:both;position:absolute;top:20px;left:0;margin:0;padding:0;border:1px solid #c7c7c7;border-top:1px solid #9a9a9a;background:#fafafa} +#smart_editor2 .se2_qeditor .se2_layer .se2_in_layer{float:left;margin:0;padding:0;border:1px solid #fff;background:#fafafa} +#smart_editor2 .se2_qeditor .se2_layer button{vertical-align:top} +#smart_editor2 .se2_qeditor .se2_layer .se2_pick_color li{position:relative} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > CELL_BACKGROUND IMAGE */ +#smart_editor2 .se2_qeditor .se2_pre_bgimg{float:left;width:14px;height:14px;padding:2px;border:1px solid #c7c7c7} +#smart_editor2 .se2_qeditor .se2_qe2_2 button{width:16px;height:16px;background:url("../../img/ja_JP/btn_set.png?160622") 0 -261px no-repeat} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > CELL_BACKGROUND IMAGE LAYER */ +#smart_editor2 .se2_cellimg_set{_display:inline;float:left;width:136px;margin:4px 3px 0 4px;padding-bottom:4px} +#smart_editor2 .se2_cellimg_set li{_display:inline;float:left;width:16px;height:16px;margin:0 1px 1px 0} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg0{background-position:-255px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg1{background-position:0 -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg2{background-position:-17px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg3{background-position:-34px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg4{background-position:-51px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg5{background-position:-68px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg6{background-position:-85px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg7{background-position:-102px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg8{background-position:-119px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg9{background-position:-136px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg10{background-position:-153px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg11{background-position:-170px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg12{background-position:-187px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg13{background-position:-204px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg14{background-position:-221px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg15{background-position:-238px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg16{background-position:-255px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg17{background-position:0 -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg18{background-position:-17px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg19{background-position:-34px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg20{background-position:-51px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg21{background-position:-68px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg22{background-position:-85px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg23{background-position:-102px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg24{background-position:-119px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg25{background-position:-136px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg26{background-position:-153px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg27{background-position:-170px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg28{background-position:-187px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg29{background-position:-204px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg30{background-position:-221px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg31{background-position:-238px -278px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg button{width:14px;height:14px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg1{background-position:-1px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg2{background-position:-18px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg3{background-position:-35px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg4{background-position:-52px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg5{background-position:-69px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg6{background-position:-86px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg7{background-position:-103px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg8{background-position:-120px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg9{background-position:-137px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg10{background-position:-154px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg11{background-position:-171px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg12{background-position:-188px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg13{background-position:-205px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg14{background-position:-222px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg15{background-position:-239px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg16{background-position:-256px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg17{background-position:-1px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg18{background-position:-18px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg19{background-position:-35px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg20{background-position:-52px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg21{background-position:-69px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg22{background-position:-86px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg23{background-position:-103px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg24{background-position:-120px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg25{background-position:-137px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg26{background-position:-154px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg27{background-position:-171px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg28{background-position:-188px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg29{background-position:-205px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg30{background-position:-222px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg31{background-position:-239px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg32{background-position:-256px -279px} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > MY REVIEW */ +#smart_editor2 .se2_btn_area{_display:inline;float:left;clear:both;width:166px;margin:5px 0 0 1px;padding:7px 0 6px 0;background:url("../../img/bg_line1.gif") repeat-x;text-align:center} +#smart_editor2 .se2_btn_area .se2_btn_save{width:97px;height:21px;background:url("../../img/ja_JP/btn_set.png?160622") -369px -163px no-repeat} +/* TEXT_TOOLBAR : QUICKEDITOR_IMAGE */ +#smart_editor2 .se2_qe10{width:166px;margin:0;*margin:-2px 0 0 0} +#smart_editor2 .se2_qe10 label{margin:0 1px 0 0;vertical-align:middle} +#smart_editor2 .se2_qe10 .se2_sheight{margin-left:4px} +#smart_editor2 .se2_qe10 .input_ty1{width:30px;height:13px;margin:0 0 1px 1px;padding:3px 4px 0 1px;font-size:11px;letter-spacing:0;text-align:right;vertical-align:middle} +#smart_editor2 .se2_qe10 .se2_sreset{width:41px;height:19px;margin-left:3px;background:url("../../img/ja_JP/btn_set.png?160622") -401px -184px no-repeat;vertical-align:middle} +#smart_editor2 .se2_qe10_1{margin-top:4px;padding:10px 0 3px;background:url("../../img/bg_line1.gif") repeat-x} +#smart_editor2 .se2_qe10_1 input{width:15px;height:15px;margin:-1px 3px 1px -1px;vertical-align:middle} +#smart_editor2 .se2_qe11{float:left;width:166px;margin:4px 0 0 0;padding:7px 0 2px 0;background:url("../../img/bg_line1.gif") repeat-x} +#smart_editor2 .se2_qe11_1{float:left;width:99px} +#smart_editor2 .se2_qe11_1 dt{float:left;width:56px;height:15px;padding:5px 0 0 0} +#smart_editor2 .se2_qe11_1 dd{float:left;position:relative;width:38px;height:20px} +#smart_editor2 .se2_qe11_1 .input_ty1{display:block;width:29px;height:15px;margin:0;*margin:-1px 0 1px 0;padding:3px 1px 0 5px;font-size:11px;letter-spacing:0;text-align:left} +#smart_editor2 .se2_qe11_1 .se2_add{position:absolute;top:2px;right:3px;width:13px;height:8px;background:url("../../img/ja_JP/btn_set.png?160622") -86px -54px no-repeat} +#smart_editor2 .se2_qe11_1 .se2_del{position:absolute;top:10px;right:3px;width:13px;height:8px;background:url("../../img/ja_JP/btn_set.png?160622") -86px -62px no-repeat} +#smart_editor2 .se2_qe11_2{float:left;width:67px} +#smart_editor2 .se2_qe11_2 dt{float:left;width:47px;margin:5px 0 0 0} +#smart_editor2 .se2_qe11_2 dd{float:left;position:relative;width:20px} +#smart_editor2 .se2_qe12{float:left;width:166px;margin:3px 0 0 0;padding:7px 0 0 0;background:url("../../img/bg_line1.gif") repeat-x} +#smart_editor2 .se2_qe12 dt{float:left;margin:5px 4px 0 0} +#smart_editor2 .se2_qe12 dd{float:left;padding:0 0 6px 0} +#smart_editor2 .se2_qe12 .se2_align0{float:left;width:19px;height:21px;background:url("../../img/ja_JP/btn_set.png?160622") -276px -121px no-repeat} +#smart_editor2 .se2_qe12 .se2_align1{float:left;width:19px;height:21px;background:url("../../img/ja_JP/btn_set.png?160622") -295px -121px no-repeat} +#smart_editor2 .se2_qe12 .se2_align2{float:left;width:20px;height:21px;background:url("../../img/ja_JP/btn_set.png?160622") -314px -121px no-repeat} +#smart_editor2 .se2_qe13{position:relative;z-index:10;zoom:1} +#smart_editor2 .se2_qe13 dt{float:left;width:62px;padding:3px 0 0} +#smart_editor2 .se2_qe13 dt input{width:15px;height:15px;margin:-1px 1px 1px -1px;vertical-align:middle;zoom:1} +#smart_editor2 .se2_qe13 dt .se2_qdim2{width:32px} +#smart_editor2 .se2_qe13 dd .se2_select_ty1{width:38px} +#smart_editor2 .se2_qe13 dd .se2_select_ty1 span{width:15px} +#smart_editor2 .se2_qe13 dd .input_ty1{width:20px} +#smart_editor2 .se2_qe13 dd .se2_palette2 .input_ty1{width:67px} +#smart_editor2 .se2_qe13 .se2_add{*top:3px} +#smart_editor2 .se2_qe13 .se2_del{*top:11px} +#smart_editor2 .se2_qe13 .se2_layer_b_style{right:-2px;_right:0} +#smart_editor2 .se2_qe13 .se2_layer_b_style li span{width:auto;margin:0 4px 0 5px;padding-top:2px} +#smart_editor2 .se2_qe13 dd{_display:inline;float:left;position:relative;width:29px;margin-right:5px;_margin-right:3px;zoom:1} +#smart_editor2 .se2_qe13 dd .se2_palette h4{margin-top:9px;font-family:dotum;font-size:12px} +#smart_editor2 .se2_qe13 dd.dd_type{width:38px} +#smart_editor2 .se2_qe13 dd.dd_type2{width:37px;margin-right:3px} +#smart_editor2 .se2_qe13 dd.dd_type2 .input_ty1{width:29px} +#smart_editor2 .se2_qe13 dd.dd_type2 button{right:2px;_right:1px} +#smart_editor2 .se2_qe13 dd.dd_type3{width:20px;margin:0} +#smart_editor2 .se2_qe13_v1{_display:inline;float:left;margin:2px 0 1px} +#smart_editor2 .se2_qe13_v1 dt{padding:4px 0 0 1px} +#smart_editor2 .se2_qe13_v2{_display:inline;float:left;position:relative;z-index:100;width:165px;margin:4px 0 0 1px;zoom:1} +#smart_editor2 .se2_qe13_v2 dd{width:18px;margin:0} +#smart_editor2 .se2_qeditor .se2_qdim1{clear:both;position:absolute;top:25px;left:115px;width:60px;height:23px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim2{clear:both;position:absolute;top:55px;left:24px;z-index:110;width:74px;height:22px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim3{clear:both;position:absolute;top:55px;left:118px;z-index:110;width:56px;height:22px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim4{clear:both;position:absolute;top:81px;left:23px;z-index:35;width:123px;height:35px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim5{clear:both;position:absolute;top:31px;left:106px;width:68px;height:26px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim6c{clear:both;position:absolute;top:25px;left:28px;width:29px;height:23px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim6r{clear:both;position:absolute;top:25px;left:57px;width:29px;height:23px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_highedit{float:right;width:56px;height:21px;margin:-27px 8px 0 0;background:url("../../img/ja_JP/btn_set.png?160622") -329px -142px no-repeat} +#smart_editor2 .se2_qeditor .se2_qdim7{clear:both;position:absolute;top:55px;left:24px;z-index:110;width:150px;height:48px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim8{clear:both;position:absolute;top:105px;left:24px;z-index:110;width:150px;height:37px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim9{clear:both;position:absolute;top:55px;left:111px;z-index:110;width:65px;height:24px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim10{clear:both;position:absolute;top:55px;left:100px;z-index:110;width:77px;height:24px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim11{clear:both;position:absolute;top:55px;left:65px;z-index:110;width:115px;height:24px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} diff --git a/plugin/editor/smarteditor2/css/ja_JP/smart_editor2_out.css b/plugin/editor/smarteditor2/css/ja_JP/smart_editor2_out.css new file mode 100644 index 000000000..0baf3770e --- /dev/null +++ b/plugin/editor/smarteditor2/css/ja_JP/smart_editor2_out.css @@ -0,0 +1,12 @@ +@charset "UTF-8"; +/* NHN Web Standardization Team (http://html.nhndesign.com/) HHJ 090226 */ +/* COMMON */ +.se2_outputarea, .se2_outputarea th, .se2_outputarea td{margin:0;padding:0;color:#666;font-size:12px;font-family:'돋움',Dotum,'굴림',Gulim,Helvetica,Sans-serif;line-height:1.5} +.se2_outputarea p{margin:0;padding:0} +.se2_outputarea a:hover{text-decoration:underline} +.se2_outputarea a:link{color:#0000ff} +.se2_outputarea ul{margin:0 0 0 40px;padding:0} +.se2_outputarea ul li{margin:0;list-style-type:disc;padding:0} +.se2_outputarea ul ul li{list-style-type:circle} +.se2_outputarea ul ul ul li{list-style-type:square} +.se2_outputarea img, .se2_outputarea fieldset{border:0} diff --git a/plugin/editor/smarteditor2/css/ko_KR/smart_editor2.css b/plugin/editor/smarteditor2/css/ko_KR/smart_editor2.css new file mode 100644 index 000000000..70e3e3ba1 --- /dev/null +++ b/plugin/editor/smarteditor2/css/ko_KR/smart_editor2.css @@ -0,0 +1,193 @@ +@charset "UTF-8"; +/* NHN Web Standardization Team (http://html.nhndesign.com/) HHJ 090226 */ +/* COMMON */ +body,#smart_editor2,#smart_editor2 p,#smart_editor2 h1,#smart_editor2 h2,#smart_editor2 h3,#smart_editor2 h4,#smart_editor2 h5,#smart_editor2 h6,#smart_editor2 ul,#smart_editor2 ol,#smart_editor2 li,#smart_editor2 dl,#smart_editor2 dt,#smart_editor2 dd,#smart_editor2 table,#smart_editor2 th,#smart_editor2 td,#smart_editor2 form,#smart_editor2 fieldset,#smart_editor2 legend,#smart_editor2 input,#smart_editor2 textarea,#smart_editor2 button,#smart_editor2 select{margin:0;padding:0} +#smart_editor2,#smart_editor2 h1,#smart_editor2 h2,#smart_editor2 h3,#smart_editor2 h4,#smart_editor2 h5,#smart_editor2 h6,#smart_editor2 input,#smart_editor2 textarea,#smart_editor2 select,#smart_editor2 table,#smart_editor2 button{font-family:'돋움',Dotum,Helvetica,sans-serif;font-size:12px;color:#666} +#smart_editor2 span,#smart_editor2 em{font-size:12px} +#smart_editor2 em,#smart_editor2 address{font-style:normal} +#smart_editor2 img,#smart_editor2 fieldset{border:0} +#smart_editor2 hr{display:none} +#smart_editor2 ol,#smart_editor2 ul{list-style:none} +#smart_editor2 button{border:0;background:none;font-size:11px;vertical-align:top;cursor:pointer} +#smart_editor2 button span,#smart_editor2 button em{visibility:hidden;overflow:hidden;position:absolute;top:0;font-size:0;line-height:0} +#smart_editor2 legend,#smart_editor2 .blind{visibility:hidden;overflow:hidden;position:absolute;width:0;height:0;font-size:0;line-height:0} +#smart_editor2 .input_ty1{height:14px;margin:0;padding:4px 2px 0 4px;border:1px solid #c7c7c7;font-size:11px;color:#666} +#smart_editor2 a:link,#smart_editor2 a:visited,#smart_editor2 a:active,#smart_editor2 a:focus{color:#666;text-decoration:none} +#smart_editor2 a:hover{color:#666;text-decoration:underline} +/* LAYOUT */ +#smart_editor2 .se2_header{margin:10px 0 29px 0} +#smart_editor2 .se2_bi{float:left;width:93px;height:20px;margin:0;padding:0;background:url("../../img/ko_KR/btn_set.png?160622") -343px -358px no-repeat;font-size:0;line-height:0;text-indent:-10000px;vertical-align:middle} +#smart_editor2 .se2_allhelp{display:inline-block;width:18px;height:18px;padding:0;background:url("../../img/ko_KR/btn_set.png?160622") -437px -358px no-repeat;font-size:0;line-height:0;text-indent:-10000px;vertical-align:middle} +#smart_editor2 #smart_editor2_content{position:relative;border:1px solid #b5b5b5} +#smart_editor2 .se2_tool{overflow:visible;position:relative;z-index:25} +/* EDITINGAREA */ +#smart_editor2 .se2_input_area{position:relative;z-index:22;height:400px;margin:0;padding:0;*zoom:1} +#smart_editor2 .se2_input_wysiwyg,#smart_editor2 .se2_input_syntax{display:block;overflow:auto;width:100%;height:100%;margin:0;*margin:-1px 0 0 0;border:0} +/* EDITINGMODE */ +#smart_editor2 .se2_conversion_mode{position:relative;height:15px;padding-top:1px;border-top:1px solid #b5b5b5;background:url("../../img/icon_set.gif?141007") 0 -896px repeat-x} +#smart_editor2 .se2_inputarea_controller{display:block;clear:both;position:relative;width:100%;height:15px;text-align:center;cursor:n-resize} +#smart_editor2 .se2_inputarea_controller span,#smart_editor2 .controller_on span{background:url("../../img/ico_extend.png") no-repeat} +#smart_editor2 .se2_inputarea_controller span{position:static;display:inline-block;visibility:visible;overflow:hidden;height:15px;padding-left:11px;background-position:0 2px;color:#888;font-size:11px;letter-spacing:-1px;line-height:16px;white-space:nowrap} +* + html #smart_editor2 .se2_inputarea_controller span{line-height:14px} +#smart_editor2 .controller_on span{background-position:0 -21px;color:#249c04} +#smart_editor2 .ly_controller{display:block;position:absolute;bottom:2px;left:50%;width:287px;margin-left:-148px;padding:8px 0 7px 9px;border:1px solid #827f7c;background:#fffdef} +#smart_editor2 .ly_controller p{color:#666;font-size:11px;letter-spacing:-1px;line-height:11px} +#smart_editor2 .ly_controller .bt_clse,#smart_editor2 .ly_controller .ic_arr{position:absolute;background:url("../../img/ico_extend.png") no-repeat} +#smart_editor2 .ly_controller .bt_clse{top:5px;right:4px;width:14px;height:15px;background-position:1px -43px} +#smart_editor2 .ly_controller .ic_arr{top:25px;left:50%;width:10px;height:6px;margin-left:-5px;background-position:0 -65px} +#smart_editor2 .se2_converter{float:left;position:absolute;top:-1px;right:3px;z-index:20} +#smart_editor2 .se2_converter li{float:left} +#smart_editor2 .se2_converter .se2_to_editor{width:59px;height:15px;background:url("../../img/ko_KR/btn_set.png?160622") 0 -85px no-repeat;vertical-align:top} +#smart_editor2 .se2_converter .se2_to_html{width:59px;height:15px;background:url("../../img/ko_KR/btn_set.png?160622") -59px -70px no-repeat;vertical-align:top} +#smart_editor2 .se2_converter .se2_to_text{width:60px;height:15px;background:url("../../img/ko_KR/btn_set.png?160622") -417px -466px no-repeat;vertical-align:top} +#smart_editor2 .se2_converter .active .se2_to_editor{width:59px;height:15px;background:url("../../img/ko_KR/btn_set.png?160622") 0 -70px no-repeat;vertical-align:top} +#smart_editor2 .se2_converter .active .se2_to_html{width:59px;height:15px;background:url("../../img/ko_KR/btn_set.png?160622") -59px -85px no-repeat;vertical-align:top} +#smart_editor2 .se2_converter .active .se2_to_text{width:60px;height:15px;background:url("../../img/ko_KR/btn_set.png?160622") -417px -481px no-repeat;vertical-align:top} +/* EDITINGAREA_HTMLSRC */ +#smart_editor2 .off .ico_btn,#smart_editor2 .off .se2_more,#smart_editor2 .off .se2_more2,#smart_editor2 .off .se2_font_family,#smart_editor2 .off .se2_font_size,#smart_editor2 .off .se2_bold,#smart_editor2 .off .se2_underline,#smart_editor2 .off .se2_italic,#smart_editor2 .off .se2_tdel,#smart_editor2 .off .se2_fcolor,#smart_editor2 .off .se2_fcolor_more,#smart_editor2 .off .se2_bgcolor,#smart_editor2 .off .se2_bgcolor_more,#smart_editor2 .off .se2_left,#smart_editor2 .off .se2_center,#smart_editor2 .off .se2_right,#smart_editor2 .off .se2_justify,#smart_editor2 .off .se2_ol,#smart_editor2 .off .se2_ul,#smart_editor2 .off .se2_indent,#smart_editor2 .off .se2_outdent,#smart_editor2 .off .se2_lineheight,#smart_editor2 .off .se2_del_style,#smart_editor2 .off .se2_blockquote,#smart_editor2 .off .se2_summary,#smart_editor2 .off .se2_footnote,#smart_editor2 .off .se2_url,#smart_editor2 .off .se2_emoticon,#smart_editor2 .off .se2_character,#smart_editor2 .off .se2_table,#smart_editor2 .off .se2_find,#smart_editor2 .off .se2_spelling,#smart_editor2 .off .se2_sup,#smart_editor2 .off .se2_sub,#smart_editor2 .off .se2_text_tool_more,#smart_editor2 .off .se2_new,#smart_editor2 .off .selected_color,#smart_editor2 .off .se2_lineSticker{-ms-filter:alpha(opacity=50);opacity:.5;cursor:default;filter:alpha(opacity=50)} +/* LAYER */ +#smart_editor2 .se2_text_tool .se2_layer{display:none;float:left;position:absolute;top:20px;left:0;z-index:50;margin:0;padding:0;border:1px solid #bcbbbb;background:#fafafa} +#smart_editor2 .se2_text_tool li.active{z-index:50} +#smart_editor2 .se2_text_tool .active .se2_layer{display:block} +#smart_editor2 .se2_text_tool .active li .se2_layer{display:none} +#smart_editor2 .se2_text_tool .active .active .se2_layer{display:block} +#smart_editor2 .se2_text_tool .se2_layer .se2_in_layer{float:left;margin:0;padding:0;border:1px solid #fff;background:#fafafa} +#smart_editor2 .se2_content_loading{display:none;z-index:10;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center} +#smart_editor2 .se2_content_loading img{position:absolute;top:50%;left:50%;margin:-27px 0 0 -27px} +#smart_editor2 .se2_alert_wrap{display:none;z-index:20;position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;text-align:center} +#smart_editor2 .se2_alert_wrap.active{display:block} +#smart_editor2 .se2_alert_wrap .dimmed{position:absolute;top:0;left:0;width:100%;height:100%;background:#000;opacity:0.4;filter:alpha(opacity=40)} +#smart_editor2 .se2_alert_wrap .ie_cover{position:absolute;top:0;left:0;width:100%;height:100%;background:#fff;opacity:0;filter:alpha(opacity=0)} +#smart_editor2 .se2_alert_wrap .va_line{display:inline-block;height:100%;vertical-align:middle;*zoom:1} +#smart_editor2 .se2_alert_wrap .se2_alert_content{z-index:10;position:relative;display:inline-block;*display:inline;*zoom:1;border:1px solid #727272;background:#fff;padding:26px 33px 22px;vertical-align:middle} +#smart_editor2 .se2_alert_wrap .se2_alert_content{margin-top:47px} +#smart_editor2 .se2_alert_wrap .txt1{color:#333;line-height:18px} +#smart_editor2 .se2_alert_wrap .txt2{margin-top:3px;color:#999} +#smart_editor2 .se2_alert_wrap .btn_close,#smart_editor2 .se2_alert_btns button{background:url("../../img/ko_KR/btn_set.png?160622") no-repeat} +#smart_editor2 .se2_alert_wrap .btn_close{z-index:10;position:absolute;top:7px;right:7px;width:11px;height:11px;background-position:-122px -32px;text-indent:-5000px} +#smart_editor2 .se2_alert_btns{margin-top:19px} +#smart_editor2 .se2_alert_btns button{display:inline;float:none;width:48px;height:27px} +#smart_editor2 .se2_alert_btns button + button{margin-left:10px} +#smart_editor2 .se2_alert_btns .se2_confirm{background-position:-369px -434px} +#smart_editor2 .se2_alert_btns .se2_cancel{background-position:-419px -434px} +/* TEXT_TOOLBAR */ +#smart_editor2 .se2_text_tool{position:relative;clear:both;z-index:30;padding:4px 0 4px 3px;background:#f4f4f4 url("../../img/bg_text_tool.gif") 0 0 repeat-x;border-bottom:1px solid #b5b5b5;*zoom:1} +#smart_editor2 .se2_text_tool:after{content:"";display:block;clear:both} +#smart_editor2 .se2_text_tool ul{float:left;display:inline;margin-right:3px;padding-left:1px;white-space:nowrap} +#smart_editor2 .se2_text_tool li{_display:inline;float:left;position:relative;z-index:30} +#smart_editor2 .se2_text_tool button,#smart_editor2 .se2_multy .se2_icon{width:21px;height:21px;background:url("../../img/ko_KR/text_tool_set.png?140317") no-repeat;vertical-align:top} +#smart_editor2 .se2_text_tool .se2_font_type{position:relative} +#smart_editor2 .se2_text_tool .se2_font_type li{margin-left:3px} +#smart_editor2 .se2_text_tool .se2_font_type button{text-align:left} +#smart_editor2 .se2_text_tool .se2_font_type button.se2_font_family span,#smart_editor2 .se2_text_tool .se2_font_type button.se2_font_size span{display:inline-block;visibility:visible;position:static;width:52px;height:20px;padding:0 0 0 6px;font-size:12px;line-height:20px;*line-height:22px;color:#333;*zoom:1} +#smart_editor2 .se2_text_tool .se2_multy{position:absolute;top:0;right:0;padding-left:0;margin-right:0;white-space:nowrap;border-left:1px solid #e0dedf} +#smart_editor2 .se2_text_tool .se2_multy .se2_mn{float:left;white-space:nowrap} +#smart_editor2 .se2_text_tool .se2_multy button{background-image:none;width:47px} +#smart_editor2 .se2_text_tool .se2_multy .se2_icon{display:inline-block;visibility:visible;overflow:visible;position:static;width:16px;height:29px;margin:-1px 2px 0 -1px;background-position:0 -132px;line-height:30px;vertical-align:top} +#smart_editor2 .se2_text_tool .se2_multy button,#smart_editor2 .se2_text_tool .se2_multy button span{height:29px;line-height:29px} +#smart_editor2 .se2_text_tool .se2_map .se2_icon{background-position:-29px -132px} +#smart_editor2 .se2_text_tool button span.se2_mntxt{display:inline-block;visibility:visible;overflow:visible;_overflow-y:hidden;position:relative;*margin-right:-1px;width:auto;height:29px;font-weight:normal;font-size:11px;line-height:30px;*line-height:29px;_line-height:30px;color:#444;letter-spacing:-1px;vertical-align:top} +#smart_editor2 .se2_text_tool .se2_multy .se2_photo{margin-right:1px} +#smart_editor2 .se2_text_tool .se2_multy .hover .ico_btn{background:#e8e8e8} +#smart_editor2 .se2_text_tool .se2_multy .se2_mn.hover{background:#e0dedf} +/* TEXT_TOOLBAR : ROUNDING */ +#smart_editor2 ul li.first_child button span.tool_bg, #smart_editor2 ul li.last_child button span.tool_bg, #smart_editor2 ul li.single_child button span.tool_bg{visibility:visible;height:21px} +#smart_editor2 ul li.first_child button span.tool_bg{left:-1px;width:3px;background:url("../../img/bg_button_left.gif?20121228") no-repeat} +#smart_editor2 ul li.last_child button span.tool_bg{right:0px;_right:-1px;width:2px;background:url("../../img/bg_button_right.gif") no-repeat} +#smart_editor2 ul li.single_child{padding-right:1px} +#smart_editor2 ul li.single_child button span.tool_bg{left:0;background:url("../../img/bg_button.gif?20121228") no-repeat;width:22px} +#smart_editor2 div.se2_text_tool ul li.hover button span.tool_bg{background-position:0 -21px} +#smart_editor2 div.se2_text_tool ul li.active button span.tool_bg, #smart_editor2 div.se2_text_tool ul li.active li.active button span.tool_bg{background-position:0 -42px} +#smart_editor2 div.se2_text_tool ul li.active li button span.tool_bg{background-position:0 0} +/* TEXT_TOOLBAR : SUB_MENU */ +#smart_editor2 .se2_sub_text_tool{display:none;position:absolute;top:20px;left:0;z-index:40;width:auto;height:29px;padding:0 4px 0 0;border:1px solid #b5b5b5;border-top:1px solid #9a9a9a;background:#f4f4f4} +#smart_editor2 .active .se2_sub_text_tool{display:block} +#smart_editor2 .se2_sub_text_tool ul{float:left;height:25px;margin:0;padding:4px 0 0 4px} +/* TEXT_TOOLBAR : SUB_MENU_SIZE */ +#smart_editor2 .se2_sub_step1{width:88px} +#smart_editor2 .se2_sub_step2{width:199px} +#smart_editor2 .se2_sub_step2_1{width:178px} +/* TEXT_TOOLBAR : BUTTON */ +#smart_editor2 .se2_text_tool .se2_font_family{width:70px;height:21px;background-position:0 -10px} +#smart_editor2 .se2_text_tool .hover .se2_font_family{background-position:0 -72px} +#smart_editor2 .se2_text_tool .active .se2_font_family{background-position:0 -103px} +#smart_editor2 .se2_text_tool .se2_font_size{width:45px;height:21px;background-position:-70px -10px} +#smart_editor2 .se2_text_tool .hover .se2_font_size{background-position:-70px -72px} +#smart_editor2 .se2_text_tool .active .se2_font_size{background-position:-70px -103px} +#smart_editor2 .se2_text_tool .se2_bold{background-position:-115px -10px} +#smart_editor2 .se2_text_tool .hover .se2_bold{background-position:-115px -72px} +#smart_editor2 .se2_text_tool .active .se2_bold{background-position:-115px -103px} +#smart_editor2 .se2_text_tool .se2_underline{background-position:-136px -10px} +#smart_editor2 .se2_text_tool .hover .se2_underline{background-position:-136px -72px} +#smart_editor2 .se2_text_tool .active .se2_underline{background-position:-136px -103px} +#smart_editor2 .se2_text_tool .se2_italic{background-position:-157px -10px} +#smart_editor2 .se2_text_tool .hover .se2_italic{background-position:-157px -72px} +#smart_editor2 .se2_text_tool .active .se2_italic{background-position:-157px -103px} +#smart_editor2 .se2_text_tool .se2_tdel{background-position:-178px -10px} +#smart_editor2 .se2_text_tool .hover .se2_tdel{background-position:-178px -72px} +#smart_editor2 .se2_text_tool .active .se2_tdel{background-position:-178px -103px} +#smart_editor2 .se2_text_tool .se2_fcolor{position:relative;background-position:-199px -10px} +#smart_editor2 .se2_text_tool .hover .se2_fcolor{background-position:-199px -72px} +#smart_editor2 .se2_text_tool .active .se2_fcolor{background-position:-199px -103px} +#smart_editor2 .se2_text_tool .se2_fcolor_more{background-position:-220px -10px;width:10px} +#smart_editor2 .se2_text_tool .hover .se2_fcolor_more{background-position:-220px -72px} +#smart_editor2 .se2_text_tool .active .se2_fcolor_more{background-position:-220px -103px} +#smart_editor2 .se2_text_tool .selected_color{position:absolute;top:14px;left:5px;width:11px;height:3px;font-size:0} +#smart_editor2 .se2_text_tool .se2_ol,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .se2_ol{background-position:-345px -10px} +#smart_editor2 .se2_text_tool .se2_ul,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .se2_ul{background-position:-366px -10px} +#smart_editor2 .se2_text_tool .hover .se2_ol,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .hover .se2_ol{background-position:-345px -72px} +#smart_editor2 .se2_text_tool .hover .se2_ul,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .hover .se2_ul{background-position:-366px -72px} +#smart_editor2 .se2_text_tool .active .se2_ol,#smart_editor2 .se2_text_tool .active .active .se2_ol{background-position:-345px -103px} +#smart_editor2 .se2_text_tool .active .se2_ul,#smart_editor2 .se2_text_tool .active .active .se2_ul{background-position:-366px -103px} +#smart_editor2 .se2_text_tool .se2_indent,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .se2_indent{background-position:-408px -10px} +#smart_editor2 .se2_text_tool .se2_outdent,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .se2_outdent{background-position:-387px -10px} +#smart_editor2 .se2_text_tool .hover .se2_indent,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .hover .se2_indent{background-position:-408px -72px} +#smart_editor2 .se2_text_tool .hover .se2_outdent,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .hover .se2_outdent{background-position:-387px -72px} +#smart_editor2 .se2_text_tool .active .se2_indent,#smart_editor2 .se2_text_tool .active .active .se2_indent{background-position:-408px -103px} +#smart_editor2 .se2_text_tool .active .se2_outdent,#smart_editor2 .se2_text_tool .active .active .se2_outdent{background-position:-387px -103px} +#smart_editor2 .se2_text_tool .se2_lineheight{background-position:-429px -10px} +#smart_editor2 .se2_text_tool .hover .se2_lineheight{background-position:-429px -72px} +#smart_editor2 .se2_text_tool .active .se2_lineheight{background-position:-429px -103px} +#smart_editor2 .se2_text_tool .se2_url{background-position:-513px -10px} +#smart_editor2 .se2_text_tool .hover .se2_url{background-position:-513px -72px} +#smart_editor2 .se2_text_tool .active .se2_url{background-position:-513px -103px} +#smart_editor2 .se2_text_tool .se2_bgcolor{position:relative;background-position:-230px -10px} +#smart_editor2 .se2_text_tool .hover .se2_bgcolor{background-position:-230px -72px} +#smart_editor2 .se2_text_tool .active .se2_bgcolor{background-position:-230px -103px} +#smart_editor2 .se2_text_tool .se2_bgcolor_more{background-position:-251px -10px;width:10px} +#smart_editor2 .se2_text_tool .hover .se2_bgcolor_more{background-position:-251px -72px} +#smart_editor2 .se2_text_tool .active .se2_bgcolor_more{background-position:-251px -103px} +#smart_editor2 .se2_text_tool .se2_left{background-position:-261px -10px} +#smart_editor2 .se2_text_tool .hover .se2_left{background-position:-261px -72px} +#smart_editor2 .se2_text_tool .active .se2_left{background-position:-261px -103px} +#smart_editor2 .se2_text_tool .se2_center{background-position:-282px -10px} +#smart_editor2 .se2_text_tool .hover .se2_center{background-position:-282px -72px} +#smart_editor2 .se2_text_tool .active .se2_center{background-position:-282px -103px} +#smart_editor2 .se2_text_tool .se2_right{background-position:-303px -10px} +#smart_editor2 .se2_text_tool .hover .se2_right{background-position:-303px -72px} +#smart_editor2 .se2_text_tool .active .se2_right{background-position:-303px -103px} +#smart_editor2 .se2_text_tool .se2_justify{background-position:-324px -10px} +#smart_editor2 .se2_text_tool .hover .se2_justify{background-position:-324px -72px} +#smart_editor2 .se2_text_tool .active .se2_justify{background-position:-324px -103px} +#smart_editor2 .se2_text_tool .se2_blockquote{background-position:-471px -10px} +#smart_editor2 .se2_text_tool .hover .se2_blockquote{background-position:-471px -72px} +#smart_editor2 .se2_text_tool .active .se2_blockquote{background-position:-471px -103px} +#smart_editor2 .se2_text_tool .se2_character{background-position:-555px -10px} +#smart_editor2 .se2_text_tool .hover .se2_character{background-position:-555px -72px} +#smart_editor2 .se2_text_tool .active .se2_character{background-position:-555px -103px} +#smart_editor2 .se2_text_tool .se2_table{background-position:-576px -10px} +#smart_editor2 .se2_text_tool .hover .se2_table{background-position:-576px -72px} +#smart_editor2 .se2_text_tool .active .se2_table{background-position:-576px -103px} +#smart_editor2 .se2_text_tool .se2_find{background-position:-597px -10px} +#smart_editor2 .se2_text_tool .hover .se2_find{background-position:-597px -72px} +#smart_editor2 .se2_text_tool .active .se2_find{background-position:-597px -103px} +#smart_editor2 .se2_text_tool .se2_sup{background-position:-660px -10px} +#smart_editor2 .se2_text_tool .hover .se2_sup{background-position:-660px -72px} +#smart_editor2 .se2_text_tool .active .se2_sup{background-position:-660px -103px} +#smart_editor2 .se2_text_tool .se2_sub{background-position:-681px -10px} +#smart_editor2 .se2_text_tool .hover .se2_sub{background-position:-681px -72px} +#smart_editor2 .se2_text_tool .active .se2_sub{background-position:-681px -103px} +#smart_editor2 .se2_text_tool .se2_text_tool_more{background-position:0 -41px;width:13px} +#smart_editor2 .se2_text_tool .se2_text_tool_more span.tool_bg{background:none} +#smart_editor2 .se2_text_tool .hover .se2_text_tool_more{background-position:-13px -41px} +#smart_editor2 .se2_text_tool .active .se2_text_tool_more{background-position:-26px -41px} diff --git a/plugin/editor/smarteditor2/css/ko_KR/smart_editor2_in.css b/plugin/editor/smarteditor2/css/ko_KR/smart_editor2_in.css new file mode 100644 index 000000000..fdecc092d --- /dev/null +++ b/plugin/editor/smarteditor2/css/ko_KR/smart_editor2_in.css @@ -0,0 +1,24 @@ +@charset "UTF-8"; +/* NHN Web Standardization Team (http://html.nhndesign.com/) HHJ 090226 */ +/* COMMON */ +body,.se2_inputarea{margin:0;padding:0;font-family:'돋움',Dotum,Helvetica,Sans-serif;font-size:12px;line-height:1.5} +/* body,.se2_inputarea,.se2_inputarea th,.se2_inputarea td{margin:0;padding:0;font-family:'돋움',Dotum,Helvetica,Sans-serif;font-size:12px;line-height:1.5;color:#666} */ +.se2_inputarea p,.se2_inputarea br{margin:0;padding:0} +.se2_inputarea{margin:15px;word-wrap:break-word;*word-wrap:normal;*word-break:break-all} +.se2_inputarea td{word-break:break-all} +.se2_inputarea_890{width:741px;margin:20px 0 10px 64px} +.se2_inputarea_698{width:548px;margin:20px 0 10px 64px} +@media screen and (-webkit-min-device-pixel-ratio: 0) { + .se2_inputarea td:empty:after,.se2_inputarea td > p:empty:after{content:"\00A0";line-height:1} +} +/* TEXT_TOOLBAR : QUOTE */ +.se2_quote1{margin:0 0 30px 20px;padding:0 8px;border-left:2px solid #ccc;color:#888} +.se2_quote2{margin:0 0 30px 13px;padding:0 8px 0 16px;background:url("../../img/bg_quote2.gif") 0 3px no-repeat;color:#888} +.se2_quote3{margin:0 0 30px;padding:12px 10px 11px;border:1px dashed #ccc;color:#888} +.se2_quote4{margin:0 0 30px;padding:12px 10px 11px;border:1px dashed #66b246;color:#888} +.se2_quote5{margin:0 0 30px;padding:12px 10px 11px;border:1px dashed #ccc;background:#fafafa;color:#888} +.se2_quote6{margin:0 0 30px;padding:12px 10px 11px;border:1px solid #e5e5e5;color:#888} +.se2_quote7{margin:0 0 30px;padding:12px 10px 11px;border:1px solid #66b246;color:#888} +.se2_quote8{margin:0 0 30px;padding:12px 10px 11px;border:1px solid #e5e5e5;background:#fafafa;color:#888} +.se2_quote9{margin:0 0 30px;padding:12px 10px 11px;border:2px solid #e5e5e5;color:#888} +.se2_quote10{margin:0 0 30px;padding:12px 10px 11px;border:2px solid #e5e5e5;background:#fafafa;color:#888} diff --git a/plugin/editor/smarteditor2/css/ko_KR/smart_editor2_items.css b/plugin/editor/smarteditor2/css/ko_KR/smart_editor2_items.css new file mode 100644 index 000000000..e47262677 --- /dev/null +++ b/plugin/editor/smarteditor2/css/ko_KR/smart_editor2_items.css @@ -0,0 +1,462 @@ +@charset "UTF-8"; +/* NHN Web Standardization Team (http://html.nhndesign.com/) HHJ 090226 */ +/* TEXT_TOOLBAR : FONTNAME */ +#smart_editor2 .se2_tool .se2_l_font_fam{width:202px;margin:0;padding:0} +#smart_editor2 .se2_tool .se2_l_font_fam li{display:block;width:202px;height:21px;margin:0;padding:0;color:#333;cursor:pointer} +#smart_editor2 .se2_l_font_fam .hover,#smart_editor2 .se2_l_font_fam .active{background:#ebebeb} +#smart_editor2 .se2_l_font_fam button{width:200px;height:21px;margin:0;padding:2px 0 2px 0px;background:none;text-align:left} +#smart_editor2 .se2_l_font_fam button span{display:block;visibility:visible;overflow:visible;position:relative;top:auto;left:auto;width:auto;height:auto;margin:0 0 0 4px;padding:0;font-size:12px;line-height:normal;color:#333} +#smart_editor2 .se2_l_font_fam button span span{display:inline;visibility:visible;overflow:visible;width:auto;height:auto;margin:0 0 0 4px;font-family:Verdana;font-size:12px;line-height:14px;color:#888} +#smart_editor2 .se2_l_font_fam button span em{visibility:visible;overflow:auto;position:static;width:auto;height:auto;margin-right:-4px;font-size:12px;color:#888} +#smart_editor2 .se2_l_font_fam .se2_division{width:162px;height:2px !important;margin:1px 0 1px 0px;border:0;background:url("../../img/bg_line1.gif") 0 0 repeat-x;font-size:0;cursor:default} +/* TEXT_TOOLBAR : FONTSIZE */ +#smart_editor2 .se2_tool .se2_l_font_size{width:302px;margin:0;padding:0} +#smart_editor2 .se2_tool .se2_l_font_size li{width:302px;margin:0;padding:0;color:#333;cursor:pointer} +#smart_editor2 .se2_l_font_size .hover,#smart_editor2 .se2_l_font_size .active{background:#ebebeb} +#smart_editor2 .se2_l_font_size button{width:300px;height:auto;margin:0;padding:2px 0 1px 0px;*padding:4px 0 1px 0px;background:none;text-align:left} +#smart_editor2 .se2_l_font_size button span{display:block;visibility:visible;overflow:visible;position:relative;top:auto;left:auto;width:auto;height:auto;margin:0 0 0 4px;padding:0;line-height:normal;color:#373737;letter-spacing:0px} +#smart_editor2 .se2_l_font_size button span span{display:inline;margin:0 0 0 5px;padding:0} +#smart_editor2 .se2_l_font_size span em{visibility:visible;overflow:auto;position:static;width:auto;height:auto;color:#888} +/* TEXT_TOOLBAR : FONTCOLOR */ +#smart_editor2 .se2_palette{float:left;position:relative;width:225px;margin:0;padding:11px 0 10px 0} +#smart_editor2 .se2_palette .se2_pick_color{_display:inline;float:left;clear:both;width:205px;margin:0 0 0 11px;padding:0} +#smart_editor2 .se2_palette .se2_pick_color li{float:left;width:12px;height:12px;margin:0;padding:0} +#smart_editor2 .se2_palette .se2_pick_color li button{width:11px;height:11px;border:0} +#smart_editor2 .se2_palette .se2_pick_color li button span{display:block;visibility:visible;overflow:visible;position:absolute;top:1px;left:1px;width:11px;height:11px} +#smart_editor2 .se2_palette .se2_pick_color li button span span{visibility:hidden;overflow:hidden;position:absolute;top:0;left:0;width:0;height:0} +#smart_editor2 .se2_palette .se2_pick_color .hover button,#smart_editor2 .se2_palette .se2_pick_color .active button{width:11px;height:11px;border:1px solid #666} +#smart_editor2 .se2_palette .se2_pick_color .hover span,#smart_editor2 .se2_palette .se2_pick_color .active span{width:7px;height:7px;border:1px solid #fff} +#smart_editor2 .se2_palette .se2_view_more{_display:inline;float:left;width:46px;height:23px;margin:1px 0 0 1px;background:url("../../img/ko_KR/btn_set.png?160622") 0 -47px no-repeat} +#smart_editor2 .se2_palette .se2_view_more2{_display:inline;float:left;width:46px;height:23px;margin:1px 0 0 1px;background:url("../../img/ko_KR/btn_set.png?160622") 0 -24px no-repeat} +#smart_editor2 .se2_palette h4{_display:inline;float:left;width:203px;margin:9px 0 0 11px;padding:10px 0 4px 0;background:url("../../img/bg_line1.gif") repeat-x;font-weight:normal;font-size:12px;line-height:14px;color:#333;letter-spacing:-1px} +#smart_editor2 .se2_palette2{float:left;_float:none;width:214px;margin:9px 0 0 0;padding:11px 0 0 11px;background:url("../../img/bg_line1.gif") repeat-x} +#smart_editor2 .se2_palette2 .se2_color_set{float:left} +#smart_editor2 .se2_palette2 .se2_selected_color{_display:inline;float:left;width:83px;height:18px;margin:0;border:1px solid #c7c7c7;background:#fff} +#smart_editor2 .se2_palette2 .se2_selected_color span{_display:inline;float:left;width:79px;height:14px;margin:2px} +#smart_editor2 .se2_palette2 .input_ty1{_display:inline;float:left;width:67px;height:16px;margin:0 3px 0 3px;padding:2px 2px 0 4px;font-family:tahoma;font-size:11px} +#smart_editor2 .se2_palette2 button.se2_btn_insert{float:left;width:35px;height:21px;margin-left:2px;padding:0;background:url("../../img/ko_KR/btn_set.png?160622") -80px 0 no-repeat} +#smart_editor2 .se2_gradation1{float:left;_float:none;width:201px;height:128px;margin:4px 0 0 0;border:1px solid #c7c7c7;cursor:crosshair} +#smart_editor2 .se2_gradation2{float:left;_float:none;width:201px;height:10px;margin:4px 0 1px 0;border:1px solid #c7c7c7;cursor:crosshair} +/* TEXT_TOOLBAR : BGCOLOR */ +#smart_editor2 .se2_palette_bgcolor{width:225px;margin:11px 0 0;padding:0} +#smart_editor2 .se2_palette_bgcolor .se2_background{width:205px;margin:0 11px 0 11px} +#smart_editor2 .se2_palette_bgcolor .se2_background li{width:68px;height:20px} +#smart_editor2 .se2_palette_bgcolor .se2_background button{width:67px;height:19px;border:0} +#smart_editor2 .se2_palette_bgcolor .se2_background span{left:0;display:block;visibility:visible;overflow:visible;width:65px;height:17px;padding:0} +#smart_editor2 .se2_palette_bgcolor .se2_background span span{display:block;visibility:visible;overflow:visible;width:64px;height:16px;padding:3px 0 0 3px;font-size:11px;line-height:14px;text-align:left} +#smart_editor2 .se2_palette_bgcolor .se2_background .hover span{width:65px;height:17px;border:1px solid #666} +#smart_editor2 .se2_palette_bgcolor .se2_background .hover span span{width:62px;height:14px;padding:1px 0 0 1px;border:1px solid #fff} +/* TEXT_TOOLBAR : LINEHEIGHT */ +#smart_editor2 .se2_l_line_height{width:107px;margin:0;padding:0} +#smart_editor2 .se2_l_line_height li{width:107px;margin:0;padding:0;border-top:0;border-bottom:0;color:#333;cursor:pointer} +#smart_editor2 .se2_l_line_height .hover{background:#ebebeb} +#smart_editor2 .se2_l_line_height button{width:105px;height:19px;margin:0;padding:3px 0 2px 0px;background:none;text-align:left} +#smart_editor2 .se2_l_line_height button span{visibility:visible;overflow:visible;position:relative;width:auto;height:auto;margin:0;padding:0 0 0 15px;font-size:12px;line-height:normal;color:#373737} +#smart_editor2 .se2_l_line_height li button.active span{background:url("../../img/icon_set.gif?141007") 5px -30px no-repeat} +#smart_editor2 .se2_l_line_height_user{clear:both;width:83px;margin:5px 0 0 12px;padding:10px 0 0 0;_padding:11px 0 0 0;background:url("../../img/bg_line1.gif") repeat-x} +#smart_editor2 .se2_l_line_height_user h3{margin:0 0 4px 0;_margin:0 0 2px -1px;padding:0;line-height:14px;color:#000;letter-spacing:-1px} +#smart_editor2 .se2_l_line_height_user .bx_input{display:block;position:relative;width:83px} +#smart_editor2 .se2_l_line_height_user .btn_up{position:absolute;top:2px;*top:3px;left:68px;width:13px;height:8px;background:url("../../img/ko_KR/btn_set.png?160622") -86px -54px no-repeat} +#smart_editor2 .se2_l_line_height_user .btn_down{position:absolute;top:10px;*top:11px;left:68px;width:13px;height:8px;background:url("../../img/ko_KR/btn_set.png?160622") -86px -62px no-repeat} +#smart_editor2 .se2_l_line_height_user .btn_area{margin:5px 0 10px 0} +#smart_editor2 .se2_tool .btn_area .se2_btn_apply3{width:41px;height:24px;background:url("../../img/ko_KR/btn_set.png?160622") no-repeat} +#smart_editor2 .se2_tool .btn_area .se2_btn_cancel3{width:39px;height:24px;margin-left:3px;background:url("../../img/ko_KR/btn_set.png?160622") -41px 0 no-repeat} +/* TEXT_TOOLBAR : QUOTE */ +#smart_editor2 .se2_quote{width:425px;height:56px} +#smart_editor2 .se2_quote ul{_display:inline;float:left;margin:11px 0 0 9px;padding:0} +#smart_editor2 .se2_quote li{_display:inline;float:left;margin:0 0 0 2px;padding:0} +#smart_editor2 .se2_quote button{width:34px;height:34px;margin:0;padding:0;background:url("../../img/ko_KR/btn_set.png?160622") no-repeat;cursor:pointer} +#smart_editor2 .se2_quote button span{left:0;display:block;visibility:visible;overflow:visible;width:32px;height:32px;margin:0;padding:0;border:1px solid #c7c7c7} +#smart_editor2 .se2_quote button span span{visibility:hidden;overflow:hidden;position:absolute;top:0;left:0;width:0;height:0;margin:0;padding:0} +#smart_editor2 .se2_quote .se2_quote1{background-position:1px -375px} +#smart_editor2 .se2_quote .se2_quote2{background-position:-32px -375px} +#smart_editor2 .se2_quote .se2_quote3{background-position:-65px -375px} +#smart_editor2 .se2_quote .se2_quote4{background-position:-98px -375px} +#smart_editor2 .se2_quote .se2_quote5{background-position:-131px -375px} +#smart_editor2 .se2_quote .se2_quote6{background-position:-164px -375px} +#smart_editor2 .se2_quote .se2_quote7{background-position:-197px -375px} +#smart_editor2 .se2_quote .se2_quote8{background-position:-230px -375px} +#smart_editor2 .se2_quote .se2_quote9{background-position:-263px -375px} +#smart_editor2 .se2_quote .se2_quote10{background-position:-296px -375px} +#smart_editor2 .se2_quote .hover button span,#smart_editor2 .se2_quote .active button span{width:30px;height:30px;margin:0;padding:0;border:2px solid #44b525} +#smart_editor2 .se2_quote .hover button span span,#smart_editor2 .se2_quote .active button span span{visibility:hidden;overflow:hidden;position:absolute;top:0;left:0;width:0;height:0;margin:0;padding:0} +#smart_editor2 .se2_quote .se2_cancel2{float:left;width:40px;height:35px;margin:11px 0 0 5px;background:url("../../img/ko_KR/btn_set.png?160622") -46px -24px no-repeat} +#smart_editor2 .se2_quote .se2_cancel2 span{visibility:hidden;overflow:hidden;position:absolute;top:0;left:0;width:0;height:0;margin:0;padding:0} +/* TEXT_TOOLBAR : HYPERLINK */ +#smart_editor2 .se2_url2{width:281px;padding:11px 11px 6px 11px;color:#666} +#smart_editor2 .se2_url2 .input_ty1{display:block;width:185px;height:16px;margin:0 5px 5px 0;*margin:-1px 5px 5px 0;padding:5px 2px 0 4px} +#smart_editor2 .se2_url2 .se2_url_new{width:15px;height:15px;margin:-1px 3px 1px -1px;*margin:-2px 3px 2px -1px;vertical-align:middle} +#smart_editor2 .se2_url2 label{font-size:11px;line-height:14px;vertical-align:middle} +#smart_editor2 .se2_url2 .se2_apply{position:absolute;top:13px;right:51px;width:41px;height:24px;margin:-1px 3px 1px 0;background:url("../../img/ko_KR/btn_set.png?160622") no-repeat} +#smart_editor2 .se2_url2 .se2_cancel{position:absolute;top:13px;right:9px;width:39px;height:24px;margin:-1px 3px 1px 0;background:url("../../img/ko_KR/btn_set.png?160622") -41px 0 no-repeat} +/* TEXT_TOOLBAR : SCHARACTER */ +#smart_editor2 .se2_bx_character{width:469px;height:272px;margin:0;padding:0;background:url("../../img/bx_set_110302.gif") 9px -1230px no-repeat} +#smart_editor2 .se2_bx_character .se2_char_tab{_display:inline;float:left;position:relative;width:443px;margin:11px 10px 200px 11px;padding:0 0 0 1px} +#smart_editor2 .se2_bx_character .se2_char_tab li{position:static;margin:0 0 0 -1px;padding:0} +#smart_editor2 .se2_bx_character .se2_char1{width:76px;height:26px;background:url("../../img/ko_KR/btn_set.png?160622") 0 -204px no-repeat} +#smart_editor2 .se2_bx_character .se2_char2{width:86px;height:26px;background:url("../../img/ko_KR/btn_set.png?160622") -75px -204px no-repeat} +#smart_editor2 .se2_bx_character .se2_char3{width:68px;height:26px;background:url("../../img/ko_KR/btn_set.png?160622") -160px -204px no-repeat} +#smart_editor2 .se2_bx_character .se2_char4{width:55px;height:26px;background:url("../../img/ko_KR/btn_set.png?160622") -227px -204px no-repeat} +#smart_editor2 .se2_bx_character .se2_char5{width:97px;height:26px;background:url("../../img/ko_KR/btn_set.png?160622") -281px -204px no-repeat} +#smart_editor2 .se2_bx_character .se2_char6{width:66px;height:26px;background:url("../../img/ko_KR/btn_set.png?160622") -377px -204px no-repeat} +#smart_editor2 .se2_bx_character .active .se2_char1{width:76px;height:26px;background:url("../../img/ko_KR/btn_set.png?160622") 0 -230px no-repeat} +#smart_editor2 .se2_bx_character .active .se2_char2{width:86px;height:26px;background:url("../../img/ko_KR/btn_set.png?160622") -75px -230px no-repeat} +#smart_editor2 .se2_bx_character .active .se2_char3{width:68px;height:26px;background:url("../../img/ko_KR/btn_set.png?160622") -160px -230px no-repeat} +#smart_editor2 .se2_bx_character .active .se2_char4{width:55px;height:26px;background:url("../../img/ko_KR/btn_set.png?160622") -227px -230px no-repeat} +#smart_editor2 .se2_bx_character .active .se2_char5{width:97px;height:26px;background:url("../../img/ko_KR/btn_set.png?160622") -281px -230px no-repeat} +#smart_editor2 .se2_bx_character .active .se2_char6{width:66px;height:26px;background:url("../../img/ko_KR/btn_set.png?160622") -377px -230px no-repeat} +#smart_editor2 .se2_bx_character .se2_s_character{display:none;position:absolute;top:26px;left:0;width:448px;height:194px;margin:0;padding:0} +#smart_editor2 .se2_bx_character .active .se2_s_character{display:block} +#smart_editor2 .se2_bx_character .se2_s_character ul{float:left;width:422px;height:172px;margin:0;padding:9px 0 0 11px} +#smart_editor2 .se2_bx_character .se2_s_character li{_display:inline;float:left;position:relative;width:20px;height:18px;margin:0 0 1px 1px;background:#fff} +#smart_editor2 .se2_bx_character .se2_s_character button{width:20px;height:18px;margin:0;padding:2px;background:none} +#smart_editor2 .se2_bx_character .se2_s_character .hover,#smart_editor2 .se2_bx_character .se2_s_character .active{background:url("../../img/ko_KR/btn_set.png?160622") -446px -274px no-repeat} +#smart_editor2 .se2_bx_character .se2_s_character button span{left:0;display:block;visibility:visible;overflow:visible;width:14px;height:16px;margin:3px 0 0 3px;border:0;background:none;font-size:12px;line-height:normal} +#smart_editor2 .se2_apply_character{clear:both;position:relative;padding:0 0 0 11px} +#smart_editor2 .se2_apply_character label{margin:0 3px 0 0;font-size:12px;color:#666;letter-spacing:-1px} +#smart_editor2 .se2_apply_character .input_ty1{width:283px;height:17px;margin:-1px 5px 1px 0;padding:4px 0 0 5px;font-size:12px;color:#666;letter-spacing:0;vertical-align:middle} +#smart_editor2 .se2_apply_character .se2_confirm{width:41px;height:24px;margin-right:3px;background:url("../../img/ko_KR/btn_set.png?160622") no-repeat;vertical-align:middle} +#smart_editor2 .se2_apply_character .se2_cancel{width:39px;height:24px;background:url("../../img/ko_KR/btn_set.png?160622") -41px 0 no-repeat;vertical-align:middle} +/* TEXT_TOOLBAR : TABLECREATOR */ +#smart_editor2 .se2_table_set{position:relative;width:166px;margin:3px 11px 0 11px;padding:8px 0 0 0} +#smart_editor2 .se2_table_set .se2_cell_num{float:left;width:73px} +#smart_editor2 .se2_table_set .se2_cell_num dt{float:left;clear:both;width:17px;height:23px;margin:0;padding:0} +#smart_editor2 .se2_table_set .se2_cell_num dt label{display:block;margin:5px 0 0 0;font-size:11px;color:#666} +#smart_editor2 .se2_table_set .se2_cell_num dd{float:left;position:relative;width:54px;height:23px;margin:0;padding:0} +#smart_editor2 .se2_table_set .se2_cell_num .input_ty2{display:block;width:32px;height:16px;*margin:-1px 0 0 0;padding:2px 19px 0 0px;border:1px solid #c7c7c7;font-family:tahoma,verdana,times New Roman;font-size:11px;color:#666;text-align:right;*direction:rtl} +#smart_editor2 .se2_table_set .se2_cell_num .input_ty2::-ms-clear{display:none} +#smart_editor2 .se2_table_set .se2_pre_table{float:right;width:91px;height:43px;background:#c7c7c7;border-spacing:1px} +#smart_editor2 .se2_table_set .se2_pre_table tr{background:#fff} +#smart_editor2 .se2_table_set .se2_pre_table td{font-size:0;line-height:0} +#smart_editor2 .se2_table_set .se2_add{position:absolute;top:2px;right:3px;width:13px;height:8px;background:url("../../img/ko_KR/btn_set.png?160622") -86px -54px no-repeat} +#smart_editor2 .se2_table_set .se2_del{position:absolute;top:10px;right:3px;width:13px;height:8px;background:url("../../img/ko_KR/btn_set.png?160622") -86px -62px no-repeat} +/* TEXT_TOOLBAR : TABLEEDITOR */ +#smart_editor2 .se2_table_set .se2_t_proper1{float:left;width:166px;margin:7px 0 0 0;padding:10px 0 5px;background:url("../../img/bg_line1.gif") repeat-x} +#smart_editor2 .se2_table_set .se2_t_proper1 dt{width:166px;margin:0 0 6px 0} +#smart_editor2 .se2_table_set .se2_t_proper1 dd{width:166px} +#smart_editor2 .se2_table_set .se2_t_proper1 dt input{width:15px;height:15px;margin:-1px 3px 1px 0;_margin:-2px 3px 2px 0;vertical-align:middle} +#smart_editor2 .se2_table_set .se2_t_proper1 dt label{font-weight:bold;font-size:11px;color:#666;letter-spacing:-1px;vertical-align:middle} +#smart_editor2 .se2_table_set .se2_t_proper1_1{float:left;position:relative;z-index:59;width:166px;margin:1px 0 0 0} +#smart_editor2 .se2_table_set .se2_t_proper1_2{z-index:54;margin:0} +#smart_editor2 .se2_table_set .se2_t_proper1_3{z-index:53;margin:0} +#smart_editor2 .se2_table_set .se2_t_proper1_4{z-index:52;margin:0} +#smart_editor2 .se2_table_set .se2_t_proper1_1 dt{_display:inline;float:left;clear:both;width:66px;height:22px;margin:1px 0 0 18px} +#smart_editor2 .se2_table_set .se2_t_proper1_1 dt label{display:block;margin:4px 0 0 0;font-weight:normal;font-size:11px;color:#666;letter-spacing:-1px} +#smart_editor2 .se2_table_set .se2_t_proper1_1 dd{float:left;position:relative;width:82px;height:23px} +#smart_editor2 .se2_table_set .se2_t_proper1_1 .input_ty1{width:72px;height:16px;*margin:-1px 0 0 0;padding:2px 2px 0 6px;font-family:tahoma,verdana,times New Roman;font-size:11px;color:#666} +#smart_editor2 .se2_table_set .se2_t_proper1_1 .input_ty3{float:left;width:49px;height:16px;margin:0 3px 0 0;padding:2px 4px 0 4px;border:1px solid #c7c7c7;font-family:tahoma,verdana,times New Roman;font-size:11px;color:#666} +#smart_editor2 .se2_table_set .se2_t_proper1_1 .se2_add{top:2px;right:2px} +#smart_editor2 .se2_table_set .se2_t_proper1_1 .se2_del{top:10px;right:2px} +#smart_editor2 .se2_table_set .se2_t_proper1_1 .se2_color_set .input_ty1{_display:inline;float:left;width:67px;height:16px;margin:0 3px 0 3px;padding:2px 2px 0 4px;font-family:tahoma,verdana,times New Roman;font-size:11px} +#smart_editor2 .se2_select_ty1{position:relative;width:80px;height:18px;border:1px solid #c7c7c7;background:#fff;font-size:11px;line-height:14px;text-align:left} +#smart_editor2 .se2_select_ty1 span{float:left;width:54px;height:18px;margin:0 0 0 5px;font-size:11px;line-height:14px;color:#666} +#smart_editor2 .se2_select_ty1 .se2_b_style0{position:relative;top:3px;left:-3px;white-space:nowrap} +#smart_editor2 .se2_select_ty1 .se2_b_style1{height:15px;margin:3px 0 0 4px;font-size:11px;line-height:14px;color:#666;letter-spacing:-1px} +#smart_editor2 .se2_select_ty1 .se2_b_style2{background:url("../../img/bg_set.gif") 0 -50px repeat-x} +#smart_editor2 .se2_select_ty1 .se2_b_style3{background:url("../../img/bg_set.gif") 0 -68px repeat-x} +#smart_editor2 .se2_select_ty1 .se2_b_style4{background:url("../../img/bg_set.gif") 0 -85px repeat-x} +#smart_editor2 .se2_select_ty1 .se2_b_style5{background:url("../../img/bg_set.gif") 0 -103px repeat-x} +#smart_editor2 .se2_select_ty1 .se2_b_style6{background:url("../../img/bg_set.gif") 0 -121px repeat-x} +#smart_editor2 .se2_select_ty1 .se2_b_style7{background:url("../../img/bg_set.gif") 0 -139px repeat-x} +#smart_editor2 .se2_select_ty1 .se2_view_more{position:absolute;top:1px;right:1px;width:13px;height:16px;background:url("../../img/ko_KR/btn_set.png?160622") -112px -54px no-repeat} +#smart_editor2 .se2_select_ty1 .se2_view_more2{position:absolute;top:1px;right:1px;width:13px;height:16px;background:url("../../img/ko_KR/btn_set.png?160622") -99px -54px no-repeat} +/* TEXT_TOOLBAR : TABLEEDITOR > BORDER */ +#smart_editor2 .se2_table_set .se2_b_t_b1{border-top:1px solid #b1b1b1} +#smart_editor2 .se2_layer_b_style{position:absolute;top:20px;right:0px;width:80px;padding-bottom:1px;border:1px solid #c7c7c7;border-top:1px solid #a8a8a8;background:#fff} +#smart_editor2 .se2_layer_b_style ul{width:80px;margin:0;padding:1px 0 0 0} +#smart_editor2 .se2_layer_b_style li{width:80px;height:18px;margin:0;padding:0} +#smart_editor2 .se2_layer_b_style .hover,#smart_editor2 .se2_layer_b_style .active{background:#ebebeb} +#smart_editor2 .se2_layer_b_style button{width:80px;height:18px;background:none} +#smart_editor2 .se2_layer_b_style button span{left:0;display:block;visibility:visible;overflow:visible;width:71px;height:18px;margin:0 0 0 5px;font-size:11px;line-height:15px;text-align:left} +#smart_editor2 .se2_layer_b_style button span span{visibility:hidden;overflow:hidden;position:absolute;top:0;left:0;width:0;height:0} +#smart_editor2 .se2_layer_b_style .se2_b_style1 span{margin:3px 0 0 4px;font-size:11px;line-height:14px;color:#666;letter-spacing:-1px} +#smart_editor2 .se2_layer_b_style .se2_b_style2 span{background:url("../../img/bg_set.gif") 0 -50px repeat-x} +#smart_editor2 .se2_layer_b_style .se2_b_style3 span{background:url("../../img/bg_set.gif") 0 -68px repeat-x} +#smart_editor2 .se2_layer_b_style .se2_b_style4 span{background:url("../../img/bg_set.gif") 0 -86px repeat-x} +#smart_editor2 .se2_layer_b_style .se2_b_style5 span{background:url("../../img/bg_set.gif") 0 -103px repeat-x} +#smart_editor2 .se2_layer_b_style .se2_b_style6 span{background:url("../../img/bg_set.gif") 0 -121px repeat-x} +#smart_editor2 .se2_layer_b_style .se2_b_style7 span{background:url("../../img/bg_set.gif") 0 -139px repeat-x} +/* TEXT_TOOLBAR : TABLEEDITOR > COLOR */ +#smart_editor2 .se2_pre_color{float:left;width:18px;height:18px;border:1px solid #c7c7c7} +#smart_editor2 .se2_pre_color button{float:left;width:14px;height:14px;margin:2px 0 0 2px;padding:0} +#smart_editor2 .se2_pre_color button span{overflow:hidden;position:absolute;top:-10000px;left:-10000px;z-index:-100;width:0;height:0} +/* TEXT_TOOLBAR : TABLEEDITOR > DIMMED */ +#smart_editor2 .se2_table_set .se2_t_dim1{clear:both;position:absolute;top:71px;left:16px;z-index:60;width:157px;height:118px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_table_set .se2_t_dim2{position:absolute;top:116px;left:16px;z-index:55;width:157px;height:45px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_table_set .se2_t_dim3{clear:both;position:absolute;top:192px;left:16px;z-index:51;width:157px;height:39px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +/* TEXT_TOOLBAR : TABLEEDITOR > STYLE PREVIEW */ +#smart_editor2 .se2_table_set .se2_t_proper2{float:left;position:relative;z-index:50;width:166px;margin:2px 0 0 0} +#smart_editor2 .se2_table_set .se2_t_proper2 dt{float:left;width:84px;height:33px;margin:4px 0 0 0} +#smart_editor2 .se2_table_set .se2_t_proper2 dt input{width:15px;height:15px;margin:-1px 3px 1px 0;_margin:-2px 3px 2px 0;vertical-align:middle} +#smart_editor2 .se2_table_set .se2_t_proper2 dt label{font-weight:bold;font-size:11px;color:#666;letter-spacing:-1px;vertical-align:middle} +#smart_editor2 .se2_table_set .se2_t_proper2 dd{float:left;width:66px;height:33px} +#smart_editor2 .se2_select_ty2{position:relative;width:65px;height:31px;border:1px solid #c7c7c7;background:#fff;font-size:11px;line-height:14px;text-align:left} +#smart_editor2 .se2_select_ty2 span{float:left;width:45px;height:25px;margin:3px 0 0 3px;background:url("../../img/ko_KR/btn_set.png?160622") repeat-x} +#smart_editor2 .se2_select_ty2 .se2_t_style1{background-position:0 -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style2{background-position:-46px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style3{background-position:-92px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style4{background-position:-138px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style5{background-position:-184px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style6{background-position:-230px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style7{background-position:-276px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style8{background-position:-322px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style9{background-position:0 -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style10{background-position:-46px -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style11{background-position:-92px -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style12{background-position:-138px -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style13{background-position:-184px -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style14{background-position:-230px -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style15{background-position:-276px -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style16{background-position:-322px -436px} +#smart_editor2 .se2_select_ty2 .se2_view_more{position:absolute;top:1px;right:1px;_right:0px;width:13px !important;height:29px !important;background:url("../../img/ko_KR/btn_set.png?160622") -353px -48px no-repeat !important} +#smart_editor2 .se2_select_ty2 .se2_view_more2{position:absolute;top:1px;right:1px;_right:0px;width:13px !important;height:29px !important;background:url("../../img/ko_KR/btn_set.png?160622") -340px -48px no-repeat !important} +#smart_editor2 .se2_select_ty2 .se2_view_more span{display:none} +/* TEXT_TOOLBAR : TABLEEDITOR > STYLE */ +#smart_editor2 .se2_layer_t_style{position:absolute;top:33px;right:15px;width:208px;border:1px solid #c7c7c7;border-top:1px solid #a8a8a8;background:#fff} +#smart_editor2 .se2_layer_t_style ul{width:204px;height:126px;margin:1px 2px;padding:1px 0 0 0;background:#fff} +#smart_editor2 .se2_layer_t_style li{_display:inline;float:left;width:45px;height:25px;margin:1px;padding:1px;border:1px solid #fff} +#smart_editor2 .se2_layer_t_style .hover,#smart_editor2 .se2_layer_t_style .active{border:1px solid #666;background:#fff} +#smart_editor2 .se2_layer_t_style button{width:45px;height:25px;background:url("../../img/ko_KR/btn_set.png?160622") repeat-x !important} +#smart_editor2 .se2_layer_t_style .se2_t_style1{background-position:0 -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style2{background-position:-46px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style3{background-position:-92px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style4{background-position:-138px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style5{background-position:-184px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style6{background-position:-230px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style7{background-position:-276px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style8{background-position:-322px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style9{background-position:0 -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style10{background-position:-46px -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style11{background-position:-92px -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style12{background-position:-138px -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style13{background-position:-184px -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style14{background-position:-230px -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style15{background-position:-276px -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style16{background-position:-322px -436px !important} +#smart_editor2 .se2_table_set .se2_btn_area{float:left;width:166px;margin:6px 0 0 0;padding:12px 0 8px 0;background:url("../../img/bg_line1.gif") repeat-x;text-align:center} +#smart_editor2 .se2_table_set button.se2_apply{width:41px;height:24px;margin-right:3px;background:url("../../img/ko_KR/btn_set.png?160622") no-repeat} +#smart_editor2 .se2_table_set button.se2_cancel{width:39px;height:24px;background:url("../../img/ko_KR/btn_set.png?160622") -41px 0 no-repeat} +#smart_editor2 .se2_table_set .se2_rd{width:14px;height:14px;vertical-align:middle} +#smart_editor2 .se2_table_set .se2_celltit{font-size:11px;font-size:11px;color:#666;letter-spacing:-1px} +#smart_editor2 .se2_table_set dt label.se2_celltit{display:inline} +/* TEXT_TOOLBAR : FINDREPLACE */ +#smart_editor2 .se2_bx_find_revise{position:relative;width:255px;margin:0;padding:0} +#smart_editor2 .se2_bx_find_revise .se2_close{position:absolute;top:5px;right:8px;width:20px;height:20px;background:url("../../img/ko_KR/btn_set.png?160622") -151px -1px no-repeat} +#smart_editor2 .se2_bx_find_revise h3{margin:0;padding:10px 0 13px 10px;background:url("../../img/bg_find_h3.gif") 0 -1px repeat-x;font-size:12px;line-height:14px;letter-spacing:-1px} +#smart_editor2 .se2_bx_find_revise ul{position:relative;margin:8px 0 0 0;padding:0 0 0 12px} +#smart_editor2 .se2_bx_find_revise ul li{_display:inline;float:left;position:static;margin:0 0 0 -1px;padding:0} +#smart_editor2 .se2_bx_find_revise .se2_tabfind{width:117px;height:26px;background:url("../../img/ko_KR/btn_set.png?160622") 0 -100px no-repeat} +#smart_editor2 .se2_bx_find_revise .se2_tabrevise{width:117px;height:26px;background:url("../../img/ko_KR/btn_set.png?160622") -116px -100px no-repeat} +#smart_editor2 .se2_bx_find_revise .active .se2_tabfind{width:117px;height:26px;background:url("../../img/ko_KR/btn_set.png?160622") 0 -126px no-repeat} +#smart_editor2 .se2_bx_find_revise .active .se2_tabrevise{width:117px;height:26px;background:url("../../img/ko_KR/btn_set.png?160622") -116px -126px no-repeat} +#smart_editor2 .se2_bx_find_revise .se2_in_bx_find dl{_display:inline;float:left;width:223px;margin:0 0 0 9px;padding:7px 0 13px 14px;background:url("../../img/bx_set_110302.gif") -289px -1518px no-repeat} +#smart_editor2 .se2_bx_find_revise .se2_in_bx_revise dl{_display:inline;float:left;width:223px;margin:0 0 0 9px;padding:7px 0 13px 14px;background:url("../../img/bx_set_110302.gif") -289px -1619px no-repeat} +#smart_editor2 .se2_bx_find_revise dt{_display:inline;float:left;clear:both;width:47px;margin:1px 0 2px 0} +#smart_editor2 .se2_bx_find_revise dd{float:left;margin:0 0 2px 0} +#smart_editor2 .se2_bx_find_revise label{float:left;padding:5px 0 0 0;font-size:11px;color:#666;letter-spacing:-2px} +#smart_editor2 .se2_bx_find_revise input{float:left;width:155px;height:12px;margin:1px 0 0 0;padding:3px 2px 3px 4px;font-size:12px;color:#666} +#smart_editor2 .se2_bx_find_revise .se2_find_btns{float:left;clear:both;width:255px;padding:8px 0 10px 0;text-align:center} +#smart_editor2 .se2_bx_find_revise .se2_find_next{width:65px;height:24px;margin:0 3px 0 0;background:url("../../img/ko_KR/btn_set.png?160622") -180px -48px no-repeat} +#smart_editor2 .se2_bx_find_revise .se2_find_next2{width:61px;height:24px;margin:0 3px 0 0;background:url("../../img/ko_KR/btn_set.png?160622") -180px -24px no-repeat} +#smart_editor2 .se2_bx_find_revise .se2_revise1{width:54px;height:24px;margin:0 3px 0 0;background:url("../../img/ko_KR/btn_set.png?160622") -245px -48px no-repeat} +#smart_editor2 .se2_bx_find_revise .se2_revise2{width:70px;height:24px;margin:0 3px 0 0;background:url("../../img/ko_KR/btn_set.png?160622") -245px -24px no-repeat} +#smart_editor2 .se2_bx_find_revise .se2_cancel{width:39px;height:24px;background:url("../../img/ko_KR/btn_set.png?160622") -41px 0 no-repeat} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE */ +#smart_editor2 .se2_qmax{position:absolute;width:18px;height:18px;background:url("../../img/ko_KR/btn_set.png?160622") -339px -169px no-repeat} +#smart_editor2 .se2_qeditor{position:absolute;top:0;left:0;width:183px;margin:0;padding:0;border:1px solid #c7c7c7;border-right:1px solid #ababab;border-bottom:1px solid #ababab;background:#fafafa} +#smart_editor2 .se2_qeditor label,#smart_editor2 .se2_qeditor span,#smart_editor2 .se2_qeditor dt{font-size:11px;color:#666;letter-spacing:-1px} +#smart_editor2 .se2_qbar{position:relative;width:183px;height:11px;background:url("../../img/bx_set_110302.gif") 0 -731px no-repeat} +#smart_editor2 .se2_qbar .se2_qmini{position:absolute;top:-1px;right:0;*right:-1px;_right:-3px;width:18px;height:14px;background:url("../../img/ko_KR/btn_set.png?160622") -315px -170px no-repeat} +#smart_editor2 .se2_qbar .se2_qmini button{width:20px;height:14px;margin-top:-1px} +#smart_editor2 .se2_qeditor .se2_qbody0{float:left;border:1px solid #fefefe} +#smart_editor2 .se2_qeditor .se2_qbody{position:relative;z-index:90;width:174px;padding:4px 0 0 7px} +#smart_editor2 .se2_qeditor .se2_qe1{overflow:hidden;width:174px} +#smart_editor2 .se2_qeditor .se2_qe1 dt{float:left;width:22px;height:18px;padding:4px 0 0 0} +#smart_editor2 .se2_qeditor .se2_qe1 dd{float:left;width:65px;height:22px} +#smart_editor2 .se2_qeditor .se2_addrow{width:28px;height:19px;background:url("../../img/ko_KR/btn_set.png?160622") no-repeat -385px -49px} +#smart_editor2 .se2_qeditor .se2_addcol{width:29px;height:19px;background:url("../../img/ko_KR/btn_set.png?160622") no-repeat -413px -49px} +#smart_editor2 .se2_qeditor .se2_seprow{width:28px;height:19px;background:url("../../img/ko_KR/btn_set.png?160622") no-repeat -385px -68px} +#smart_editor2 .se2_qeditor .se2_sepcol{width:29px;height:19px;background:url("../../img/ko_KR/btn_set.png?160622") no-repeat -413px -68px} +#smart_editor2 .se2_qeditor .se2_delrow{width:28px;height:19px;background:url("../../img/ko_KR/btn_set.png?160622") no-repeat -385px -106px} +#smart_editor2 .se2_qeditor .se2_delcol{width:29px;height:19px;background:url("../../img/ko_KR/btn_set.png?160622") no-repeat -413px -106px} +#smart_editor2 .se2_qeditor .se2_merrow{width:57px;height:19px;background:url("../../img/ko_KR/btn_set.png?160622") no-repeat -385px -125px} +#smart_editor2 .se2_qeditor .se2_mercol{width:57px;height:19px;background:url("../../img/ko_KR/btn_set.png?160622") no-repeat -413px -125px} +#smart_editor2 .se2_qeditor .se2_seprow_off{width:28px;height:19px;background:url("../../img/ko_KR/btn_set.png?160622") no-repeat -385px -87px} +#smart_editor2 .se2_qeditor .se2_sepcol_off{width:29px;height:19px;background:url("../../img/ko_KR/btn_set.png?160622") no-repeat -413px -87px} +#smart_editor2 .se2_qeditor .se2_merrow_off{width:57px;height:19px;background:url("../../img/ko_KR/btn_set.png?160622") no-repeat -385px -144px} +#smart_editor2 .se2_qeditor .se2_mercol_off{width:57px;height:19px;background:url("../../img/ko_KR/btn_set.png?160622") no-repeat -413px -144px} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > CELL_BACKGROUND */ +#smart_editor2 .se2_qeditor .se2_qe2{_display:inline;float:left;position:relative;z-index:100;width:165px;margin:2px 0 0 1px;padding:7px 0 0 0;background:url("../../img/bg_line1.gif") repeat-x;zoom:1} +#smart_editor2 .se2_qeditor .se2_qe2_1 dt{float:left;width:62px;padding:3px 0 0 0} +#smart_editor2 .se2_qeditor .se2_qe2_1 dt input{width:15px;height:15px;margin:-1px 1px 1px -1px;vertical-align:middle} +#smart_editor2 .se2_qeditor .se2_qe2_1 dd{float:left;position:relative;zoom:1} +#smart_editor2 .se2_qeditor .se2_qe2_3{padding:7px 0 6px 0} +/* My글양식 없을때 */ +#smart_editor2 .se2_qeditor .se2_qe2_2{position:relative;_position:absolute} +#smart_editor2 .se2_qeditor .se2_qe2_2 dt{float:left;width:50px;padding:3px 0 0 13px} +#smart_editor2 .se2_qeditor .se2_qe2_2 dt input{width:15px;height:15px;margin:-1px 2px 1px -1px;vertical-align:middle} +#smart_editor2 .se2_qeditor .se2_qe2_2 dd{float:left} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > STYLE */ +#smart_editor2 .se2_table_set .se2_qbody .se2_t_proper2{float:left;*float:none;position:static;width:166px;margin:5px 0 0 1px} +#smart_editor2 .se2_qeditor .se2_qe3 dt{float:left;width:62px;padding:0} +#smart_editor2 .se2_qeditor .se2_qe3 dt label{font-weight:normal} +#smart_editor2 .se2_qeditor .se2_qe3 dt input{width:15px;height:15px;margin:-1px 1px 1px -1px;vertical-align:middle} +#smart_editor2 .se2_qeditor .se2_qe3 dd .se2_qe3_table{position:relative} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > CELL_BACKGROUND PREWVIEW */ +#smart_editor2 .se2_qeditor .se2_pre_color{float:left;width:18px;height:18px;border:1px solid #c7c7c7} +#smart_editor2 .se2_qeditor .se2_pre_color button{float:left;width:14px;height:14px;margin:2px 0 0 2px;padding:0} +#smart_editor2 .se2_qeditor .se2_pre_color button span{overflow:hidden;position:absolute;top:-10000px;left:-10000px;z-index:-100;width:0;height:0} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > CELL_BACKGROUND LAYER */ +#smart_editor2 .se2_qeditor .se2_layer{float:left;clear:both;position:absolute;top:20px;left:0;margin:0;padding:0;border:1px solid #c7c7c7;border-top:1px solid #9a9a9a;background:#fafafa} +#smart_editor2 .se2_qeditor .se2_layer .se2_in_layer{float:left;margin:0;padding:0;border:1px solid #fff;background:#fafafa} +#smart_editor2 .se2_qeditor .se2_layer button{vertical-align:top} +#smart_editor2 .se2_qeditor .se2_layer .se2_pick_color li{position:relative} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > CELL_BACKGROUND IMAGE */ +#smart_editor2 .se2_qeditor .se2_pre_bgimg{float:left;width:14px;height:14px;padding:2px;border:1px solid #c7c7c7} +#smart_editor2 .se2_qeditor .se2_qe2_2 button{width:16px;height:16px;background:url("../../img/ko_KR/btn_set.png?160622") 0 -261px no-repeat} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > CELL_BACKGROUND IMAGE LAYER */ +#smart_editor2 .se2_cellimg_set{_display:inline;float:left;width:136px;margin:4px 3px 0 4px;padding-bottom:4px} +#smart_editor2 .se2_cellimg_set li{_display:inline;float:left;width:16px;height:16px;margin:0 1px 1px 0} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg0{background-position:-255px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg1{background-position:0 -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg2{background-position:-17px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg3{background-position:-34px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg4{background-position:-51px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg5{background-position:-68px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg6{background-position:-85px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg7{background-position:-102px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg8{background-position:-119px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg9{background-position:-136px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg10{background-position:-153px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg11{background-position:-170px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg12{background-position:-187px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg13{background-position:-204px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg14{background-position:-221px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg15{background-position:-238px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg16{background-position:-255px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg17{background-position:0 -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg18{background-position:-17px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg19{background-position:-34px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg20{background-position:-51px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg21{background-position:-68px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg22{background-position:-85px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg23{background-position:-102px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg24{background-position:-119px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg25{background-position:-136px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg26{background-position:-153px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg27{background-position:-170px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg28{background-position:-187px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg29{background-position:-204px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg30{background-position:-221px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg31{background-position:-238px -278px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg button{width:14px;height:14px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg1{background-position:-1px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg2{background-position:-18px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg3{background-position:-35px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg4{background-position:-52px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg5{background-position:-69px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg6{background-position:-86px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg7{background-position:-103px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg8{background-position:-120px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg9{background-position:-137px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg10{background-position:-154px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg11{background-position:-171px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg12{background-position:-188px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg13{background-position:-205px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg14{background-position:-222px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg15{background-position:-239px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg16{background-position:-256px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg17{background-position:-1px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg18{background-position:-18px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg19{background-position:-35px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg20{background-position:-52px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg21{background-position:-69px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg22{background-position:-86px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg23{background-position:-103px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg24{background-position:-120px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg25{background-position:-137px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg26{background-position:-154px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg27{background-position:-171px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg28{background-position:-188px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg29{background-position:-205px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg30{background-position:-222px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg31{background-position:-239px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg32{background-position:-256px -279px} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > MY REVIEW */ +#smart_editor2 .se2_btn_area{_display:inline;float:left;clear:both;width:166px;margin:5px 0 0 1px;padding:7px 0 6px 0;background:url("../../img/bg_line1.gif") repeat-x;text-align:center} +#smart_editor2 .se2_btn_area .se2_btn_save{width:97px;height:21px;background:url("../../img/ko_KR/btn_set.png?160622") -369px -163px no-repeat} +/* TEXT_TOOLBAR : QUICKEDITOR_IMAGE */ +#smart_editor2 .se2_qe10{width:166px;margin:0;*margin:-2px 0 0 0} +#smart_editor2 .se2_qe10 label{margin:0 1px 0 0;vertical-align:middle} +#smart_editor2 .se2_qe10 .se2_sheight{margin-left:4px} +#smart_editor2 .se2_qe10 .input_ty1{width:30px;height:13px;margin:0 0 1px 1px;padding:3px 4px 0 1px;font-size:11px;letter-spacing:0;text-align:right;vertical-align:middle} +#smart_editor2 .se2_qe10 .se2_sreset{width:41px;height:19px;margin-left:3px;background:url("../../img/ko_KR/btn_set.png?160622") -401px -184px no-repeat;vertical-align:middle} +#smart_editor2 .se2_qe10_1{margin-top:4px;padding:10px 0 3px;background:url("../../img/bg_line1.gif") repeat-x} +#smart_editor2 .se2_qe10_1 input{width:15px;height:15px;margin:-1px 3px 1px -1px;vertical-align:middle} +#smart_editor2 .se2_qe11{float:left;width:166px;margin:4px 0 0 0;padding:7px 0 2px 0;background:url("../../img/bg_line1.gif") repeat-x} +#smart_editor2 .se2_qe11_1{float:left;width:99px} +#smart_editor2 .se2_qe11_1 dt{float:left;width:56px;height:15px;padding:5px 0 0 0} +#smart_editor2 .se2_qe11_1 dd{float:left;position:relative;width:38px;height:20px} +#smart_editor2 .se2_qe11_1 .input_ty1{display:block;width:29px;height:15px;margin:0;*margin:-1px 0 1px 0;padding:3px 1px 0 5px;font-size:11px;letter-spacing:0;text-align:left} +#smart_editor2 .se2_qe11_1 .se2_add{position:absolute;top:2px;right:3px;width:13px;height:8px;background:url("../../img/ko_KR/btn_set.png?160622") -86px -54px no-repeat} +#smart_editor2 .se2_qe11_1 .se2_del{position:absolute;top:10px;right:3px;width:13px;height:8px;background:url("../../img/ko_KR/btn_set.png?160622") -86px -62px no-repeat} +#smart_editor2 .se2_qe11_2{float:left;width:67px} +#smart_editor2 .se2_qe11_2 dt{float:left;width:47px;margin:5px 0 0 0} +#smart_editor2 .se2_qe11_2 dd{float:left;position:relative;width:20px} +#smart_editor2 .se2_qe12{float:left;width:166px;margin:3px 0 0 0;padding:7px 0 0 0;background:url("../../img/bg_line1.gif") repeat-x} +#smart_editor2 .se2_qe12 dt{float:left;margin:5px 4px 0 0} +#smart_editor2 .se2_qe12 dd{float:left;padding:0 0 6px 0} +#smart_editor2 .se2_qe12 .se2_align0{float:left;width:19px;height:21px;background:url("../../img/ko_KR/btn_set.png?160622") -276px -121px no-repeat} +#smart_editor2 .se2_qe12 .se2_align1{float:left;width:19px;height:21px;background:url("../../img/ko_KR/btn_set.png?160622") -295px -121px no-repeat} +#smart_editor2 .se2_qe12 .se2_align2{float:left;width:20px;height:21px;background:url("../../img/ko_KR/btn_set.png?160622") -314px -121px no-repeat} +#smart_editor2 .se2_qe13{position:relative;z-index:10;zoom:1} +#smart_editor2 .se2_qe13 dt{float:left;width:62px;padding:3px 0 0} +#smart_editor2 .se2_qe13 dt input{width:15px;height:15px;margin:-1px 1px 1px -1px;vertical-align:middle;zoom:1} +#smart_editor2 .se2_qe13 dt .se2_qdim2{width:32px} +#smart_editor2 .se2_qe13 dd .se2_select_ty1{width:38px} +#smart_editor2 .se2_qe13 dd .se2_select_ty1 span{width:15px} +#smart_editor2 .se2_qe13 dd .input_ty1{width:20px} +#smart_editor2 .se2_qe13 dd .se2_palette2 .input_ty1{width:67px} +#smart_editor2 .se2_qe13 .se2_add{*top:3px} +#smart_editor2 .se2_qe13 .se2_del{*top:11px} +#smart_editor2 .se2_qe13 .se2_layer_b_style{right:-2px;_right:0} +#smart_editor2 .se2_qe13 .se2_layer_b_style li span{width:auto;margin:0 4px 0 5px;padding-top:2px} +#smart_editor2 .se2_qe13 dd{_display:inline;float:left;position:relative;width:29px;margin-right:5px;_margin-right:3px;zoom:1} +#smart_editor2 .se2_qe13 dd .se2_palette h4{margin-top:9px;font-family:dotum;font-size:12px} +#smart_editor2 .se2_qe13 dd.dd_type{width:38px} +#smart_editor2 .se2_qe13 dd.dd_type2{width:37px;margin-right:3px} +#smart_editor2 .se2_qe13 dd.dd_type2 .input_ty1{width:29px} +#smart_editor2 .se2_qe13 dd.dd_type2 button{right:2px;_right:1px} +#smart_editor2 .se2_qe13 dd.dd_type3{width:20px;margin:0} +#smart_editor2 .se2_qe13_v1{_display:inline;float:left;margin:2px 0 1px} +#smart_editor2 .se2_qe13_v1 dt{padding:4px 0 0 1px} +#smart_editor2 .se2_qe13_v2{_display:inline;float:left;position:relative;z-index:100;width:165px;margin:4px 0 0 1px;zoom:1} +#smart_editor2 .se2_qe13_v2 dd{width:18px;margin:0} +#smart_editor2 .se2_qeditor .se2_qdim1{clear:both;position:absolute;top:25px;left:115px;width:60px;height:23px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim2{clear:both;position:absolute;top:55px;left:24px;z-index:110;width:70px;height:22px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim3{clear:both;position:absolute;top:55px;left:118px;z-index:110;width:56px;height:22px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim4{clear:both;position:absolute;top:81px;left:23px;z-index:35;width:116px;height:35px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim5{clear:both;position:absolute;top:31px;left:106px;width:68px;height:26px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim6c{clear:both;position:absolute;top:25px;left:28px;width:29px;height:23px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim6r{clear:both;position:absolute;top:25px;left:57px;width:29px;height:23px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_highedit{float:right;width:56px;height:21px;margin:-27px 8px 0 0;background:url("../../img/ko_KR/btn_set.png?160622") -329px -142px no-repeat} +#smart_editor2 .se2_qeditor .se2_qdim7{clear:both;position:absolute;top:55px;left:24px;z-index:110;width:150px;height:48px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim8{clear:both;position:absolute;top:105px;left:24px;z-index:110;width:150px;height:37px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim9{clear:both;position:absolute;top:55px;left:111px;z-index:110;width:65px;height:24px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim10{clear:both;position:absolute;top:55px;left:100px;z-index:110;width:77px;height:24px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim11{clear:both;position:absolute;top:55px;left:65px;z-index:110;width:115px;height:24px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +/* HELP : ACCESSIBILITY */ +#smart_editor2 .se2_accessibility{z-index:90} +#smart_editor2 .se2_accessibility .se2_in_layer{width:568px;padding:0 10px;background:#fafafa;border:1px solid #bcbbbb} +#smart_editor2 .se2_accessibility h3{margin:0 -10px;padding:6px 0 12px 0;background:url("../../img/bg_find_h3.gif") repeat-x;font-size:12px;line-height:14px;letter-spacing:-1px} +#smart_editor2 .se2_accessibility h3 strong{display:inline-block;padding:4px 0 3px 11px;color:#333;letter-spacing:0} +#smart_editor2 .se2_accessibility .se2_close{position:absolute;top:10px;right:12px;width:13px;height:12px;background:url("../../img/ko_KR/btn_set.png?160622") -155px -5px no-repeat} +#smart_editor2 .se2_accessibility .box_help{padding:0 2px;margin-top:8px;background:url("../../img/bg_help.gif") 0 100% no-repeat} +#smart_editor2 .se2_accessibility .box_help div{overflow:hidden;padding:20px 21px 24px;border-top:1px solid #d0d0d0;color:#333} +#smart_editor2 .se2_accessibility .box_help strong{display:block;margin-bottom:2px} +#smart_editor2 .se2_accessibility .box_help p{margin-bottom:28px;line-height:1.5} +#smart_editor2 .se2_accessibility .box_help ul{width:150%;margin-top:10px} +#smart_editor2 .se2_accessibility .box_help li{position:relative;float:left;width:252px;padding:5px 0 5px 9px;margin-right:40px;background:url("../../img/ko_KR/btn_set.png?160622") -475px -51px no-repeat;border-right:1px solid #f0f0f0;*zoom:1;line-height:1} +#smart_editor2 .se2_accessibility .box_help li span{position:absolute;top:4px;left:138px;line-height:1.2} +#smart_editor2 .se2_accessibility .se2_btns{padding:9px 0 10px;text-align:center} +#smart_editor2 .se2_accessibility .se2_btns .se2_close2{width:39px;height:24px;background:url("../../img/ko_KR/btn_set.png?160622") -235px -120px no-repeat} diff --git a/plugin/editor/smarteditor2/css/ko_KR/smart_editor2_out.css b/plugin/editor/smarteditor2/css/ko_KR/smart_editor2_out.css new file mode 100644 index 000000000..0baf3770e --- /dev/null +++ b/plugin/editor/smarteditor2/css/ko_KR/smart_editor2_out.css @@ -0,0 +1,12 @@ +@charset "UTF-8"; +/* NHN Web Standardization Team (http://html.nhndesign.com/) HHJ 090226 */ +/* COMMON */ +.se2_outputarea, .se2_outputarea th, .se2_outputarea td{margin:0;padding:0;color:#666;font-size:12px;font-family:'돋움',Dotum,'굴림',Gulim,Helvetica,Sans-serif;line-height:1.5} +.se2_outputarea p{margin:0;padding:0} +.se2_outputarea a:hover{text-decoration:underline} +.se2_outputarea a:link{color:#0000ff} +.se2_outputarea ul{margin:0 0 0 40px;padding:0} +.se2_outputarea ul li{margin:0;list-style-type:disc;padding:0} +.se2_outputarea ul ul li{list-style-type:circle} +.se2_outputarea ul ul ul li{list-style-type:square} +.se2_outputarea img, .se2_outputarea fieldset{border:0} diff --git a/plugin/editor/smarteditor2/css/zh_CN/smart_editor2.css b/plugin/editor/smarteditor2/css/zh_CN/smart_editor2.css new file mode 100644 index 000000000..f2a6b479f --- /dev/null +++ b/plugin/editor/smarteditor2/css/zh_CN/smart_editor2.css @@ -0,0 +1,190 @@ +@charset "UTF-8"; +/* NHN Web Standardization Team (http://html.nhndesign.com/) HHJ 090226 */ +/* COMMON */ +body,#smart_editor2,#smart_editor2 p,#smart_editor2 h1,#smart_editor2 h2,#smart_editor2 h3,#smart_editor2 h4,#smart_editor2 h5,#smart_editor2 h6,#smart_editor2 ul,#smart_editor2 ol,#smart_editor2 li,#smart_editor2 dl,#smart_editor2 dt,#smart_editor2 dd,#smart_editor2 table,#smart_editor2 th,#smart_editor2 td,#smart_editor2 form,#smart_editor2 fieldset,#smart_editor2 legend,#smart_editor2 input,#smart_editor2 textarea,#smart_editor2 button,#smart_editor2 select{margin:0;padding:0} +#smart_editor2,#smart_editor2 h1,#smart_editor2 h2,#smart_editor2 h3,#smart_editor2 h4,#smart_editor2 h5,#smart_editor2 h6,#smart_editor2 input,#smart_editor2 textarea,#smart_editor2 select,#smart_editor2 table,#smart_editor2 button{font-family:'돋움',Dotum,Helvetica,sans-serif;font-size:12px;color:#666} +#smart_editor2 span,#smart_editor2 em{font-size:12px} +#smart_editor2 em,#smart_editor2 address{font-style:normal} +#smart_editor2 img,#smart_editor2 fieldset{border:0} +#smart_editor2 hr{display:none} +#smart_editor2 ol,#smart_editor2 ul{list-style:none} +#smart_editor2 button{border:0;background:none;font-size:11px;vertical-align:top;cursor:pointer} +#smart_editor2 button span,#smart_editor2 button em{visibility:hidden;overflow:hidden;position:absolute;top:0;font-size:0;line-height:0} +#smart_editor2 legend,#smart_editor2 .blind{visibility:hidden;overflow:hidden;position:absolute;width:0;height:0;font-size:0;line-height:0} +#smart_editor2 .input_ty1{height:14px;margin:0;padding:4px 2px 0 4px;border:1px solid #c7c7c7;font-size:11px;color:#666} +#smart_editor2 a:link,#smart_editor2 a:visited,#smart_editor2 a:active,#smart_editor2 a:focus{color:#666;text-decoration:none} +#smart_editor2 a:hover{color:#666;text-decoration:underline} +/* LAYOUT */ +#smart_editor2 .se2_header{margin:10px 0 29px 0} +#smart_editor2 .se2_bi{float:left;width:93px;height:20px;margin:0;padding:0;background:url("../../img/zh_CN/btn_set.png?160622") -343px -358px no-repeat;font-size:0;line-height:0;text-indent:-10000px;vertical-align:middle} +#smart_editor2 .se2_allhelp{display:inline-block;width:18px;height:18px;padding:0;background:url("../../img/zh_CN/btn_set.png?160622") -437px -358px no-repeat;font-size:0;line-height:0;text-indent:-10000px;vertical-align:middle} +#smart_editor2 #smart_editor2_content{position:relative;border:1px solid #b5b5b5} +#smart_editor2 .se2_tool{overflow:visible;position:relative;z-index:25} +/* EDITINGAREA */ +#smart_editor2 .se2_input_area{position:relative;z-index:22;height:400px;margin:0;padding:0;*zoom:1} +#smart_editor2 .se2_input_wysiwyg,#smart_editor2 .se2_input_syntax{display:block;overflow:auto;width:100%;height:100%;margin:0;*margin:-1px 0 0 0;border:0} +/* EDITINGMODE */ +#smart_editor2 .se2_conversion_mode{position:relative;height:15px;padding-top:1px;border-top:1px solid #b5b5b5;background:url("../../img/icon_set.gif?141007") 0 -896px repeat-x} +#smart_editor2 .se2_inputarea_controller{display:block;clear:both;position:relative;width:100%;height:15px;background:url("../../img/icon_set.gif?141007") center -47px no-repeat;text-align:center;cursor:n-resize} +#smart_editor2 .se2_inputarea_controller span{display:block;visibility:visible;height:15px;font-size:0;line-height:0;color:#fff;white-space:nowrap} +#smart_editor2 .ly_controller{display:block;position:absolute;bottom:2px;left:50%;width:287px;margin-left:-148px;padding:8px 0 7px 9px;border:1px solid #827f7c;background:#fffdef} +#smart_editor2 .ly_controller p{color:#666;font-size:11px;letter-spacing:-1px;line-height:11px} +#smart_editor2 .ly_controller .bt_clse,#smart_editor2 .ly_controller .ic_arr{position:absolute;background:url("../../img/ico_extend.png") no-repeat} +#smart_editor2 .ly_controller .bt_clse{top:5px;right:4px;width:14px;height:15px;background-position:1px -43px} +#smart_editor2 .ly_controller .ic_arr{top:25px;left:50%;width:10px;height:6px;margin-left:-5px;background-position:0 -65px} +#smart_editor2 .se2_converter{float:left;position:absolute;top:-1px;right:3px;z-index:20} +#smart_editor2 .se2_converter li{float:left} +#smart_editor2 .se2_converter .se2_to_editor{width:59px;height:15px;background:url("../../img/zh_CN/btn_set.png?160622") 0 -85px no-repeat;vertical-align:top} +#smart_editor2 .se2_converter .se2_to_html{width:59px;height:15px;background:url("../../img/zh_CN/btn_set.png?160622") -59px -70px no-repeat;vertical-align:top} +#smart_editor2 .se2_converter .se2_to_text{width:60px;height:15px;background:url("../../img/zh_CN/btn_set.png?160622") -417px -466px no-repeat;vertical-align:top} +#smart_editor2 .se2_converter .active .se2_to_editor{width:59px;height:15px;background:url("../../img/zh_CN/btn_set.png?160622") 0 -70px no-repeat;vertical-align:top} +#smart_editor2 .se2_converter .active .se2_to_html{width:59px;height:15px;background:url("../../img/zh_CN/btn_set.png?160622") -59px -85px no-repeat;vertical-align:top} +#smart_editor2 .se2_converter .active .se2_to_text{width:60px;height:15px;background:url("../../img/zh_CN/btn_set.png?160622") -417px -481px no-repeat;vertical-align:top} +/* EDITINGAREA_HTMLSRC */ +#smart_editor2 .off .ico_btn,#smart_editor2 .off .se2_more,#smart_editor2 .off .se2_more2,#smart_editor2 .off .se2_font_family,#smart_editor2 .off .se2_font_size,#smart_editor2 .off .se2_bold,#smart_editor2 .off .se2_underline,#smart_editor2 .off .se2_italic,#smart_editor2 .off .se2_tdel,#smart_editor2 .off .se2_fcolor,#smart_editor2 .off .se2_fcolor_more,#smart_editor2 .off .se2_bgcolor,#smart_editor2 .off .se2_bgcolor_more,#smart_editor2 .off .se2_left,#smart_editor2 .off .se2_center,#smart_editor2 .off .se2_right,#smart_editor2 .off .se2_justify,#smart_editor2 .off .se2_ol,#smart_editor2 .off .se2_ul,#smart_editor2 .off .se2_indent,#smart_editor2 .off .se2_outdent,#smart_editor2 .off .se2_lineheight,#smart_editor2 .off .se2_del_style,#smart_editor2 .off .se2_blockquote,#smart_editor2 .off .se2_summary,#smart_editor2 .off .se2_footnote,#smart_editor2 .off .se2_url,#smart_editor2 .off .se2_emoticon,#smart_editor2 .off .se2_character,#smart_editor2 .off .se2_table,#smart_editor2 .off .se2_find,#smart_editor2 .off .se2_spelling,#smart_editor2 .off .se2_sup,#smart_editor2 .off .se2_sub,#smart_editor2 .off .se2_text_tool_more,#smart_editor2 .off .se2_new,#smart_editor2 .off .selected_color,#smart_editor2 .off .se2_lineSticker{-ms-filter:alpha(opacity=50);opacity:.5;cursor:default;filter:alpha(opacity=50)} +/* LAYER */ +#smart_editor2 .se2_text_tool .se2_layer{display:none;float:left;position:absolute;top:20px;left:0;z-index:50;margin:0;padding:0;border:1px solid #bcbbbb;background:#fafafa} +#smart_editor2 .se2_text_tool li.active{z-index:50} +#smart_editor2 .se2_text_tool .active .se2_layer{display:block} +#smart_editor2 .se2_text_tool .active li .se2_layer{display:none} +#smart_editor2 .se2_text_tool .active .active .se2_layer{display:block} +#smart_editor2 .se2_text_tool .se2_layer .se2_in_layer{float:left;margin:0;padding:0;border:1px solid #fff;background:#fafafa} +#smart_editor2 .se2_content_loading{display:none;z-index:10;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center} +#smart_editor2 .se2_content_loading img{position:absolute;top:50%;left:50%;margin:-27px 0 0 -27px} +#smart_editor2 .se2_alert_wrap{display:none;z-index:20;position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;text-align:center} +#smart_editor2 .se2_alert_wrap.active{display:block} +#smart_editor2 .se2_alert_wrap .dimmed{position:absolute;top:0;left:0;width:100%;height:100%;background:#000;opacity:0.4;filter:alpha(opacity=40)} +#smart_editor2 .se2_alert_wrap .ie_cover{position:absolute;top:0;left:0;width:100%;height:100%;background:#fff;opacity:0;filter:alpha(opacity=0)} +#smart_editor2 .se2_alert_wrap .va_line{display:inline-block;height:100%;vertical-align:middle;*zoom:1} +#smart_editor2 .se2_alert_wrap .se2_alert_content{z-index:10;position:relative;display:inline-block;*display:inline;*zoom:1;border:1px solid #727272;background:#fff;padding:26px 33px 22px;vertical-align:middle} +#smart_editor2 .se2_alert_wrap .se2_alert_content{margin-top:47px} +#smart_editor2 .se2_alert_wrap .txt1{color:#333;line-height:18px} +#smart_editor2 .se2_alert_wrap .txt2{margin-top:3px;color:#999} +#smart_editor2 .se2_alert_wrap .btn_close,#smart_editor2 .se2_alert_btns button{background:url("../../img/zh_CN/btn_set.png?160622") no-repeat} +#smart_editor2 .se2_alert_wrap .btn_close{z-index:10;position:absolute;top:7px;right:7px;width:11px;height:11px;background-position:-122px -32px;text-indent:-5000px} +#smart_editor2 .se2_alert_btns{margin-top:19px} +#smart_editor2 .se2_alert_btns button{display:inline;float:none;width:48px;height:27px} +#smart_editor2 .se2_alert_btns button + button{margin-left:10px} +#smart_editor2 .se2_alert_btns .se2_confirm{background-position:-369px -434px} +#smart_editor2 .se2_alert_btns .se2_cancel{background-position:-419px -434px} +/* TEXT_TOOLBAR */ +#smart_editor2 .se2_text_tool{position:relative;clear:both;z-index:30;padding:4px 0 4px 3px;background:#f4f4f4 url("../../img/bg_text_tool.gif") 0 0 repeat-x;border-bottom:1px solid #b5b5b5;*zoom:1} +#smart_editor2 .se2_text_tool:after{content:"";display:block;clear:both} +#smart_editor2 .se2_text_tool ul{float:left;display:inline;margin-right:3px;padding-left:1px;white-space:nowrap} +#smart_editor2 .se2_text_tool li{_display:inline;float:left;position:relative;z-index:30} +#smart_editor2 .se2_text_tool button,#smart_editor2 .se2_multy .se2_icon{width:21px;height:21px;background:url("../../img/zh_CN/text_tool_set.png?140317") no-repeat;vertical-align:top} +#smart_editor2 .se2_text_tool .se2_font_type{position:relative} +#smart_editor2 .se2_text_tool .se2_font_type li{margin-left:3px} +#smart_editor2 .se2_text_tool .se2_font_type button{text-align:left} +#smart_editor2 .se2_text_tool .se2_font_type button.se2_font_family span,#smart_editor2 .se2_text_tool .se2_font_type button.se2_font_size span{display:inline-block;visibility:visible;position:static;width:52px;height:20px;padding:0 0 0 6px;font-size:12px;line-height:20px;*line-height:22px;color:#333;*zoom:1} +#smart_editor2 .se2_text_tool .se2_multy{position:absolute;top:0;right:0;padding-left:0;margin-right:0;white-space:nowrap;border-left:1px solid #e0dedf} +#smart_editor2 .se2_text_tool .se2_multy .se2_mn{float:left;white-space:nowrap} +#smart_editor2 .se2_text_tool .se2_multy button{background-image:none;width:47px} +#smart_editor2 .se2_text_tool .se2_multy .se2_icon{display:inline-block;visibility:visible;overflow:visible;position:static;width:16px;height:29px;margin:-1px 2px 0 -1px;background-position:0 -132px;line-height:30px;vertical-align:top} +#smart_editor2 .se2_text_tool .se2_multy button,#smart_editor2 .se2_text_tool .se2_multy button span{height:29px;line-height:29px} +#smart_editor2 .se2_text_tool .se2_map .se2_icon{background-position:-29px -132px} +#smart_editor2 .se2_text_tool button span.se2_mntxt{display:inline-block;visibility:visible;overflow:visible;_overflow-y:hidden;position:relative;*margin-right:-1px;width:auto;height:29px;font-weight:normal;font-size:11px;line-height:30px;*line-height:29px;_line-height:30px;color:#444;letter-spacing:-1px;vertical-align:top} +#smart_editor2 .se2_text_tool .se2_multy .se2_photo{margin-right:1px} +#smart_editor2 .se2_text_tool .se2_multy .hover .ico_btn{background:#e8e8e8} +#smart_editor2 .se2_text_tool .se2_multy .se2_mn.hover{background:#e0dedf} +/* TEXT_TOOLBAR : ROUNDING */ +#smart_editor2 ul li.first_child button span.tool_bg, #smart_editor2 ul li.last_child button span.tool_bg, #smart_editor2 ul li.single_child button span.tool_bg{visibility:visible;height:21px} +#smart_editor2 ul li.first_child button span.tool_bg{left:-1px;width:3px;background:url("../../img/bg_button_left.gif?20121228") no-repeat} +#smart_editor2 ul li.last_child button span.tool_bg{right:0px;_right:-1px;width:2px;background:url("../../img/bg_button_right.gif") no-repeat} +#smart_editor2 ul li.single_child{padding-right:1px} +#smart_editor2 ul li.single_child button span.tool_bg{left:0;background:url("../../img/bg_button.gif?20121228") no-repeat;width:22px} +#smart_editor2 div.se2_text_tool ul li.hover button span.tool_bg{background-position:0 -21px} +#smart_editor2 div.se2_text_tool ul li.active button span.tool_bg, #smart_editor2 div.se2_text_tool ul li.active li.active button span.tool_bg{background-position:0 -42px} +#smart_editor2 div.se2_text_tool ul li.active li button span.tool_bg{background-position:0 0} +/* TEXT_TOOLBAR : SUB_MENU */ +#smart_editor2 .se2_sub_text_tool{display:none;position:absolute;top:20px;left:0;z-index:40;width:auto;height:29px;padding:0 4px 0 0;border:1px solid #b5b5b5;border-top:1px solid #9a9a9a;background:#f4f4f4} +#smart_editor2 .active .se2_sub_text_tool{display:block} +#smart_editor2 .se2_sub_text_tool ul{float:left;height:25px;margin:0;padding:4px 0 0 4px} +/* TEXT_TOOLBAR : SUB_MENU_SIZE */ +#smart_editor2 .se2_sub_step1{width:88px} +#smart_editor2 .se2_sub_step2{width:199px} +#smart_editor2 .se2_sub_step2_1{width:178px} +/* TEXT_TOOLBAR : BUTTON */ +#smart_editor2 .se2_text_tool .se2_font_family{width:70px;height:21px;background-position:0 -10px} +#smart_editor2 .se2_text_tool .hover .se2_font_family{background-position:0 -72px} +#smart_editor2 .se2_text_tool .active .se2_font_family{background-position:0 -103px} +#smart_editor2 .se2_text_tool .se2_font_size{width:45px;height:21px;background-position:-70px -10px} +#smart_editor2 .se2_text_tool .hover .se2_font_size{background-position:-70px -72px} +#smart_editor2 .se2_text_tool .active .se2_font_size{background-position:-70px -103px} +#smart_editor2 .se2_text_tool .se2_bold{background-position:-115px -10px} +#smart_editor2 .se2_text_tool .hover .se2_bold{background-position:-115px -72px} +#smart_editor2 .se2_text_tool .active .se2_bold{background-position:-115px -103px} +#smart_editor2 .se2_text_tool .se2_underline{background-position:-136px -10px} +#smart_editor2 .se2_text_tool .hover .se2_underline{background-position:-136px -72px} +#smart_editor2 .se2_text_tool .active .se2_underline{background-position:-136px -103px} +#smart_editor2 .se2_text_tool .se2_italic{background-position:-157px -10px} +#smart_editor2 .se2_text_tool .hover .se2_italic{background-position:-157px -72px} +#smart_editor2 .se2_text_tool .active .se2_italic{background-position:-157px -103px} +#smart_editor2 .se2_text_tool .se2_tdel{background-position:-178px -10px} +#smart_editor2 .se2_text_tool .hover .se2_tdel{background-position:-178px -72px} +#smart_editor2 .se2_text_tool .active .se2_tdel{background-position:-178px -103px} +#smart_editor2 .se2_text_tool .se2_fcolor{position:relative;background-position:-199px -10px} +#smart_editor2 .se2_text_tool .hover .se2_fcolor{background-position:-199px -72px} +#smart_editor2 .se2_text_tool .active .se2_fcolor{background-position:-199px -103px} +#smart_editor2 .se2_text_tool .se2_fcolor_more{background-position:-220px -10px;width:10px} +#smart_editor2 .se2_text_tool .hover .se2_fcolor_more{background-position:-220px -72px} +#smart_editor2 .se2_text_tool .active .se2_fcolor_more{background-position:-220px -103px} +#smart_editor2 .se2_text_tool .selected_color{position:absolute;top:14px;left:5px;width:11px;height:3px;font-size:0} +#smart_editor2 .se2_text_tool .se2_ol,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .se2_ol{background-position:-345px -10px} +#smart_editor2 .se2_text_tool .se2_ul,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .se2_ul{background-position:-366px -10px} +#smart_editor2 .se2_text_tool .hover .se2_ol,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .hover .se2_ol{background-position:-345px -72px} +#smart_editor2 .se2_text_tool .hover .se2_ul,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .hover .se2_ul{background-position:-366px -72px} +#smart_editor2 .se2_text_tool .active .se2_ol,#smart_editor2 .se2_text_tool .active .active .se2_ol{background-position:-345px -103px} +#smart_editor2 .se2_text_tool .active .se2_ul,#smart_editor2 .se2_text_tool .active .active .se2_ul{background-position:-366px -103px} +#smart_editor2 .se2_text_tool .se2_indent,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .se2_indent{background-position:-408px -10px} +#smart_editor2 .se2_text_tool .se2_outdent,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .se2_outdent{background-position:-387px -10px} +#smart_editor2 .se2_text_tool .hover .se2_indent,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .hover .se2_indent{background-position:-408px -72px} +#smart_editor2 .se2_text_tool .hover .se2_outdent,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .hover .se2_outdent{background-position:-387px -72px} +#smart_editor2 .se2_text_tool .active .se2_indent,#smart_editor2 .se2_text_tool .active .active .se2_indent{background-position:-408px -103px} +#smart_editor2 .se2_text_tool .active .se2_outdent,#smart_editor2 .se2_text_tool .active .active .se2_outdent{background-position:-387px -103px} +#smart_editor2 .se2_text_tool .se2_lineheight{background-position:-429px -10px} +#smart_editor2 .se2_text_tool .hover .se2_lineheight{background-position:-429px -72px} +#smart_editor2 .se2_text_tool .active .se2_lineheight{background-position:-429px -103px} +#smart_editor2 .se2_text_tool .se2_url{background-position:-513px -10px} +#smart_editor2 .se2_text_tool .hover .se2_url{background-position:-513px -72px} +#smart_editor2 .se2_text_tool .active .se2_url{background-position:-513px -103px} +#smart_editor2 .se2_text_tool .se2_bgcolor{position:relative;background-position:-230px -10px} +#smart_editor2 .se2_text_tool .hover .se2_bgcolor{background-position:-230px -72px} +#smart_editor2 .se2_text_tool .active .se2_bgcolor{background-position:-230px -103px} +#smart_editor2 .se2_text_tool .se2_bgcolor_more{background-position:-251px -10px;width:10px} +#smart_editor2 .se2_text_tool .hover .se2_bgcolor_more{background-position:-251px -72px} +#smart_editor2 .se2_text_tool .active .se2_bgcolor_more{background-position:-251px -103px} +#smart_editor2 .se2_text_tool .se2_left{background-position:-261px -10px} +#smart_editor2 .se2_text_tool .hover .se2_left{background-position:-261px -72px} +#smart_editor2 .se2_text_tool .active .se2_left{background-position:-261px -103px} +#smart_editor2 .se2_text_tool .se2_center{background-position:-282px -10px} +#smart_editor2 .se2_text_tool .hover .se2_center{background-position:-282px -72px} +#smart_editor2 .se2_text_tool .active .se2_center{background-position:-282px -103px} +#smart_editor2 .se2_text_tool .se2_right{background-position:-303px -10px} +#smart_editor2 .se2_text_tool .hover .se2_right{background-position:-303px -72px} +#smart_editor2 .se2_text_tool .active .se2_right{background-position:-303px -103px} +#smart_editor2 .se2_text_tool .se2_justify{background-position:-324px -10px} +#smart_editor2 .se2_text_tool .hover .se2_justify{background-position:-324px -72px} +#smart_editor2 .se2_text_tool .active .se2_justify{background-position:-324px -103px} +#smart_editor2 .se2_text_tool .se2_blockquote{background-position:-471px -10px} +#smart_editor2 .se2_text_tool .hover .se2_blockquote{background-position:-471px -72px} +#smart_editor2 .se2_text_tool .active .se2_blockquote{background-position:-471px -103px} +#smart_editor2 .se2_text_tool .se2_character{background-position:-555px -10px} +#smart_editor2 .se2_text_tool .hover .se2_character{background-position:-555px -72px} +#smart_editor2 .se2_text_tool .active .se2_character{background-position:-555px -103px} +#smart_editor2 .se2_text_tool .se2_table{background-position:-576px -10px} +#smart_editor2 .se2_text_tool .hover .se2_table{background-position:-576px -72px} +#smart_editor2 .se2_text_tool .active .se2_table{background-position:-576px -103px} +#smart_editor2 .se2_text_tool .se2_find{background-position:-597px -10px} +#smart_editor2 .se2_text_tool .hover .se2_find{background-position:-597px -72px} +#smart_editor2 .se2_text_tool .active .se2_find{background-position:-597px -103px} +#smart_editor2 .se2_text_tool .se2_sup{background-position:-660px -10px} +#smart_editor2 .se2_text_tool .hover .se2_sup{background-position:-660px -72px} +#smart_editor2 .se2_text_tool .active .se2_sup{background-position:-660px -103px} +#smart_editor2 .se2_text_tool .se2_sub{background-position:-681px -10px} +#smart_editor2 .se2_text_tool .hover .se2_sub{background-position:-681px -72px} +#smart_editor2 .se2_text_tool .active .se2_sub{background-position:-681px -103px} +#smart_editor2 .se2_text_tool .se2_text_tool_more{background-position:0 -41px;width:13px} +#smart_editor2 .se2_text_tool .se2_text_tool_more span.tool_bg{background:none} +#smart_editor2 .se2_text_tool .hover .se2_text_tool_more{background-position:-13px -41px} +#smart_editor2 .se2_text_tool .active .se2_text_tool_more{background-position:-26px -41px} diff --git a/plugin/editor/smarteditor2/css/zh_CN/smart_editor2_in.css b/plugin/editor/smarteditor2/css/zh_CN/smart_editor2_in.css new file mode 100644 index 000000000..fdecc092d --- /dev/null +++ b/plugin/editor/smarteditor2/css/zh_CN/smart_editor2_in.css @@ -0,0 +1,24 @@ +@charset "UTF-8"; +/* NHN Web Standardization Team (http://html.nhndesign.com/) HHJ 090226 */ +/* COMMON */ +body,.se2_inputarea{margin:0;padding:0;font-family:'돋움',Dotum,Helvetica,Sans-serif;font-size:12px;line-height:1.5} +/* body,.se2_inputarea,.se2_inputarea th,.se2_inputarea td{margin:0;padding:0;font-family:'돋움',Dotum,Helvetica,Sans-serif;font-size:12px;line-height:1.5;color:#666} */ +.se2_inputarea p,.se2_inputarea br{margin:0;padding:0} +.se2_inputarea{margin:15px;word-wrap:break-word;*word-wrap:normal;*word-break:break-all} +.se2_inputarea td{word-break:break-all} +.se2_inputarea_890{width:741px;margin:20px 0 10px 64px} +.se2_inputarea_698{width:548px;margin:20px 0 10px 64px} +@media screen and (-webkit-min-device-pixel-ratio: 0) { + .se2_inputarea td:empty:after,.se2_inputarea td > p:empty:after{content:"\00A0";line-height:1} +} +/* TEXT_TOOLBAR : QUOTE */ +.se2_quote1{margin:0 0 30px 20px;padding:0 8px;border-left:2px solid #ccc;color:#888} +.se2_quote2{margin:0 0 30px 13px;padding:0 8px 0 16px;background:url("../../img/bg_quote2.gif") 0 3px no-repeat;color:#888} +.se2_quote3{margin:0 0 30px;padding:12px 10px 11px;border:1px dashed #ccc;color:#888} +.se2_quote4{margin:0 0 30px;padding:12px 10px 11px;border:1px dashed #66b246;color:#888} +.se2_quote5{margin:0 0 30px;padding:12px 10px 11px;border:1px dashed #ccc;background:#fafafa;color:#888} +.se2_quote6{margin:0 0 30px;padding:12px 10px 11px;border:1px solid #e5e5e5;color:#888} +.se2_quote7{margin:0 0 30px;padding:12px 10px 11px;border:1px solid #66b246;color:#888} +.se2_quote8{margin:0 0 30px;padding:12px 10px 11px;border:1px solid #e5e5e5;background:#fafafa;color:#888} +.se2_quote9{margin:0 0 30px;padding:12px 10px 11px;border:2px solid #e5e5e5;color:#888} +.se2_quote10{margin:0 0 30px;padding:12px 10px 11px;border:2px solid #e5e5e5;background:#fafafa;color:#888} diff --git a/plugin/editor/smarteditor2/css/zh_CN/smart_editor2_items.css b/plugin/editor/smarteditor2/css/zh_CN/smart_editor2_items.css new file mode 100644 index 000000000..6cdfa1efb --- /dev/null +++ b/plugin/editor/smarteditor2/css/zh_CN/smart_editor2_items.css @@ -0,0 +1,447 @@ +@charset "UTF-8"; +/* NHN Web Standardization Team (http://html.nhndesign.com/) HHJ 090226 */ +/* TEXT_TOOLBAR : FONTNAME */ +#smart_editor2 .se2_tool .se2_l_font_fam{width:186px;margin:0;padding:0} +#smart_editor2 .se2_tool .se2_l_font_fam li{display:block;width:186px;height:21px;margin:0;padding:0;color:#333;cursor:pointer} +#smart_editor2 .se2_l_font_fam .hover,#smart_editor2 .se2_l_font_fam .active{background:#ebebeb} +#smart_editor2 .se2_l_font_fam button{width:184px;height:21px;margin:0;padding:2px 0 2px 0px;background:none;text-align:left} +#smart_editor2 .se2_l_font_fam button span{display:block;visibility:visible;overflow:visible;position:relative;top:auto;left:auto;width:auto;height:auto;margin:0 0 0 4px;padding:0;font-size:12px;line-height:normal;color:#333} +#smart_editor2 .se2_l_font_fam button span span{display:inline;visibility:visible;overflow:visible;width:auto;height:auto;margin:0 0 0 4px;font-family:Verdana;font-size:12px;line-height:14px;color:#888} +#smart_editor2 .se2_l_font_fam button span em{visibility:visible;overflow:auto;position:static;width:auto;height:auto;margin-right:-4px;font-size:12px;color:#888} +#smart_editor2 .se2_l_font_fam .se2_division{width:162px;height:2px !important;margin:1px 0 1px 0px;border:0;background:url("../../img/bg_line1.gif") 0 0 repeat-x;font-size:0;cursor:default} +/* TEXT_TOOLBAR : FONTSIZE */ +#smart_editor2 .se2_tool .se2_l_font_size{width:302px;margin:0;padding:0} +#smart_editor2 .se2_tool .se2_l_font_size li{width:302px;margin:0;padding:0;color:#333;cursor:pointer} +#smart_editor2 .se2_l_font_size .hover,#smart_editor2 .se2_l_font_size .active{background:#ebebeb} +#smart_editor2 .se2_l_font_size button{width:300px;height:auto;margin:0;padding:2px 0 1px 0px;*padding:4px 0 1px 0px;background:none;text-align:left} +#smart_editor2 .se2_l_font_size button span{display:block;visibility:visible;overflow:visible;position:relative;top:auto;left:auto;width:auto;height:auto;margin:0 0 0 4px;padding:0;line-height:normal;color:#373737;letter-spacing:0px} +#smart_editor2 .se2_l_font_size button span span{display:inline;margin:0 0 0 5px;padding:0} +#smart_editor2 .se2_l_font_size span em{visibility:visible;overflow:auto;position:static;width:auto;height:auto;color:#888} +/* TEXT_TOOLBAR : FONTCOLOR */ +#smart_editor2 .se2_palette{float:left;position:relative;width:225px;margin:0;padding:11px 0 10px 0} +#smart_editor2 .se2_palette .se2_pick_color{_display:inline;float:left;clear:both;width:205px;margin:0 0 0 11px;padding:0} +#smart_editor2 .se2_palette .se2_pick_color li{float:left;width:12px;height:12px;margin:0;padding:0} +#smart_editor2 .se2_palette .se2_pick_color li button{width:11px;height:11px;border:0} +#smart_editor2 .se2_palette .se2_pick_color li button span{display:block;visibility:visible;overflow:visible;position:absolute;top:1px;left:1px;width:11px;height:11px} +#smart_editor2 .se2_palette .se2_pick_color li button span span{visibility:hidden;overflow:hidden;position:absolute;top:0;left:0;width:0;height:0} +#smart_editor2 .se2_palette .se2_pick_color .hover button,#smart_editor2 .se2_palette .se2_pick_color .active button{width:11px;height:11px;border:1px solid #666} +#smart_editor2 .se2_palette .se2_pick_color .hover span,#smart_editor2 .se2_palette .se2_pick_color .active span{width:7px;height:7px;border:1px solid #fff} +#smart_editor2 .se2_palette .se2_view_more{_display:inline;float:left;width:46px;height:23px;margin:1px 0 0 1px;background:url("../../img/zh_CN/btn_set.png?160622") 0 -47px no-repeat} +#smart_editor2 .se2_palette .se2_view_more2{_display:inline;float:left;width:46px;height:23px;margin:1px 0 0 1px;background:url("../../img/zh_CN/btn_set.png?160622") 0 -24px no-repeat} +#smart_editor2 .se2_palette h4{_display:inline;float:left;width:203px;margin:9px 0 0 11px;padding:10px 0 4px 0;background:url("../../img/bg_line1.gif") repeat-x;font-weight:normal;font-size:12px;line-height:14px;color:#333;letter-spacing:-1px} +#smart_editor2 .se2_palette2{float:left;_float:none;width:214px;margin:9px 0 0 0;padding:11px 0 0 11px;background:url("../../img/bg_line1.gif") repeat-x} +#smart_editor2 .se2_palette2 .se2_color_set{float:left} +#smart_editor2 .se2_palette2 .se2_selected_color{_display:inline;float:left;width:83px;height:18px;margin:0;border:1px solid #c7c7c7;background:#fff} +#smart_editor2 .se2_palette2 .se2_selected_color span{_display:inline;float:left;width:79px;height:14px;margin:2px} +#smart_editor2 .se2_palette2 .input_ty1{_display:inline;float:left;width:67px;height:16px;margin:0 3px 0 3px;padding:2px 2px 0 4px;font-family:tahoma;font-size:11px} +#smart_editor2 .se2_palette2 button.se2_btn_insert{float:left;width:35px;height:21px;margin-left:2px;padding:0;background:url("../../img/zh_CN/btn_set.png?160622") -80px 0 no-repeat} +#smart_editor2 .se2_gradation1{float:left;_float:none;width:201px;height:128px;margin:4px 0 0 0;border:1px solid #c7c7c7;cursor:crosshair} +#smart_editor2 .se2_gradation2{float:left;_float:none;width:201px;height:10px;margin:4px 0 1px 0;border:1px solid #c7c7c7;cursor:crosshair} +/* TEXT_TOOLBAR : BGCOLOR */ +#smart_editor2 .se2_palette_bgcolor{width:225px;margin:11px 0 0;padding:0} +#smart_editor2 .se2_palette_bgcolor .se2_background{width:205px;margin:0 11px 0 11px} +#smart_editor2 .se2_palette_bgcolor .se2_background li{width:68px;height:20px} +#smart_editor2 .se2_palette_bgcolor .se2_background button{width:67px;height:19px;border:0} +#smart_editor2 .se2_palette_bgcolor .se2_background span{left:0;display:block;visibility:visible;overflow:visible;width:65px;height:17px;padding:0} +#smart_editor2 .se2_palette_bgcolor .se2_background span span{display:block;visibility:visible;overflow:visible;width:64px;height:16px;padding:3px 0 0 3px;font-size:11px;line-height:14px;text-align:left} +#smart_editor2 .se2_palette_bgcolor .se2_background .hover span{width:65px;height:17px;border:1px solid #666} +#smart_editor2 .se2_palette_bgcolor .se2_background .hover span span{width:62px;height:14px;padding:1px 0 0 1px;border:1px solid #fff} +/* TEXT_TOOLBAR : LINEHEIGHT */ +#smart_editor2 .se2_l_line_height{width:107px;margin:0;padding:0} +#smart_editor2 .se2_l_line_height li{width:107px;margin:0;padding:0;border-top:0;border-bottom:0;color:#333;cursor:pointer} +#smart_editor2 .se2_l_line_height .hover{background:#ebebeb} +#smart_editor2 .se2_l_line_height button{width:105px;height:19px;margin:0;padding:3px 0 2px 0px;background:none;text-align:left} +#smart_editor2 .se2_l_line_height button span{visibility:visible;overflow:visible;position:relative;width:auto;height:auto;margin:0;padding:0 0 0 15px;font-size:12px;line-height:normal;color:#373737} +#smart_editor2 .se2_l_line_height li button.active span{background:url("../../img/icon_set.gif?141007") 5px -30px no-repeat} +#smart_editor2 .se2_l_line_height_user{clear:both;width:83px;margin:5px 0 0 12px;padding:10px 0 0 0;_padding:11px 0 0 0;background:url("../../img/bg_line1.gif") repeat-x} +#smart_editor2 .se2_l_line_height_user h3{margin:0 0 4px 0;_margin:0 0 2px -1px;padding:0;line-height:14px;color:#000;letter-spacing:-1px} +#smart_editor2 .se2_l_line_height_user .bx_input{display:block;position:relative;width:83px} +#smart_editor2 .se2_l_line_height_user .btn_up{position:absolute;top:2px;*top:3px;left:68px;width:13px;height:8px;background:url("../../img/zh_CN/btn_set.png?160622") -86px -54px no-repeat} +#smart_editor2 .se2_l_line_height_user .btn_down{position:absolute;top:10px;*top:11px;left:68px;width:13px;height:8px;background:url("../../img/zh_CN/btn_set.png?160622") -86px -62px no-repeat} +#smart_editor2 .se2_l_line_height_user .btn_area{margin:5px 0 10px 0} +#smart_editor2 .se2_tool .btn_area .se2_btn_apply3{width:41px;height:24px;background:url("../../img/zh_CN/btn_set.png?160622") no-repeat} +#smart_editor2 .se2_tool .btn_area .se2_btn_cancel3{width:39px;height:24px;margin-left:3px;background:url("../../img/zh_CN/btn_set.png?160622") -41px 0 no-repeat} +/* TEXT_TOOLBAR : QUOTE */ +#smart_editor2 .se2_quote{width:425px;height:56px} +#smart_editor2 .se2_quote ul{_display:inline;float:left;margin:11px 0 0 9px;padding:0} +#smart_editor2 .se2_quote li{_display:inline;float:left;margin:0 0 0 2px;padding:0} +#smart_editor2 .se2_quote button{width:34px;height:34px;margin:0;padding:0;background:url("../../img/zh_CN/btn_set.png?160622") no-repeat;cursor:pointer} +#smart_editor2 .se2_quote button span{left:0;display:block;visibility:visible;overflow:visible;width:32px;height:32px;margin:0;padding:0;border:1px solid #c7c7c7} +#smart_editor2 .se2_quote button span span{visibility:hidden;overflow:hidden;position:absolute;top:0;left:0;width:0;height:0;margin:0;padding:0} +#smart_editor2 .se2_quote .se2_quote1{background-position:1px -375px} +#smart_editor2 .se2_quote .se2_quote2{background-position:-32px -375px} +#smart_editor2 .se2_quote .se2_quote3{background-position:-65px -375px} +#smart_editor2 .se2_quote .se2_quote4{background-position:-98px -375px} +#smart_editor2 .se2_quote .se2_quote5{background-position:-131px -375px} +#smart_editor2 .se2_quote .se2_quote6{background-position:-164px -375px} +#smart_editor2 .se2_quote .se2_quote7{background-position:-197px -375px} +#smart_editor2 .se2_quote .se2_quote8{background-position:-230px -375px} +#smart_editor2 .se2_quote .se2_quote9{background-position:-263px -375px} +#smart_editor2 .se2_quote .se2_quote10{background-position:-296px -375px} +#smart_editor2 .se2_quote .hover button span,#smart_editor2 .se2_quote .active button span{width:30px;height:30px;margin:0;padding:0;border:2px solid #44b525} +#smart_editor2 .se2_quote .hover button span span,#smart_editor2 .se2_quote .active button span span{visibility:hidden;overflow:hidden;position:absolute;top:0;left:0;width:0;height:0;margin:0;padding:0} +#smart_editor2 .se2_quote .se2_cancel2{float:left;width:40px;height:35px;margin:11px 0 0 5px;background:url("../../img/zh_CN/btn_set.png?160622") -46px -24px no-repeat} +#smart_editor2 .se2_quote .se2_cancel2 span{visibility:hidden;overflow:hidden;position:absolute;top:0;left:0;width:0;height:0;margin:0;padding:0} +/* TEXT_TOOLBAR : HYPERLINK */ +#smart_editor2 .se2_url2{width:281px;padding:11px 11px 6px 11px;color:#666} +#smart_editor2 .se2_url2 .input_ty1{display:block;width:185px;height:16px;margin:0 5px 5px 0;*margin:-1px 5px 5px 0;padding:5px 2px 0 4px} +#smart_editor2 .se2_url2 .se2_url_new{width:15px;height:15px;margin:-1px 3px 1px -1px;*margin:-2px 3px 2px -1px;vertical-align:middle} +#smart_editor2 .se2_url2 label{font-size:11px;line-height:14px;vertical-align:middle} +#smart_editor2 .se2_url2 .se2_apply{position:absolute;top:13px;right:51px;width:41px;height:24px;margin:-1px 3px 1px 0;background:url("../../img/zh_CN/btn_set.png?160622") no-repeat} +#smart_editor2 .se2_url2 .se2_cancel{position:absolute;top:13px;right:9px;width:39px;height:24px;margin:-1px 3px 1px 0;background:url("../../img/zh_CN/btn_set.png?160622") -41px 0 no-repeat} +/* TEXT_TOOLBAR : SCHARACTER */ +#smart_editor2 .se2_bx_character{width:469px;height:272px;margin:0;padding:0;background:url("../../img/bx_set_110302.gif") 9px -1230px no-repeat} +#smart_editor2 .se2_bx_character .se2_char_tab{_display:inline;float:left;position:relative;width:443px;margin:11px 10px 200px 11px;padding:0 0 0 1px} +#smart_editor2 .se2_bx_character .se2_char_tab li{position:static;margin:0 0 0 -1px;padding:0} +#smart_editor2 .se2_bx_character .se2_char1{width:77px;height:26px;background:url("../../img/zh_CN/btn_set.png?160622") 0 -204px no-repeat} +#smart_editor2 .se2_bx_character .se2_char2{width:90px;height:26px;background:url("../../img/zh_CN/btn_set.png?160622") -76px -204px no-repeat} +#smart_editor2 .se2_bx_character .se2_char3{width:84px;height:26px;background:url("../../img/zh_CN/btn_set.png?160622") -165px -204px no-repeat} +#smart_editor2 .se2_bx_character .se2_char4{width:52px;height:26px;background:url("../../img/zh_CN/btn_set.png?160622") -248px -204px no-repeat} +#smart_editor2 .se2_bx_character .se2_char5{width:91px;height:26px;background:url("../../img/zh_CN/btn_set.png?160622") -299px -204px no-repeat} +#smart_editor2 .se2_bx_character .se2_char6{width:54px;height:26px;background:url("../../img/zh_CN/btn_set.png?160622") -389px -204px no-repeat} +#smart_editor2 .se2_bx_character .active .se2_char1{width:77px;height:26px;background:url("../../img/zh_CN/btn_set.png?160622") 0 -230px no-repeat} +#smart_editor2 .se2_bx_character .active .se2_char2{width:90px;height:26px;background:url("../../img/zh_CN/btn_set.png?160622") -76px -230px no-repeat} +#smart_editor2 .se2_bx_character .active .se2_char3{width:84px;height:26px;background:url("../../img/zh_CN/btn_set.png?160622") -165px -230px no-repeat} +#smart_editor2 .se2_bx_character .active .se2_char4{width:52px;height:26px;background:url("../../img/zh_CN/btn_set.png?160622") -248px -230px no-repeat} +#smart_editor2 .se2_bx_character .active .se2_char5{width:91px;height:26px;background:url("../../img/zh_CN/btn_set.png?160622") -299px -230px no-repeat} +#smart_editor2 .se2_bx_character .active .se2_char6{width:54px;height:26px;background:url("../../img/zh_CN/btn_set.png?160622") -389px -230px no-repeat} +#smart_editor2 .se2_bx_character .se2_s_character{display:none;position:absolute;top:26px;left:0;width:448px;height:194px;margin:0;padding:0} +#smart_editor2 .se2_bx_character .active .se2_s_character{display:block} +#smart_editor2 .se2_bx_character .se2_s_character ul{float:left;width:422px;height:172px;margin:0;padding:9px 0 0 11px} +#smart_editor2 .se2_bx_character .se2_s_character li{_display:inline;float:left;position:relative;width:20px;height:18px;margin:0 0 1px 1px;background:#fff} +#smart_editor2 .se2_bx_character .se2_s_character button{width:20px;height:18px;margin:0;padding:2px;background:none} +#smart_editor2 .se2_bx_character .se2_s_character .hover,#smart_editor2 .se2_bx_character .se2_s_character .active{background:url("../../img/zh_CN/btn_set.png?160622") -446px -274px no-repeat} +#smart_editor2 .se2_bx_character .se2_s_character button span{left:0;display:block;visibility:visible;overflow:visible;width:14px;height:16px;margin:3px 0 0 3px;border:0;background:none;font-size:12px;line-height:normal} +#smart_editor2 .se2_apply_character{clear:both;position:relative;padding:0 0 0 11px} +#smart_editor2 .se2_apply_character label{margin:0 3px 0 0;font-size:12px;color:#666;letter-spacing:-1px} +#smart_editor2 .se2_apply_character .input_ty1{width:283px;height:17px;margin:-1px 5px 1px 0;padding:4px 0 0 5px;font-size:12px;color:#666;letter-spacing:0;vertical-align:middle} +#smart_editor2 .se2_apply_character .se2_confirm{width:41px;height:24px;margin-right:3px;background:url("../../img/zh_CN/btn_set.png?160622") no-repeat;vertical-align:middle} +#smart_editor2 .se2_apply_character .se2_cancel{width:39px;height:24px;background:url("../../img/zh_CN/btn_set.png?160622") -41px 0 no-repeat;vertical-align:middle} +/* TEXT_TOOLBAR : TABLECREATOR */ +#smart_editor2 .se2_table_set{position:relative;width:166px;margin:3px 11px 0 11px;padding:8px 0 0 0} +#smart_editor2 .se2_table_set .se2_cell_num{float:left;width:73px} +#smart_editor2 .se2_table_set .se2_cell_num dt{float:left;clear:both;width:17px;height:23px;margin:0;padding:0} +#smart_editor2 .se2_table_set .se2_cell_num dt label{display:block;margin:5px 0 0 0;font-size:11px;color:#666} +#smart_editor2 .se2_table_set .se2_cell_num dd{float:left;position:relative;width:54px;height:23px;margin:0;padding:0} +#smart_editor2 .se2_table_set .se2_cell_num .input_ty2{display:block;width:32px;height:16px;*margin:-1px 0 0 0;padding:2px 19px 0 0px;border:1px solid #c7c7c7;font-family:tahoma,verdana,times New Roman;font-size:11px;color:#666;text-align:right;*direction:rtl} +#smart_editor2 .se2_table_set .se2_cell_num .input_ty2::-ms-clear{display:none} +#smart_editor2 .se2_table_set .se2_pre_table{float:right;width:91px;height:43px;background:#c7c7c7;border-spacing:1px} +#smart_editor2 .se2_table_set .se2_pre_table tr{background:#fff} +#smart_editor2 .se2_table_set .se2_pre_table td{font-size:0;line-height:0} +#smart_editor2 .se2_table_set .se2_add{position:absolute;top:2px;right:3px;width:13px;height:8px;background:url("../../img/zh_CN/btn_set.png?160622") -86px -54px no-repeat} +#smart_editor2 .se2_table_set .se2_del{position:absolute;top:10px;right:3px;width:13px;height:8px;background:url("../../img/zh_CN/btn_set.png?160622") -86px -62px no-repeat} +/* TEXT_TOOLBAR : TABLEEDITOR */ +#smart_editor2 .se2_table_set .se2_t_proper1{float:left;width:166px;margin:7px 0 0 0;padding:10px 0 5px;background:url("../../img/bg_line1.gif") repeat-x} +#smart_editor2 .se2_table_set .se2_t_proper1 dt{width:166px;margin:0 0 6px 0} +#smart_editor2 .se2_table_set .se2_t_proper1 dd{width:166px} +#smart_editor2 .se2_table_set .se2_t_proper1 dt input{width:15px;height:15px;margin:-1px 3px 1px 0;_margin:-2px 3px 2px 0;vertical-align:middle} +#smart_editor2 .se2_table_set .se2_t_proper1 dt label{font-weight:bold;font-size:11px;color:#666;letter-spacing:-1px;vertical-align:middle} +#smart_editor2 .se2_table_set .se2_t_proper1_1{float:left;position:relative;z-index:59;width:166px;margin:1px 0 0 0} +#smart_editor2 .se2_table_set .se2_t_proper1_2{z-index:54;margin:0} +#smart_editor2 .se2_table_set .se2_t_proper1_3{z-index:53;margin:0} +#smart_editor2 .se2_table_set .se2_t_proper1_4{z-index:52;margin:0} +#smart_editor2 .se2_table_set .se2_t_proper1_1 dt{_display:inline;float:left;clear:both;width:66px;height:22px;margin:1px 0 0 18px} +#smart_editor2 .se2_table_set .se2_t_proper1_1 dt label{display:block;margin:4px 0 0 0;font-weight:normal;font-size:11px;color:#666;letter-spacing:-1px} +#smart_editor2 .se2_table_set .se2_t_proper1_1 dd{float:left;position:relative;width:82px;height:23px} +#smart_editor2 .se2_table_set .se2_t_proper1_1 .input_ty1{width:72px;height:16px;*margin:-1px 0 0 0;padding:2px 2px 0 6px;font-family:tahoma,verdana,times New Roman;font-size:11px;color:#666} +#smart_editor2 .se2_table_set .se2_t_proper1_1 .input_ty3{float:left;width:49px;height:16px;margin:0 3px 0 0;padding:2px 4px 0 4px;border:1px solid #c7c7c7;font-family:tahoma,verdana,times New Roman;font-size:11px;color:#666} +#smart_editor2 .se2_table_set .se2_t_proper1_1 .se2_add{top:2px;right:2px} +#smart_editor2 .se2_table_set .se2_t_proper1_1 .se2_del{top:10px;right:2px} +#smart_editor2 .se2_table_set .se2_t_proper1_1 .se2_color_set .input_ty1{_display:inline;float:left;width:67px;height:16px;margin:0 3px 0 3px;padding:2px 2px 0 4px;font-family:tahoma,verdana,times New Roman;font-size:11px} +#smart_editor2 .se2_select_ty1{position:relative;width:80px;height:18px;border:1px solid #c7c7c7;background:#fff;font-size:11px;line-height:14px;text-align:left} +#smart_editor2 .se2_select_ty1 span{float:left;width:54px;height:18px;margin:0 0 0 5px;font-size:11px;line-height:14px;color:#666} +#smart_editor2 .se2_select_ty1 .se2_b_style0{position:relative;top:3px;left:-3px;white-space:nowrap} +#smart_editor2 .se2_select_ty1 .se2_b_style1{height:15px;margin:3px 0 0 4px;font-size:11px;line-height:14px;color:#666;letter-spacing:-1px} +#smart_editor2 .se2_select_ty1 .se2_b_style2{background:url("../../img/bg_set.gif") 0 -50px repeat-x} +#smart_editor2 .se2_select_ty1 .se2_b_style3{background:url("../../img/bg_set.gif") 0 -68px repeat-x} +#smart_editor2 .se2_select_ty1 .se2_b_style4{background:url("../../img/bg_set.gif") 0 -85px repeat-x} +#smart_editor2 .se2_select_ty1 .se2_b_style5{background:url("../../img/bg_set.gif") 0 -103px repeat-x} +#smart_editor2 .se2_select_ty1 .se2_b_style6{background:url("../../img/bg_set.gif") 0 -121px repeat-x} +#smart_editor2 .se2_select_ty1 .se2_b_style7{background:url("../../img/bg_set.gif") 0 -139px repeat-x} +#smart_editor2 .se2_select_ty1 .se2_view_more{position:absolute;top:1px;right:1px;width:13px;height:16px;background:url("../../img/zh_CN/btn_set.png?160622") -112px -54px no-repeat} +#smart_editor2 .se2_select_ty1 .se2_view_more2{position:absolute;top:1px;right:1px;width:13px;height:16px;background:url("../../img/zh_CN/btn_set.png?160622") -99px -54px no-repeat} +/* TEXT_TOOLBAR : TABLEEDITOR > BORDER */ +#smart_editor2 .se2_table_set .se2_b_t_b1{border-top:1px solid #b1b1b1} +#smart_editor2 .se2_layer_b_style{position:absolute;top:20px;right:0px;width:80px;padding-bottom:1px;border:1px solid #c7c7c7;border-top:1px solid #a8a8a8;background:#fff} +#smart_editor2 .se2_layer_b_style ul{width:80px;margin:0;padding:1px 0 0 0} +#smart_editor2 .se2_layer_b_style li{width:80px;height:18px;margin:0;padding:0} +#smart_editor2 .se2_layer_b_style .hover,#smart_editor2 .se2_layer_b_style .active{background:#ebebeb} +#smart_editor2 .se2_layer_b_style button{width:80px;height:18px;background:none} +#smart_editor2 .se2_layer_b_style button span{left:0;display:block;visibility:visible;overflow:visible;width:71px;height:18px;margin:0 0 0 5px;font-size:11px;line-height:15px;text-align:left} +#smart_editor2 .se2_layer_b_style button span span{visibility:hidden;overflow:hidden;position:absolute;top:0;left:0;width:0;height:0} +#smart_editor2 .se2_layer_b_style .se2_b_style1 span{margin:3px 0 0 4px;font-size:11px;line-height:14px;color:#666;letter-spacing:-1px} +#smart_editor2 .se2_layer_b_style .se2_b_style2 span{background:url("../../img/bg_set.gif") 0 -50px repeat-x} +#smart_editor2 .se2_layer_b_style .se2_b_style3 span{background:url("../../img/bg_set.gif") 0 -68px repeat-x} +#smart_editor2 .se2_layer_b_style .se2_b_style4 span{background:url("../../img/bg_set.gif") 0 -86px repeat-x} +#smart_editor2 .se2_layer_b_style .se2_b_style5 span{background:url("../../img/bg_set.gif") 0 -103px repeat-x} +#smart_editor2 .se2_layer_b_style .se2_b_style6 span{background:url("../../img/bg_set.gif") 0 -121px repeat-x} +#smart_editor2 .se2_layer_b_style .se2_b_style7 span{background:url("../../img/bg_set.gif") 0 -139px repeat-x} +/* TEXT_TOOLBAR : TABLEEDITOR > COLOR */ +#smart_editor2 .se2_pre_color{float:left;width:18px;height:18px;border:1px solid #c7c7c7} +#smart_editor2 .se2_pre_color button{float:left;width:14px;height:14px;margin:2px 0 0 2px;padding:0} +#smart_editor2 .se2_pre_color button span{overflow:hidden;position:absolute;top:-10000px;left:-10000px;z-index:-100;width:0;height:0} +/* TEXT_TOOLBAR : TABLEEDITOR > DIMMED */ +#smart_editor2 .se2_table_set .se2_t_dim1{clear:both;position:absolute;top:71px;left:16px;z-index:60;width:157px;height:118px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_table_set .se2_t_dim2{position:absolute;top:116px;left:16px;z-index:55;width:157px;height:45px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_table_set .se2_t_dim3{clear:both;position:absolute;top:192px;left:16px;z-index:51;width:157px;height:39px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +/* TEXT_TOOLBAR : TABLEEDITOR > STYLE PREVIEW */ +#smart_editor2 .se2_table_set .se2_t_proper2{float:left;position:relative;z-index:50;width:166px;margin:2px 0 0 0} +#smart_editor2 .se2_table_set .se2_t_proper2 dt{float:left;width:84px;height:33px;margin:4px 0 0 0} +#smart_editor2 .se2_table_set .se2_t_proper2 dt input{width:15px;height:15px;margin:-1px 3px 1px 0;_margin:-2px 3px 2px 0;vertical-align:middle} +#smart_editor2 .se2_table_set .se2_t_proper2 dt label{font-weight:bold;font-size:11px;color:#666;letter-spacing:-1px;vertical-align:middle} +#smart_editor2 .se2_table_set .se2_t_proper2 dd{float:left;width:66px;height:33px} +#smart_editor2 .se2_select_ty2{position:relative;width:65px;height:31px;border:1px solid #c7c7c7;background:#fff;font-size:11px;line-height:14px;text-align:left} +#smart_editor2 .se2_select_ty2 span{float:left;width:45px;height:25px;margin:3px 0 0 3px;background:url("../../img/zh_CN/btn_set.png?160622") repeat-x} +#smart_editor2 .se2_select_ty2 .se2_t_style1{background-position:0 -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style2{background-position:-46px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style3{background-position:-92px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style4{background-position:-138px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style5{background-position:-184px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style6{background-position:-230px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style7{background-position:-276px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style8{background-position:-322px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style9{background-position:0 -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style10{background-position:-46px -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style11{background-position:-92px -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style12{background-position:-138px -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style13{background-position:-184px -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style14{background-position:-230px -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style15{background-position:-276px -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style16{background-position:-322px -436px} +#smart_editor2 .se2_select_ty2 .se2_view_more{position:absolute;top:1px;right:1px;_right:0px;width:13px !important;height:29px !important;background:url("../../img/zh_CN/btn_set.png?160622") -355px -48px no-repeat !important} +#smart_editor2 .se2_select_ty2 .se2_view_more2{position:absolute;top:1px;right:1px;_right:0px;width:13px !important;height:29px !important;background:url("../../img/zh_CN/btn_set.png?160622") -368px -48px no-repeat !important} +#smart_editor2 .se2_select_ty2 .se2_view_more span{display:none} +/* TEXT_TOOLBAR : TABLEEDITOR > STYLE */ +#smart_editor2 .se2_layer_t_style{position:absolute;top:33px;right:15px;width:208px;border:1px solid #c7c7c7;border-top:1px solid #a8a8a8;background:#fff} +#smart_editor2 .se2_layer_t_style ul{width:204px;height:126px;margin:1px 2px;padding:1px 0 0 0;background:#fff} +#smart_editor2 .se2_layer_t_style li{_display:inline;float:left;width:45px;height:25px;margin:1px;padding:1px;border:1px solid #fff} +#smart_editor2 .se2_layer_t_style .hover,#smart_editor2 .se2_layer_t_style .active{border:1px solid #666;background:#fff} +#smart_editor2 .se2_layer_t_style button{width:45px;height:25px;background:url("../../img/zh_CN/btn_set.png?160622") repeat-x !important} +#smart_editor2 .se2_layer_t_style .se2_t_style1{background-position:0 -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style2{background-position:-46px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style3{background-position:-92px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style4{background-position:-138px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style5{background-position:-184px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style6{background-position:-230px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style7{background-position:-276px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style8{background-position:-322px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style9{background-position:0 -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style10{background-position:-46px -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style11{background-position:-92px -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style12{background-position:-138px -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style13{background-position:-184px -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style14{background-position:-230px -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style15{background-position:-276px -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style16{background-position:-322px -436px !important} +#smart_editor2 .se2_table_set .se2_btn_area{float:left;width:166px;margin:6px 0 0 0;padding:12px 0 8px 0;background:url("../../img/bg_line1.gif") repeat-x;text-align:center} +#smart_editor2 .se2_table_set button.se2_apply{width:41px;height:24px;margin-right:3px;background:url("../../img/zh_CN/btn_set.png?160622") no-repeat} +#smart_editor2 .se2_table_set button.se2_cancel{width:39px;height:24px;background:url("../../img/zh_CN/btn_set.png?160622") -41px 0 no-repeat} +#smart_editor2 .se2_table_set .se2_rd{width:14px;height:14px;vertical-align:middle} +#smart_editor2 .se2_table_set .se2_celltit{font-size:11px;font-size:11px;color:#666;letter-spacing:-1px} +#smart_editor2 .se2_table_set dt label.se2_celltit{display:inline} +/* TEXT_TOOLBAR : FINDREPLACE */ +#smart_editor2 .se2_bx_find_revise{position:relative;width:255px;margin:0;padding:0} +#smart_editor2 .se2_bx_find_revise .se2_close{position:absolute;top:5px;right:8px;width:20px;height:20px;background:url("../../img/zh_CN/btn_set.png?160622") -151px -1px no-repeat} +#smart_editor2 .se2_bx_find_revise h3{margin:0;padding:10px 0 13px 10px;background:url("../../img/bg_find_h3.gif") 0 -1px repeat-x;font-size:12px;line-height:14px;letter-spacing:-1px} +#smart_editor2 .se2_bx_find_revise ul{position:relative;margin:8px 0 0 0;padding:0 0 0 12px} +#smart_editor2 .se2_bx_find_revise ul li{_display:inline;float:left;position:static;margin:0 0 0 -1px;padding:0} +#smart_editor2 .se2_bx_find_revise .se2_tabfind{width:117px;height:26px;background:url("../../img/zh_CN/btn_set.png?160622") 0 -100px no-repeat} +#smart_editor2 .se2_bx_find_revise .se2_tabrevise{width:117px;height:26px;background:url("../../img/zh_CN/btn_set.png?160622") -116px -100px no-repeat} +#smart_editor2 .se2_bx_find_revise .active .se2_tabfind{width:117px;height:26px;background:url("../../img/zh_CN/btn_set.png?160622") 0 -126px no-repeat} +#smart_editor2 .se2_bx_find_revise .active .se2_tabrevise{width:117px;height:26px;background:url("../../img/zh_CN/btn_set.png?160622") -116px -126px no-repeat} +#smart_editor2 .se2_bx_find_revise .se2_in_bx_find dl{_display:inline;float:left;width:223px;margin:0 0 0 9px;padding:7px 0 13px 14px;background:url("../../img/bx_set_110302.gif") -289px -1518px no-repeat} +#smart_editor2 .se2_bx_find_revise .se2_in_bx_revise dl{_display:inline;float:left;width:223px;margin:0 0 0 9px;padding:7px 0 13px 14px;background:url("../../img/bx_set_110302.gif") -289px -1619px no-repeat} +#smart_editor2 .se2_bx_find_revise dt{_display:inline;float:left;clear:both;width:55px;margin:1px 0 2px 0} +#smart_editor2 .se2_bx_find_revise dd{float:left;margin:0 0 2px 0} +#smart_editor2 .se2_bx_find_revise label{float:left;padding:5px 0 0 0;font-size:11px;color:#666;letter-spacing:-2px} +#smart_editor2 .se2_bx_find_revise input{float:left;width:151px;height:12px;margin:1px 0 0 0;padding:3px 2px 3px 4px;font-size:12px;color:#666} +#smart_editor2 .se2_bx_find_revise .se2_find_btns{float:left;clear:both;width:255px;padding:8px 0 10px 0;text-align:center} +#smart_editor2 .se2_bx_find_revise .se2_find_next{width:81px;height:24px;margin:0 3px 0 0;background:url("../../img/zh_CN/btn_set.png?160622") -180px -48px no-repeat} +#smart_editor2 .se2_bx_find_revise .se2_find_next2{width:78px;height:24px;margin:0 3px 0 0;background:url("../../img/zh_CN/btn_set.png?160622") -180px -24px no-repeat} +#smart_editor2 .se2_bx_find_revise .se2_revise1{width:52px;height:24px;margin:0 3px 0 0;background:url("../../img/zh_CN/btn_set.png?160622") -261px -48px no-repeat} +#smart_editor2 .se2_bx_find_revise .se2_revise2{width:55px;height:24px;margin:0 3px 0 0;background:url("../../img/zh_CN/btn_set.png?160622") -259px -24px no-repeat} +#smart_editor2 .se2_bx_find_revise .se2_cancel{width:39px;height:24px;background:url("../../img/zh_CN/btn_set.png?160622") -41px 0 no-repeat} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE */ +#smart_editor2 .se2_qmax{position:absolute;width:18px;height:18px;background:url("../../img/zh_CN/btn_set.png?160622") -339px -169px no-repeat} +#smart_editor2 .se2_qeditor{position:absolute;top:0;left:0;width:183px;margin:0;padding:0;border:1px solid #c7c7c7;border-right:1px solid #ababab;border-bottom:1px solid #ababab;background:#fafafa} +#smart_editor2 .se2_qeditor label,#smart_editor2 .se2_qeditor span,#smart_editor2 .se2_qeditor dt{font-size:11px;color:#666;letter-spacing:-1px} +#smart_editor2 .se2_qbar{position:relative;width:183px;height:11px;background:url("../../img/bx_set_110302.gif") 0 -731px no-repeat} +#smart_editor2 .se2_qbar .se2_qmini{position:absolute;top:-1px;right:0;*right:-1px;_right:-3px;width:18px;height:14px;background:url("../../img/zh_CN/btn_set.png?160622") -315px -170px no-repeat} +#smart_editor2 .se2_qbar .se2_qmini button{width:20px;height:14px;margin-top:-1px} +#smart_editor2 .se2_qeditor .se2_qbody0{float:left;border:1px solid #fefefe} +#smart_editor2 .se2_qeditor .se2_qbody{position:relative;z-index:90;width:174px;padding:4px 0 0 7px} +#smart_editor2 .se2_qeditor .se2_qe1{overflow:hidden;width:174px} +#smart_editor2 .se2_qeditor .se2_qe1 dt{float:left;width:22px;height:18px;padding:4px 0 0 0} +#smart_editor2 .se2_qeditor .se2_qe1 dd{float:left;width:65px;height:22px} +#smart_editor2 .se2_qeditor .se2_addrow{width:28px;height:19px;background:url("../../img/zh_CN/btn_set.png?160622") no-repeat -385px -49px} +#smart_editor2 .se2_qeditor .se2_addcol{width:29px;height:19px;background:url("../../img/zh_CN/btn_set.png?160622") no-repeat -413px -49px} +#smart_editor2 .se2_qeditor .se2_seprow{width:28px;height:19px;background:url("../../img/zh_CN/btn_set.png?160622") no-repeat -385px -68px} +#smart_editor2 .se2_qeditor .se2_sepcol{width:29px;height:19px;background:url("../../img/zh_CN/btn_set.png?160622") no-repeat -413px -68px} +#smart_editor2 .se2_qeditor .se2_delrow{width:28px;height:19px;background:url("../../img/zh_CN/btn_set.png?160622") no-repeat -385px -106px} +#smart_editor2 .se2_qeditor .se2_delcol{width:29px;height:19px;background:url("../../img/zh_CN/btn_set.png?160622") no-repeat -413px -106px} +#smart_editor2 .se2_qeditor .se2_merrow{width:57px;height:19px;background:url("../../img/zh_CN/btn_set.png?160622") no-repeat -385px -125px} +#smart_editor2 .se2_qeditor .se2_mercol{width:57px;height:19px;background:url("../../img/zh_CN/btn_set.png?160622") no-repeat -413px -125px} +#smart_editor2 .se2_qeditor .se2_seprow_off{width:28px;height:19px;background:url("../../img/zh_CN/btn_set.png?160622") no-repeat -385px -87px} +#smart_editor2 .se2_qeditor .se2_sepcol_off{width:29px;height:19px;background:url("../../img/zh_CN/btn_set.png?160622") no-repeat -413px -87px} +#smart_editor2 .se2_qeditor .se2_merrow_off{width:57px;height:19px;background:url("../../img/zh_CN/btn_set.png?160622") no-repeat -385px -144px} +#smart_editor2 .se2_qeditor .se2_mercol_off{width:57px;height:19px;background:url("../../img/zh_CN/btn_set.png?160622") no-repeat -413px -144px} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > CELL_BACKGROUND */ +#smart_editor2 .se2_qeditor .se2_qe2{_display:inline;float:left;position:relative;z-index:100;width:165px;margin:2px 0 0 1px;padding:7px 0 0 0;background:url("../../img/bg_line1.gif") repeat-x;zoom:1} +#smart_editor2 .se2_qeditor .se2_qe2_1 dt{float:left;width:79px;padding:3px 0 0 0} +#smart_editor2 .se2_qeditor .se2_qe2_1 dt input{width:15px;height:15px;margin:-1px 1px 1px -1px;vertical-align:middle} +#smart_editor2 .se2_qeditor .se2_qe2_1 dd{float:left;position:relative;zoom:1} +#smart_editor2 .se2_qeditor .se2_qe2_3{padding:7px 0 6px 0} +/* My글양식 없을때 */ +#smart_editor2 .se2_qeditor .se2_qe2_2{position:relative;_position:absolute} +#smart_editor2 .se2_qeditor .se2_qe2_2 dt{float:left;width:50px;padding:3px 0 0 13px} +#smart_editor2 .se2_qeditor .se2_qe2_2 dt input{width:15px;height:15px;margin:-1px 2px 1px -1px;vertical-align:middle} +#smart_editor2 .se2_qeditor .se2_qe2_2 dd{float:left} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > STYLE */ +#smart_editor2 .se2_table_set .se2_qbody .se2_t_proper2{float:left;*float:none;position:static;width:166px;margin:5px 0 0 1px} +#smart_editor2 .se2_qeditor .se2_qe3 dt{float:left;width:79px;padding:0} +#smart_editor2 .se2_qeditor .se2_qe3 dt label{font-weight:normal} +#smart_editor2 .se2_qeditor .se2_qe3 dt input{width:15px;height:15px;margin:-1px 1px 1px -1px;vertical-align:middle} +#smart_editor2 .se2_qeditor .se2_qe3 dd .se2_qe3_table{position:relative} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > CELL_BACKGROUND PREWVIEW */ +#smart_editor2 .se2_qeditor .se2_pre_color{float:left;width:18px;height:18px;border:1px solid #c7c7c7} +#smart_editor2 .se2_qeditor .se2_pre_color button{float:left;width:14px;height:14px;margin:2px 0 0 2px;padding:0} +#smart_editor2 .se2_qeditor .se2_pre_color button span{overflow:hidden;position:absolute;top:-10000px;left:-10000px;z-index:-100;width:0;height:0} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > CELL_BACKGROUND LAYER */ +#smart_editor2 .se2_qeditor .se2_layer{float:left;clear:both;position:absolute;top:20px;left:0;margin:0;padding:0;border:1px solid #c7c7c7;border-top:1px solid #9a9a9a;background:#fafafa} +#smart_editor2 .se2_qeditor .se2_layer .se2_in_layer{float:left;margin:0;padding:0;border:1px solid #fff;background:#fafafa} +#smart_editor2 .se2_qeditor .se2_layer button{vertical-align:top} +#smart_editor2 .se2_qeditor .se2_layer .se2_pick_color li{position:relative} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > CELL_BACKGROUND IMAGE */ +#smart_editor2 .se2_qeditor .se2_pre_bgimg{float:left;width:14px;height:14px;padding:2px;border:1px solid #c7c7c7} +#smart_editor2 .se2_qeditor .se2_qe2_2 button{width:16px;height:16px;background:url("../../img/zh_CN/btn_set.png?160622") 0 -261px no-repeat} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > CELL_BACKGROUND IMAGE LAYER */ +#smart_editor2 .se2_cellimg_set{_display:inline;float:left;width:136px;margin:4px 3px 0 4px;padding-bottom:4px} +#smart_editor2 .se2_cellimg_set li{_display:inline;float:left;width:16px;height:16px;margin:0 1px 1px 0} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg0{background-position:-255px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg1{background-position:0 -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg2{background-position:-17px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg3{background-position:-34px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg4{background-position:-51px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg5{background-position:-68px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg6{background-position:-85px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg7{background-position:-102px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg8{background-position:-119px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg9{background-position:-136px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg10{background-position:-153px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg11{background-position:-170px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg12{background-position:-187px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg13{background-position:-204px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg14{background-position:-221px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg15{background-position:-238px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg16{background-position:-255px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg17{background-position:0 -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg18{background-position:-17px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg19{background-position:-34px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg20{background-position:-51px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg21{background-position:-68px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg22{background-position:-85px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg23{background-position:-102px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg24{background-position:-119px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg25{background-position:-136px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg26{background-position:-153px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg27{background-position:-170px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg28{background-position:-187px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg29{background-position:-204px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg30{background-position:-221px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg31{background-position:-238px -278px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg button{width:14px;height:14px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg1{background-position:-1px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg2{background-position:-18px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg3{background-position:-35px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg4{background-position:-52px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg5{background-position:-69px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg6{background-position:-86px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg7{background-position:-103px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg8{background-position:-120px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg9{background-position:-137px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg10{background-position:-154px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg11{background-position:-171px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg12{background-position:-188px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg13{background-position:-205px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg14{background-position:-222px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg15{background-position:-239px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg16{background-position:-256px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg17{background-position:-1px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg18{background-position:-18px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg19{background-position:-35px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg20{background-position:-52px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg21{background-position:-69px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg22{background-position:-86px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg23{background-position:-103px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg24{background-position:-120px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg25{background-position:-137px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg26{background-position:-154px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg27{background-position:-171px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg28{background-position:-188px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg29{background-position:-205px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg30{background-position:-222px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg31{background-position:-239px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg32{background-position:-256px -279px} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > MY REVIEW */ +#smart_editor2 .se2_btn_area{_display:inline;float:left;clear:both;width:166px;margin:5px 0 0 1px;padding:7px 0 6px 0;background:url("../../img/bg_line1.gif") repeat-x;text-align:center} +#smart_editor2 .se2_btn_area .se2_btn_save{width:97px;height:21px;background:url("../../img/zh_CN/btn_set.png?160622") -369px -163px no-repeat} +/* TEXT_TOOLBAR : QUICKEDITOR_IMAGE */ +#smart_editor2 .se2_qe10{width:166px;margin:0;*margin:-2px 0 0 0} +#smart_editor2 .se2_qe10 label{margin:0 1px 0 0;vertical-align:middle} +#smart_editor2 .se2_qe10 .se2_sheight{margin-left:4px} +#smart_editor2 .se2_qe10 .input_ty1{width:30px;height:13px;margin:0 0 1px 1px;padding:3px 4px 0 1px;font-size:11px;letter-spacing:0;text-align:right;vertical-align:middle} +#smart_editor2 .se2_qe10 .se2_sreset{width:41px;height:19px;margin-left:3px;background:url("../../img/zh_CN/btn_set.png?160622") -401px -184px no-repeat;vertical-align:middle} +#smart_editor2 .se2_qe10_1{margin-top:4px;padding:10px 0 3px;background:url("../../img/bg_line1.gif") repeat-x} +#smart_editor2 .se2_qe10_1 input{width:15px;height:15px;margin:-1px 3px 1px -1px;vertical-align:middle} +#smart_editor2 .se2_qe11{float:left;width:166px;margin:4px 0 0 0;padding:7px 0 2px 0;background:url("../../img/bg_line1.gif") repeat-x} +#smart_editor2 .se2_qe11_1{float:left;width:99px} +#smart_editor2 .se2_qe11_1 dt{float:left;width:56px;height:15px;padding:5px 0 0 0} +#smart_editor2 .se2_qe11_1 dd{float:left;position:relative;width:38px;height:20px} +#smart_editor2 .se2_qe11_1 .input_ty1{display:block;width:29px;height:15px;margin:0;*margin:-1px 0 1px 0;padding:3px 1px 0 5px;font-size:11px;letter-spacing:0;text-align:left} +#smart_editor2 .se2_qe11_1 .se2_add{position:absolute;top:2px;right:3px;width:13px;height:8px;background:url("../../img/zh_CN/btn_set.png?160622") -86px -54px no-repeat} +#smart_editor2 .se2_qe11_1 .se2_del{position:absolute;top:10px;right:3px;width:13px;height:8px;background:url("../../img/zh_CN/btn_set.png?160622") -86px -62px no-repeat} +#smart_editor2 .se2_qe11_2{float:left;width:67px} +#smart_editor2 .se2_qe11_2 dt{float:left;width:47px;margin:5px 0 0 0} +#smart_editor2 .se2_qe11_2 dd{float:left;position:relative;width:20px} +#smart_editor2 .se2_qe12{float:left;width:166px;margin:3px 0 0 0;padding:7px 0 0 0;background:url("../../img/bg_line1.gif") repeat-x} +#smart_editor2 .se2_qe12 dt{float:left;margin:5px 4px 0 0} +#smart_editor2 .se2_qe12 dd{float:left;padding:0 0 6px 0} +#smart_editor2 .se2_qe12 .se2_align0{float:left;width:19px;height:21px;background:url("../../img/zh_CN/btn_set.png?160622") -276px -121px no-repeat} +#smart_editor2 .se2_qe12 .se2_align1{float:left;width:19px;height:21px;background:url("../../img/zh_CN/btn_set.png?160622") -295px -121px no-repeat} +#smart_editor2 .se2_qe12 .se2_align2{float:left;width:20px;height:21px;background:url("../../img/zh_CN/btn_set.png?160622") -314px -121px no-repeat} +#smart_editor2 .se2_qe13{position:relative;z-index:10;zoom:1} +#smart_editor2 .se2_qe13 dt{float:left;width:62px;padding:3px 0 0} +#smart_editor2 .se2_qe13 dt input{width:15px;height:15px;margin:-1px 1px 1px -1px;vertical-align:middle;zoom:1} +#smart_editor2 .se2_qe13 dt .se2_qdim2{width:32px} +#smart_editor2 .se2_qe13 dd .se2_select_ty1{width:38px} +#smart_editor2 .se2_qe13 dd .se2_select_ty1 span{width:15px} +#smart_editor2 .se2_qe13 dd .input_ty1{width:20px} +#smart_editor2 .se2_qe13 dd .se2_palette2 .input_ty1{width:67px} +#smart_editor2 .se2_qe13 .se2_add{*top:3px} +#smart_editor2 .se2_qe13 .se2_del{*top:11px} +#smart_editor2 .se2_qe13 .se2_layer_b_style{right:-2px;_right:0} +#smart_editor2 .se2_qe13 .se2_layer_b_style li span{width:auto;margin:0 4px 0 5px;padding-top:2px} +#smart_editor2 .se2_qe13 dd{_display:inline;float:left;position:relative;width:29px;margin-right:5px;_margin-right:3px;zoom:1} +#smart_editor2 .se2_qe13 dd .se2_palette h4{margin-top:9px;font-family:dotum;font-size:12px} +#smart_editor2 .se2_qe13 dd.dd_type{width:38px} +#smart_editor2 .se2_qe13 dd.dd_type2{width:37px;margin-right:3px} +#smart_editor2 .se2_qe13 dd.dd_type2 .input_ty1{width:29px} +#smart_editor2 .se2_qe13 dd.dd_type2 button{right:2px;_right:1px} +#smart_editor2 .se2_qe13 dd.dd_type3{width:20px;margin:0} +#smart_editor2 .se2_qe13_v1{_display:inline;float:left;margin:2px 0 1px} +#smart_editor2 .se2_qe13_v1 dt{padding:4px 0 0 1px} +#smart_editor2 .se2_qe13_v2{_display:inline;float:left;position:relative;z-index:100;width:165px;margin:4px 0 0 1px;zoom:1} +#smart_editor2 .se2_qe13_v2 dd{width:18px;margin:0} +#smart_editor2 .se2_qeditor .se2_qdim1{clear:both;position:absolute;top:25px;left:115px;width:60px;height:23px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim2{clear:both;position:absolute;top:55px;left:24px;z-index:110;width:87px;height:22px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim3{clear:both;position:absolute;top:55px;left:118px;z-index:110;width:56px;height:22px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim4{clear:both;position:absolute;top:81px;left:23px;z-index:35;width:154px;height:35px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim5{clear:both;position:absolute;top:31px;left:106px;width:68px;height:26px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim6c{clear:both;position:absolute;top:25px;left:28px;width:29px;height:23px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim6r{clear:both;position:absolute;top:25px;left:57px;width:29px;height:23px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_highedit{float:right;width:56px;height:21px;margin:-27px 8px 0 0;background:url("../../img/zh_CN/btn_set.png?160622") -329px -142px no-repeat} +#smart_editor2 .se2_qeditor .se2_qdim7{clear:both;position:absolute;top:55px;left:24px;z-index:110;width:150px;height:48px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim8{clear:both;position:absolute;top:105px;left:24px;z-index:110;width:150px;height:37px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim9{clear:both;position:absolute;top:55px;left:111px;z-index:110;width:65px;height:24px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim10{clear:both;position:absolute;top:55px;left:100px;z-index:110;width:77px;height:24px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim11{clear:both;position:absolute;top:55px;left:65px;z-index:110;width:115px;height:24px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} diff --git a/plugin/editor/smarteditor2/css/zh_CN/smart_editor2_out.css b/plugin/editor/smarteditor2/css/zh_CN/smart_editor2_out.css new file mode 100644 index 000000000..0baf3770e --- /dev/null +++ b/plugin/editor/smarteditor2/css/zh_CN/smart_editor2_out.css @@ -0,0 +1,12 @@ +@charset "UTF-8"; +/* NHN Web Standardization Team (http://html.nhndesign.com/) HHJ 090226 */ +/* COMMON */ +.se2_outputarea, .se2_outputarea th, .se2_outputarea td{margin:0;padding:0;color:#666;font-size:12px;font-family:'돋움',Dotum,'굴림',Gulim,Helvetica,Sans-serif;line-height:1.5} +.se2_outputarea p{margin:0;padding:0} +.se2_outputarea a:hover{text-decoration:underline} +.se2_outputarea a:link{color:#0000ff} +.se2_outputarea ul{margin:0 0 0 40px;padding:0} +.se2_outputarea ul li{margin:0;list-style-type:disc;padding:0} +.se2_outputarea ul ul li{list-style-type:circle} +.se2_outputarea ul ul ul li{list-style-type:square} +.se2_outputarea img, .se2_outputarea fieldset{border:0} diff --git a/plugin/editor/smarteditor2/css/zh_TW/smart_editor2.css b/plugin/editor/smarteditor2/css/zh_TW/smart_editor2.css new file mode 100644 index 000000000..61866f42f --- /dev/null +++ b/plugin/editor/smarteditor2/css/zh_TW/smart_editor2.css @@ -0,0 +1,190 @@ +@charset "UTF-8"; +/* NHN Web Standardization Team (http://html.nhndesign.com/) HHJ 090226 */ +/* COMMON */ +body,#smart_editor2,#smart_editor2 p,#smart_editor2 h1,#smart_editor2 h2,#smart_editor2 h3,#smart_editor2 h4,#smart_editor2 h5,#smart_editor2 h6,#smart_editor2 ul,#smart_editor2 ol,#smart_editor2 li,#smart_editor2 dl,#smart_editor2 dt,#smart_editor2 dd,#smart_editor2 table,#smart_editor2 th,#smart_editor2 td,#smart_editor2 form,#smart_editor2 fieldset,#smart_editor2 legend,#smart_editor2 input,#smart_editor2 textarea,#smart_editor2 button,#smart_editor2 select{margin:0;padding:0} +#smart_editor2,#smart_editor2 h1,#smart_editor2 h2,#smart_editor2 h3,#smart_editor2 h4,#smart_editor2 h5,#smart_editor2 h6,#smart_editor2 input,#smart_editor2 textarea,#smart_editor2 select,#smart_editor2 table,#smart_editor2 button{font-family:'돋움',Dotum,Helvetica,sans-serif;font-size:12px;color:#666} +#smart_editor2 span,#smart_editor2 em{font-size:12px} +#smart_editor2 em,#smart_editor2 address{font-style:normal} +#smart_editor2 img,#smart_editor2 fieldset{border:0} +#smart_editor2 hr{display:none} +#smart_editor2 ol,#smart_editor2 ul{list-style:none} +#smart_editor2 button{border:0;background:none;font-size:11px;vertical-align:top;cursor:pointer} +#smart_editor2 button span,#smart_editor2 button em{visibility:hidden;overflow:hidden;position:absolute;top:0;font-size:0;line-height:0} +#smart_editor2 legend,#smart_editor2 .blind{visibility:hidden;overflow:hidden;position:absolute;width:0;height:0;font-size:0;line-height:0} +#smart_editor2 .input_ty1{height:14px;margin:0;padding:4px 2px 0 4px;border:1px solid #c7c7c7;font-size:11px;color:#666} +#smart_editor2 a:link,#smart_editor2 a:visited,#smart_editor2 a:active,#smart_editor2 a:focus{color:#666;text-decoration:none} +#smart_editor2 a:hover{color:#666;text-decoration:underline} +/* LAYOUT */ +#smart_editor2 .se2_header{margin:10px 0 29px 0} +#smart_editor2 .se2_bi{float:left;width:93px;height:20px;margin:0;padding:0;background:url("../../img/zh_TW/btn_set.png?160622") -343px -358px no-repeat;font-size:0;line-height:0;text-indent:-10000px;vertical-align:middle} +#smart_editor2 .se2_allhelp{display:inline-block;width:18px;height:18px;padding:0;background:url("../../img/zh_TW/btn_set.png?160622") -437px -358px no-repeat;font-size:0;line-height:0;text-indent:-10000px;vertical-align:middle} +#smart_editor2 #smart_editor2_content{position:relative;border:1px solid #b5b5b5} +#smart_editor2 .se2_tool{overflow:visible;position:relative;z-index:25} +/* EDITINGAREA */ +#smart_editor2 .se2_input_area{position:relative;z-index:22;height:400px;margin:0;padding:0;*zoom:1} +#smart_editor2 .se2_input_wysiwyg,#smart_editor2 .se2_input_syntax{display:block;overflow:auto;width:100%;height:100%;margin:0;*margin:-1px 0 0 0;border:0} +/* EDITINGMODE */ +#smart_editor2 .se2_conversion_mode{position:relative;height:15px;padding-top:1px;border-top:1px solid #b5b5b5;background:url("../../img/icon_set.gif?141007") 0 -896px repeat-x} +#smart_editor2 .se2_inputarea_controller{display:block;clear:both;position:relative;width:100%;height:15px;background:url("../../img/icon_set.gif?141007") center -47px no-repeat;text-align:center;cursor:n-resize} +#smart_editor2 .se2_inputarea_controller span{display:block;visibility:visible;height:15px;font-size:0;line-height:0;color:#fff;white-space:nowrap} +#smart_editor2 .ly_controller{display:block;position:absolute;bottom:2px;left:50%;width:287px;margin-left:-148px;padding:8px 0 7px 9px;border:1px solid #827f7c;background:#fffdef} +#smart_editor2 .ly_controller p{color:#666;font-size:11px;letter-spacing:-1px;line-height:11px} +#smart_editor2 .ly_controller .bt_clse,#smart_editor2 .ly_controller .ic_arr{position:absolute;background:url("../../img/ico_extend.png") no-repeat} +#smart_editor2 .ly_controller .bt_clse{top:5px;right:4px;width:14px;height:15px;background-position:1px -43px} +#smart_editor2 .ly_controller .ic_arr{top:25px;left:50%;width:10px;height:6px;margin-left:-5px;background-position:0 -65px} +#smart_editor2 .se2_converter{float:left;position:absolute;top:-1px;right:3px;z-index:20} +#smart_editor2 .se2_converter li{float:left} +#smart_editor2 .se2_converter .se2_to_editor{width:59px;height:15px;background:url("../../img/zh_TW/btn_set.png?160622") 0 -85px no-repeat;vertical-align:top} +#smart_editor2 .se2_converter .se2_to_html{width:59px;height:15px;background:url("../../img/zh_TW/btn_set.png?160622") -59px -70px no-repeat;vertical-align:top} +#smart_editor2 .se2_converter .se2_to_text{width:60px;height:15px;background:url("../../img/zh_TW/btn_set.png?160622") -417px -466px no-repeat;vertical-align:top} +#smart_editor2 .se2_converter .active .se2_to_editor{width:59px;height:15px;background:url("../../img/zh_TW/btn_set.png?160622") 0 -70px no-repeat;vertical-align:top} +#smart_editor2 .se2_converter .active .se2_to_html{width:59px;height:15px;background:url("../../img/zh_TW/btn_set.png?160622") -59px -85px no-repeat;vertical-align:top} +#smart_editor2 .se2_converter .active .se2_to_text{width:60px;height:15px;background:url("../../img/zh_TW/btn_set.png?160622") -417px -481px no-repeat;vertical-align:top} +/* EDITINGAREA_HTMLSRC */ +#smart_editor2 .off .ico_btn,#smart_editor2 .off .se2_more,#smart_editor2 .off .se2_more2,#smart_editor2 .off .se2_font_family,#smart_editor2 .off .se2_font_size,#smart_editor2 .off .se2_bold,#smart_editor2 .off .se2_underline,#smart_editor2 .off .se2_italic,#smart_editor2 .off .se2_tdel,#smart_editor2 .off .se2_fcolor,#smart_editor2 .off .se2_fcolor_more,#smart_editor2 .off .se2_bgcolor,#smart_editor2 .off .se2_bgcolor_more,#smart_editor2 .off .se2_left,#smart_editor2 .off .se2_center,#smart_editor2 .off .se2_right,#smart_editor2 .off .se2_justify,#smart_editor2 .off .se2_ol,#smart_editor2 .off .se2_ul,#smart_editor2 .off .se2_indent,#smart_editor2 .off .se2_outdent,#smart_editor2 .off .se2_lineheight,#smart_editor2 .off .se2_del_style,#smart_editor2 .off .se2_blockquote,#smart_editor2 .off .se2_summary,#smart_editor2 .off .se2_footnote,#smart_editor2 .off .se2_url,#smart_editor2 .off .se2_emoticon,#smart_editor2 .off .se2_character,#smart_editor2 .off .se2_table,#smart_editor2 .off .se2_find,#smart_editor2 .off .se2_spelling,#smart_editor2 .off .se2_sup,#smart_editor2 .off .se2_sub,#smart_editor2 .off .se2_text_tool_more,#smart_editor2 .off .se2_new,#smart_editor2 .off .selected_color,#smart_editor2 .off .se2_lineSticker{-ms-filter:alpha(opacity=50);opacity:.5;cursor:default;filter:alpha(opacity=50)} +/* LAYER */ +#smart_editor2 .se2_text_tool .se2_layer{display:none;float:left;position:absolute;top:20px;left:0;z-index:50;margin:0;padding:0;border:1px solid #bcbbbb;background:#fafafa} +#smart_editor2 .se2_text_tool li.active{z-index:50} +#smart_editor2 .se2_text_tool .active .se2_layer{display:block} +#smart_editor2 .se2_text_tool .active li .se2_layer{display:none} +#smart_editor2 .se2_text_tool .active .active .se2_layer{display:block} +#smart_editor2 .se2_text_tool .se2_layer .se2_in_layer{float:left;margin:0;padding:0;border:1px solid #fff;background:#fafafa} +#smart_editor2 .se2_content_loading{display:none;z-index:10;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center} +#smart_editor2 .se2_content_loading img{position:absolute;top:50%;left:50%;margin:-27px 0 0 -27px} +#smart_editor2 .se2_alert_wrap{display:none;z-index:20;position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;text-align:center} +#smart_editor2 .se2_alert_wrap.active{display:block} +#smart_editor2 .se2_alert_wrap .dimmed{position:absolute;top:0;left:0;width:100%;height:100%;background:#000;opacity:0.4;filter:alpha(opacity=40)} +#smart_editor2 .se2_alert_wrap .ie_cover{position:absolute;top:0;left:0;width:100%;height:100%;background:#fff;opacity:0;filter:alpha(opacity=0)} +#smart_editor2 .se2_alert_wrap .va_line{display:inline-block;height:100%;vertical-align:middle;*zoom:1} +#smart_editor2 .se2_alert_wrap .se2_alert_content{z-index:10;position:relative;display:inline-block;*display:inline;*zoom:1;border:1px solid #727272;background:#fff;padding:26px 33px 22px;vertical-align:middle} +#smart_editor2 .se2_alert_wrap .se2_alert_content{margin-top:47px} +#smart_editor2 .se2_alert_wrap .txt1{color:#333;line-height:18px} +#smart_editor2 .se2_alert_wrap .txt2{margin-top:3px;color:#999} +#smart_editor2 .se2_alert_wrap .btn_close,#smart_editor2 .se2_alert_btns button{background:url("../../img/zh_TW/btn_set.png?160622") no-repeat} +#smart_editor2 .se2_alert_wrap .btn_close{z-index:10;position:absolute;top:7px;right:7px;width:11px;height:11px;background-position:-122px -32px;text-indent:-5000px} +#smart_editor2 .se2_alert_btns{margin-top:19px} +#smart_editor2 .se2_alert_btns button{display:inline;float:none;width:48px;height:27px} +#smart_editor2 .se2_alert_btns button + button{margin-left:10px} +#smart_editor2 .se2_alert_btns .se2_confirm{background-position:-369px -434px} +#smart_editor2 .se2_alert_btns .se2_cancel{background-position:-419px -434px} +/* TEXT_TOOLBAR */ +#smart_editor2 .se2_text_tool{position:relative;clear:both;z-index:30;padding:4px 0 4px 3px;background:#f4f4f4 url("../../img/bg_text_tool.gif") 0 0 repeat-x;border-bottom:1px solid #b5b5b5;*zoom:1} +#smart_editor2 .se2_text_tool:after{content:"";display:block;clear:both} +#smart_editor2 .se2_text_tool ul{float:left;display:inline;margin-right:3px;padding-left:1px;white-space:nowrap} +#smart_editor2 .se2_text_tool li{_display:inline;float:left;position:relative;z-index:30} +#smart_editor2 .se2_text_tool button,#smart_editor2 .se2_multy .se2_icon{width:21px;height:21px;background:url("../../img/zh_TW/text_tool_set.png?140317") no-repeat;vertical-align:top} +#smart_editor2 .se2_text_tool .se2_font_type{position:relative} +#smart_editor2 .se2_text_tool .se2_font_type li{margin-left:3px} +#smart_editor2 .se2_text_tool .se2_font_type button{text-align:left} +#smart_editor2 .se2_text_tool .se2_font_type button.se2_font_family span,#smart_editor2 .se2_text_tool .se2_font_type button.se2_font_size span{display:inline-block;visibility:visible;position:static;width:52px;height:20px;padding:0 0 0 6px;font-size:12px;line-height:20px;*line-height:22px;color:#333;*zoom:1} +#smart_editor2 .se2_text_tool .se2_multy{position:absolute;top:0;right:0;padding-left:0;margin-right:0;white-space:nowrap;border-left:1px solid #e0dedf} +#smart_editor2 .se2_text_tool .se2_multy .se2_mn{float:left;white-space:nowrap} +#smart_editor2 .se2_text_tool .se2_multy button{background-image:none;width:47px} +#smart_editor2 .se2_text_tool .se2_multy .se2_icon{display:inline-block;visibility:visible;overflow:visible;position:static;width:16px;height:29px;margin:-1px 2px 0 -1px;background-position:0 -132px;line-height:30px;vertical-align:top} +#smart_editor2 .se2_text_tool .se2_multy button,#smart_editor2 .se2_text_tool .se2_multy button span{height:29px;line-height:29px} +#smart_editor2 .se2_text_tool .se2_map .se2_icon{background-position:-29px -132px} +#smart_editor2 .se2_text_tool button span.se2_mntxt{display:inline-block;visibility:visible;overflow:visible;_overflow-y:hidden;position:relative;*margin-right:-1px;width:auto;height:29px;font-weight:normal;font-size:11px;line-height:30px;*line-height:29px;_line-height:30px;color:#444;letter-spacing:-1px;vertical-align:top} +#smart_editor2 .se2_text_tool .se2_multy .se2_photo{margin-right:1px} +#smart_editor2 .se2_text_tool .se2_multy .hover .ico_btn{background:#e8e8e8} +#smart_editor2 .se2_text_tool .se2_multy .se2_mn.hover{background:#e0dedf} +/* TEXT_TOOLBAR : ROUNDING */ +#smart_editor2 ul li.first_child button span.tool_bg, #smart_editor2 ul li.last_child button span.tool_bg, #smart_editor2 ul li.single_child button span.tool_bg{visibility:visible;height:21px} +#smart_editor2 ul li.first_child button span.tool_bg{left:-1px;width:3px;background:url("../../img/bg_button_left.gif?20121228") no-repeat} +#smart_editor2 ul li.last_child button span.tool_bg{right:0px;_right:-1px;width:2px;background:url("../../img/bg_button_right.gif") no-repeat} +#smart_editor2 ul li.single_child{padding-right:1px} +#smart_editor2 ul li.single_child button span.tool_bg{left:0;background:url("../../img/bg_button.gif?20121228") no-repeat;width:22px} +#smart_editor2 div.se2_text_tool ul li.hover button span.tool_bg{background-position:0 -21px} +#smart_editor2 div.se2_text_tool ul li.active button span.tool_bg, #smart_editor2 div.se2_text_tool ul li.active li.active button span.tool_bg{background-position:0 -42px} +#smart_editor2 div.se2_text_tool ul li.active li button span.tool_bg{background-position:0 0} +/* TEXT_TOOLBAR : SUB_MENU */ +#smart_editor2 .se2_sub_text_tool{display:none;position:absolute;top:20px;left:0;z-index:40;width:auto;height:29px;padding:0 4px 0 0;border:1px solid #b5b5b5;border-top:1px solid #9a9a9a;background:#f4f4f4} +#smart_editor2 .active .se2_sub_text_tool{display:block} +#smart_editor2 .se2_sub_text_tool ul{float:left;height:25px;margin:0;padding:4px 0 0 4px} +/* TEXT_TOOLBAR : SUB_MENU_SIZE */ +#smart_editor2 .se2_sub_step1{width:88px} +#smart_editor2 .se2_sub_step2{width:199px} +#smart_editor2 .se2_sub_step2_1{width:178px} +/* TEXT_TOOLBAR : BUTTON */ +#smart_editor2 .se2_text_tool .se2_font_family{width:70px;height:21px;background-position:0 -10px} +#smart_editor2 .se2_text_tool .hover .se2_font_family{background-position:0 -72px} +#smart_editor2 .se2_text_tool .active .se2_font_family{background-position:0 -103px} +#smart_editor2 .se2_text_tool .se2_font_size{width:45px;height:21px;background-position:-70px -10px} +#smart_editor2 .se2_text_tool .hover .se2_font_size{background-position:-70px -72px} +#smart_editor2 .se2_text_tool .active .se2_font_size{background-position:-70px -103px} +#smart_editor2 .se2_text_tool .se2_bold{background-position:-115px -10px} +#smart_editor2 .se2_text_tool .hover .se2_bold{background-position:-115px -72px} +#smart_editor2 .se2_text_tool .active .se2_bold{background-position:-115px -103px} +#smart_editor2 .se2_text_tool .se2_underline{background-position:-136px -10px} +#smart_editor2 .se2_text_tool .hover .se2_underline{background-position:-136px -72px} +#smart_editor2 .se2_text_tool .active .se2_underline{background-position:-136px -103px} +#smart_editor2 .se2_text_tool .se2_italic{background-position:-157px -10px} +#smart_editor2 .se2_text_tool .hover .se2_italic{background-position:-157px -72px} +#smart_editor2 .se2_text_tool .active .se2_italic{background-position:-157px -103px} +#smart_editor2 .se2_text_tool .se2_tdel{background-position:-178px -10px} +#smart_editor2 .se2_text_tool .hover .se2_tdel{background-position:-178px -72px} +#smart_editor2 .se2_text_tool .active .se2_tdel{background-position:-178px -103px} +#smart_editor2 .se2_text_tool .se2_fcolor{position:relative;background-position:-199px -10px} +#smart_editor2 .se2_text_tool .hover .se2_fcolor{background-position:-199px -72px} +#smart_editor2 .se2_text_tool .active .se2_fcolor{background-position:-199px -103px} +#smart_editor2 .se2_text_tool .se2_fcolor_more{background-position:-220px -10px;width:10px} +#smart_editor2 .se2_text_tool .hover .se2_fcolor_more{background-position:-220px -72px} +#smart_editor2 .se2_text_tool .active .se2_fcolor_more{background-position:-220px -103px} +#smart_editor2 .se2_text_tool .selected_color{position:absolute;top:14px;left:5px;width:11px;height:3px;font-size:0} +#smart_editor2 .se2_text_tool .se2_ol,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .se2_ol{background-position:-345px -10px} +#smart_editor2 .se2_text_tool .se2_ul,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .se2_ul{background-position:-366px -10px} +#smart_editor2 .se2_text_tool .hover .se2_ol,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .hover .se2_ol{background-position:-345px -72px} +#smart_editor2 .se2_text_tool .hover .se2_ul,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .hover .se2_ul{background-position:-366px -72px} +#smart_editor2 .se2_text_tool .active .se2_ol,#smart_editor2 .se2_text_tool .active .active .se2_ol{background-position:-345px -103px} +#smart_editor2 .se2_text_tool .active .se2_ul,#smart_editor2 .se2_text_tool .active .active .se2_ul{background-position:-366px -103px} +#smart_editor2 .se2_text_tool .se2_indent,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .se2_indent{background-position:-408px -10px} +#smart_editor2 .se2_text_tool .se2_outdent,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .se2_outdent{background-position:-387px -10px} +#smart_editor2 .se2_text_tool .hover .se2_indent,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .hover .se2_indent{background-position:-408px -72px} +#smart_editor2 .se2_text_tool .hover .se2_outdent,#smart_editor2 .se2_text_tool .active .se2_sub_text_tool .hover .se2_outdent{background-position:-387px -72px} +#smart_editor2 .se2_text_tool .active .se2_indent,#smart_editor2 .se2_text_tool .active .active .se2_indent{background-position:-408px -103px} +#smart_editor2 .se2_text_tool .active .se2_outdent,#smart_editor2 .se2_text_tool .active .active .se2_outdent{background-position:-387px -103px} +#smart_editor2 .se2_text_tool .se2_lineheight{background-position:-429px -10px} +#smart_editor2 .se2_text_tool .hover .se2_lineheight{background-position:-429px -72px} +#smart_editor2 .se2_text_tool .active .se2_lineheight{background-position:-429px -103px} +#smart_editor2 .se2_text_tool .se2_url{background-position:-513px -10px} +#smart_editor2 .se2_text_tool .hover .se2_url{background-position:-513px -72px} +#smart_editor2 .se2_text_tool .active .se2_url{background-position:-513px -103px} +#smart_editor2 .se2_text_tool .se2_bgcolor{position:relative;background-position:-230px -10px} +#smart_editor2 .se2_text_tool .hover .se2_bgcolor{background-position:-230px -72px} +#smart_editor2 .se2_text_tool .active .se2_bgcolor{background-position:-230px -103px} +#smart_editor2 .se2_text_tool .se2_bgcolor_more{background-position:-251px -10px;width:10px} +#smart_editor2 .se2_text_tool .hover .se2_bgcolor_more{background-position:-251px -72px} +#smart_editor2 .se2_text_tool .active .se2_bgcolor_more{background-position:-251px -103px} +#smart_editor2 .se2_text_tool .se2_left{background-position:-261px -10px} +#smart_editor2 .se2_text_tool .hover .se2_left{background-position:-261px -72px} +#smart_editor2 .se2_text_tool .active .se2_left{background-position:-261px -103px} +#smart_editor2 .se2_text_tool .se2_center{background-position:-282px -10px} +#smart_editor2 .se2_text_tool .hover .se2_center{background-position:-282px -72px} +#smart_editor2 .se2_text_tool .active .se2_center{background-position:-282px -103px} +#smart_editor2 .se2_text_tool .se2_right{background-position:-303px -10px} +#smart_editor2 .se2_text_tool .hover .se2_right{background-position:-303px -72px} +#smart_editor2 .se2_text_tool .active .se2_right{background-position:-303px -103px} +#smart_editor2 .se2_text_tool .se2_justify{background-position:-324px -10px} +#smart_editor2 .se2_text_tool .hover .se2_justify{background-position:-324px -72px} +#smart_editor2 .se2_text_tool .active .se2_justify{background-position:-324px -103px} +#smart_editor2 .se2_text_tool .se2_blockquote{background-position:-471px -10px} +#smart_editor2 .se2_text_tool .hover .se2_blockquote{background-position:-471px -72px} +#smart_editor2 .se2_text_tool .active .se2_blockquote{background-position:-471px -103px} +#smart_editor2 .se2_text_tool .se2_character{background-position:-555px -10px} +#smart_editor2 .se2_text_tool .hover .se2_character{background-position:-555px -72px} +#smart_editor2 .se2_text_tool .active .se2_character{background-position:-555px -103px} +#smart_editor2 .se2_text_tool .se2_table{background-position:-576px -10px} +#smart_editor2 .se2_text_tool .hover .se2_table{background-position:-576px -72px} +#smart_editor2 .se2_text_tool .active .se2_table{background-position:-576px -103px} +#smart_editor2 .se2_text_tool .se2_find{background-position:-597px -10px} +#smart_editor2 .se2_text_tool .hover .se2_find{background-position:-597px -72px} +#smart_editor2 .se2_text_tool .active .se2_find{background-position:-597px -103px} +#smart_editor2 .se2_text_tool .se2_sup{background-position:-660px -10px} +#smart_editor2 .se2_text_tool .hover .se2_sup{background-position:-660px -72px} +#smart_editor2 .se2_text_tool .active .se2_sup{background-position:-660px -103px} +#smart_editor2 .se2_text_tool .se2_sub{background-position:-681px -10px} +#smart_editor2 .se2_text_tool .hover .se2_sub{background-position:-681px -72px} +#smart_editor2 .se2_text_tool .active .se2_sub{background-position:-681px -103px} +#smart_editor2 .se2_text_tool .se2_text_tool_more{background-position:0 -41px;width:13px} +#smart_editor2 .se2_text_tool .se2_text_tool_more span.tool_bg{background:none} +#smart_editor2 .se2_text_tool .hover .se2_text_tool_more{background-position:-13px -41px} +#smart_editor2 .se2_text_tool .active .se2_text_tool_more{background-position:-26px -41px} diff --git a/plugin/editor/smarteditor2/css/zh_TW/smart_editor2_in.css b/plugin/editor/smarteditor2/css/zh_TW/smart_editor2_in.css new file mode 100644 index 000000000..fdecc092d --- /dev/null +++ b/plugin/editor/smarteditor2/css/zh_TW/smart_editor2_in.css @@ -0,0 +1,24 @@ +@charset "UTF-8"; +/* NHN Web Standardization Team (http://html.nhndesign.com/) HHJ 090226 */ +/* COMMON */ +body,.se2_inputarea{margin:0;padding:0;font-family:'돋움',Dotum,Helvetica,Sans-serif;font-size:12px;line-height:1.5} +/* body,.se2_inputarea,.se2_inputarea th,.se2_inputarea td{margin:0;padding:0;font-family:'돋움',Dotum,Helvetica,Sans-serif;font-size:12px;line-height:1.5;color:#666} */ +.se2_inputarea p,.se2_inputarea br{margin:0;padding:0} +.se2_inputarea{margin:15px;word-wrap:break-word;*word-wrap:normal;*word-break:break-all} +.se2_inputarea td{word-break:break-all} +.se2_inputarea_890{width:741px;margin:20px 0 10px 64px} +.se2_inputarea_698{width:548px;margin:20px 0 10px 64px} +@media screen and (-webkit-min-device-pixel-ratio: 0) { + .se2_inputarea td:empty:after,.se2_inputarea td > p:empty:after{content:"\00A0";line-height:1} +} +/* TEXT_TOOLBAR : QUOTE */ +.se2_quote1{margin:0 0 30px 20px;padding:0 8px;border-left:2px solid #ccc;color:#888} +.se2_quote2{margin:0 0 30px 13px;padding:0 8px 0 16px;background:url("../../img/bg_quote2.gif") 0 3px no-repeat;color:#888} +.se2_quote3{margin:0 0 30px;padding:12px 10px 11px;border:1px dashed #ccc;color:#888} +.se2_quote4{margin:0 0 30px;padding:12px 10px 11px;border:1px dashed #66b246;color:#888} +.se2_quote5{margin:0 0 30px;padding:12px 10px 11px;border:1px dashed #ccc;background:#fafafa;color:#888} +.se2_quote6{margin:0 0 30px;padding:12px 10px 11px;border:1px solid #e5e5e5;color:#888} +.se2_quote7{margin:0 0 30px;padding:12px 10px 11px;border:1px solid #66b246;color:#888} +.se2_quote8{margin:0 0 30px;padding:12px 10px 11px;border:1px solid #e5e5e5;background:#fafafa;color:#888} +.se2_quote9{margin:0 0 30px;padding:12px 10px 11px;border:2px solid #e5e5e5;color:#888} +.se2_quote10{margin:0 0 30px;padding:12px 10px 11px;border:2px solid #e5e5e5;background:#fafafa;color:#888} diff --git a/plugin/editor/smarteditor2/css/zh_TW/smart_editor2_items.css b/plugin/editor/smarteditor2/css/zh_TW/smart_editor2_items.css new file mode 100644 index 000000000..2dd31221f --- /dev/null +++ b/plugin/editor/smarteditor2/css/zh_TW/smart_editor2_items.css @@ -0,0 +1,417 @@ +@charset "UTF-8"; +/* NHN Web Standardization Team (http://html.nhndesign.com/) HHJ 090226 */ +/* TEXT_TOOLBAR : FONTNAME */ +#smart_editor2 .se2_l_font_fam .hover,#smart_editor2 .se2_l_font_fam .active{background:#ebebeb} +#smart_editor2 .se2_l_font_fam button span{display:block;visibility:visible;overflow:visible;position:relative;top:auto;left:auto;width:auto;height:auto;margin:0 0 0 4px;padding:0;font-size:12px;line-height:normal;color:#333} +#smart_editor2 .se2_l_font_fam button span span{display:inline;visibility:visible;overflow:visible;width:auto;height:auto;margin:0 0 0 4px;font-family:Verdana;font-size:12px;line-height:14px;color:#888} +#smart_editor2 .se2_l_font_fam button span em{visibility:visible;overflow:auto;position:static;width:auto;height:auto;margin-right:-4px;font-size:12px;color:#888} +#smart_editor2 .se2_l_font_fam .se2_division{width:162px;height:2px !important;margin:1px 0 1px 0px;border:0;background:url("../../img/bg_line1.gif") 0 0 repeat-x;font-size:0;cursor:default} +/* TEXT_TOOLBAR : FONTSIZE */ +#smart_editor2 .se2_tool .se2_l_font_size{width:302px;margin:0;padding:0} +#smart_editor2 .se2_tool .se2_l_font_size li{width:302px;margin:0;padding:0;color:#333;cursor:pointer} +#smart_editor2 .se2_l_font_size .hover,#smart_editor2 .se2_l_font_size .active{background:#ebebeb} +#smart_editor2 .se2_l_font_size button{width:300px;height:auto;margin:0;padding:2px 0 1px 0px;*padding:4px 0 1px 0px;background:none;text-align:left} +#smart_editor2 .se2_l_font_size button span{display:block;visibility:visible;overflow:visible;position:relative;top:auto;left:auto;width:auto;height:auto;margin:0 0 0 4px;padding:0;line-height:normal;color:#373737;letter-spacing:0px} +#smart_editor2 .se2_l_font_size button span span{display:inline;margin:0 0 0 5px;padding:0} +#smart_editor2 .se2_l_font_size span em{visibility:visible;overflow:auto;position:static;width:auto;height:auto;color:#888} +/* TEXT_TOOLBAR : FONTCOLOR */ +#smart_editor2 .se2_palette{float:left;position:relative;width:225px;margin:0;padding:11px 0 10px 0} +#smart_editor2 .se2_palette .se2_pick_color{_display:inline;float:left;clear:both;width:205px;margin:0 0 0 11px;padding:0} +#smart_editor2 .se2_palette .se2_pick_color li{float:left;width:12px;height:12px;margin:0;padding:0} +#smart_editor2 .se2_palette .se2_pick_color li button{width:11px;height:11px;border:0} +#smart_editor2 .se2_palette .se2_pick_color li button span{display:block;visibility:visible;overflow:visible;position:absolute;top:1px;left:1px;width:11px;height:11px} +#smart_editor2 .se2_palette .se2_pick_color li button span span{visibility:hidden;overflow:hidden;position:absolute;top:0;left:0;width:0;height:0} +#smart_editor2 .se2_palette .se2_pick_color .hover button,#smart_editor2 .se2_palette .se2_pick_color .active button{width:11px;height:11px;border:1px solid #666} +#smart_editor2 .se2_palette .se2_pick_color .hover span,#smart_editor2 .se2_palette .se2_pick_color .active span{width:7px;height:7px;border:1px solid #fff} +#smart_editor2 .se2_palette .se2_view_more{_display:inline;float:left;width:46px;height:23px;margin:1px 0 0 1px;background:url("../../img/zh_TW/btn_set.png?160622") 0 -47px no-repeat} +#smart_editor2 .se2_palette .se2_view_more2{_display:inline;float:left;width:46px;height:23px;margin:1px 0 0 1px;background:url("../../img/zh_TW/btn_set.png?160622") 0 -24px no-repeat} +#smart_editor2 .se2_palette h4{_display:inline;float:left;width:203px;margin:9px 0 0 11px;padding:10px 0 4px 0;background:url("../../img/bg_line1.gif") repeat-x;font-weight:normal;font-size:12px;line-height:14px;color:#333;letter-spacing:-1px} +#smart_editor2 .se2_palette2{float:left;_float:none;width:214px;margin:9px 0 0 0;padding:11px 0 0 11px;background:url("../../img/bg_line1.gif") repeat-x} +#smart_editor2 .se2_palette2 .se2_color_set{float:left} +#smart_editor2 .se2_palette2 .se2_selected_color{_display:inline;float:left;width:83px;height:18px;margin:0;border:1px solid #c7c7c7;background:#fff} +#smart_editor2 .se2_palette2 .se2_selected_color span{_display:inline;float:left;width:79px;height:14px;margin:2px} +#smart_editor2 .se2_palette2 .input_ty1{_display:inline;float:left;width:67px;height:16px;margin:0 3px 0 3px;padding:2px 2px 0 4px;font-family:tahoma;font-size:11px} +#smart_editor2 .se2_palette2 button.se2_btn_insert{float:left;width:35px;height:21px;margin-left:2px;padding:0;background:url("../../img/zh_TW/btn_set.png?160622") -80px 0 no-repeat} +#smart_editor2 .se2_gradation1{float:left;_float:none;width:201px;height:128px;margin:4px 0 0 0;border:1px solid #c7c7c7;cursor:crosshair} +#smart_editor2 .se2_gradation2{float:left;_float:none;width:201px;height:10px;margin:4px 0 1px 0;border:1px solid #c7c7c7;cursor:crosshair} +/* TEXT_TOOLBAR : BGCOLOR */ +#smart_editor2 .se2_palette_bgcolor{width:225px;margin:11px 0 0;padding:0} +#smart_editor2 .se2_palette_bgcolor .se2_background{width:205px;margin:0 11px 0 11px} +#smart_editor2 .se2_palette_bgcolor .se2_background li{width:68px;height:20px} +#smart_editor2 .se2_palette_bgcolor .se2_background button{width:67px;height:19px;border:0} +#smart_editor2 .se2_palette_bgcolor .se2_background span{left:0;display:block;visibility:visible;overflow:visible;width:65px;height:17px;padding:0} +#smart_editor2 .se2_palette_bgcolor .se2_background span span{display:block;visibility:visible;overflow:visible;width:64px;height:16px;padding:3px 0 0 3px;font-size:11px;line-height:14px;text-align:left} +#smart_editor2 .se2_palette_bgcolor .se2_background .hover span{width:65px;height:17px;border:1px solid #666} +#smart_editor2 .se2_palette_bgcolor .se2_background .hover span span{width:62px;height:14px;padding:1px 0 0 1px;border:1px solid #fff} +/* TEXT_TOOLBAR : LINEHEIGHT */ +#smart_editor2 .se2_l_line_height{width:107px;margin:0;padding:0} +#smart_editor2 .se2_l_line_height li{width:107px;margin:0;padding:0;border-top:0;border-bottom:0;color:#333;cursor:pointer} +#smart_editor2 .se2_l_line_height .hover{background:#ebebeb} +#smart_editor2 .se2_l_line_height button{width:105px;height:19px;margin:0;padding:3px 0 2px 0px;background:none;text-align:left} +#smart_editor2 .se2_l_line_height button span{visibility:visible;overflow:visible;position:relative;width:auto;height:auto;margin:0;padding:0 0 0 15px;font-size:12px;line-height:normal;color:#373737} +#smart_editor2 .se2_l_line_height li button.active span{background:url("../../img/icon_set.gif?141007") 5px -30px no-repeat} +#smart_editor2 .se2_l_line_height_user{clear:both;width:83px;margin:5px 0 0 12px;padding:10px 0 0 0;_padding:11px 0 0 0;background:url("../../img/bg_line1.gif") repeat-x} +#smart_editor2 .se2_l_line_height_user h3{margin:0 0 4px 0;_margin:0 0 2px -1px;padding:0;line-height:14px;color:#000;letter-spacing:-1px} +#smart_editor2 .se2_l_line_height_user .bx_input{display:block;position:relative;width:83px} +#smart_editor2 .se2_l_line_height_user .btn_up{position:absolute;top:2px;*top:3px;left:68px;width:13px;height:8px;background:url("../../img/zh_TW/btn_set.png?160622") -86px -54px no-repeat} +#smart_editor2 .se2_l_line_height_user .btn_down{position:absolute;top:10px;*top:11px;left:68px;width:13px;height:8px;background:url("../../img/zh_TW/btn_set.png?160622") -86px -62px no-repeat} +#smart_editor2 .se2_l_line_height_user .btn_area{margin:5px 0 10px 0} +#smart_editor2 .se2_tool .btn_area .se2_btn_apply3{width:41px;height:24px;background:url("../../img/zh_TW/btn_set.png?160622") no-repeat} +#smart_editor2 .se2_tool .btn_area .se2_btn_cancel3{width:39px;height:24px;margin-left:3px;background:url("../../img/zh_TW/btn_set.png?160622") -41px 0 no-repeat} +/* TEXT_TOOLBAR : QUOTE */ +#smart_editor2 .se2_quote{width:425px;height:56px} +#smart_editor2 .se2_quote ul{_display:inline;float:left;margin:11px 0 0 9px;padding:0} +#smart_editor2 .se2_quote li{_display:inline;float:left;margin:0 0 0 2px;padding:0} +#smart_editor2 .se2_quote button{width:34px;height:34px;margin:0;padding:0;background:url("../../img/zh_TW/btn_set.png?160622") no-repeat;cursor:pointer} +#smart_editor2 .se2_quote button span{left:0;display:block;visibility:visible;overflow:visible;width:32px;height:32px;margin:0;padding:0;border:1px solid #c7c7c7} +#smart_editor2 .se2_quote button span span{visibility:hidden;overflow:hidden;position:absolute;top:0;left:0;width:0;height:0;margin:0;padding:0} +#smart_editor2 .se2_quote .se2_quote1{background-position:1px -375px} +#smart_editor2 .se2_quote .se2_quote2{background-position:-32px -375px} +#smart_editor2 .se2_quote .se2_quote3{background-position:-65px -375px} +#smart_editor2 .se2_quote .se2_quote4{background-position:-98px -375px} +#smart_editor2 .se2_quote .se2_quote5{background-position:-131px -375px} +#smart_editor2 .se2_quote .se2_quote6{background-position:-164px -375px} +#smart_editor2 .se2_quote .se2_quote7{background-position:-197px -375px} +#smart_editor2 .se2_quote .se2_quote8{background-position:-230px -375px} +#smart_editor2 .se2_quote .se2_quote9{background-position:-263px -375px} +#smart_editor2 .se2_quote .se2_quote10{background-position:-296px -375px} +#smart_editor2 .se2_quote .hover button span,#smart_editor2 .se2_quote .active button span{width:30px;height:30px;margin:0;padding:0;border:2px solid #44b525} +#smart_editor2 .se2_quote .hover button span span,#smart_editor2 .se2_quote .active button span span{visibility:hidden;overflow:hidden;position:absolute;top:0;left:0;width:0;height:0;margin:0;padding:0} +#smart_editor2 .se2_quote .se2_cancel2{float:left;width:40px;height:35px;margin:11px 0 0 5px;background:url("../../img/zh_TW/btn_set.png?160622") -46px -24px no-repeat} +#smart_editor2 .se2_quote .se2_cancel2 span{visibility:hidden;overflow:hidden;position:absolute;top:0;left:0;width:0;height:0;margin:0;padding:0} +/* TEXT_TOOLBAR : HYPERLINK */ +#smart_editor2 .se2_url2{width:281px;padding:11px 11px 6px 11px;color:#666} +#smart_editor2 .se2_url2 .input_ty1{display:block;width:185px;height:16px;margin:0 5px 5px 0;*margin:-1px 5px 5px 0;padding:5px 2px 0 4px} +#smart_editor2 .se2_url2 .se2_url_new{width:15px;height:15px;margin:-1px 3px 1px -1px;*margin:-2px 3px 2px -1px;vertical-align:middle} +#smart_editor2 .se2_url2 label{font-size:11px;line-height:14px;vertical-align:middle} +#smart_editor2 .se2_url2 .se2_apply{position:absolute;top:13px;right:51px;width:41px;height:24px;margin:-1px 3px 1px 0;background:url("../../img/zh_TW/btn_set.png?160622") no-repeat} +#smart_editor2 .se2_url2 .se2_cancel{position:absolute;top:13px;right:9px;width:39px;height:24px;margin:-1px 3px 1px 0;background:url("../../img/zh_TW/btn_set.png?160622") -41px 0 no-repeat} +/* TEXT_TOOLBAR : SCHARACTER */ +#smart_editor2 .se2_bx_character{width:469px;height:272px;margin:0;padding:0;background:url("../../img/bx_set_110302.gif") 9px -1230px no-repeat} +#smart_editor2 .se2_bx_character .se2_char_tab{_display:inline;float:left;position:relative;width:443px;margin:11px 10px 200px 11px;padding:0 0 0 1px} +#smart_editor2 .se2_bx_character .se2_char_tab li{position:static;margin:0 0 0 -1px;padding:0} +#smart_editor2 .se2_bx_character .se2_s_character{display:none;position:absolute;top:26px;left:0;width:448px;height:194px;margin:0;padding:0} +#smart_editor2 .se2_bx_character .active .se2_s_character{display:block} +#smart_editor2 .se2_bx_character .se2_s_character ul{float:left;width:422px;height:172px;margin:0;padding:9px 0 0 11px} +#smart_editor2 .se2_bx_character .se2_s_character li{_display:inline;float:left;position:relative;width:20px;height:18px;margin:0 0 1px 1px;background:#fff} +#smart_editor2 .se2_bx_character .se2_s_character button{width:20px;height:18px;margin:0;padding:2px;background:none} +#smart_editor2 .se2_bx_character .se2_s_character .hover,#smart_editor2 .se2_bx_character .se2_s_character .active{background:url("../../img/zh_TW/btn_set.png?160622") -446px -274px no-repeat} +#smart_editor2 .se2_bx_character .se2_s_character button span{left:0;display:block;visibility:visible;overflow:visible;width:14px;height:16px;margin:3px 0 0 3px;border:0;background:none;font-size:12px;line-height:normal} +#smart_editor2 .se2_apply_character{clear:both;position:relative;padding:0 0 0 11px} +#smart_editor2 .se2_apply_character label{margin:0 3px 0 0;font-size:12px;color:#666;letter-spacing:-1px} +#smart_editor2 .se2_apply_character .input_ty1{width:283px;height:17px;margin:-1px 5px 1px 0;padding:4px 0 0 5px;font-size:12px;color:#666;letter-spacing:0;vertical-align:middle} +#smart_editor2 .se2_apply_character .se2_confirm{width:41px;height:24px;margin-right:3px;background:url("../../img/zh_TW/btn_set.png?160622") no-repeat;vertical-align:middle} +#smart_editor2 .se2_apply_character .se2_cancel{width:39px;height:24px;background:url("../../img/zh_TW/btn_set.png?160622") -41px 0 no-repeat;vertical-align:middle} +/* TEXT_TOOLBAR : TABLECREATOR */ +#smart_editor2 .se2_table_set{position:relative;width:166px;margin:3px 11px 0 11px;padding:8px 0 0 0} +#smart_editor2 .se2_table_set .se2_cell_num{float:left;width:73px} +#smart_editor2 .se2_table_set .se2_cell_num dt{float:left;clear:both;width:17px;height:23px;margin:0;padding:0} +#smart_editor2 .se2_table_set .se2_cell_num dt label{display:block;margin:5px 0 0 0;font-size:11px;color:#666} +#smart_editor2 .se2_table_set .se2_cell_num dd{float:left;position:relative;width:54px;height:23px;margin:0;padding:0} +#smart_editor2 .se2_table_set .se2_cell_num .input_ty2{display:block;width:32px;height:16px;*margin:-1px 0 0 0;padding:2px 19px 0 0px;border:1px solid #c7c7c7;font-family:tahoma,verdana,times New Roman;font-size:11px;color:#666;text-align:right;*direction:rtl} +#smart_editor2 .se2_table_set .se2_cell_num .input_ty2::-ms-clear{display:none} +#smart_editor2 .se2_table_set .se2_pre_table{float:right;width:91px;height:43px;background:#c7c7c7;border-spacing:1px} +#smart_editor2 .se2_table_set .se2_pre_table tr{background:#fff} +#smart_editor2 .se2_table_set .se2_pre_table td{font-size:0;line-height:0} +#smart_editor2 .se2_table_set .se2_add{position:absolute;top:2px;right:3px;width:13px;height:8px;background:url("../../img/zh_TW/btn_set.png?160622") -86px -54px no-repeat} +#smart_editor2 .se2_table_set .se2_del{position:absolute;top:10px;right:3px;width:13px;height:8px;background:url("../../img/zh_TW/btn_set.png?160622") -86px -62px no-repeat} +/* TEXT_TOOLBAR : TABLEEDITOR */ +#smart_editor2 .se2_table_set .se2_t_proper1{float:left;width:166px;margin:7px 0 0 0;padding:10px 0 5px;background:url("../../img/bg_line1.gif") repeat-x} +#smart_editor2 .se2_table_set .se2_t_proper1 dt{width:166px;margin:0 0 6px 0} +#smart_editor2 .se2_table_set .se2_t_proper1 dd{width:166px} +#smart_editor2 .se2_table_set .se2_t_proper1 dt input{width:15px;height:15px;margin:-1px 3px 1px 0;_margin:-2px 3px 2px 0;vertical-align:middle} +#smart_editor2 .se2_table_set .se2_t_proper1 dt label{font-weight:bold;font-size:11px;color:#666;letter-spacing:-1px;vertical-align:middle} +#smart_editor2 .se2_table_set .se2_t_proper1_1{float:left;position:relative;z-index:59;width:166px;margin:1px 0 0 0} +#smart_editor2 .se2_table_set .se2_t_proper1_2{z-index:54;margin:0} +#smart_editor2 .se2_table_set .se2_t_proper1_3{z-index:53;margin:0} +#smart_editor2 .se2_table_set .se2_t_proper1_4{z-index:52;margin:0} +#smart_editor2 .se2_table_set .se2_t_proper1_1 dt{_display:inline;float:left;clear:both;width:66px;height:22px;margin:1px 0 0 18px} +#smart_editor2 .se2_table_set .se2_t_proper1_1 dt label{display:block;margin:4px 0 0 0;font-weight:normal;font-size:11px;color:#666;letter-spacing:-1px} +#smart_editor2 .se2_table_set .se2_t_proper1_1 dd{float:left;position:relative;width:82px;height:23px} +#smart_editor2 .se2_table_set .se2_t_proper1_1 .input_ty1{width:72px;height:16px;*margin:-1px 0 0 0;padding:2px 2px 0 6px;font-family:tahoma,verdana,times New Roman;font-size:11px;color:#666} +#smart_editor2 .se2_table_set .se2_t_proper1_1 .input_ty3{float:left;width:49px;height:16px;margin:0 3px 0 0;padding:2px 4px 0 4px;border:1px solid #c7c7c7;font-family:tahoma,verdana,times New Roman;font-size:11px;color:#666} +#smart_editor2 .se2_table_set .se2_t_proper1_1 .se2_add{top:2px;right:2px} +#smart_editor2 .se2_table_set .se2_t_proper1_1 .se2_del{top:10px;right:2px} +#smart_editor2 .se2_table_set .se2_t_proper1_1 .se2_color_set .input_ty1{_display:inline;float:left;width:67px;height:16px;margin:0 3px 0 3px;padding:2px 2px 0 4px;font-family:tahoma,verdana,times New Roman;font-size:11px} +#smart_editor2 .se2_select_ty1{position:relative;width:80px;height:18px;border:1px solid #c7c7c7;background:#fff;font-size:11px;line-height:14px;text-align:left} +#smart_editor2 .se2_select_ty1 span{float:left;width:54px;height:18px;margin:0 0 0 5px;font-size:11px;line-height:14px;color:#666} +#smart_editor2 .se2_select_ty1 .se2_b_style0{position:relative;top:3px;left:-3px;white-space:nowrap} +#smart_editor2 .se2_select_ty1 .se2_b_style1{height:15px;margin:3px 0 0 4px;font-size:11px;line-height:14px;color:#666;letter-spacing:-1px} +#smart_editor2 .se2_select_ty1 .se2_b_style2{background:url("../../img/bg_set.gif") 0 -50px repeat-x} +#smart_editor2 .se2_select_ty1 .se2_b_style3{background:url("../../img/bg_set.gif") 0 -68px repeat-x} +#smart_editor2 .se2_select_ty1 .se2_b_style4{background:url("../../img/bg_set.gif") 0 -85px repeat-x} +#smart_editor2 .se2_select_ty1 .se2_b_style5{background:url("../../img/bg_set.gif") 0 -103px repeat-x} +#smart_editor2 .se2_select_ty1 .se2_b_style6{background:url("../../img/bg_set.gif") 0 -121px repeat-x} +#smart_editor2 .se2_select_ty1 .se2_b_style7{background:url("../../img/bg_set.gif") 0 -139px repeat-x} +#smart_editor2 .se2_select_ty1 .se2_view_more{position:absolute;top:1px;right:1px;width:13px;height:16px;background:url("../../img/zh_TW/btn_set.png?160622") -112px -54px no-repeat} +#smart_editor2 .se2_select_ty1 .se2_view_more2{position:absolute;top:1px;right:1px;width:13px;height:16px;background:url("../../img/zh_TW/btn_set.png?160622") -99px -54px no-repeat} +/* TEXT_TOOLBAR : TABLEEDITOR > BORDER */ +#smart_editor2 .se2_table_set .se2_b_t_b1{border-top:1px solid #b1b1b1} +#smart_editor2 .se2_layer_b_style{position:absolute;top:20px;right:0px;width:80px;padding-bottom:1px;border:1px solid #c7c7c7;border-top:1px solid #a8a8a8;background:#fff} +#smart_editor2 .se2_layer_b_style ul{width:80px;margin:0;padding:1px 0 0 0} +#smart_editor2 .se2_layer_b_style li{width:80px;height:18px;margin:0;padding:0} +#smart_editor2 .se2_layer_b_style .hover,#smart_editor2 .se2_layer_b_style .active{background:#ebebeb} +#smart_editor2 .se2_layer_b_style button{width:80px;height:18px;background:none} +#smart_editor2 .se2_layer_b_style button span{left:0;display:block;visibility:visible;overflow:visible;width:71px;height:18px;margin:0 0 0 5px;font-size:11px;line-height:15px;text-align:left} +#smart_editor2 .se2_layer_b_style button span span{visibility:hidden;overflow:hidden;position:absolute;top:0;left:0;width:0;height:0} +#smart_editor2 .se2_layer_b_style .se2_b_style1 span{margin:3px 0 0 4px;font-size:11px;line-height:14px;color:#666;letter-spacing:-1px} +#smart_editor2 .se2_layer_b_style .se2_b_style2 span{background:url("../../img/bg_set.gif") 0 -50px repeat-x} +#smart_editor2 .se2_layer_b_style .se2_b_style3 span{background:url("../../img/bg_set.gif") 0 -68px repeat-x} +#smart_editor2 .se2_layer_b_style .se2_b_style4 span{background:url("../../img/bg_set.gif") 0 -86px repeat-x} +#smart_editor2 .se2_layer_b_style .se2_b_style5 span{background:url("../../img/bg_set.gif") 0 -103px repeat-x} +#smart_editor2 .se2_layer_b_style .se2_b_style6 span{background:url("../../img/bg_set.gif") 0 -121px repeat-x} +#smart_editor2 .se2_layer_b_style .se2_b_style7 span{background:url("../../img/bg_set.gif") 0 -139px repeat-x} +/* TEXT_TOOLBAR : TABLEEDITOR > COLOR */ +#smart_editor2 .se2_pre_color{float:left;width:18px;height:18px;border:1px solid #c7c7c7} +#smart_editor2 .se2_pre_color button{float:left;width:14px;height:14px;margin:2px 0 0 2px;padding:0} +#smart_editor2 .se2_pre_color button span{overflow:hidden;position:absolute;top:-10000px;left:-10000px;z-index:-100;width:0;height:0} +/* TEXT_TOOLBAR : TABLEEDITOR > DIMMED */ +#smart_editor2 .se2_table_set .se2_t_dim1{clear:both;position:absolute;top:71px;left:16px;z-index:60;width:157px;height:118px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_table_set .se2_t_dim2{position:absolute;top:116px;left:16px;z-index:55;width:157px;height:45px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_table_set .se2_t_dim3{clear:both;position:absolute;top:192px;left:16px;z-index:51;width:157px;height:39px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +/* TEXT_TOOLBAR : TABLEEDITOR > STYLE PREVIEW */ +#smart_editor2 .se2_table_set .se2_t_proper2{float:left;position:relative;z-index:50;width:166px;margin:2px 0 0 0} +#smart_editor2 .se2_table_set .se2_t_proper2 dt{float:left;width:84px;height:33px;margin:4px 0 0 0} +#smart_editor2 .se2_table_set .se2_t_proper2 dt input{width:15px;height:15px;margin:-1px 3px 1px 0;_margin:-2px 3px 2px 0;vertical-align:middle} +#smart_editor2 .se2_table_set .se2_t_proper2 dt label{font-weight:bold;font-size:11px;color:#666;letter-spacing:-1px;vertical-align:middle} +#smart_editor2 .se2_table_set .se2_t_proper2 dd{float:left;width:66px;height:33px} +#smart_editor2 .se2_select_ty2{position:relative;width:65px;height:31px;border:1px solid #c7c7c7;background:#fff;font-size:11px;line-height:14px;text-align:left} +#smart_editor2 .se2_select_ty2 span{float:left;width:45px;height:25px;margin:3px 0 0 3px;background:url("../../img/zh_TW/btn_set.png?160622") repeat-x} +#smart_editor2 .se2_select_ty2 .se2_t_style1{background-position:0 -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style2{background-position:-46px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style3{background-position:-92px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style4{background-position:-138px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style5{background-position:-184px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style6{background-position:-230px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style7{background-position:-276px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style8{background-position:-322px -410px} +#smart_editor2 .se2_select_ty2 .se2_t_style9{background-position:0 -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style10{background-position:-46px -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style11{background-position:-92px -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style12{background-position:-138px -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style13{background-position:-184px -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style14{background-position:-230px -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style15{background-position:-276px -436px} +#smart_editor2 .se2_select_ty2 .se2_t_style16{background-position:-322px -436px} +#smart_editor2 .se2_select_ty2 .se2_view_more span{display:none} +/* TEXT_TOOLBAR : TABLEEDITOR > STYLE */ +#smart_editor2 .se2_layer_t_style{position:absolute;top:33px;right:15px;width:208px;border:1px solid #c7c7c7;border-top:1px solid #a8a8a8;background:#fff} +#smart_editor2 .se2_layer_t_style ul{width:204px;height:126px;margin:1px 2px;padding:1px 0 0 0;background:#fff} +#smart_editor2 .se2_layer_t_style li{_display:inline;float:left;width:45px;height:25px;margin:1px;padding:1px;border:1px solid #fff} +#smart_editor2 .se2_layer_t_style .hover,#smart_editor2 .se2_layer_t_style .active{border:1px solid #666;background:#fff} +#smart_editor2 .se2_layer_t_style button{width:45px;height:25px;background:url("../../img/zh_TW/btn_set.png?160622") repeat-x !important} +#smart_editor2 .se2_layer_t_style .se2_t_style1{background-position:0 -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style2{background-position:-46px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style3{background-position:-92px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style4{background-position:-138px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style5{background-position:-184px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style6{background-position:-230px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style7{background-position:-276px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style8{background-position:-322px -410px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style9{background-position:0 -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style10{background-position:-46px -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style11{background-position:-92px -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style12{background-position:-138px -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style13{background-position:-184px -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style14{background-position:-230px -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style15{background-position:-276px -436px !important} +#smart_editor2 .se2_layer_t_style .se2_t_style16{background-position:-322px -436px !important} +#smart_editor2 .se2_table_set .se2_btn_area{float:left;width:166px;margin:6px 0 0 0;padding:12px 0 8px 0;background:url("../../img/bg_line1.gif") repeat-x;text-align:center} +#smart_editor2 .se2_table_set button.se2_apply{width:41px;height:24px;margin-right:3px;background:url("../../img/zh_TW/btn_set.png?160622") no-repeat} +#smart_editor2 .se2_table_set button.se2_cancel{width:39px;height:24px;background:url("../../img/zh_TW/btn_set.png?160622") -41px 0 no-repeat} +#smart_editor2 .se2_table_set .se2_rd{width:14px;height:14px;vertical-align:middle} +#smart_editor2 .se2_table_set .se2_celltit{font-size:11px;font-size:11px;color:#666;letter-spacing:-1px} +#smart_editor2 .se2_table_set dt label.se2_celltit{display:inline} +/* TEXT_TOOLBAR : FINDREPLACE */ +#smart_editor2 .se2_bx_find_revise{position:relative;width:255px;margin:0;padding:0} +#smart_editor2 .se2_bx_find_revise .se2_close{position:absolute;top:5px;right:8px;width:20px;height:20px;background:url("../../img/zh_TW/btn_set.png?160622") -151px -1px no-repeat} +#smart_editor2 .se2_bx_find_revise h3{margin:0;padding:10px 0 13px 10px;background:url("../../img/bg_find_h3.gif") 0 -1px repeat-x;font-size:12px;line-height:14px;letter-spacing:-1px} +#smart_editor2 .se2_bx_find_revise ul{position:relative;margin:8px 0 0 0;padding:0 0 0 12px} +#smart_editor2 .se2_bx_find_revise ul li{_display:inline;float:left;position:static;margin:0 0 0 -1px;padding:0} +#smart_editor2 .se2_bx_find_revise .se2_tabfind{width:117px;height:26px;background:url("../../img/zh_TW/btn_set.png?160622") 0 -100px no-repeat} +#smart_editor2 .se2_bx_find_revise .se2_tabrevise{width:117px;height:26px;background:url("../../img/zh_TW/btn_set.png?160622") -116px -100px no-repeat} +#smart_editor2 .se2_bx_find_revise .active .se2_tabfind{width:117px;height:26px;background:url("../../img/zh_TW/btn_set.png?160622") 0 -126px no-repeat} +#smart_editor2 .se2_bx_find_revise .active .se2_tabrevise{width:117px;height:26px;background:url("../../img/zh_TW/btn_set.png?160622") -116px -126px no-repeat} +#smart_editor2 .se2_bx_find_revise .se2_in_bx_find dl{_display:inline;float:left;width:223px;margin:0 0 0 9px;padding:7px 0 13px 14px;background:url("../../img/bx_set_110302.gif") -289px -1518px no-repeat} +#smart_editor2 .se2_bx_find_revise .se2_in_bx_revise dl{_display:inline;float:left;width:223px;margin:0 0 0 9px;padding:7px 0 13px 14px;background:url("../../img/bx_set_110302.gif") -289px -1619px no-repeat} +#smart_editor2 .se2_bx_find_revise dd{float:left;margin:0 0 2px 0} +#smart_editor2 .se2_bx_find_revise label{float:left;padding:5px 0 0 0;font-size:11px;color:#666;letter-spacing:-2px} +#smart_editor2 .se2_bx_find_revise .se2_find_btns{float:left;clear:both;width:255px;padding:8px 0 10px 0;text-align:center} +#smart_editor2 .se2_bx_find_revise .se2_cancel{width:39px;height:24px;background:url("../../img/zh_TW/btn_set.png?160622") -41px 0 no-repeat} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE */ +#smart_editor2 .se2_qmax{position:absolute;width:18px;height:18px;background:url("../../img/zh_TW/btn_set.png?160622") -339px -169px no-repeat} +#smart_editor2 .se2_qeditor{position:absolute;top:0;left:0;width:183px;margin:0;padding:0;border:1px solid #c7c7c7;border-right:1px solid #ababab;border-bottom:1px solid #ababab;background:#fafafa} +#smart_editor2 .se2_qeditor label,#smart_editor2 .se2_qeditor span,#smart_editor2 .se2_qeditor dt{font-size:11px;color:#666;letter-spacing:-1px} +#smart_editor2 .se2_qbar{position:relative;width:183px;height:11px;background:url("../../img/bx_set_110302.gif") 0 -731px no-repeat} +#smart_editor2 .se2_qbar .se2_qmini{position:absolute;top:-1px;right:0;*right:-1px;_right:-3px;width:18px;height:14px;background:url("../../img/zh_TW/btn_set.png?160622") -315px -170px no-repeat} +#smart_editor2 .se2_qbar .se2_qmini button{width:20px;height:14px;margin-top:-1px} +#smart_editor2 .se2_qeditor .se2_qbody0{float:left;border:1px solid #fefefe} +#smart_editor2 .se2_qeditor .se2_qbody{position:relative;z-index:90;width:174px;padding:4px 0 0 7px} +#smart_editor2 .se2_qeditor .se2_qe1{overflow:hidden;width:174px} +#smart_editor2 .se2_qeditor .se2_qe1 dt{float:left;width:22px;height:18px;padding:4px 0 0 0} +#smart_editor2 .se2_qeditor .se2_qe1 dd{float:left;width:65px;height:22px} +#smart_editor2 .se2_qeditor .se2_addrow{width:28px;height:19px;background:url("../../img/zh_TW/btn_set.png?160622") no-repeat -385px -49px} +#smart_editor2 .se2_qeditor .se2_addcol{width:29px;height:19px;background:url("../../img/zh_TW/btn_set.png?160622") no-repeat -413px -49px} +#smart_editor2 .se2_qeditor .se2_seprow{width:28px;height:19px;background:url("../../img/zh_TW/btn_set.png?160622") no-repeat -385px -68px} +#smart_editor2 .se2_qeditor .se2_sepcol{width:29px;height:19px;background:url("../../img/zh_TW/btn_set.png?160622") no-repeat -413px -68px} +#smart_editor2 .se2_qeditor .se2_delrow{width:28px;height:19px;background:url("../../img/zh_TW/btn_set.png?160622") no-repeat -385px -106px} +#smart_editor2 .se2_qeditor .se2_delcol{width:29px;height:19px;background:url("../../img/zh_TW/btn_set.png?160622") no-repeat -413px -106px} +#smart_editor2 .se2_qeditor .se2_merrow{width:57px;height:19px;background:url("../../img/zh_TW/btn_set.png?160622") no-repeat -385px -125px} +#smart_editor2 .se2_qeditor .se2_mercol{width:57px;height:19px;background:url("../../img/zh_TW/btn_set.png?160622") no-repeat -413px -125px} +#smart_editor2 .se2_qeditor .se2_seprow_off{width:28px;height:19px;background:url("../../img/zh_TW/btn_set.png?160622") no-repeat -385px -87px} +#smart_editor2 .se2_qeditor .se2_sepcol_off{width:29px;height:19px;background:url("../../img/zh_TW/btn_set.png?160622") no-repeat -413px -87px} +#smart_editor2 .se2_qeditor .se2_merrow_off{width:57px;height:19px;background:url("../../img/zh_TW/btn_set.png?160622") no-repeat -385px -144px} +#smart_editor2 .se2_qeditor .se2_mercol_off{width:57px;height:19px;background:url("../../img/zh_TW/btn_set.png?160622") no-repeat -413px -144px} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > CELL_BACKGROUND */ +#smart_editor2 .se2_qeditor .se2_qe2_1 dt input{width:15px;height:15px;margin:-1px 1px 1px -1px;vertical-align:middle} +#smart_editor2 .se2_qeditor .se2_qe2_1 dd{float:left;position:relative;zoom:1} +#smart_editor2 .se2_qeditor .se2_qe2_3{padding:7px 0 6px 0} +/* My글양식 없을때 */ +#smart_editor2 .se2_qeditor .se2_qe2_2{position:relative;_position:absolute} +#smart_editor2 .se2_qeditor .se2_qe2_2 dt{float:left;width:50px;padding:3px 0 0 13px} +#smart_editor2 .se2_qeditor .se2_qe2_2 dt input{width:15px;height:15px;margin:-1px 2px 1px -1px;vertical-align:middle} +#smart_editor2 .se2_qeditor .se2_qe2_2 dd{float:left} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > STYLE */ +#smart_editor2 .se2_qeditor .se2_qe3 dt label{font-weight:normal} +#smart_editor2 .se2_qeditor .se2_qe3 dt input{width:15px;height:15px;margin:-1px 1px 1px -1px;vertical-align:middle} +#smart_editor2 .se2_qeditor .se2_qe3 dd .se2_qe3_table{position:relative} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > CELL_BACKGROUND PREWVIEW */ +#smart_editor2 .se2_qeditor .se2_pre_color{float:left;width:18px;height:18px;border:1px solid #c7c7c7} +#smart_editor2 .se2_qeditor .se2_pre_color button{float:left;width:14px;height:14px;margin:2px 0 0 2px;padding:0} +#smart_editor2 .se2_qeditor .se2_pre_color button span{overflow:hidden;position:absolute;top:-10000px;left:-10000px;z-index:-100;width:0;height:0} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > CELL_BACKGROUND LAYER */ +#smart_editor2 .se2_qeditor .se2_layer{float:left;clear:both;position:absolute;top:20px;left:0;margin:0;padding:0;border:1px solid #c7c7c7;border-top:1px solid #9a9a9a;background:#fafafa} +#smart_editor2 .se2_qeditor .se2_layer .se2_in_layer{float:left;margin:0;padding:0;border:1px solid #fff;background:#fafafa} +#smart_editor2 .se2_qeditor .se2_layer button{vertical-align:top} +#smart_editor2 .se2_qeditor .se2_layer .se2_pick_color li{position:relative} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > CELL_BACKGROUND IMAGE */ +#smart_editor2 .se2_qeditor .se2_pre_bgimg{float:left;width:14px;height:14px;padding:2px;border:1px solid #c7c7c7} +#smart_editor2 .se2_qeditor .se2_qe2_2 button{width:16px;height:16px;background:url("../../img/zh_TW/btn_set.png?160622") 0 -261px no-repeat} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > CELL_BACKGROUND IMAGE LAYER */ +#smart_editor2 .se2_cellimg_set{_display:inline;float:left;width:136px;margin:4px 3px 0 4px;padding-bottom:4px} +#smart_editor2 .se2_cellimg_set li{_display:inline;float:left;width:16px;height:16px;margin:0 1px 1px 0} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg0{background-position:-255px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg1{background-position:0 -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg2{background-position:-17px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg3{background-position:-34px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg4{background-position:-51px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg5{background-position:-68px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg6{background-position:-85px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg7{background-position:-102px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg8{background-position:-119px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg9{background-position:-136px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg10{background-position:-153px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg11{background-position:-170px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg12{background-position:-187px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg13{background-position:-204px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg14{background-position:-221px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg15{background-position:-238px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg16{background-position:-255px -261px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg17{background-position:0 -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg18{background-position:-17px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg19{background-position:-34px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg20{background-position:-51px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg21{background-position:-68px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg22{background-position:-85px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg23{background-position:-102px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg24{background-position:-119px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg25{background-position:-136px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg26{background-position:-153px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg27{background-position:-170px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg28{background-position:-187px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg29{background-position:-204px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg30{background-position:-221px -278px} +#smart_editor2 .se2_qeditor .se2_qe2_2 .se2_cellimg31{background-position:-238px -278px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg button{width:14px;height:14px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg1{background-position:-1px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg2{background-position:-18px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg3{background-position:-35px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg4{background-position:-52px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg5{background-position:-69px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg6{background-position:-86px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg7{background-position:-103px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg8{background-position:-120px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg9{background-position:-137px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg10{background-position:-154px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg11{background-position:-171px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg12{background-position:-188px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg13{background-position:-205px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg14{background-position:-222px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg15{background-position:-239px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg16{background-position:-256px -262px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg17{background-position:-1px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg18{background-position:-18px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg19{background-position:-35px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg20{background-position:-52px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg21{background-position:-69px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg22{background-position:-86px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg23{background-position:-103px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg24{background-position:-120px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg25{background-position:-137px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg26{background-position:-154px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg27{background-position:-171px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg28{background-position:-188px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg29{background-position:-205px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg30{background-position:-222px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg31{background-position:-239px -279px} +#smart_editor2 .se2_qeditor .se2_pre_bgimg .se2_cellimg32{background-position:-256px -279px} +/* TEXT_TOOLBAR : QUICKEDITOR_TABLE > MY REVIEW */ +#smart_editor2 .se2_btn_area{_display:inline;float:left;clear:both;width:166px;margin:5px 0 0 1px;padding:7px 0 6px 0;background:url("../../img/bg_line1.gif") repeat-x;text-align:center} +#smart_editor2 .se2_btn_area .se2_btn_save{width:97px;height:21px;background:url("../../img/zh_TW/btn_set.png?160622") -369px -163px no-repeat} +/* TEXT_TOOLBAR : QUICKEDITOR_IMAGE */ +#smart_editor2 .se2_qe10{width:166px;margin:0;*margin:-2px 0 0 0} +#smart_editor2 .se2_qe10 label{margin:0 1px 0 0;vertical-align:middle} +#smart_editor2 .se2_qe10 .se2_sheight{margin-left:4px} +#smart_editor2 .se2_qe10 .input_ty1{width:30px;height:13px;margin:0 0 1px 1px;padding:3px 4px 0 1px;font-size:11px;letter-spacing:0;text-align:right;vertical-align:middle} +#smart_editor2 .se2_qe10 .se2_sreset{width:41px;height:19px;margin-left:3px;background:url("../../img/zh_TW/btn_set.png?160622") -401px -184px no-repeat;vertical-align:middle} +#smart_editor2 .se2_qe10_1{margin-top:4px;padding:10px 0 3px;background:url("../../img/bg_line1.gif") repeat-x} +#smart_editor2 .se2_qe10_1 input{width:15px;height:15px;margin:-1px 3px 1px -1px;vertical-align:middle} +#smart_editor2 .se2_qe11{float:left;width:166px;margin:4px 0 0 0;padding:7px 0 2px 0;background:url("../../img/bg_line1.gif") repeat-x} +#smart_editor2 .se2_qe11_1{float:left;width:99px} +#smart_editor2 .se2_qe11_1 dt{float:left;width:56px;height:15px;padding:5px 0 0 0} +#smart_editor2 .se2_qe11_1 dd{float:left;position:relative;width:38px;height:20px} +#smart_editor2 .se2_qe11_1 .input_ty1{display:block;width:29px;height:15px;margin:0;*margin:-1px 0 1px 0;padding:3px 1px 0 5px;font-size:11px;letter-spacing:0;text-align:left} +#smart_editor2 .se2_qe11_1 .se2_add{position:absolute;top:2px;right:3px;width:13px;height:8px;background:url("../../img/zh_TW/btn_set.png?160622") -86px -54px no-repeat} +#smart_editor2 .se2_qe11_1 .se2_del{position:absolute;top:10px;right:3px;width:13px;height:8px;background:url("../../img/zh_TW/btn_set.png?160622") -86px -62px no-repeat} +#smart_editor2 .se2_qe11_2{float:left;width:67px} +#smart_editor2 .se2_qe11_2 dt{float:left;width:47px;margin:5px 0 0 0} +#smart_editor2 .se2_qe11_2 dd{float:left;position:relative;width:20px} +#smart_editor2 .se2_qe12{float:left;width:166px;margin:3px 0 0 0;padding:7px 0 0 0;background:url("../../img/bg_line1.gif") repeat-x} +#smart_editor2 .se2_qe12 dt{float:left;margin:5px 4px 0 0} +#smart_editor2 .se2_qe12 dd{float:left;padding:0 0 6px 0} +#smart_editor2 .se2_qe12 .se2_align0{float:left;width:19px;height:21px;background:url("../../img/zh_TW/btn_set.png?160622") -276px -121px no-repeat} +#smart_editor2 .se2_qe12 .se2_align1{float:left;width:19px;height:21px;background:url("../../img/zh_TW/btn_set.png?160622") -295px -121px no-repeat} +#smart_editor2 .se2_qe12 .se2_align2{float:left;width:20px;height:21px;background:url("../../img/zh_TW/btn_set.png?160622") -314px -121px no-repeat} +#smart_editor2 .se2_qe13{position:relative;z-index:10;zoom:1} +#smart_editor2 .se2_qe13 dt{float:left;width:62px;padding:3px 0 0} +#smart_editor2 .se2_qe13 dt input{width:15px;height:15px;margin:-1px 1px 1px -1px;vertical-align:middle;zoom:1} +#smart_editor2 .se2_qe13 dt .se2_qdim2{width:32px} +#smart_editor2 .se2_qe13 dd .se2_select_ty1{width:38px} +#smart_editor2 .se2_qe13 dd .se2_select_ty1 span{width:15px} +#smart_editor2 .se2_qe13 dd .input_ty1{width:20px} +#smart_editor2 .se2_qe13 dd .se2_palette2 .input_ty1{width:67px} +#smart_editor2 .se2_qe13 .se2_add{*top:3px} +#smart_editor2 .se2_qe13 .se2_del{*top:11px} +#smart_editor2 .se2_qe13 .se2_layer_b_style{right:-2px;_right:0} +#smart_editor2 .se2_qe13 .se2_layer_b_style li span{width:auto;margin:0 4px 0 5px;padding-top:2px} +#smart_editor2 .se2_qe13 dd{_display:inline;float:left;position:relative;width:29px;margin-right:5px;_margin-right:3px;zoom:1} +#smart_editor2 .se2_qe13 dd .se2_palette h4{margin-top:9px;font-family:dotum;font-size:12px} +#smart_editor2 .se2_qe13 dd.dd_type{width:38px} +#smart_editor2 .se2_qe13 dd.dd_type2{width:37px;margin-right:3px} +#smart_editor2 .se2_qe13 dd.dd_type2 .input_ty1{width:29px} +#smart_editor2 .se2_qe13 dd.dd_type2 button{right:2px;_right:1px} +#smart_editor2 .se2_qe13 dd.dd_type3{width:20px;margin:0} +#smart_editor2 .se2_qe13_v1{_display:inline;float:left;margin:2px 0 1px} +#smart_editor2 .se2_qe13_v1 dt{padding:4px 0 0 1px} +#smart_editor2 .se2_qe13_v2{_display:inline;float:left;position:relative;z-index:100;width:165px;margin:4px 0 0 1px;zoom:1} +#smart_editor2 .se2_qe13_v2 dd{width:18px;margin:0} +#smart_editor2 .se2_qeditor .se2_qdim3{clear:both;position:absolute;top:55px;left:118px;z-index:110;width:56px;height:22px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim5{clear:both;position:absolute;top:31px;left:106px;width:68px;height:26px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim6c{clear:both;position:absolute;top:25px;left:28px;width:29px;height:23px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim6r{clear:both;position:absolute;top:25px;left:57px;width:29px;height:23px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_highedit{float:right;width:56px;height:21px;margin:-27px 8px 0 0;background:url("../../img/zh_TW/btn_set.png?160622") -329px -142px no-repeat} +#smart_editor2 .se2_qeditor .se2_qdim7{clear:both;position:absolute;top:55px;left:24px;z-index:110;width:150px;height:48px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim8{clear:both;position:absolute;top:105px;left:24px;z-index:110;width:150px;height:37px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim9{clear:both;position:absolute;top:55px;left:111px;z-index:110;width:65px;height:24px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim10{clear:both;position:absolute;top:55px;left:100px;z-index:110;width:77px;height:24px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} +#smart_editor2 .se2_qeditor .se2_qdim11{clear:both;position:absolute;top:55px;left:65px;z-index:110;width:115px;height:24px;background:#fafafa;opacity:0.5;filter:alpha(opacity=50)} diff --git a/plugin/editor/smarteditor2/css/zh_TW/smart_editor2_out.css b/plugin/editor/smarteditor2/css/zh_TW/smart_editor2_out.css new file mode 100644 index 000000000..0baf3770e --- /dev/null +++ b/plugin/editor/smarteditor2/css/zh_TW/smart_editor2_out.css @@ -0,0 +1,12 @@ +@charset "UTF-8"; +/* NHN Web Standardization Team (http://html.nhndesign.com/) HHJ 090226 */ +/* COMMON */ +.se2_outputarea, .se2_outputarea th, .se2_outputarea td{margin:0;padding:0;color:#666;font-size:12px;font-family:'돋움',Dotum,'굴림',Gulim,Helvetica,Sans-serif;line-height:1.5} +.se2_outputarea p{margin:0;padding:0} +.se2_outputarea a:hover{text-decoration:underline} +.se2_outputarea a:link{color:#0000ff} +.se2_outputarea ul{margin:0 0 0 40px;padding:0} +.se2_outputarea ul li{margin:0;list-style-type:disc;padding:0} +.se2_outputarea ul ul li{list-style-type:circle} +.se2_outputarea ul ul ul li{list-style-type:square} +.se2_outputarea img, .se2_outputarea fieldset{border:0} diff --git a/plugin/editor/smarteditor2/editor.lib.php b/plugin/editor/smarteditor2/editor.lib.php index 75c3248fd..d77d75a39 100644 --- a/plugin/editor/smarteditor2/editor.lib.php +++ b/plugin/editor/smarteditor2/editor.lib.php @@ -20,7 +20,7 @@ function editor_html($id, $content, $is_dhtml_editor=true) $html .= ''; if ($is_dhtml_editor && $js) { - $html .= "\n".''; + $html .= "\n".''; $html .= "\n".''; $html .= "\n".''; $html .= "\n'.PHP_EOL; } From df97fa71a04abba7abb92e8702a6209fb5740dcf Mon Sep 17 00:00:00 2001 From: thisgun Date: Mon, 3 Jul 2017 19:03:05 +0900 Subject: [PATCH 09/10] =?UTF-8?q?=EA=B2=8C=EC=8B=9C=ED=8C=90=20=EB=B3=B8?= =?UTF-8?q?=EB=AC=B8=EC=9D=98=20url=20=EC=9E=90=EB=8F=99=20=EB=A7=81?= =?UTF-8?q?=ED=81=AC=20=EC=86=8C=EC=8A=A4=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/common.lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/common.lib.php b/lib/common.lib.php index 3da20636f..fade7b145 100644 --- a/lib/common.lib.php +++ b/lib/common.lib.php @@ -216,7 +216,7 @@ function url_auto_link($str) // http://sir.kr/pg_lecture/463 $str = str_replace(array("<", ">", "&", """, " ", "'"), array("\t_lt_\t", "\t_gt_\t", "&", "\"", "\t_nbsp_\t", "'"), $str); //$str = preg_replace("`(?:(?:(?:href|src)\s*=\s*(?:\"|'|)){0})((http|https|ftp|telnet|news|mms)://[^\"'\s()]+)`", "\\1", $str); - $str = preg_replace("/([^(href=\"?'?)|(src=\"?'?)]|\(|^)((http|https|ftp|telnet|news|mms):\/\/[a-zA-Z0-9\.-]+\.[가-힣\xA1-\xFEa-zA-Z0-9\.:&#=_\?\/~\+%@;\-\|\,\(\)]+)/i", "\\1\\2", $str); + $str = preg_replace("/([^(href=\"?'?)|(src=\"?'?)]|\(|^)((http|https|ftp|telnet|news|mms):\/\/[a-zA-Z0-9\.-]+\.[가-힣\xA1-\xFEa-zA-Z0-9\.:&#!=_\?\/~\+%@;\-\|\,\(\)]+)/i", "\\1\\2", $str); $str = preg_replace("/(^|[\"'\s(])(www\.[^\"'\s()]+)/i", "\\1\\2", $str); $str = preg_replace("/[0-9a-z_-]+@[a-z0-9._-]{4,}/i", "\\0", $str); $str = str_replace(array("\t_nbsp_\t", "\t_lt_\t", "\t_gt_\t", "'"), array(" ", "<", ">", "'"), $str); From 9b8588df79e78d53a60d56dcb533ccde6327f129 Mon Sep 17 00:00:00 2001 From: thisgun Date: Mon, 3 Jul 2017 19:09:40 +0900 Subject: [PATCH 10/10] =?UTF-8?q?5.2.9=20=EB=B2=84=EC=A0=84=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config.php | 2 +- plugin/editor/smarteditor2/SmartEditor2.html | 78 -------------------- 2 files changed, 1 insertion(+), 79 deletions(-) delete mode 100644 plugin/editor/smarteditor2/SmartEditor2.html diff --git a/config.php b/config.php index eee25e8c7..6073b0a83 100644 --- a/config.php +++ b/config.php @@ -5,7 +5,7 @@ ********************/ define('G5_VERSION', '그누보드5'); -define('G5_GNUBOARD_VER', '5.2.8'); +define('G5_GNUBOARD_VER', '5.2.9'); // 이 상수가 정의되지 않으면 각각의 개별 페이지는 별도로 실행될 수 없음 define('_GNUBOARD_', true); diff --git a/plugin/editor/smarteditor2/SmartEditor2.html b/plugin/editor/smarteditor2/SmartEditor2.html deleted file mode 100644 index 9470b7b9f..000000000 --- a/plugin/editor/smarteditor2/SmartEditor2.html +++ /dev/null @@ -1,78 +0,0 @@ - - - - -네이버 :: Smart Editor 2 ™ - - - -
- - -

- - - - -

-
- - - - - \ No newline at end of file