@licium/editor 3.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +176 -0
- package/dist/esm/i18n/__test__/integration/ui/layout.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/integration/ui/toolbar.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/integration/vdom/render.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/integration/widget/widgetNode.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/convertor.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/dom.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/editor.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/eventEmitter.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/helper/common.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/helper/image.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/linkXss.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/markdown/keymap.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/markdown/mdCommand.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/markdown/mdEditor.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/markdown/mdPreview.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/markdown/smartTask.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/markdown/syntaxHighlight.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/markdown/util.d.ts +7 -0
- package/dist/esm/i18n/__test__/unit/repro_3296.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/sanitizer.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/utils/escape.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/utils/pollution.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/vdom/template.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/viewer.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/wysiwyg/customBlock.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/wysiwyg/helper/pasteMsoList.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/wysiwyg/imageInsertion.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/wysiwyg/keymap.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/wysiwyg/wwCommand.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/wysiwyg/wwEditor.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/wysiwyg/wwTableCommand.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/wysiwyg/wwToDOMAdaptor.spec.d.ts +1 -0
- package/dist/esm/i18n/__test__/unit/xssSanitizer.spec.d.ts +1 -0
- package/dist/esm/i18n/ar.d.ts +1 -0
- package/dist/esm/i18n/ar.js +63 -0
- package/dist/esm/i18n/base.d.ts +60 -0
- package/dist/esm/i18n/commands/commandManager.d.ts +16 -0
- package/dist/esm/i18n/commands/defaultCommands.d.ts +2 -0
- package/dist/esm/i18n/commands/wwCommands.d.ts +2 -0
- package/dist/esm/i18n/convertors/convertor.d.ts +19 -0
- package/dist/esm/i18n/convertors/toMarkdown/toMdConvertorState.d.ts +30 -0
- package/dist/esm/i18n/convertors/toMarkdown/toMdConvertors.d.ts +7 -0
- package/dist/esm/i18n/convertors/toMarkdown/toMdNodeTypeWriters.d.ts +8 -0
- package/dist/esm/i18n/convertors/toWysiwyg/htmlToWwConvertors.d.ts +7 -0
- package/dist/esm/i18n/convertors/toWysiwyg/toWwConvertorState.d.ts +23 -0
- package/dist/esm/i18n/convertors/toWysiwyg/toWwConvertors.d.ts +4 -0
- package/dist/esm/i18n/cs-cz.d.ts +1 -0
- package/dist/esm/i18n/cs-cz.js +63 -0
- package/dist/esm/i18n/de-de.d.ts +1 -0
- package/dist/esm/i18n/de-de.js +63 -0
- package/dist/esm/i18n/editor.d.ts +36 -0
- package/dist/esm/i18n/editorCore.d.ts +330 -0
- package/dist/esm/i18n/en-us.d.ts +1 -0
- package/dist/esm/i18n/en-us.js +63 -0
- package/dist/esm/i18n/es-es.d.ts +1 -0
- package/dist/esm/i18n/es-es.js +63 -0
- package/dist/esm/i18n/esm/index.d.ts +5 -0
- package/dist/esm/i18n/esm/indexViewer.d.ts +2 -0
- package/dist/esm/i18n/event/eventEmitter.d.ts +73 -0
- package/dist/esm/i18n/fi-fi.d.ts +1 -0
- package/dist/esm/i18n/fi-fi.js +63 -0
- package/dist/esm/i18n/fr-fr.d.ts +1 -0
- package/dist/esm/i18n/fr-fr.js +63 -0
- package/dist/esm/i18n/gl-es.d.ts +5 -0
- package/dist/esm/i18n/gl-es.js +63 -0
- package/dist/esm/i18n/helper/image.d.ts +4 -0
- package/dist/esm/i18n/helper/manipulation.d.ts +16 -0
- package/dist/esm/i18n/helper/plugin.d.ts +3 -0
- package/dist/esm/i18n/hr-hr.d.ts +1 -0
- package/dist/esm/i18n/hr-hr.js +63 -0
- package/dist/esm/i18n/i18n.d.ts +20 -0
- package/dist/esm/i18n/i18n.js +217 -0
- package/dist/esm/i18n/index.d.ts +10 -0
- package/dist/esm/i18n/indexEditorOnlyStyle.d.ts +3 -0
- package/dist/esm/i18n/indexViewer.d.ts +3 -0
- package/dist/esm/i18n/it-it.d.ts +1 -0
- package/dist/esm/i18n/it-it.js +63 -0
- package/dist/esm/i18n/ja-jp.d.ts +1 -0
- package/dist/esm/i18n/ja-jp.js +63 -0
- package/dist/esm/i18n/ko-kr.d.ts +1 -0
- package/dist/esm/i18n/ko-kr.js +63 -0
- package/dist/esm/i18n/markdown/helper/list.d.ts +55 -0
- package/dist/esm/i18n/markdown/helper/mdCommand.d.ts +5 -0
- package/dist/esm/i18n/markdown/helper/pos.d.ts +22 -0
- package/dist/esm/i18n/markdown/helper/query.d.ts +3 -0
- package/dist/esm/i18n/markdown/htmlRenderConvertors.d.ts +5 -0
- package/dist/esm/i18n/markdown/marks/blockQuote.d.ts +19 -0
- package/dist/esm/i18n/markdown/marks/code.d.ts +25 -0
- package/dist/esm/i18n/markdown/marks/codeBlock.d.ts +18 -0
- package/dist/esm/i18n/markdown/marks/customBlock.d.ts +10 -0
- package/dist/esm/i18n/markdown/marks/emph.d.ts +17 -0
- package/dist/esm/i18n/markdown/marks/heading.d.ts +23 -0
- package/dist/esm/i18n/markdown/marks/html.d.ts +8 -0
- package/dist/esm/i18n/markdown/marks/link.d.ts +29 -0
- package/dist/esm/i18n/markdown/marks/listItem.d.ts +42 -0
- package/dist/esm/i18n/markdown/marks/simpleMark.d.ts +32 -0
- package/dist/esm/i18n/markdown/marks/strike.d.ts +14 -0
- package/dist/esm/i18n/markdown/marks/strong.d.ts +18 -0
- package/dist/esm/i18n/markdown/marks/table.d.ts +27 -0
- package/dist/esm/i18n/markdown/marks/thematicBreak.d.ts +17 -0
- package/dist/esm/i18n/markdown/mdEditor.d.ts +48 -0
- package/dist/esm/i18n/markdown/mdPreview.d.ts +50 -0
- package/dist/esm/i18n/markdown/nodes/doc.d.ts +7 -0
- package/dist/esm/i18n/markdown/nodes/paragraph.d.ts +46 -0
- package/dist/esm/i18n/markdown/nodes/text.d.ts +7 -0
- package/dist/esm/i18n/markdown/plugins/helper/markInfo.d.ts +19 -0
- package/dist/esm/i18n/markdown/plugins/previewHighlight.d.ts +3 -0
- package/dist/esm/i18n/markdown/plugins/smartTask.d.ts +3 -0
- package/dist/esm/i18n/markdown/plugins/syntaxHighlight.d.ts +3 -0
- package/dist/esm/i18n/markdown/scroll/animation.d.ts +2 -0
- package/dist/esm/i18n/markdown/scroll/dom.d.ts +16 -0
- package/dist/esm/i18n/markdown/scroll/offset.d.ts +9 -0
- package/dist/esm/i18n/markdown/scroll/scrollSync.d.ts +30 -0
- package/dist/esm/i18n/nb-no.d.ts +1 -0
- package/dist/esm/i18n/nb-no.js +63 -0
- package/dist/esm/i18n/nl-nl.d.ts +1 -0
- package/dist/esm/i18n/nl-nl.js +63 -0
- package/dist/esm/i18n/pl-pl.d.ts +1 -0
- package/dist/esm/i18n/pl-pl.js +63 -0
- package/dist/esm/i18n/plugins/dropImage.d.ts +3 -0
- package/dist/esm/i18n/plugins/placeholder.d.ts +7 -0
- package/dist/esm/i18n/plugins/popupWidget.d.ts +3 -0
- package/dist/esm/i18n/pt-br.d.ts +1 -0
- package/dist/esm/i18n/pt-br.js +63 -0
- package/dist/esm/i18n/queries/queryManager.d.ts +2 -0
- package/dist/esm/i18n/ru-ru.d.ts +1 -0
- package/dist/esm/i18n/ru-ru.js +64 -0
- package/dist/esm/i18n/sanitizer/htmlSanitizer.d.ts +3 -0
- package/dist/esm/i18n/spec/mark.d.ts +12 -0
- package/dist/esm/i18n/spec/node.d.ts +12 -0
- package/dist/esm/i18n/spec/specManager.d.ts +16 -0
- package/dist/esm/i18n/sv-se.d.ts +1 -0
- package/dist/esm/i18n/sv-se.js +63 -0
- package/dist/esm/i18n/tr-tr.d.ts +1 -0
- package/dist/esm/i18n/tr-tr.js +63 -0
- package/dist/esm/i18n/ui/components/contextMenu.d.ts +21 -0
- package/dist/esm/i18n/ui/components/layout.d.ts +36 -0
- package/dist/esm/i18n/ui/components/popup.d.ts +21 -0
- package/dist/esm/i18n/ui/components/switch.d.ts +17 -0
- package/dist/esm/i18n/ui/components/tabs.d.ts +12 -0
- package/dist/esm/i18n/ui/components/toolbar/customPopupBody.d.ts +16 -0
- package/dist/esm/i18n/ui/components/toolbar/headingPopupBody.d.ts +12 -0
- package/dist/esm/i18n/ui/components/toolbar/imagePopupBody.d.ts +30 -0
- package/dist/esm/i18n/ui/components/toolbar/linkPopupBody.d.ts +18 -0
- package/dist/esm/i18n/ui/components/toolbar/tablePopupBody.d.ts +29 -0
- package/dist/esm/i18n/ui/components/toolbar/toolbar.d.ts +45 -0
- package/dist/esm/i18n/ui/components/toolbar/toolbarGroup.d.ts +21 -0
- package/dist/esm/i18n/ui/toolbarItemFactory.d.ts +13 -0
- package/dist/esm/i18n/ui/vdom/commit.d.ts +2 -0
- package/dist/esm/i18n/ui/vdom/component.d.ts +10 -0
- package/dist/esm/i18n/ui/vdom/dom.d.ts +6 -0
- package/dist/esm/i18n/ui/vdom/render.d.ts +4 -0
- package/dist/esm/i18n/ui/vdom/renderer.d.ts +4 -0
- package/dist/esm/i18n/ui/vdom/template.d.ts +3 -0
- package/dist/esm/i18n/ui/vdom/vnode.d.ts +30 -0
- package/dist/esm/i18n/uk-ua.d.ts +1 -0
- package/dist/esm/i18n/uk-ua.js +63 -0
- package/dist/esm/i18n/utils/common.d.ts +19 -0
- package/dist/esm/i18n/utils/constants.d.ts +8 -0
- package/dist/esm/i18n/utils/dom.d.ts +25 -0
- package/dist/esm/i18n/utils/map.d.ts +19 -0
- package/dist/esm/i18n/utils/markdown.d.ts +23 -0
- package/dist/esm/i18n/viewer.d.ts +77 -0
- package/dist/esm/i18n/widget/rules.d.ts +28 -0
- package/dist/esm/i18n/widget/widgetNode.d.ts +28 -0
- package/dist/esm/i18n/wysiwyg/adaptor/mdLikeNode.d.ts +5 -0
- package/dist/esm/i18n/wysiwyg/adaptor/wwToDOMAdaptor.d.ts +13 -0
- package/dist/esm/i18n/wysiwyg/clipboard/paste.d.ts +6 -0
- package/dist/esm/i18n/wysiwyg/clipboard/pasteMsoList.d.ts +2 -0
- package/dist/esm/i18n/wysiwyg/clipboard/pasteTextParser.d.ts +2 -0
- package/dist/esm/i18n/wysiwyg/clipboard/pasteToTable.d.ts +3 -0
- package/dist/esm/i18n/wysiwyg/command/list.d.ts +7 -0
- package/dist/esm/i18n/wysiwyg/command/table.d.ts +16 -0
- package/dist/esm/i18n/wysiwyg/helper/node.d.ts +37 -0
- package/dist/esm/i18n/wysiwyg/helper/table.d.ts +25 -0
- package/dist/esm/i18n/wysiwyg/helper/tableOffsetMap.d.ts +88 -0
- package/dist/esm/i18n/wysiwyg/markdownInputRules.d.ts +3 -0
- package/dist/esm/i18n/wysiwyg/marks/code.d.ts +31 -0
- package/dist/esm/i18n/wysiwyg/marks/emph.d.ts +34 -0
- package/dist/esm/i18n/wysiwyg/marks/link.d.ts +59 -0
- package/dist/esm/i18n/wysiwyg/marks/strike.d.ts +31 -0
- package/dist/esm/i18n/wysiwyg/marks/strong.d.ts +34 -0
- package/dist/esm/i18n/wysiwyg/nodes/blockQuote.d.ts +33 -0
- package/dist/esm/i18n/wysiwyg/nodes/bulletList.d.ts +43 -0
- package/dist/esm/i18n/wysiwyg/nodes/codeBlock.d.ts +45 -0
- package/dist/esm/i18n/wysiwyg/nodes/customBlock.d.ts +26 -0
- package/dist/esm/i18n/wysiwyg/nodes/doc.d.ts +7 -0
- package/dist/esm/i18n/wysiwyg/nodes/frontMatter.d.ts +21 -0
- package/dist/esm/i18n/wysiwyg/nodes/hardBreak.d.ts +14 -0
- package/dist/esm/i18n/wysiwyg/nodes/heading.d.ts +38 -0
- package/dist/esm/i18n/wysiwyg/nodes/html.d.ts +11 -0
- package/dist/esm/i18n/wysiwyg/nodes/htmlComment.d.ts +21 -0
- package/dist/esm/i18n/wysiwyg/nodes/image.d.ts +45 -0
- package/dist/esm/i18n/wysiwyg/nodes/listItem.d.ts +36 -0
- package/dist/esm/i18n/wysiwyg/nodes/orderedList.d.ts +39 -0
- package/dist/esm/i18n/wysiwyg/nodes/paragraph.d.ts +21 -0
- package/dist/esm/i18n/wysiwyg/nodes/table.d.ts +80 -0
- package/dist/esm/i18n/wysiwyg/nodes/tableBody.d.ts +26 -0
- package/dist/esm/i18n/wysiwyg/nodes/tableBodyCell.d.ts +36 -0
- package/dist/esm/i18n/wysiwyg/nodes/tableHead.d.ts +26 -0
- package/dist/esm/i18n/wysiwyg/nodes/tableHeadCell.d.ts +39 -0
- package/dist/esm/i18n/wysiwyg/nodes/tableRow.d.ts +26 -0
- package/dist/esm/i18n/wysiwyg/nodes/text.d.ts +14 -0
- package/dist/esm/i18n/wysiwyg/nodes/thematicBreak.d.ts +33 -0
- package/dist/esm/i18n/wysiwyg/nodeview/codeBlockView.d.ts +29 -0
- package/dist/esm/i18n/wysiwyg/nodeview/customBlockView.d.ts +29 -0
- package/dist/esm/i18n/wysiwyg/nodeview/imageView.d.ts +20 -0
- package/dist/esm/i18n/wysiwyg/plugins/selection/cellSelection.d.ts +14 -0
- package/dist/esm/i18n/wysiwyg/plugins/selection/tableSelection.d.ts +2 -0
- package/dist/esm/i18n/wysiwyg/plugins/selection/tableSelectionView.d.ts +19 -0
- package/dist/esm/i18n/wysiwyg/plugins/tableContextMenu.d.ts +3 -0
- package/dist/esm/i18n/wysiwyg/plugins/task.d.ts +2 -0
- package/dist/esm/i18n/wysiwyg/plugins/toolbarState.d.ts +3 -0
- package/dist/esm/i18n/wysiwyg/specCreator.d.ts +3 -0
- package/dist/esm/i18n/wysiwyg/wwEditor.d.ts +57 -0
- package/dist/esm/i18n/zh-cn.d.ts +1 -0
- package/dist/esm/i18n/zh-cn.js +63 -0
- package/dist/esm/i18n/zh-tw.d.ts +1 -0
- package/dist/esm/i18n/zh-tw.js +63 -0
- package/dist/esm/index.js +25133 -0
- package/dist/esm/indexViewer.js +12757 -0
- package/dist/i18n/ar.js +162 -0
- package/dist/i18n/cs-cz.js +162 -0
- package/dist/i18n/de-de.js +162 -0
- package/dist/i18n/es-es.js +162 -0
- package/dist/i18n/fi-fi.js +162 -0
- package/dist/i18n/fr-fr.js +162 -0
- package/dist/i18n/gl-es.js +162 -0
- package/dist/i18n/hr-hr.js +162 -0
- package/dist/i18n/it-it.js +162 -0
- package/dist/i18n/ja-jp.js +162 -0
- package/dist/i18n/ko-kr.js +162 -0
- package/dist/i18n/nb-no.js +162 -0
- package/dist/i18n/nl-nl.js +162 -0
- package/dist/i18n/pl-pl.js +162 -0
- package/dist/i18n/pt-br.js +162 -0
- package/dist/i18n/ru-ru.js +163 -0
- package/dist/i18n/sv-se.js +162 -0
- package/dist/i18n/tr-tr.js +162 -0
- package/dist/i18n/uk-ua.js +162 -0
- package/dist/i18n/zh-cn.js +162 -0
- package/dist/i18n/zh-tw.js +162 -0
- package/dist/theme/toastui-editor-dark.css +474 -0
- package/dist/toastui-editor-only.css +1068 -0
- package/dist/toastui-editor-viewer.css +492 -0
- package/dist/toastui-editor-viewer.js +14079 -0
- package/dist/toastui-editor.css +1606 -0
- package/dist/toastui-editor.js +26464 -0
- package/package.json +95 -0
- package/types/convertor.d.ts +143 -0
- package/types/editor.d.ts +383 -0
- package/types/event.d.ts +56 -0
- package/types/index.d.ts +70 -0
- package/types/map.d.ts +8 -0
- package/types/markdown.d.ts +60 -0
- package/types/plugin.d.ts +59 -0
- package/types/prosemirror-commands.d.ts +15 -0
- package/types/prosemirror-model.d.ts +15 -0
- package/types/prosemirror-transform.d.ts +35 -0
- package/types/spec.d.ts +42 -0
- package/types/toastmark.d.ts +357 -0
- package/types/toastui-editor-viewer.d.ts +39 -0
- package/types/ui.d.ts +165 -0
- package/types/wysiwyg.d.ts +36 -0
|
@@ -0,0 +1,492 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* @licium/editor
|
|
3
|
+
* @version 3.2.3 | Fri Jan 02 2026
|
|
4
|
+
* @author NHN Cloud FE Development Lab <dl_javascript@nhn.com>
|
|
5
|
+
* @license MIT
|
|
6
|
+
*/
|
|
7
|
+
/*
|
|
8
|
+
z-index basis
|
|
9
|
+
-1: pseudo element
|
|
10
|
+
20 - preview, wysiwyg
|
|
11
|
+
30 - wysiwyg code block language editor, popup, context menu
|
|
12
|
+
40 - tooltip
|
|
13
|
+
*/
|
|
14
|
+
.ProseMirror {
|
|
15
|
+
font-family: 'Open Sans', 'Helvetica Neue', 'Helvetica', 'Arial', '나눔바른고딕',
|
|
16
|
+
'Nanum Barun Gothic', '맑은고딕', sans-serif;
|
|
17
|
+
color: #222;
|
|
18
|
+
font-size: 13px;
|
|
19
|
+
overflow-y: auto;
|
|
20
|
+
overflow-x: hidden;
|
|
21
|
+
height: calc(100% - 36px);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.ProseMirror .placeholder {
|
|
25
|
+
position: relative;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.ProseMirror .placeholder::before {
|
|
29
|
+
content: attr(data-placeholder);
|
|
30
|
+
color: #999;
|
|
31
|
+
position: absolute;
|
|
32
|
+
pointer-events: none;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.ProseMirror:focus {
|
|
36
|
+
outline: none;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.ProseMirror-selectednode {
|
|
40
|
+
outline: none;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
table.ProseMirror-selectednode {
|
|
44
|
+
border-radius: 2px;
|
|
45
|
+
outline: 2px solid #00a9ff;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.html-block.ProseMirror-selectednode {
|
|
49
|
+
border-radius: 2px;
|
|
50
|
+
outline: 2px solid #00a9ff;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.toastui-editor-contents {
|
|
54
|
+
margin: 0;
|
|
55
|
+
padding: 0;
|
|
56
|
+
font-size: 13px;
|
|
57
|
+
font-family: 'Open Sans', 'Helvetica Neue', 'Helvetica', 'Arial', '나눔바른고딕',
|
|
58
|
+
'Nanum Barun Gothic', '맑은고딕', sans-serif;
|
|
59
|
+
z-index: 20;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.toastui-editor-contents *:not(table) {
|
|
63
|
+
line-height: 160%;
|
|
64
|
+
box-sizing: content-box;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.toastui-editor-contents i,
|
|
68
|
+
.toastui-editor-contents cite,
|
|
69
|
+
.toastui-editor-contents em,
|
|
70
|
+
.toastui-editor-contents var,
|
|
71
|
+
.toastui-editor-contents address,
|
|
72
|
+
.toastui-editor-contents dfn {
|
|
73
|
+
font-style: italic;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.toastui-editor-contents strong {
|
|
77
|
+
font-weight: bold;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.toastui-editor-contents p {
|
|
81
|
+
margin: 10px 0;
|
|
82
|
+
color: #222;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.toastui-editor-contents>h1:first-of-type,
|
|
86
|
+
.toastui-editor-contents>div>div:first-of-type h1 {
|
|
87
|
+
margin-top: 14px;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.toastui-editor-contents h1,
|
|
91
|
+
.toastui-editor-contents h2,
|
|
92
|
+
.toastui-editor-contents h3,
|
|
93
|
+
.toastui-editor-contents h4,
|
|
94
|
+
.toastui-editor-contents h5,
|
|
95
|
+
.toastui-editor-contents h6 {
|
|
96
|
+
font-weight: bold;
|
|
97
|
+
color: #222;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.toastui-editor-contents h1 {
|
|
101
|
+
font-size: 24px;
|
|
102
|
+
line-height: 28px;
|
|
103
|
+
border-bottom: 3px double #999;
|
|
104
|
+
margin: 52px 0 15px 0;
|
|
105
|
+
padding-bottom: 7px;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.toastui-editor-contents h2 {
|
|
109
|
+
font-size: 22px;
|
|
110
|
+
line-height: 23px;
|
|
111
|
+
border-bottom: 1px solid #dbdbdb;
|
|
112
|
+
margin: 20px 0 13px 0;
|
|
113
|
+
padding-bottom: 7px;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.toastui-editor-contents h3 {
|
|
117
|
+
font-size: 20px;
|
|
118
|
+
margin: 18px 0 2px;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.toastui-editor-contents h4 {
|
|
122
|
+
font-size: 18px;
|
|
123
|
+
margin: 10px 0 2px;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.toastui-editor-contents h3,
|
|
127
|
+
.toastui-editor-contents h4 {
|
|
128
|
+
line-height: 18px;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.toastui-editor-contents h5 {
|
|
132
|
+
font-size: 16px;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.toastui-editor-contents h6 {
|
|
136
|
+
font-size: 14px;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.toastui-editor-contents h5,
|
|
140
|
+
.toastui-editor-contents h6 {
|
|
141
|
+
line-height: 17px;
|
|
142
|
+
margin: 9px 0 -4px;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.toastui-editor-contents del {
|
|
146
|
+
color: #999;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.toastui-editor-contents blockquote {
|
|
150
|
+
margin: 14px 0;
|
|
151
|
+
border-left: 4px solid #e5e5e5;
|
|
152
|
+
padding: 0 16px;
|
|
153
|
+
color: #999;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.toastui-editor-contents blockquote p,
|
|
157
|
+
.toastui-editor-contents blockquote ul,
|
|
158
|
+
.toastui-editor-contents blockquote ol {
|
|
159
|
+
color: #999;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.toastui-editor-contents blockquote> :first-child {
|
|
163
|
+
margin-top: 0;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.toastui-editor-contents blockquote> :last-child {
|
|
167
|
+
margin-bottom: 0;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.toastui-editor-contents pre,
|
|
171
|
+
.toastui-editor-contents code {
|
|
172
|
+
font-family: Consolas, Courier, 'Apple SD 산돌고딕 Neo', -apple-system, 'Lucida Grande',
|
|
173
|
+
'Apple SD Gothic Neo', '맑은 고딕', 'Segoe UI', '돋움', dotum, sans-serif;
|
|
174
|
+
border: 0;
|
|
175
|
+
border-radius: 0;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.toastui-editor-contents pre {
|
|
179
|
+
margin: 2px 0 8px;
|
|
180
|
+
padding: 18px;
|
|
181
|
+
background-color: #f4f7f8;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.toastui-editor-contents code {
|
|
185
|
+
color: #c1798b;
|
|
186
|
+
background-color: #f9f2f4;
|
|
187
|
+
padding: 2px 3px;
|
|
188
|
+
letter-spacing: -0.3px;
|
|
189
|
+
border-radius: 2px;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.toastui-editor-contents pre code {
|
|
193
|
+
padding: 0;
|
|
194
|
+
color: inherit;
|
|
195
|
+
white-space: pre-wrap;
|
|
196
|
+
background-color: transparent;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.toastui-editor-contents img {
|
|
200
|
+
margin: 4px 0 10px;
|
|
201
|
+
box-sizing: border-box;
|
|
202
|
+
vertical-align: top;
|
|
203
|
+
max-width: 100%;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.toastui-editor-contents table {
|
|
207
|
+
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
208
|
+
margin: 12px 0 14px;
|
|
209
|
+
color: #222;
|
|
210
|
+
width: auto;
|
|
211
|
+
border-collapse: collapse;
|
|
212
|
+
box-sizing: border-box;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.toastui-editor-contents table th,
|
|
216
|
+
.toastui-editor-contents table td {
|
|
217
|
+
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
218
|
+
padding: 5px 14px 5px 12px;
|
|
219
|
+
height: 32px;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.toastui-editor-contents table th {
|
|
223
|
+
background-color: #555;
|
|
224
|
+
font-weight: 300;
|
|
225
|
+
color: #fff;
|
|
226
|
+
padding-top: 6px;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.toastui-editor-contents th p {
|
|
230
|
+
margin: 0;
|
|
231
|
+
color: #fff;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
.toastui-editor-contents td p {
|
|
235
|
+
margin: 0;
|
|
236
|
+
padding: 0 2px;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.toastui-editor-contents td.toastui-editor-cell-selected {
|
|
240
|
+
background-color: #d8dfec;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.toastui-editor-contents th.toastui-editor-cell-selected {
|
|
244
|
+
background-color: #908f8f;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.toastui-editor-contents ul,
|
|
248
|
+
.toastui-editor-contents menu,
|
|
249
|
+
.toastui-editor-contents ol,
|
|
250
|
+
.toastui-editor-contents dir {
|
|
251
|
+
display: block;
|
|
252
|
+
list-style-type: none;
|
|
253
|
+
padding-left: 24px;
|
|
254
|
+
margin: 6px 0 10px;
|
|
255
|
+
color: #222;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.toastui-editor-contents ol {
|
|
259
|
+
list-style-type: none;
|
|
260
|
+
counter-reset: li;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.toastui-editor-contents ol>li {
|
|
264
|
+
counter-increment: li;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.toastui-editor-contents ul>li::before,
|
|
268
|
+
.toastui-editor-contents ol>li::before {
|
|
269
|
+
display: inline-block;
|
|
270
|
+
position: absolute;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.toastui-editor-contents ul>li::before {
|
|
274
|
+
content: '';
|
|
275
|
+
margin-top: 6px;
|
|
276
|
+
margin-left: -17px;
|
|
277
|
+
width: 5px;
|
|
278
|
+
height: 5px;
|
|
279
|
+
border-radius: 50%;
|
|
280
|
+
background-color: #ccc;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.toastui-editor-contents ol>li::before {
|
|
284
|
+
content: '.' counter(li);
|
|
285
|
+
margin-left: -28px;
|
|
286
|
+
width: 24px;
|
|
287
|
+
text-align: right;
|
|
288
|
+
direction: rtl;
|
|
289
|
+
color: #aaa;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.toastui-editor-contents ul ul,
|
|
293
|
+
.toastui-editor-contents ul ol,
|
|
294
|
+
.toastui-editor-contents ol ol,
|
|
295
|
+
.toastui-editor-contents ol ul {
|
|
296
|
+
margin-top: 0 !important;
|
|
297
|
+
margin-bottom: 0 !important;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.toastui-editor-contents ul li,
|
|
301
|
+
.toastui-editor-contents ol li {
|
|
302
|
+
position: relative;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.toastui-editor-contents ul p,
|
|
306
|
+
.toastui-editor-contents ol p {
|
|
307
|
+
margin: 0;
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
.toastui-editor-contents hr {
|
|
311
|
+
border-top: 1px solid #eee;
|
|
312
|
+
margin: 16px 0;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
.toastui-editor-contents a {
|
|
316
|
+
text-decoration: underline;
|
|
317
|
+
color: #4b96e6;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.toastui-editor-contents a:hover {
|
|
321
|
+
color: #1f70de;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.toastui-editor-contents .image-link {
|
|
325
|
+
position: relative;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.toastui-editor-contents .image-link:hover::before {
|
|
329
|
+
content: '';
|
|
330
|
+
position: absolute;
|
|
331
|
+
width: 30px;
|
|
332
|
+
height: 30px;
|
|
333
|
+
right: 0px;
|
|
334
|
+
border-radius: 50%;
|
|
335
|
+
border: 1px solid #c9ccd5;
|
|
336
|
+
background: #fff url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIj4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIj4KICAgICAgICA8ZyBzdHJva2U9IiM1NTUiIHN0cm9rZS13aWR0aD0iMS41Ij4KICAgICAgICAgICAgPGc+CiAgICAgICAgICAgICAgICA8Zz4KICAgICAgICAgICAgICAgICAgICA8cGF0aCBkPSJNNy42NjUgMTUuMDdsLTEuODE5LS4wMDJjLTEuNDg2IDAtMi42OTItMS4yMjgtMi42OTItMi43NDR2LS4xOTJjMC0xLjUxNSAxLjIwNi0yLjc0NCAyLjY5Mi0yLjc0NGgzLjg0NmMxLjQ4NyAwIDIuNjkyIDEuMjI5IDIuNjkyIDIuNzQ0di4xOTIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xMDAwIC00NTgxKSB0cmFuc2xhdGUoOTk1IDQ1NzYpIHRyYW5zbGF0ZSg1IDUpIHNjYWxlKDEgLTEpIHJvdGF0ZSg0NSAzNy4yOTMgMCkiLz4KICAgICAgICAgICAgICAgICAgICA8cGF0aCBkPSJNMTIuMzI2IDQuOTM0bDEuODIyLjAwMmMxLjQ4NyAwIDIuNjkzIDEuMjI4IDIuNjkzIDIuNzQ0di4xOTJjMCAxLjUxNS0xLjIwNiAyLjc0NC0yLjY5MyAyLjc0NGgtMy44NDVjLTEuNDg3IDAtMi42OTItMS4yMjktMi42OTItMi43NDRWNy42OCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTEwMDAgLTQ1ODEpIHRyYW5zbGF0ZSg5OTUgNDU3NikgdHJhbnNsYXRlKDUgNSkgc2NhbGUoMSAtMSkgcm90YXRlKDQ1IDMwLjk5NiAwKSIvPgogICAgICAgICAgICAgICAgPC9nPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4K) no-repeat;
|
|
337
|
+
background-position: center;
|
|
338
|
+
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
|
|
339
|
+
cursor: pointer;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
.toastui-editor-contents .task-list-item {
|
|
343
|
+
border: 0;
|
|
344
|
+
list-style: none;
|
|
345
|
+
padding-left: 24px;
|
|
346
|
+
margin-left: -24px;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.toastui-editor-contents .task-list-item::before {
|
|
350
|
+
background-repeat: no-repeat;
|
|
351
|
+
background-size: 18px 18px;
|
|
352
|
+
background-position: center;
|
|
353
|
+
content: '';
|
|
354
|
+
margin-left: 0;
|
|
355
|
+
margin-top: 0;
|
|
356
|
+
border-radius: 2px;
|
|
357
|
+
height: 18px;
|
|
358
|
+
width: 18px;
|
|
359
|
+
position: absolute;
|
|
360
|
+
left: 0;
|
|
361
|
+
top: 1px;
|
|
362
|
+
cursor: pointer;
|
|
363
|
+
background: transparent url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxOCIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgZmlsbD0iI0ZGRiIgc3Ryb2tlPSIjQ0NDIj4KICAgICAgICAgICAgPGc+CiAgICAgICAgICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTAzMCAtMjk2KSB0cmFuc2xhdGUoNzg4IDE5MikgdHJhbnNsYXRlKDI0MiAxMDQpIj4KICAgICAgICAgICAgICAgICAgICA8cmVjdCB3aWR0aD0iMTciIGhlaWdodD0iMTciIHg9Ii41IiB5PSIuNSIgcng9IjIiLz4KICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+Cg==);
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
.toastui-editor-contents .task-list-item.checked::before {
|
|
367
|
+
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxOCIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgZmlsbD0iIzRCOTZFNiI+CiAgICAgICAgICAgIDxnPgogICAgICAgICAgICAgICAgPGc+CiAgICAgICAgICAgICAgICAgICAgPHBhdGggZD0iTTE2IDBjMS4xMDUgMCAyIC44OTUgMiAydjE0YzAgMS4xMDUtLjg5NSAyLTIgMkgyYy0xLjEwNSAwLTItLjg5NS0yLTJWMkMwIC44OTUuODk1IDAgMiAwaDE0em0tMS43OTMgNS4yOTNjLS4zOS0uMzktMS4wMjQtLjM5LTEuNDE0IDBMNy41IDEwLjU4NSA1LjIwNyA4LjI5M2wtLjA5NC0uMDgzYy0uMzkyLS4zMDUtLjk2LS4yNzgtMS4zMi4wODMtLjM5LjM5LS4zOSAxLjAyNCAwIDEuNDE0bDMgMyAuMDk0LjA4M2MuMzkyLjMwNS45Ni4yNzggMS4zMi0uMDgzbDYtNiAuMDgzLS4wOTRjLjMwNS0uMzkyLjI3OC0uOTYtLjA4My0xLjMyeiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTEwNTAgLTI5NikgdHJhbnNsYXRlKDc4OCAxOTIpIHRyYW5zbGF0ZSgyNjIgMTA0KSIvPgogICAgICAgICAgICAgICAgPC9nPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4K);
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
.toastui-editor-custom-block .toastui-editor-custom-block-editor {
|
|
371
|
+
background: #f9f7fd;
|
|
372
|
+
color: #452d6b;
|
|
373
|
+
border: solid 1px #dbd4ea;
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
.toastui-editor-custom-block .toastui-editor-custom-block-view {
|
|
377
|
+
position: relative;
|
|
378
|
+
padding: 9px 13px 8px 12px;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
.toastui-editor-custom-block.ProseMirror-selectednode .toastui-editor-custom-block-view {
|
|
382
|
+
border: solid 1px #dbd4ea;
|
|
383
|
+
border-radius: 2px;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
.toastui-editor-custom-block .toastui-editor-custom-block-view .tool {
|
|
387
|
+
position: absolute;
|
|
388
|
+
right: 10px;
|
|
389
|
+
top: 7px;
|
|
390
|
+
display: none;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
.toastui-editor-custom-block.ProseMirror-selectednode .toastui-editor-custom-block-view .tool {
|
|
394
|
+
display: block;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
.toastui-editor-custom-block-view button {
|
|
398
|
+
vertical-align: middle;
|
|
399
|
+
width: 15px;
|
|
400
|
+
height: 15px;
|
|
401
|
+
margin-left: 8px;
|
|
402
|
+
padding: 3px;
|
|
403
|
+
border: solid 1px #cccccc;
|
|
404
|
+
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI1LjIuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuugiOydtOyWtF8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiCgkgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMzAgMzAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMwIDMwOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+Cgkuc3Qwe2ZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO2ZpbGw6IzU1NTU1NTt9Cjwvc3R5bGU+CjxnPgoJPGc+CgkJPGc+CgkJCTxnPgoJCQkJPGc+CgkJCQkJPHBhdGggY2xhc3M9InN0MCIgZD0iTTE1LjUsMTIuNWwyLDJMMTIsMjBoLTJ2LTJMMTUuNSwxMi41eiBNMTgsMTBsMiwybC0xLjUsMS41bC0yLTJMMTgsMTB6Ii8+CgkJCQk8L2c+CgkJCTwvZz4KCQk8L2c+Cgk8L2c+CjwvZz4KPC9zdmc+Cg==) no-repeat;
|
|
405
|
+
background-position: center;
|
|
406
|
+
background-size: 30px 30px;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
.toastui-editor-custom-block-view .info {
|
|
410
|
+
font-size: 13px;
|
|
411
|
+
font-weight: bold;
|
|
412
|
+
color: #5200d0;
|
|
413
|
+
vertical-align: middle;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
.toastui-editor-contents .toastui-editor-ww-code-block {
|
|
417
|
+
position: relative;
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
.toastui-editor-contents .toastui-editor-ww-code-block:after {
|
|
421
|
+
content: attr(data-language);
|
|
422
|
+
position: absolute;
|
|
423
|
+
display: inline-block;
|
|
424
|
+
top: 10px;
|
|
425
|
+
right: 10px;
|
|
426
|
+
height: 24px;
|
|
427
|
+
padding: 3px 35px 0 10px;
|
|
428
|
+
font-weight: bold;
|
|
429
|
+
font-size: 13px;
|
|
430
|
+
color: #333;
|
|
431
|
+
background: #e5e9ea url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI1LjIuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuugiOydtOyWtF8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiCgkgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMzAgMzAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMwIDMwOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+Cgkuc3Qwe2ZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO2ZpbGw6IzU1NTU1NTt9Cjwvc3R5bGU+CjxnPgoJPGc+CgkJPGc+CgkJCTxnPgoJCQkJPGc+CgkJCQkJPHBhdGggY2xhc3M9InN0MCIgZD0iTTE1LjUsMTIuNWwyLDJMMTIsMjBoLTJ2LTJMMTUuNSwxMi41eiBNMTgsMTBsMiwybC0xLjUsMS41bC0yLTJMMTgsMTB6Ii8+CgkJCQk8L2c+CgkJCTwvZz4KCQk8L2c+Cgk8L2c+CjwvZz4KPC9zdmc+Cg==) no-repeat;
|
|
432
|
+
background-position: right;
|
|
433
|
+
border-radius: 2px;
|
|
434
|
+
background-size: 30px 30px;
|
|
435
|
+
cursor: pointer;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
.toastui-editor-ww-code-block-language {
|
|
439
|
+
position: fixed;
|
|
440
|
+
display: inline-block;
|
|
441
|
+
width: 100px;
|
|
442
|
+
height: 27px;
|
|
443
|
+
right: 35px;
|
|
444
|
+
border: 1px solid #ccc;
|
|
445
|
+
border-radius: 2px;
|
|
446
|
+
background-color: #fff;
|
|
447
|
+
z-index: 30;
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
.toastui-editor-ww-code-block-language input {
|
|
451
|
+
box-sizing: border-box;
|
|
452
|
+
margin: 0;
|
|
453
|
+
padding: 0 10px;
|
|
454
|
+
height: 100%;
|
|
455
|
+
width: 100%;
|
|
456
|
+
background-color: transparent;
|
|
457
|
+
border: none;
|
|
458
|
+
outline: none;
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
.toastui-editor-contents-placeholder::before {
|
|
462
|
+
content: attr(data-placeholder);
|
|
463
|
+
color: grey;
|
|
464
|
+
line-height: 160%;
|
|
465
|
+
position: absolute;
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
.toastui-editor-md-preview .toastui-editor-contents h1 {
|
|
469
|
+
min-height: 28px;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
.toastui-editor-md-preview .toastui-editor-contents h2 {
|
|
473
|
+
min-height: 23px;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
.toastui-editor-md-preview .toastui-editor-contents blockquote {
|
|
477
|
+
min-height: 20px;
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
.toastui-editor-md-preview .toastui-editor-contents li {
|
|
481
|
+
min-height: 22px;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
.toastui-editor-pseudo-clipboard {
|
|
485
|
+
position: fixed;
|
|
486
|
+
opacity: 0;
|
|
487
|
+
width: 0;
|
|
488
|
+
height: 0;
|
|
489
|
+
left: -1000px;
|
|
490
|
+
top: -1000px;
|
|
491
|
+
z-index: -1;
|
|
492
|
+
}
|