sohelp-eleplus 1.1.13
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 +7 -0
- package/cache/DictCache.js +58 -0
- package/cache/ModuleCache.js +352 -0
- package/components.js +45 -0
- package/core-export.js +4 -0
- package/http/CrudHttp.js +115 -0
- package/http/DictHttp.js +12 -0
- package/http/ModuleHttp.js +68 -0
- package/http/SohelpHttp.js +125 -0
- package/index.js +6 -0
- package/installer.js +8 -0
- package/lang/en_US.js +4 -0
- package/lang/zh_CN.js +4 -0
- package/lang/zh_TW.js +4 -0
- package/package.json +9 -0
- package/sohelp-ace-editor/index.vue +198 -0
- package/sohelp-application-select/index.vue +15 -0
- package/sohelp-autocode/index.vue +53 -0
- package/sohelp-calendar-view/index.vue +11 -0
- package/sohelp-card-view/index.vue +11 -0
- package/sohelp-condition/index.vue +210 -0
- package/sohelp-cry-input/index.vue +64 -0
- package/sohelp-date/index.vue +27 -0
- package/sohelp-datetime/index.vue +44 -0
- package/sohelp-datetime-picker/index.vue +86 -0
- package/sohelp-datetime-range/index.vue +59 -0
- package/sohelp-dict/index.vue +207 -0
- package/sohelp-dict/props.js +68 -0
- package/sohelp-drawer/index.vue +31 -0
- package/sohelp-drop-card/index.vue +94 -0
- package/sohelp-drop-card/props.js +68 -0
- package/sohelp-dyn-select/index.vue +99 -0
- package/sohelp-dyn-select/props.js +67 -0
- package/sohelp-dyn-tree/index.vue +82 -0
- package/sohelp-dyn-tree-select/index.vue +114 -0
- package/sohelp-entity-form/index.vue +524 -0
- package/sohelp-entity-grid/index.vue +30 -0
- package/sohelp-file-upload/index.vue +218 -0
- package/sohelp-filter-scheme/components/condition.vue +102 -0
- package/sohelp-filter-scheme/components/filter.vue +45 -0
- package/sohelp-filter-scheme/components/keywords.vue +15 -0
- package/sohelp-filter-scheme/components/scheme.vue +49 -0
- package/sohelp-filter-scheme/index.vue +113 -0
- package/sohelp-grid/SohelpGridConfig.js~ +408 -0
- package/sohelp-grid/components/filter-condition-item.vue +298 -0
- package/sohelp-grid/index.vue +1886 -0
- package/sohelp-grid/js/ConditionType.js +101 -0
- package/sohelp-grid/js/DefaultGridOptions.js +141 -0
- package/sohelp-grid/js/DefaultProps.js +27 -0
- package/sohelp-grid/js/SohelpConfigFunction.js +0 -0
- package/sohelp-grid/js/SohelpGridConfig.js +101 -0
- package/sohelp-grid/js/useSohelpGridConfig.js +519 -0
- package/sohelp-grid-select/index.vue +245 -0
- package/sohelp-grid-view/filter/config/grid-filter-condition.vue +221 -0
- package/sohelp-grid-view/filter/config/grid-filter-config.vue +27 -0
- package/sohelp-grid-view/filter/config/grid-filter-field.vue +378 -0
- package/sohelp-grid-view/filter/config/grid-filter-keywords.vue +310 -0
- package/sohelp-grid-view/filter/config/grid-filter-list.vue +313 -0
- package/sohelp-grid-view/filter/config/grid-filter-scheme.vue +264 -0
- package/sohelp-grid-view/filter/config/grid-filter-sort.vue +310 -0
- package/sohelp-grid-view/filter/config/index.vue +206 -0
- package/sohelp-grid-view/filter/filter-form.vue +427 -0
- package/sohelp-grid-view/filter/filter-toolbar.vue +110 -0
- package/sohelp-grid-view/filter/index.vue +160 -0
- package/sohelp-grid-view/index.vue +379 -0
- package/sohelp-grid-view-select/index.vue +141 -0
- package/sohelp-group-view/index.vue +11 -0
- package/sohelp-icon-select/index.vue +96 -0
- package/sohelp-icon-select/vxeui-icon.js +90 -0
- package/sohelp-image-upload/index.vue +286 -0
- package/sohelp-input/index.vue +39 -0
- package/sohelp-modal/index.vue +49 -0
- package/sohelp-module/index.vue +54 -0
- package/sohelp-module/useModalManager.js +89 -0
- package/sohelp-module/useSohelpModule.js +66 -0
- package/sohelp-number-input/index.vue +32 -0
- package/sohelp-number-range/index.vue +135 -0
- package/sohelp-org-select/index.vue +30 -0
- package/sohelp-org-tree/index.vue +18 -0
- package/sohelp-org-tree-select/index.vue +93 -0
- package/sohelp-org-user-tree/index.vue +26 -0
- package/sohelp-org-user-tree-select/index.vue +11 -0
- package/sohelp-pagination/index.vue +11 -0
- package/sohelp-power/index.vue +105 -0
- package/sohelp-pro-form/components/pro-form-footer.vue +44 -0
- package/sohelp-pro-form/components/pro-form-item.vue +1133 -0
- package/sohelp-pro-form/index.vue +257 -0
- package/sohelp-pro-form/util.js +140 -0
- package/sohelp-pro-layout/index.vue +11 -0
- package/sohelp-pro-table/index.vue +14 -0
- package/sohelp-process/index.vue +216 -0
- package/sohelp-rate/index.vue +56 -0
- package/sohelp-rate/props.js +71 -0
- package/sohelp-relation/index.vue +11 -0
- package/sohelp-rich-text/index.vue +242 -0
- package/sohelp-rich-text/util.js +231 -0
- package/sohelp-richtext/index.vue +10 -0
- package/sohelp-role-select/index.vue +33 -0
- package/sohelp-search/components/search-config.vue +0 -0
- package/sohelp-search/index.vue +49 -0
- package/sohelp-search-pro-form/index.vue +11 -0
- package/sohelp-select/index.vue +120 -0
- package/sohelp-split-panel/index.vue +15 -0
- package/sohelp-switch/index.vue +56 -0
- package/sohelp-table/index.vue +151 -0
- package/sohelp-tenant-select/index.vue +128 -0
- package/sohelp-text/index.vue +14 -0
- package/sohelp-textarea-input/index.vue +36 -0
- package/sohelp-time/index.vue +10 -0
- package/sohelp-tree/index.vue +37 -0
- package/sohelp-tree-select/index.vue +18 -0
- package/sohelp-user-select/index.vue +44 -0
- package/sohelp-user-select/index.vue~ +53 -0
- package/sohelp-user-select/props.js +71 -0
- package/sohelp-user-tag/index.vue +12 -0
- package/sohelp-user-tree/index.vue +11 -0
- package/sohelp-vform-drawer/index.vue +40 -0
- package/sohelp-vform-eleplus/favicon.ico +0 -0
- package/sohelp-vform-eleplus/index.vue +297 -0
- package/sohelp-vform-eleplus/preview.html +91 -0
- package/sohelp-vform-eleplus/render.es.js +72433 -0
- package/sohelp-vform-eleplus/render.style.css +16 -0
- package/sohelp-vform-eleplus/render.umd.js +57 -0
- package/sohelp-vform-eleplus/tinymce/langs/zh_CN.js +462 -0
- package/sohelp-vform-eleplus/tinymce/langs/zh_TW.js +419 -0
- package/sohelp-vform-eleplus/tinymce/skins/content/dark/content.css +72 -0
- package/sohelp-vform-eleplus/tinymce/skins/content/dark/content.min.css +7 -0
- package/sohelp-vform-eleplus/tinymce/skins/content/default/content.css +67 -0
- package/sohelp-vform-eleplus/tinymce/skins/content/default/content.min.css +7 -0
- package/sohelp-vform-eleplus/tinymce/skins/content/document/content.css +72 -0
- package/sohelp-vform-eleplus/tinymce/skins/content/document/content.min.css +7 -0
- package/sohelp-vform-eleplus/tinymce/skins/content/writer/content.css +68 -0
- package/sohelp-vform-eleplus/tinymce/skins/content/writer/content.min.css +7 -0
- package/sohelp-vform-eleplus/tinymce/skins/ui/oxide/content.css +732 -0
- package/sohelp-vform-eleplus/tinymce/skins/ui/oxide/content.inline.css +726 -0
- package/sohelp-vform-eleplus/tinymce/skins/ui/oxide/content.inline.min.css +7 -0
- package/sohelp-vform-eleplus/tinymce/skins/ui/oxide/content.min.css +7 -0
- package/sohelp-vform-eleplus/tinymce/skins/ui/oxide/content.mobile.css +29 -0
- package/sohelp-vform-eleplus/tinymce/skins/ui/oxide/content.mobile.min.css +7 -0
- package/sohelp-vform-eleplus/tinymce/skins/ui/oxide/fonts/tinymce-mobile.woff +0 -0
- package/sohelp-vform-eleplus/tinymce/skins/ui/oxide/skin.css +3047 -0
- package/sohelp-vform-eleplus/tinymce/skins/ui/oxide/skin.min.css +7 -0
- package/sohelp-vform-eleplus/tinymce/skins/ui/oxide/skin.mobile.css +673 -0
- package/sohelp-vform-eleplus/tinymce/skins/ui/oxide/skin.mobile.min.css +7 -0
- package/sohelp-vform-eleplus/tinymce/skins/ui/oxide/skin.shadowdom.css +37 -0
- package/sohelp-vform-eleplus/tinymce/skins/ui/oxide/skin.shadowdom.min.css +7 -0
- package/sohelp-vform-eleplus/tinymce/skins/ui/oxide-dark/content.css +714 -0
- package/sohelp-vform-eleplus/tinymce/skins/ui/oxide-dark/content.inline.css +726 -0
- package/sohelp-vform-eleplus/tinymce/skins/ui/oxide-dark/content.inline.min.css +7 -0
- package/sohelp-vform-eleplus/tinymce/skins/ui/oxide-dark/content.min.css +7 -0
- package/sohelp-vform-eleplus/tinymce/skins/ui/oxide-dark/content.mobile.css +29 -0
- package/sohelp-vform-eleplus/tinymce/skins/ui/oxide-dark/content.mobile.min.css +7 -0
- package/sohelp-vform-eleplus/tinymce/skins/ui/oxide-dark/fonts/tinymce-mobile.woff +0 -0
- package/sohelp-vform-eleplus/tinymce/skins/ui/oxide-dark/skin.css +3047 -0
- package/sohelp-vform-eleplus/tinymce/skins/ui/oxide-dark/skin.min.css +7 -0
- package/sohelp-vform-eleplus/tinymce/skins/ui/oxide-dark/skin.mobile.css +673 -0
- package/sohelp-vform-eleplus/tinymce/skins/ui/oxide-dark/skin.mobile.min.css +7 -0
- package/sohelp-vform-eleplus/tinymce/skins/ui/oxide-dark/skin.shadowdom.css +37 -0
- package/sohelp-vform-eleplus/tinymce/skins/ui/oxide-dark/skin.shadowdom.min.css +7 -0
- package/sohelp-vform-modal/index.vue +41 -0
- package/sohelp-vform-select/index.vue +11 -0
- package/sohelp-vform-vant/favicon.ico +0 -0
- package/sohelp-vform-vant/render.es.js +14608 -0
- package/sohelp-vform-vant/render.style.css +1 -0
- package/sohelp-vform-vant/render.umd.js +22 -0
- package/sohelp-vxe-grid/DefaultGridOptions.js +102 -0
- package/sohelp-vxe-grid/DefaultProps.js +37 -0
- package/sohelp-vxe-grid/SohelpGridConfig.js +142 -0
- package/sohelp-vxe-grid/index.vue +518 -0
- package/sohelp-vxe-grid-select/index.vue +148 -0
- package/sohelp-vxe-table/index.vue +184 -0
- package/sohelp-workflow/index.vue +495 -0
- package/sohelp-workflow/nodeWrap.vue +53 -0
- package/sohelp-workflow/nodes/addNode.vue +27 -0
- package/sohelp-workflow/nodes/approver.vue +125 -0
- package/sohelp-workflow/nodes/branch.vue +434 -0
- package/sohelp-workflow/nodes/promoter.vue +80 -0
- package/sohelp-workflow/nodes/send.vue +95 -0
- package/sohelp-workflow-drawer/components/approval-modal.vue +182 -0
- package/sohelp-workflow-drawer/components/draw-box.vue +141 -0
- package/sohelp-workflow-drawer/components/form.vue +79 -0
- package/sohelp-workflow-drawer/components/table.vue +153 -0
- package/sohelp-workflow-drawer/components/timeline.vue +189 -0
- package/sohelp-workflow-drawer/components/workflow.vue +68 -0
- package/sohelp-workflow-drawer/index.vue +311 -0
- package/sohelp-workflow-drawer/js/index.js +119 -0
- package/style/index.scss +0 -0
- package/utils/ProFormConvertUtil.js +76 -0
- package/utils/core.js +310 -0
- package/utils/use-form-data.js +48 -0
- package/utils/use-mobile.js +43 -0
|
@@ -0,0 +1,714 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
|
3
|
+
* Licensed under the LGPL or a commercial license.
|
|
4
|
+
* For LGPL see License.txt in the project root for license information.
|
|
5
|
+
* For commercial licenses see https://www.tiny.cloud/
|
|
6
|
+
*/
|
|
7
|
+
.mce-content-body .mce-item-anchor {
|
|
8
|
+
background: transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'8'%20height%3D'12'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M0%200L8%200%208%2012%204.09117821%209%200%2012z'%20fill%3D%22%23cccccc%22%2F%3E%3C%2Fsvg%3E%0A") no-repeat center;
|
|
9
|
+
cursor: default;
|
|
10
|
+
display: inline-block;
|
|
11
|
+
height: 12px !important;
|
|
12
|
+
padding: 0 2px;
|
|
13
|
+
-webkit-user-modify: read-only;
|
|
14
|
+
-moz-user-modify: read-only;
|
|
15
|
+
-webkit-user-select: all;
|
|
16
|
+
-moz-user-select: all;
|
|
17
|
+
-ms-user-select: all;
|
|
18
|
+
user-select: all;
|
|
19
|
+
width: 8px !important;
|
|
20
|
+
}
|
|
21
|
+
.mce-content-body .mce-item-anchor[data-mce-selected] {
|
|
22
|
+
outline-offset: 1px;
|
|
23
|
+
}
|
|
24
|
+
.tox-comments-visible .tox-comment {
|
|
25
|
+
background-color: #fff0b7;
|
|
26
|
+
}
|
|
27
|
+
.tox-comments-visible .tox-comment--active {
|
|
28
|
+
background-color: #ffe168;
|
|
29
|
+
}
|
|
30
|
+
.tox-checklist > li:not(.tox-checklist--hidden) {
|
|
31
|
+
list-style: none;
|
|
32
|
+
margin: 0.25em 0;
|
|
33
|
+
}
|
|
34
|
+
.tox-checklist > li:not(.tox-checklist--hidden)::before {
|
|
35
|
+
content: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-unchecked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2215%22%20height%3D%2215%22%20x%3D%22.5%22%20y%3D%22.5%22%20fill-rule%3D%22nonzero%22%20stroke%3D%22%236d737b%22%20rx%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A");
|
|
36
|
+
cursor: pointer;
|
|
37
|
+
height: 1em;
|
|
38
|
+
margin-left: -1.5em;
|
|
39
|
+
margin-top: 0.125em;
|
|
40
|
+
position: absolute;
|
|
41
|
+
width: 1em;
|
|
42
|
+
}
|
|
43
|
+
.tox-checklist li:not(.tox-checklist--hidden).tox-checklist--checked::before {
|
|
44
|
+
content: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-checked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%234099FF%22%20fill-rule%3D%22nonzero%22%20rx%3D%222%22%2F%3E%3Cpath%20id%3D%22Path%22%20fill%3D%22%23FFF%22%20fill-rule%3D%22nonzero%22%20d%3D%22M11.5703186%2C3.14417309%20C11.8516238%2C2.73724603%2012.4164781%2C2.62829933%2012.83558%2C2.89774797%20C13.260121%2C3.17069355%2013.3759736%2C3.72932262%2013.0909105%2C4.14168582%20L7.7580587%2C11.8560195%20C7.43776896%2C12.3193404%206.76483983%2C12.3852142%206.35607322%2C11.9948725%20L3.02491697%2C8.8138662%20C2.66090143%2C8.46625845%202.65798871%2C7.89594698%203.01850234%2C7.54483354%20C3.373942%2C7.19866177%203.94940006%2C7.19592841%204.30829608%2C7.5386474%20L6.85276923%2C9.9684299%20L11.5703186%2C3.14417309%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A");
|
|
45
|
+
}
|
|
46
|
+
[dir=rtl] .tox-checklist > li:not(.tox-checklist--hidden)::before {
|
|
47
|
+
margin-left: 0;
|
|
48
|
+
margin-right: -1.5em;
|
|
49
|
+
}
|
|
50
|
+
/* stylelint-disable */
|
|
51
|
+
/* http://prismjs.com/ */
|
|
52
|
+
/**
|
|
53
|
+
* Dracula Theme originally by Zeno Rocha [@zenorocha]
|
|
54
|
+
* https://draculatheme.com/
|
|
55
|
+
*
|
|
56
|
+
* Ported for PrismJS by Albert Vallverdu [@byverdu]
|
|
57
|
+
*/
|
|
58
|
+
code[class*="language-"],
|
|
59
|
+
pre[class*="language-"] {
|
|
60
|
+
color: #f8f8f2;
|
|
61
|
+
background: none;
|
|
62
|
+
text-shadow: 0 1px rgba(0, 0, 0, 0.3);
|
|
63
|
+
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
|
64
|
+
text-align: left;
|
|
65
|
+
white-space: pre;
|
|
66
|
+
word-spacing: normal;
|
|
67
|
+
word-break: normal;
|
|
68
|
+
word-wrap: normal;
|
|
69
|
+
line-height: 1.5;
|
|
70
|
+
-moz-tab-size: 4;
|
|
71
|
+
tab-size: 4;
|
|
72
|
+
-webkit-hyphens: none;
|
|
73
|
+
-ms-hyphens: none;
|
|
74
|
+
hyphens: none;
|
|
75
|
+
}
|
|
76
|
+
/* Code blocks */
|
|
77
|
+
pre[class*="language-"] {
|
|
78
|
+
padding: 1em;
|
|
79
|
+
margin: 0.5em 0;
|
|
80
|
+
overflow: auto;
|
|
81
|
+
border-radius: 0.3em;
|
|
82
|
+
}
|
|
83
|
+
:not(pre) > code[class*="language-"],
|
|
84
|
+
pre[class*="language-"] {
|
|
85
|
+
background: #282a36;
|
|
86
|
+
}
|
|
87
|
+
/* Inline code */
|
|
88
|
+
:not(pre) > code[class*="language-"] {
|
|
89
|
+
padding: 0.1em;
|
|
90
|
+
border-radius: 0.3em;
|
|
91
|
+
white-space: normal;
|
|
92
|
+
}
|
|
93
|
+
.token.comment,
|
|
94
|
+
.token.prolog,
|
|
95
|
+
.token.doctype,
|
|
96
|
+
.token.cdata {
|
|
97
|
+
color: #6272a4;
|
|
98
|
+
}
|
|
99
|
+
.token.punctuation {
|
|
100
|
+
color: #f8f8f2;
|
|
101
|
+
}
|
|
102
|
+
.namespace {
|
|
103
|
+
opacity: 0.7;
|
|
104
|
+
}
|
|
105
|
+
.token.property,
|
|
106
|
+
.token.tag,
|
|
107
|
+
.token.constant,
|
|
108
|
+
.token.symbol,
|
|
109
|
+
.token.deleted {
|
|
110
|
+
color: #ff79c6;
|
|
111
|
+
}
|
|
112
|
+
.token.boolean,
|
|
113
|
+
.token.number {
|
|
114
|
+
color: #bd93f9;
|
|
115
|
+
}
|
|
116
|
+
.token.selector,
|
|
117
|
+
.token.attr-name,
|
|
118
|
+
.token.string,
|
|
119
|
+
.token.char,
|
|
120
|
+
.token.builtin,
|
|
121
|
+
.token.inserted {
|
|
122
|
+
color: #50fa7b;
|
|
123
|
+
}
|
|
124
|
+
.token.operator,
|
|
125
|
+
.token.entity,
|
|
126
|
+
.token.url,
|
|
127
|
+
.language-css .token.string,
|
|
128
|
+
.style .token.string,
|
|
129
|
+
.token.variable {
|
|
130
|
+
color: #f8f8f2;
|
|
131
|
+
}
|
|
132
|
+
.token.atrule,
|
|
133
|
+
.token.attr-value,
|
|
134
|
+
.token.function,
|
|
135
|
+
.token.class-name {
|
|
136
|
+
color: #f1fa8c;
|
|
137
|
+
}
|
|
138
|
+
.token.keyword {
|
|
139
|
+
color: #8be9fd;
|
|
140
|
+
}
|
|
141
|
+
.token.regex,
|
|
142
|
+
.token.important {
|
|
143
|
+
color: #ffb86c;
|
|
144
|
+
}
|
|
145
|
+
.token.important,
|
|
146
|
+
.token.bold {
|
|
147
|
+
font-weight: bold;
|
|
148
|
+
}
|
|
149
|
+
.token.italic {
|
|
150
|
+
font-style: italic;
|
|
151
|
+
}
|
|
152
|
+
.token.entity {
|
|
153
|
+
cursor: help;
|
|
154
|
+
}
|
|
155
|
+
/* stylelint-enable */
|
|
156
|
+
.mce-content-body {
|
|
157
|
+
overflow-wrap: break-word;
|
|
158
|
+
word-wrap: break-word;
|
|
159
|
+
}
|
|
160
|
+
.mce-content-body .mce-visual-caret {
|
|
161
|
+
background-color: black;
|
|
162
|
+
background-color: currentColor;
|
|
163
|
+
position: absolute;
|
|
164
|
+
}
|
|
165
|
+
.mce-content-body .mce-visual-caret-hidden {
|
|
166
|
+
display: none;
|
|
167
|
+
}
|
|
168
|
+
.mce-content-body *[data-mce-caret] {
|
|
169
|
+
left: -1000px;
|
|
170
|
+
margin: 0;
|
|
171
|
+
padding: 0;
|
|
172
|
+
position: absolute;
|
|
173
|
+
right: auto;
|
|
174
|
+
top: 0;
|
|
175
|
+
}
|
|
176
|
+
.mce-content-body .mce-offscreen-selection {
|
|
177
|
+
left: -2000000px;
|
|
178
|
+
max-width: 1000000px;
|
|
179
|
+
position: absolute;
|
|
180
|
+
}
|
|
181
|
+
.mce-content-body *[contentEditable=false] {
|
|
182
|
+
cursor: default;
|
|
183
|
+
}
|
|
184
|
+
.mce-content-body *[contentEditable=true] {
|
|
185
|
+
cursor: text;
|
|
186
|
+
}
|
|
187
|
+
.tox-cursor-format-painter {
|
|
188
|
+
cursor: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M15%2C6%20C15%2C5.45%2014.55%2C5%2014%2C5%20L6%2C5%20C5.45%2C5%205%2C5.45%205%2C6%20L5%2C10%20C5%2C10.55%205.45%2C11%206%2C11%20L14%2C11%20C14.55%2C11%2015%2C10.55%2015%2C10%20L15%2C9%20L16%2C9%20L16%2C12%20L9%2C12%20L9%2C19%20C9%2C19.55%209.45%2C20%2010%2C20%20L11%2C20%20C11.55%2C20%2012%2C19.55%2012%2C19%20L12%2C14%20L18%2C14%20L18%2C7%20L15%2C7%20L15%2C6%20Z%22%2F%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M1%2C1%20L8.25%2C1%20C8.66421356%2C1%209%2C1.33578644%209%2C1.75%20L9%2C1.75%20C9%2C2.16421356%208.66421356%2C2.5%208.25%2C2.5%20L2.5%2C2.5%20L2.5%2C8.25%20C2.5%2C8.66421356%202.16421356%2C9%201.75%2C9%20L1.75%2C9%20C1.33578644%2C9%201%2C8.66421356%201%2C8.25%20L1%2C1%20Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A"), default;
|
|
189
|
+
}
|
|
190
|
+
.mce-content-body figure.align-left {
|
|
191
|
+
float: left;
|
|
192
|
+
}
|
|
193
|
+
.mce-content-body figure.align-right {
|
|
194
|
+
float: right;
|
|
195
|
+
}
|
|
196
|
+
.mce-content-body figure.image.align-center {
|
|
197
|
+
display: table;
|
|
198
|
+
margin-left: auto;
|
|
199
|
+
margin-right: auto;
|
|
200
|
+
}
|
|
201
|
+
.mce-preview-object {
|
|
202
|
+
border: 1px solid gray;
|
|
203
|
+
display: inline-block;
|
|
204
|
+
line-height: 0;
|
|
205
|
+
margin: 0 2px 0 2px;
|
|
206
|
+
position: relative;
|
|
207
|
+
}
|
|
208
|
+
.mce-preview-object .mce-shim {
|
|
209
|
+
background: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
|
|
210
|
+
height: 100%;
|
|
211
|
+
left: 0;
|
|
212
|
+
position: absolute;
|
|
213
|
+
top: 0;
|
|
214
|
+
width: 100%;
|
|
215
|
+
}
|
|
216
|
+
.mce-preview-object[data-mce-selected="2"] .mce-shim {
|
|
217
|
+
display: none;
|
|
218
|
+
}
|
|
219
|
+
.mce-object {
|
|
220
|
+
background: transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M4%203h16a1%201%200%200%201%201%201v16a1%201%200%200%201-1%201H4a1%201%200%200%201-1-1V4a1%201%200%200%201%201-1zm1%202v14h14V5H5zm4.79%202.565l5.64%204.028a.5.5%200%200%201%200%20.814l-5.64%204.028a.5.5%200%200%201-.79-.407V7.972a.5.5%200%200%201%20.79-.407z%22%20fill%3D%22%23cccccc%22%2F%3E%3C%2Fsvg%3E%0A") no-repeat center;
|
|
221
|
+
border: 1px dashed #aaa;
|
|
222
|
+
}
|
|
223
|
+
.mce-pagebreak {
|
|
224
|
+
border: 1px dashed #aaa;
|
|
225
|
+
cursor: default;
|
|
226
|
+
display: block;
|
|
227
|
+
height: 5px;
|
|
228
|
+
margin-top: 15px;
|
|
229
|
+
page-break-before: always;
|
|
230
|
+
width: 100%;
|
|
231
|
+
}
|
|
232
|
+
@media print {
|
|
233
|
+
.mce-pagebreak {
|
|
234
|
+
border: 0;
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
.tiny-pageembed .mce-shim {
|
|
238
|
+
background: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
|
|
239
|
+
height: 100%;
|
|
240
|
+
left: 0;
|
|
241
|
+
position: absolute;
|
|
242
|
+
top: 0;
|
|
243
|
+
width: 100%;
|
|
244
|
+
}
|
|
245
|
+
.tiny-pageembed[data-mce-selected="2"] .mce-shim {
|
|
246
|
+
display: none;
|
|
247
|
+
}
|
|
248
|
+
.tiny-pageembed {
|
|
249
|
+
display: inline-block;
|
|
250
|
+
position: relative;
|
|
251
|
+
}
|
|
252
|
+
.tiny-pageembed--21by9,
|
|
253
|
+
.tiny-pageembed--16by9,
|
|
254
|
+
.tiny-pageembed--4by3,
|
|
255
|
+
.tiny-pageembed--1by1 {
|
|
256
|
+
display: block;
|
|
257
|
+
overflow: hidden;
|
|
258
|
+
padding: 0;
|
|
259
|
+
position: relative;
|
|
260
|
+
width: 100%;
|
|
261
|
+
}
|
|
262
|
+
.tiny-pageembed--21by9 {
|
|
263
|
+
padding-top: 42.857143%;
|
|
264
|
+
}
|
|
265
|
+
.tiny-pageembed--16by9 {
|
|
266
|
+
padding-top: 56.25%;
|
|
267
|
+
}
|
|
268
|
+
.tiny-pageembed--4by3 {
|
|
269
|
+
padding-top: 75%;
|
|
270
|
+
}
|
|
271
|
+
.tiny-pageembed--1by1 {
|
|
272
|
+
padding-top: 100%;
|
|
273
|
+
}
|
|
274
|
+
.tiny-pageembed--21by9 iframe,
|
|
275
|
+
.tiny-pageembed--16by9 iframe,
|
|
276
|
+
.tiny-pageembed--4by3 iframe,
|
|
277
|
+
.tiny-pageembed--1by1 iframe {
|
|
278
|
+
border: 0;
|
|
279
|
+
height: 100%;
|
|
280
|
+
left: 0;
|
|
281
|
+
position: absolute;
|
|
282
|
+
top: 0;
|
|
283
|
+
width: 100%;
|
|
284
|
+
}
|
|
285
|
+
.mce-content-body[data-mce-placeholder] {
|
|
286
|
+
position: relative;
|
|
287
|
+
}
|
|
288
|
+
.mce-content-body[data-mce-placeholder]:not(.mce-visualblocks)::before {
|
|
289
|
+
color: rgba(34, 47, 62, 0.7);
|
|
290
|
+
content: attr(data-mce-placeholder);
|
|
291
|
+
position: absolute;
|
|
292
|
+
}
|
|
293
|
+
.mce-content-body:not([dir=rtl])[data-mce-placeholder]:not(.mce-visualblocks)::before {
|
|
294
|
+
left: 1px;
|
|
295
|
+
}
|
|
296
|
+
.mce-content-body[dir=rtl][data-mce-placeholder]:not(.mce-visualblocks)::before {
|
|
297
|
+
right: 1px;
|
|
298
|
+
}
|
|
299
|
+
.mce-content-body div.mce-resizehandle {
|
|
300
|
+
background-color: #4099ff;
|
|
301
|
+
border-color: #4099ff;
|
|
302
|
+
border-style: solid;
|
|
303
|
+
border-width: 1px;
|
|
304
|
+
box-sizing: border-box;
|
|
305
|
+
height: 10px;
|
|
306
|
+
position: absolute;
|
|
307
|
+
width: 10px;
|
|
308
|
+
z-index: 1298;
|
|
309
|
+
}
|
|
310
|
+
.mce-content-body div.mce-resizehandle:hover {
|
|
311
|
+
background-color: #4099ff;
|
|
312
|
+
}
|
|
313
|
+
.mce-content-body div.mce-resizehandle:nth-of-type(1) {
|
|
314
|
+
cursor: nwse-resize;
|
|
315
|
+
}
|
|
316
|
+
.mce-content-body div.mce-resizehandle:nth-of-type(2) {
|
|
317
|
+
cursor: nesw-resize;
|
|
318
|
+
}
|
|
319
|
+
.mce-content-body div.mce-resizehandle:nth-of-type(3) {
|
|
320
|
+
cursor: nwse-resize;
|
|
321
|
+
}
|
|
322
|
+
.mce-content-body div.mce-resizehandle:nth-of-type(4) {
|
|
323
|
+
cursor: nesw-resize;
|
|
324
|
+
}
|
|
325
|
+
.mce-content-body .mce-resize-backdrop {
|
|
326
|
+
z-index: 10000;
|
|
327
|
+
}
|
|
328
|
+
.mce-content-body .mce-clonedresizable {
|
|
329
|
+
cursor: default;
|
|
330
|
+
opacity: 0.5;
|
|
331
|
+
outline: 1px dashed black;
|
|
332
|
+
position: absolute;
|
|
333
|
+
z-index: 10001;
|
|
334
|
+
}
|
|
335
|
+
.mce-content-body .mce-clonedresizable.mce-resizetable-columns th,
|
|
336
|
+
.mce-content-body .mce-clonedresizable.mce-resizetable-columns td {
|
|
337
|
+
border: 0;
|
|
338
|
+
}
|
|
339
|
+
.mce-content-body .mce-resize-helper {
|
|
340
|
+
background: #555;
|
|
341
|
+
background: rgba(0, 0, 0, 0.75);
|
|
342
|
+
border: 1px;
|
|
343
|
+
border-radius: 3px;
|
|
344
|
+
color: white;
|
|
345
|
+
display: none;
|
|
346
|
+
font-family: sans-serif;
|
|
347
|
+
font-size: 12px;
|
|
348
|
+
line-height: 14px;
|
|
349
|
+
margin: 5px 10px;
|
|
350
|
+
padding: 5px;
|
|
351
|
+
position: absolute;
|
|
352
|
+
white-space: nowrap;
|
|
353
|
+
z-index: 10002;
|
|
354
|
+
}
|
|
355
|
+
.tox-rtc-user-selection {
|
|
356
|
+
position: relative;
|
|
357
|
+
}
|
|
358
|
+
.tox-rtc-user-cursor {
|
|
359
|
+
bottom: 0;
|
|
360
|
+
cursor: default;
|
|
361
|
+
position: absolute;
|
|
362
|
+
top: 0;
|
|
363
|
+
width: 2px;
|
|
364
|
+
}
|
|
365
|
+
.tox-rtc-user-cursor::before {
|
|
366
|
+
background-color: inherit;
|
|
367
|
+
border-radius: 50%;
|
|
368
|
+
content: '';
|
|
369
|
+
display: block;
|
|
370
|
+
height: 8px;
|
|
371
|
+
position: absolute;
|
|
372
|
+
right: -3px;
|
|
373
|
+
top: -3px;
|
|
374
|
+
width: 8px;
|
|
375
|
+
}
|
|
376
|
+
.tox-rtc-user-cursor:hover::after {
|
|
377
|
+
background-color: inherit;
|
|
378
|
+
border-radius: 100px;
|
|
379
|
+
box-sizing: border-box;
|
|
380
|
+
color: #fff;
|
|
381
|
+
content: attr(data-user);
|
|
382
|
+
display: block;
|
|
383
|
+
font-size: 12px;
|
|
384
|
+
font-weight: bold;
|
|
385
|
+
left: -5px;
|
|
386
|
+
min-height: 8px;
|
|
387
|
+
min-width: 8px;
|
|
388
|
+
padding: 0 12px;
|
|
389
|
+
position: absolute;
|
|
390
|
+
top: -11px;
|
|
391
|
+
white-space: nowrap;
|
|
392
|
+
z-index: 1000;
|
|
393
|
+
}
|
|
394
|
+
.tox-rtc-user-selection--1 .tox-rtc-user-cursor {
|
|
395
|
+
background-color: #2dc26b;
|
|
396
|
+
}
|
|
397
|
+
.tox-rtc-user-selection--2 .tox-rtc-user-cursor {
|
|
398
|
+
background-color: #e03e2d;
|
|
399
|
+
}
|
|
400
|
+
.tox-rtc-user-selection--3 .tox-rtc-user-cursor {
|
|
401
|
+
background-color: #f1c40f;
|
|
402
|
+
}
|
|
403
|
+
.tox-rtc-user-selection--4 .tox-rtc-user-cursor {
|
|
404
|
+
background-color: #3598db;
|
|
405
|
+
}
|
|
406
|
+
.tox-rtc-user-selection--5 .tox-rtc-user-cursor {
|
|
407
|
+
background-color: #b96ad9;
|
|
408
|
+
}
|
|
409
|
+
.tox-rtc-user-selection--6 .tox-rtc-user-cursor {
|
|
410
|
+
background-color: #e67e23;
|
|
411
|
+
}
|
|
412
|
+
.tox-rtc-user-selection--7 .tox-rtc-user-cursor {
|
|
413
|
+
background-color: #aaa69d;
|
|
414
|
+
}
|
|
415
|
+
.tox-rtc-user-selection--8 .tox-rtc-user-cursor {
|
|
416
|
+
background-color: #f368e0;
|
|
417
|
+
}
|
|
418
|
+
.tox-rtc-remote-image {
|
|
419
|
+
background: #eaeaea url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2236%22%20height%3D%2212%22%20viewBox%3D%220%200%2036%2012%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Ccircle%20cx%3D%226%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2218%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.33s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2230%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.66s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%3C%2Fsvg%3E%0A") no-repeat center center;
|
|
420
|
+
border: 1px solid #ccc;
|
|
421
|
+
min-height: 240px;
|
|
422
|
+
min-width: 320px;
|
|
423
|
+
}
|
|
424
|
+
.mce-match-marker {
|
|
425
|
+
background: #aaa;
|
|
426
|
+
color: #fff;
|
|
427
|
+
}
|
|
428
|
+
.mce-match-marker-selected {
|
|
429
|
+
background: #39f;
|
|
430
|
+
color: #fff;
|
|
431
|
+
}
|
|
432
|
+
.mce-match-marker-selected::-moz-selection {
|
|
433
|
+
background: #39f;
|
|
434
|
+
color: #fff;
|
|
435
|
+
}
|
|
436
|
+
.mce-match-marker-selected::selection {
|
|
437
|
+
background: #39f;
|
|
438
|
+
color: #fff;
|
|
439
|
+
}
|
|
440
|
+
.mce-content-body img[data-mce-selected],
|
|
441
|
+
.mce-content-body video[data-mce-selected],
|
|
442
|
+
.mce-content-body audio[data-mce-selected],
|
|
443
|
+
.mce-content-body object[data-mce-selected],
|
|
444
|
+
.mce-content-body embed[data-mce-selected],
|
|
445
|
+
.mce-content-body table[data-mce-selected] {
|
|
446
|
+
outline: 3px solid #4099ff;
|
|
447
|
+
}
|
|
448
|
+
.mce-content-body hr[data-mce-selected] {
|
|
449
|
+
outline: 3px solid #4099ff;
|
|
450
|
+
outline-offset: 1px;
|
|
451
|
+
}
|
|
452
|
+
.mce-content-body *[contentEditable=false] *[contentEditable=true]:focus {
|
|
453
|
+
outline: 3px solid #4099ff;
|
|
454
|
+
}
|
|
455
|
+
.mce-content-body *[contentEditable=false] *[contentEditable=true]:hover {
|
|
456
|
+
outline: 3px solid #4099ff;
|
|
457
|
+
}
|
|
458
|
+
.mce-content-body *[contentEditable=false][data-mce-selected] {
|
|
459
|
+
cursor: not-allowed;
|
|
460
|
+
outline: 3px solid #4099ff;
|
|
461
|
+
}
|
|
462
|
+
.mce-content-body.mce-content-readonly *[contentEditable=true]:focus,
|
|
463
|
+
.mce-content-body.mce-content-readonly *[contentEditable=true]:hover {
|
|
464
|
+
outline: none;
|
|
465
|
+
}
|
|
466
|
+
.mce-content-body *[data-mce-selected="inline-boundary"] {
|
|
467
|
+
background-color: #4099ff;
|
|
468
|
+
}
|
|
469
|
+
.mce-content-body .mce-edit-focus {
|
|
470
|
+
outline: 3px solid #4099ff;
|
|
471
|
+
}
|
|
472
|
+
.mce-content-body td[data-mce-selected],
|
|
473
|
+
.mce-content-body th[data-mce-selected] {
|
|
474
|
+
position: relative;
|
|
475
|
+
}
|
|
476
|
+
.mce-content-body td[data-mce-selected]::-moz-selection,
|
|
477
|
+
.mce-content-body th[data-mce-selected]::-moz-selection {
|
|
478
|
+
background: none;
|
|
479
|
+
}
|
|
480
|
+
.mce-content-body td[data-mce-selected]::selection,
|
|
481
|
+
.mce-content-body th[data-mce-selected]::selection {
|
|
482
|
+
background: none;
|
|
483
|
+
}
|
|
484
|
+
.mce-content-body td[data-mce-selected] *,
|
|
485
|
+
.mce-content-body th[data-mce-selected] * {
|
|
486
|
+
outline: none;
|
|
487
|
+
-webkit-touch-callout: none;
|
|
488
|
+
-webkit-user-select: none;
|
|
489
|
+
-moz-user-select: none;
|
|
490
|
+
-ms-user-select: none;
|
|
491
|
+
user-select: none;
|
|
492
|
+
}
|
|
493
|
+
.mce-content-body td[data-mce-selected]::after,
|
|
494
|
+
.mce-content-body th[data-mce-selected]::after {
|
|
495
|
+
background-color: rgba(180, 215, 255, 0.7);
|
|
496
|
+
border: 1px solid transparent;
|
|
497
|
+
bottom: -1px;
|
|
498
|
+
content: '';
|
|
499
|
+
left: -1px;
|
|
500
|
+
mix-blend-mode: lighten;
|
|
501
|
+
position: absolute;
|
|
502
|
+
right: -1px;
|
|
503
|
+
top: -1px;
|
|
504
|
+
}
|
|
505
|
+
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
|
|
506
|
+
.mce-content-body td[data-mce-selected]::after,
|
|
507
|
+
.mce-content-body th[data-mce-selected]::after {
|
|
508
|
+
border-color: rgba(0, 84, 180, 0.7);
|
|
509
|
+
}
|
|
510
|
+
}
|
|
511
|
+
.mce-content-body img::-moz-selection {
|
|
512
|
+
background: none;
|
|
513
|
+
}
|
|
514
|
+
.mce-content-body img::selection {
|
|
515
|
+
background: none;
|
|
516
|
+
}
|
|
517
|
+
.ephox-snooker-resizer-bar {
|
|
518
|
+
background-color: #4099ff;
|
|
519
|
+
opacity: 0;
|
|
520
|
+
-webkit-user-select: none;
|
|
521
|
+
-moz-user-select: none;
|
|
522
|
+
-ms-user-select: none;
|
|
523
|
+
user-select: none;
|
|
524
|
+
}
|
|
525
|
+
.ephox-snooker-resizer-cols {
|
|
526
|
+
cursor: col-resize;
|
|
527
|
+
}
|
|
528
|
+
.ephox-snooker-resizer-rows {
|
|
529
|
+
cursor: row-resize;
|
|
530
|
+
}
|
|
531
|
+
.ephox-snooker-resizer-bar.ephox-snooker-resizer-bar-dragging {
|
|
532
|
+
opacity: 1;
|
|
533
|
+
}
|
|
534
|
+
.mce-spellchecker-word {
|
|
535
|
+
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%23ff0000'%20fill%3D'none'%20stroke-linecap%3D'round'%20stroke-opacity%3D'.75'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");
|
|
536
|
+
background-position: 0 calc(100% + 1px);
|
|
537
|
+
background-repeat: repeat-x;
|
|
538
|
+
background-size: auto 6px;
|
|
539
|
+
cursor: default;
|
|
540
|
+
height: 2rem;
|
|
541
|
+
}
|
|
542
|
+
.mce-spellchecker-grammar {
|
|
543
|
+
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%2300A835'%20fill%3D'none'%20stroke-linecap%3D'round'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");
|
|
544
|
+
background-position: 0 calc(100% + 1px);
|
|
545
|
+
background-repeat: repeat-x;
|
|
546
|
+
background-size: auto 6px;
|
|
547
|
+
cursor: default;
|
|
548
|
+
}
|
|
549
|
+
.mce-toc {
|
|
550
|
+
border: 1px solid gray;
|
|
551
|
+
}
|
|
552
|
+
.mce-toc h2 {
|
|
553
|
+
margin: 4px;
|
|
554
|
+
}
|
|
555
|
+
.mce-toc li {
|
|
556
|
+
list-style-type: none;
|
|
557
|
+
}
|
|
558
|
+
table[style*="border-width: 0px"],
|
|
559
|
+
.mce-item-table:not([border]),
|
|
560
|
+
.mce-item-table[border="0"],
|
|
561
|
+
table[style*="border-width: 0px"] td,
|
|
562
|
+
.mce-item-table:not([border]) td,
|
|
563
|
+
.mce-item-table[border="0"] td,
|
|
564
|
+
table[style*="border-width: 0px"] th,
|
|
565
|
+
.mce-item-table:not([border]) th,
|
|
566
|
+
.mce-item-table[border="0"] th,
|
|
567
|
+
table[style*="border-width: 0px"] caption,
|
|
568
|
+
.mce-item-table:not([border]) caption,
|
|
569
|
+
.mce-item-table[border="0"] caption {
|
|
570
|
+
border: 1px dashed #bbb;
|
|
571
|
+
}
|
|
572
|
+
.mce-visualblocks p,
|
|
573
|
+
.mce-visualblocks h1,
|
|
574
|
+
.mce-visualblocks h2,
|
|
575
|
+
.mce-visualblocks h3,
|
|
576
|
+
.mce-visualblocks h4,
|
|
577
|
+
.mce-visualblocks h5,
|
|
578
|
+
.mce-visualblocks h6,
|
|
579
|
+
.mce-visualblocks div:not([data-mce-bogus]),
|
|
580
|
+
.mce-visualblocks section,
|
|
581
|
+
.mce-visualblocks article,
|
|
582
|
+
.mce-visualblocks blockquote,
|
|
583
|
+
.mce-visualblocks address,
|
|
584
|
+
.mce-visualblocks pre,
|
|
585
|
+
.mce-visualblocks figure,
|
|
586
|
+
.mce-visualblocks figcaption,
|
|
587
|
+
.mce-visualblocks hgroup,
|
|
588
|
+
.mce-visualblocks aside,
|
|
589
|
+
.mce-visualblocks ul,
|
|
590
|
+
.mce-visualblocks ol,
|
|
591
|
+
.mce-visualblocks dl {
|
|
592
|
+
background-repeat: no-repeat;
|
|
593
|
+
border: 1px dashed #bbb;
|
|
594
|
+
margin-left: 3px;
|
|
595
|
+
padding-top: 10px;
|
|
596
|
+
}
|
|
597
|
+
.mce-visualblocks p {
|
|
598
|
+
background-image: url(data:image/gif;base64,R0lGODlhCQAJAJEAAAAAAP///7u7u////yH5BAEAAAMALAAAAAAJAAkAAAIQnG+CqCN/mlyvsRUpThG6AgA7);
|
|
599
|
+
}
|
|
600
|
+
.mce-visualblocks h1 {
|
|
601
|
+
background-image: url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGu1JuxHoAfRNRW3TWXyF2YiRUAOw==);
|
|
602
|
+
}
|
|
603
|
+
.mce-visualblocks h2 {
|
|
604
|
+
background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8Hybbx4oOuqgTynJd6bGlWg3DkJzoaUAAAOw==);
|
|
605
|
+
}
|
|
606
|
+
.mce-visualblocks h3 {
|
|
607
|
+
background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIZjI8Hybbx4oOuqgTynJf2Ln2NOHpQpmhAAQA7);
|
|
608
|
+
}
|
|
609
|
+
.mce-visualblocks h4 {
|
|
610
|
+
background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxInR0zqeAdhtJlXwV1oCll2HaWgAAOw==);
|
|
611
|
+
}
|
|
612
|
+
.mce-visualblocks h5 {
|
|
613
|
+
background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjane4iq5GlW05GgIkIZUAAAOw==);
|
|
614
|
+
}
|
|
615
|
+
.mce-visualblocks h6 {
|
|
616
|
+
background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjan04jep1iZ1XRlAo5bVgAAOw==);
|
|
617
|
+
}
|
|
618
|
+
.mce-visualblocks div:not([data-mce-bogus]) {
|
|
619
|
+
background-image: url(data:image/gif;base64,R0lGODlhEgAKAIABALu7u////yH5BAEAAAEALAAAAAASAAoAAAIfjI9poI0cgDywrhuxfbrzDEbQM2Ei5aRjmoySW4pAAQA7);
|
|
620
|
+
}
|
|
621
|
+
.mce-visualblocks section {
|
|
622
|
+
background-image: url(data:image/gif;base64,R0lGODlhKAAKAIABALu7u////yH5BAEAAAEALAAAAAAoAAoAAAI5jI+pywcNY3sBWHdNrplytD2ellDeSVbp+GmWqaDqDMepc8t17Y4vBsK5hDyJMcI6KkuYU+jpjLoKADs=);
|
|
623
|
+
}
|
|
624
|
+
.mce-visualblocks article {
|
|
625
|
+
background-image: url(data:image/gif;base64,R0lGODlhKgAKAIABALu7u////yH5BAEAAAEALAAAAAAqAAoAAAI6jI+pywkNY3wG0GBvrsd2tXGYSGnfiF7ikpXemTpOiJScasYoDJJrjsG9gkCJ0ag6KhmaIe3pjDYBBQA7);
|
|
626
|
+
}
|
|
627
|
+
.mce-visualblocks blockquote {
|
|
628
|
+
background-image: url(data:image/gif;base64,R0lGODlhPgAKAIABALu7u////yH5BAEAAAEALAAAAAA+AAoAAAJPjI+py+0Knpz0xQDyuUhvfoGgIX5iSKZYgq5uNL5q69asZ8s5rrf0yZmpNkJZzFesBTu8TOlDVAabUyatguVhWduud3EyiUk45xhTTgMBBQA7);
|
|
629
|
+
}
|
|
630
|
+
.mce-visualblocks address {
|
|
631
|
+
background-image: url(data:image/gif;base64,R0lGODlhLQAKAIABALu7u////yH5BAEAAAEALAAAAAAtAAoAAAI/jI+pywwNozSP1gDyyZcjb3UaRpXkWaXmZW4OqKLhBmLs+K263DkJK7OJeifh7FicKD9A1/IpGdKkyFpNmCkAADs=);
|
|
632
|
+
}
|
|
633
|
+
.mce-visualblocks pre {
|
|
634
|
+
background-image: url(data:image/gif;base64,R0lGODlhFQAKAIABALu7uwAAACH5BAEAAAEALAAAAAAVAAoAAAIjjI+ZoN0cgDwSmnpz1NCueYERhnibZVKLNnbOq8IvKpJtVQAAOw==);
|
|
635
|
+
}
|
|
636
|
+
.mce-visualblocks figure {
|
|
637
|
+
background-image: url(data:image/gif;base64,R0lGODlhJAAKAIAAALu7u////yH5BAEAAAEALAAAAAAkAAoAAAI0jI+py+2fwAHUSFvD3RlvG4HIp4nX5JFSpnZUJ6LlrM52OE7uSWosBHScgkSZj7dDKnWAAgA7);
|
|
638
|
+
}
|
|
639
|
+
.mce-visualblocks figcaption {
|
|
640
|
+
border: 1px dashed #bbb;
|
|
641
|
+
}
|
|
642
|
+
.mce-visualblocks hgroup {
|
|
643
|
+
background-image: url(data:image/gif;base64,R0lGODlhJwAKAIABALu7uwAAACH5BAEAAAEALAAAAAAnAAoAAAI3jI+pywYNI3uB0gpsRtt5fFnfNZaVSYJil4Wo03Hv6Z62uOCgiXH1kZIIJ8NiIxRrAZNMZAtQAAA7);
|
|
644
|
+
}
|
|
645
|
+
.mce-visualblocks aside {
|
|
646
|
+
background-image: url(data:image/gif;base64,R0lGODlhHgAKAIABAKqqqv///yH5BAEAAAEALAAAAAAeAAoAAAItjI+pG8APjZOTzgtqy7I3f1yehmQcFY4WKZbqByutmW4aHUd6vfcVbgudgpYCADs=);
|
|
647
|
+
}
|
|
648
|
+
.mce-visualblocks ul {
|
|
649
|
+
background-image: url(data:image/gif;base64,R0lGODlhDQAKAIAAALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGuYnqUVSjvw26DzzXiqIDlVwAAOw==);
|
|
650
|
+
}
|
|
651
|
+
.mce-visualblocks ol {
|
|
652
|
+
background-image: url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybH6HHt0qourxC6CvzXieHyeWQAAOw==);
|
|
653
|
+
}
|
|
654
|
+
.mce-visualblocks dl {
|
|
655
|
+
background-image: url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybEOnmOvUoWznTqeuEjNSCqeGRUAOw==);
|
|
656
|
+
}
|
|
657
|
+
.mce-visualblocks:not([dir=rtl]) p,
|
|
658
|
+
.mce-visualblocks:not([dir=rtl]) h1,
|
|
659
|
+
.mce-visualblocks:not([dir=rtl]) h2,
|
|
660
|
+
.mce-visualblocks:not([dir=rtl]) h3,
|
|
661
|
+
.mce-visualblocks:not([dir=rtl]) h4,
|
|
662
|
+
.mce-visualblocks:not([dir=rtl]) h5,
|
|
663
|
+
.mce-visualblocks:not([dir=rtl]) h6,
|
|
664
|
+
.mce-visualblocks:not([dir=rtl]) div:not([data-mce-bogus]),
|
|
665
|
+
.mce-visualblocks:not([dir=rtl]) section,
|
|
666
|
+
.mce-visualblocks:not([dir=rtl]) article,
|
|
667
|
+
.mce-visualblocks:not([dir=rtl]) blockquote,
|
|
668
|
+
.mce-visualblocks:not([dir=rtl]) address,
|
|
669
|
+
.mce-visualblocks:not([dir=rtl]) pre,
|
|
670
|
+
.mce-visualblocks:not([dir=rtl]) figure,
|
|
671
|
+
.mce-visualblocks:not([dir=rtl]) figcaption,
|
|
672
|
+
.mce-visualblocks:not([dir=rtl]) hgroup,
|
|
673
|
+
.mce-visualblocks:not([dir=rtl]) aside,
|
|
674
|
+
.mce-visualblocks:not([dir=rtl]) ul,
|
|
675
|
+
.mce-visualblocks:not([dir=rtl]) ol,
|
|
676
|
+
.mce-visualblocks:not([dir=rtl]) dl {
|
|
677
|
+
margin-left: 3px;
|
|
678
|
+
}
|
|
679
|
+
.mce-visualblocks[dir=rtl] p,
|
|
680
|
+
.mce-visualblocks[dir=rtl] h1,
|
|
681
|
+
.mce-visualblocks[dir=rtl] h2,
|
|
682
|
+
.mce-visualblocks[dir=rtl] h3,
|
|
683
|
+
.mce-visualblocks[dir=rtl] h4,
|
|
684
|
+
.mce-visualblocks[dir=rtl] h5,
|
|
685
|
+
.mce-visualblocks[dir=rtl] h6,
|
|
686
|
+
.mce-visualblocks[dir=rtl] div:not([data-mce-bogus]),
|
|
687
|
+
.mce-visualblocks[dir=rtl] section,
|
|
688
|
+
.mce-visualblocks[dir=rtl] article,
|
|
689
|
+
.mce-visualblocks[dir=rtl] blockquote,
|
|
690
|
+
.mce-visualblocks[dir=rtl] address,
|
|
691
|
+
.mce-visualblocks[dir=rtl] pre,
|
|
692
|
+
.mce-visualblocks[dir=rtl] figure,
|
|
693
|
+
.mce-visualblocks[dir=rtl] figcaption,
|
|
694
|
+
.mce-visualblocks[dir=rtl] hgroup,
|
|
695
|
+
.mce-visualblocks[dir=rtl] aside,
|
|
696
|
+
.mce-visualblocks[dir=rtl] ul,
|
|
697
|
+
.mce-visualblocks[dir=rtl] ol,
|
|
698
|
+
.mce-visualblocks[dir=rtl] dl {
|
|
699
|
+
background-position-x: right;
|
|
700
|
+
margin-right: 3px;
|
|
701
|
+
}
|
|
702
|
+
.mce-nbsp,
|
|
703
|
+
.mce-shy {
|
|
704
|
+
background: #aaa;
|
|
705
|
+
}
|
|
706
|
+
.mce-shy::after {
|
|
707
|
+
content: '-';
|
|
708
|
+
}
|
|
709
|
+
body {
|
|
710
|
+
font-family: sans-serif;
|
|
711
|
+
}
|
|
712
|
+
table {
|
|
713
|
+
border-collapse: collapse;
|
|
714
|
+
}
|