1 line
31 KiB
JavaScript
1 line
31 KiB
JavaScript
|
|
var style="\n /*!\n* Quill Editor v1.3.3\n* https://quilljs.com/\n* Copyright (c) 2014, Jason Chen\n* Copyright (c) 2013, salesforce.com\n*/\n .ql-container {\n box-sizing: border-box;\n font-family: Helvetica, Arial, sans-serif;\n font-size: 13px;\n height: 100%;\n margin: 0;\n position: relative;\n }\n .ql-container.ql-disabled .ql-tooltip {\n visibility: hidden;\n }\n .ql-container.ql-disabled .ql-editor ul[data-checked] > li::before {\n pointer-events: none;\n }\n .ql-clipboard {\n inset-inline-start: -100000px;\n height: 1px;\n overflow-y: hidden;\n position: absolute;\n top: 50%;\n }\n .ql-clipboard p {\n margin: 0;\n padding: 0;\n }\n .ql-editor {\n box-sizing: border-box;\n line-height: 1.42;\n height: 100%;\n outline: none;\n overflow-y: auto;\n padding: 12px 15px;\n tab-size: 4;\n -moz-tab-size: 4;\n text-align: left;\n white-space: pre-wrap;\n word-wrap: break-word;\n }\n .ql-editor > * {\n cursor: text;\n }\n .ql-editor p,\n .ql-editor ol,\n .ql-editor ul,\n .ql-editor pre,\n .ql-editor blockquote,\n .ql-editor h1,\n .ql-editor h2,\n .ql-editor h3,\n .ql-editor h4,\n .ql-editor h5,\n .ql-editor h6 {\n margin: 0;\n padding: 0;\n counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;\n }\n .ql-editor ol,\n .ql-editor ul {\n padding-inline-start: 1.5rem;\n }\n .ql-editor ol > li,\n .ql-editor ul > li {\n list-style-type: none;\n }\n .ql-editor ul > li::before {\n content: '\\2022';\n }\n .ql-editor ul[data-checked='true'],\n .ql-editor ul[data-checked='false'] {\n pointer-events: none;\n }\n .ql-editor ul[data-checked='true'] > li *,\n .ql-editor ul[data-checked='false'] > li * {\n pointer-events: all;\n }\n .ql-editor ul[data-checked='true'] > li::before,\n .ql-editor ul[data-checked='false'] > li::before {\n color: #777;\n cursor: pointer;\n pointer-events: all;\n }\n .ql-editor ul[data-checked='true'] > li::before {\n content: '\\2611';\n }\n .ql-editor ul[data-checked='false'] > li::before {\n content: '\\2610';\n }\n .ql-editor li::before {\n display: inline-block;\n white-space: nowrap;\n width: 1.2rem;\n }\n .ql-editor li:not(.ql-direction-rtl)::before {\n margin-inline-start: -1.5rem;\n margin-inline-end: 0.3rem;\n text-align: right;\n }\n .ql-editor li.ql-direction-rtl::before {\n margin-inline-start: 0.3rem;\n margin-inline-end: -1.5rem;\n }\n .ql-editor ol li:not(.ql-direction-rtl),\n .ql-editor ul li:not(.ql-direction-rtl) {\n padding-inline-start: 1.5rem;\n }\n .ql-editor ol li.ql-direction-rtl,\n .ql-editor ul li.ql-direction-rtl {\n padding-inline-end: 1.5rem;\n }\n .ql-editor ol li {\n counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;\n counter-increment: list-0;\n }\n .ql-editor ol li:before {\n content: counter(list-0, decimal) '. ';\n }\n .ql-editor ol li.ql-indent-1 {\n counter-increment: list-1;\n }\n .ql-editor ol li.ql-indent-1:before {\n content: counter(list-1, lower-alpha) '. ';\n }\n .ql-editor ol li.ql-indent-1 {\n counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;\n }\n .ql-editor ol li.ql-indent-2 {\n counter-increment: list-2;\n }\n .ql-editor ol li.ql-indent-2:before {\n content: counter(list-2, lower-roman) '. ';\n }\n .ql-editor ol li.ql-indent-2 {\n counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;\n }\n .ql-editor ol li.ql-indent-3 {\n counter-increment: list-3;\n }\n .ql-editor ol li.ql-indent-3:before {\n content: counter(list-3, decim
|