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