suneditor 2.46.2 → 3.0.0-alpha.10

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 (290) hide show
  1. package/.eslintignore +7 -0
  2. package/.eslintrc.json +64 -0
  3. package/CONTRIBUTING.md +36 -0
  4. package/LICENSE.txt +1 -1
  5. package/README.md +11 -1560
  6. package/dist/suneditor.min.css +1 -0
  7. package/dist/suneditor.min.js +1 -2
  8. package/package.json +97 -70
  9. package/src/assets/icons/_default.js +194 -0
  10. package/src/assets/suneditor-contents.css +643 -0
  11. package/src/assets/suneditor.css +3394 -0
  12. package/src/core/base/eventHandlers/handler_toolbar.js +114 -0
  13. package/src/core/base/eventHandlers/handler_ww_clipboard.js +37 -0
  14. package/src/core/base/eventHandlers/handler_ww_dragDrop.js +74 -0
  15. package/src/core/base/eventHandlers/handler_ww_key_input.js +1002 -0
  16. package/src/core/base/eventHandlers/handler_ww_mouse.js +147 -0
  17. package/src/core/base/eventManager.js +1156 -0
  18. package/src/core/base/events.js +320 -0
  19. package/src/core/base/history.js +301 -0
  20. package/src/core/class/char.js +147 -0
  21. package/src/core/class/component.js +639 -0
  22. package/src/core/class/format.js +3258 -0
  23. package/src/core/class/html.js +1710 -0
  24. package/src/core/class/menu.js +260 -0
  25. package/src/core/class/nodeTransform.js +405 -0
  26. package/src/core/class/notice.js +42 -0
  27. package/src/core/class/offset.js +575 -0
  28. package/src/core/class/selection.js +511 -0
  29. package/src/core/class/shortcuts.js +38 -0
  30. package/src/core/class/toolbar.js +440 -0
  31. package/src/core/class/viewer.js +646 -0
  32. package/src/core/editor.js +1601 -0
  33. package/src/core/section/actives.js +145 -0
  34. package/src/core/section/constructor.js +1252 -0
  35. package/src/core/section/context.js +97 -0
  36. package/src/editorInjector/_classes.js +22 -0
  37. package/src/editorInjector/_core.js +28 -0
  38. package/src/editorInjector/index.js +13 -0
  39. package/src/helper/converter.js +388 -0
  40. package/src/helper/domUtils.js +1177 -0
  41. package/src/helper/env.js +250 -0
  42. package/src/helper/index.js +19 -0
  43. package/src/helper/numbers.js +68 -0
  44. package/src/helper/unicode.js +43 -0
  45. package/src/langs/ckb.js +161 -0
  46. package/src/langs/cs.js +161 -0
  47. package/src/langs/da.js +161 -0
  48. package/src/langs/de.js +162 -0
  49. package/src/langs/en.js +210 -0
  50. package/src/langs/es.js +162 -0
  51. package/src/langs/fa.js +159 -0
  52. package/src/langs/fr.js +161 -0
  53. package/src/langs/he.js +162 -0
  54. package/src/{lang → langs}/index.js +0 -2
  55. package/src/langs/it.js +162 -0
  56. package/src/langs/ja.js +162 -0
  57. package/src/langs/ko.js +210 -0
  58. package/src/langs/lv.js +162 -0
  59. package/src/langs/nl.js +162 -0
  60. package/src/langs/pl.js +162 -0
  61. package/src/langs/pt_br.js +162 -0
  62. package/src/langs/ro.js +162 -0
  63. package/src/langs/ru.js +162 -0
  64. package/src/langs/se.js +162 -0
  65. package/src/langs/tr.js +159 -0
  66. package/src/langs/ua.js +162 -0
  67. package/src/langs/ur.js +162 -0
  68. package/src/langs/zh_cn.js +162 -0
  69. package/src/modules/ApiManager.js +168 -0
  70. package/src/modules/ColorPicker.js +302 -0
  71. package/src/modules/Controller.js +323 -0
  72. package/src/modules/Figure.js +1176 -0
  73. package/src/modules/FileBrowser.js +271 -0
  74. package/src/modules/FileManager.js +307 -0
  75. package/src/modules/HueSlider.js +513 -0
  76. package/src/modules/Modal.js +177 -0
  77. package/src/modules/ModalAnchorEditor.js +494 -0
  78. package/src/modules/SelectMenu.js +447 -0
  79. package/src/modules/_DragHandle.js +16 -0
  80. package/src/modules/index.js +14 -0
  81. package/src/plugins/command/blockquote.js +47 -47
  82. package/src/plugins/command/exportPdf.js +168 -0
  83. package/src/plugins/command/fileUpload.js +389 -0
  84. package/src/plugins/command/list_bulleted.js +112 -0
  85. package/src/plugins/command/list_numbered.js +115 -0
  86. package/src/plugins/dropdown/align.js +143 -0
  87. package/src/plugins/dropdown/backgroundColor.js +90 -0
  88. package/src/plugins/dropdown/font.js +113 -0
  89. package/src/plugins/dropdown/fontColor.js +90 -0
  90. package/src/plugins/dropdown/formatBlock.js +141 -0
  91. package/src/plugins/dropdown/hr.js +111 -0
  92. package/src/plugins/dropdown/layout.js +72 -0
  93. package/src/plugins/dropdown/lineHeight.js +114 -0
  94. package/src/plugins/dropdown/list.js +107 -0
  95. package/src/plugins/dropdown/paragraphStyle.js +117 -0
  96. package/src/plugins/dropdown/table.js +2810 -0
  97. package/src/plugins/dropdown/template.js +71 -0
  98. package/src/plugins/dropdown/textStyle.js +137 -0
  99. package/src/plugins/field/mention.js +181 -0
  100. package/src/plugins/fileBrowser/imageGallery.js +76 -59
  101. package/src/plugins/index.js +86 -24
  102. package/src/plugins/input/fontSize.js +357 -0
  103. package/src/plugins/modal/audio.js +492 -0
  104. package/src/plugins/modal/image.js +1064 -0
  105. package/src/plugins/modal/link.js +211 -0
  106. package/src/plugins/modal/math.js +363 -0
  107. package/src/plugins/modal/video.js +870 -0
  108. package/src/suneditor.js +62 -67
  109. package/src/themes/test.css +61 -0
  110. package/typings/CommandPlugin.d.ts +8 -0
  111. package/typings/DialogPlugin.d.ts +20 -0
  112. package/typings/FileBrowserPlugin.d.ts +30 -0
  113. package/typings/Lang.d.ts +124 -0
  114. package/typings/Module.d.ts +15 -0
  115. package/typings/Plugin.d.ts +42 -0
  116. package/typings/SubmenuPlugin.d.ts +8 -0
  117. package/typings/_classes.d.ts +17 -0
  118. package/typings/_colorPicker.d.ts +60 -0
  119. package/typings/_core.d.ts +55 -0
  120. package/typings/align.d.ts +5 -0
  121. package/{src/plugins/dialog → typings}/audio.d.ts +1 -1
  122. package/typings/backgroundColor.d.ts +5 -0
  123. package/{src/plugins/command → typings}/blockquote.d.ts +1 -1
  124. package/typings/char.d.ts +39 -0
  125. package/typings/component.d.ts +38 -0
  126. package/typings/context.d.ts +39 -0
  127. package/typings/converter.d.ts +33 -0
  128. package/typings/dialog.d.ts +28 -0
  129. package/typings/domUtils.d.ts +361 -0
  130. package/typings/editor.d.ts +7 -0
  131. package/typings/editor.ts +542 -0
  132. package/typings/env.d.ts +70 -0
  133. package/typings/eventManager.d.ts +37 -0
  134. package/typings/events.d.ts +262 -0
  135. package/typings/fileBrowser.d.ts +42 -0
  136. package/typings/fileManager.d.ts +67 -0
  137. package/typings/font.d.ts +5 -0
  138. package/typings/fontColor.d.ts +5 -0
  139. package/typings/fontSize.d.ts +5 -0
  140. package/typings/format.d.ts +191 -0
  141. package/typings/formatBlock.d.ts +5 -0
  142. package/typings/history.d.ts +48 -0
  143. package/typings/horizontalRule.d.ts +5 -0
  144. package/{src/plugins/dialog → typings}/image.d.ts +1 -1
  145. package/{src/plugins/fileBrowser → typings}/imageGallery.d.ts +1 -1
  146. package/typings/index.d.ts +21 -0
  147. package/{src/plugins/modules/index.d.ts → typings/index.modules.d.ts} +3 -3
  148. package/typings/index.plugins.d.ts +58 -0
  149. package/typings/lineHeight.d.ts +5 -0
  150. package/{src/plugins/dialog → typings}/link.d.ts +1 -1
  151. package/typings/list.d.ts +5 -0
  152. package/{src/plugins/dialog → typings}/math.d.ts +1 -1
  153. package/typings/mediaContainer.d.ts +25 -0
  154. package/typings/node.d.ts +57 -0
  155. package/typings/notice.d.ts +16 -0
  156. package/typings/numbers.d.ts +29 -0
  157. package/typings/offset.d.ts +24 -0
  158. package/typings/options.d.ts +589 -0
  159. package/typings/paragraphStyle.d.ts +5 -0
  160. package/typings/resizing.d.ts +141 -0
  161. package/typings/selection.d.ts +94 -0
  162. package/typings/shortcuts.d.ts +13 -0
  163. package/typings/suneditor.d.ts +9 -0
  164. package/typings/table.d.ts +5 -0
  165. package/typings/template.d.ts +5 -0
  166. package/typings/textStyle.d.ts +5 -0
  167. package/typings/toolbar.d.ts +32 -0
  168. package/typings/unicode.d.ts +25 -0
  169. package/{src/plugins/dialog → typings}/video.d.ts +1 -1
  170. package/dist/css/suneditor.min.css +0 -1
  171. package/src/assets/css/suneditor-contents.css +0 -562
  172. package/src/assets/css/suneditor.css +0 -566
  173. package/src/assets/defaultIcons.js +0 -103
  174. package/src/lang/Lang.d.ts +0 -144
  175. package/src/lang/ckb.d.ts +0 -5
  176. package/src/lang/ckb.js +0 -188
  177. package/src/lang/cs.d.ts +0 -5
  178. package/src/lang/cs.js +0 -188
  179. package/src/lang/da.d.ts +0 -5
  180. package/src/lang/da.js +0 -191
  181. package/src/lang/de.d.ts +0 -5
  182. package/src/lang/de.js +0 -188
  183. package/src/lang/en.d.ts +0 -5
  184. package/src/lang/en.js +0 -188
  185. package/src/lang/es.d.ts +0 -5
  186. package/src/lang/es.js +0 -188
  187. package/src/lang/fa.d.ts +0 -5
  188. package/src/lang/fa.js +0 -188
  189. package/src/lang/fr.d.ts +0 -5
  190. package/src/lang/fr.js +0 -188
  191. package/src/lang/he.d.ts +0 -5
  192. package/src/lang/he.js +0 -188
  193. package/src/lang/index.d.ts +0 -23
  194. package/src/lang/it.d.ts +0 -5
  195. package/src/lang/it.js +0 -188
  196. package/src/lang/ja.d.ts +0 -5
  197. package/src/lang/ja.js +0 -188
  198. package/src/lang/ko.d.ts +0 -5
  199. package/src/lang/ko.js +0 -188
  200. package/src/lang/lv.d.ts +0 -5
  201. package/src/lang/lv.js +0 -188
  202. package/src/lang/nl.d.ts +0 -5
  203. package/src/lang/nl.js +0 -188
  204. package/src/lang/pl.d.ts +0 -5
  205. package/src/lang/pl.js +0 -188
  206. package/src/lang/pt_br.d.ts +0 -5
  207. package/src/lang/pt_br.js +0 -189
  208. package/src/lang/ro.d.ts +0 -5
  209. package/src/lang/ro.js +0 -188
  210. package/src/lang/ru.d.ts +0 -5
  211. package/src/lang/ru.js +0 -188
  212. package/src/lang/se.d.ts +0 -5
  213. package/src/lang/se.js +0 -191
  214. package/src/lang/tr.d.ts +0 -5
  215. package/src/lang/tr.js +0 -191
  216. package/src/lang/ua.d.ts +0 -5
  217. package/src/lang/ua.js +0 -188
  218. package/src/lang/ur.d.ts +0 -5
  219. package/src/lang/ur.js +0 -188
  220. package/src/lang/zh_cn.d.ts +0 -5
  221. package/src/lang/zh_cn.js +0 -187
  222. package/src/lib/constructor.js +0 -954
  223. package/src/lib/context.d.ts +0 -42
  224. package/src/lib/context.js +0 -71
  225. package/src/lib/core.d.ts +0 -1135
  226. package/src/lib/core.js +0 -9395
  227. package/src/lib/history.d.ts +0 -48
  228. package/src/lib/history.js +0 -219
  229. package/src/lib/util.d.ts +0 -678
  230. package/src/lib/util.js +0 -2131
  231. package/src/options.d.ts +0 -608
  232. package/src/plugins/CommandPlugin.d.ts +0 -8
  233. package/src/plugins/DialogPlugin.d.ts +0 -20
  234. package/src/plugins/FileBrowserPlugin.d.ts +0 -30
  235. package/src/plugins/Module.d.ts +0 -15
  236. package/src/plugins/Plugin.d.ts +0 -42
  237. package/src/plugins/SubmenuPlugin.d.ts +0 -8
  238. package/src/plugins/dialog/audio.js +0 -559
  239. package/src/plugins/dialog/image.js +0 -1126
  240. package/src/plugins/dialog/link.js +0 -223
  241. package/src/plugins/dialog/math.js +0 -295
  242. package/src/plugins/dialog/mention.js +0 -242
  243. package/src/plugins/dialog/video.js +0 -979
  244. package/src/plugins/index.d.ts +0 -79
  245. package/src/plugins/modules/_anchor.js +0 -461
  246. package/src/plugins/modules/_colorPicker.d.ts +0 -60
  247. package/src/plugins/modules/_colorPicker.js +0 -201
  248. package/src/plugins/modules/_notice.d.ts +0 -21
  249. package/src/plugins/modules/_notice.js +0 -72
  250. package/src/plugins/modules/_selectMenu.js +0 -119
  251. package/src/plugins/modules/component.d.ts +0 -25
  252. package/src/plugins/modules/component.js +0 -81
  253. package/src/plugins/modules/dialog.d.ts +0 -28
  254. package/src/plugins/modules/dialog.js +0 -175
  255. package/src/plugins/modules/fileBrowser.d.ts +0 -42
  256. package/src/plugins/modules/fileBrowser.js +0 -374
  257. package/src/plugins/modules/fileManager.d.ts +0 -67
  258. package/src/plugins/modules/fileManager.js +0 -326
  259. package/src/plugins/modules/index.js +0 -9
  260. package/src/plugins/modules/resizing.d.ts +0 -154
  261. package/src/plugins/modules/resizing.js +0 -903
  262. package/src/plugins/submenu/align.d.ts +0 -5
  263. package/src/plugins/submenu/align.js +0 -160
  264. package/src/plugins/submenu/font.d.ts +0 -5
  265. package/src/plugins/submenu/font.js +0 -123
  266. package/src/plugins/submenu/fontColor.d.ts +0 -5
  267. package/src/plugins/submenu/fontColor.js +0 -101
  268. package/src/plugins/submenu/fontSize.d.ts +0 -5
  269. package/src/plugins/submenu/fontSize.js +0 -112
  270. package/src/plugins/submenu/formatBlock.d.ts +0 -5
  271. package/src/plugins/submenu/formatBlock.js +0 -273
  272. package/src/plugins/submenu/hiliteColor.d.ts +0 -5
  273. package/src/plugins/submenu/hiliteColor.js +0 -102
  274. package/src/plugins/submenu/horizontalRule.d.ts +0 -5
  275. package/src/plugins/submenu/horizontalRule.js +0 -98
  276. package/src/plugins/submenu/lineHeight.d.ts +0 -5
  277. package/src/plugins/submenu/lineHeight.js +0 -104
  278. package/src/plugins/submenu/list.d.ts +0 -5
  279. package/src/plugins/submenu/list.js +0 -456
  280. package/src/plugins/submenu/paragraphStyle.d.ts +0 -5
  281. package/src/plugins/submenu/paragraphStyle.js +0 -135
  282. package/src/plugins/submenu/table.d.ts +0 -5
  283. package/src/plugins/submenu/table.js +0 -1431
  284. package/src/plugins/submenu/template.d.ts +0 -5
  285. package/src/plugins/submenu/template.js +0 -72
  286. package/src/plugins/submenu/textStyle.d.ts +0 -5
  287. package/src/plugins/submenu/textStyle.js +0 -167
  288. package/src/suneditor.d.ts +0 -9
  289. package/src/suneditor_build.js +0 -18
  290. /package/{src/plugins/dialog → typings}/mention.d.ts +0 -0
@@ -0,0 +1,3394 @@
1
+ /* used color #000 , #fff , #CCC, #f5f5f5, #f9f9f9 */
2
+ /* font color #333, background color: #fff */
3
+ /* grey color #e1e1e1, #ececec, #d1d1d1 ,#bdbdbd, #c1c1c1 ,#b1b1b1 */
4
+ /* blue color #eaf3ff, #dbeaff(shadow: #b7ccf2, #e6f2ff), #c4ddff, #d0e3ff , #80bdff , #3f9dff , #4592ff, #407dd1, #3288ff, #1275ff */
5
+ /* red color #b94a48 , #f2dede , #eed3d7, #d9534f */
6
+ /* green color #008000 */
7
+ /* yellow color #f0c20a */
8
+
9
+ /** --- suneditor main */
10
+ .sun-editor {
11
+ width: auto;
12
+ height: auto;
13
+ box-sizing: border-box;
14
+ font-family: Helvetica Neue;
15
+ border: 1px solid #dadada;
16
+ background-color: #fff;
17
+ color: #000;
18
+ font-size: 16px;
19
+ }
20
+
21
+ .sun-editor * {
22
+ box-sizing: border-box;
23
+ overflow: visible;
24
+ }
25
+
26
+ .sun-editor-common input,
27
+ .sun-editor-common select,
28
+ .sun-editor-common textarea,
29
+ .sun-editor-common button {
30
+ font-size: 14px;
31
+ line-height: 1.5;
32
+ }
33
+
34
+ .sun-editor-common body,
35
+ .sun-editor-common div,
36
+ .sun-editor-common dl,
37
+ .sun-editor-common dt,
38
+ .sun-editor-common dd,
39
+ .sun-editor-common ul,
40
+ .sun-editor-common ol,
41
+ .sun-editor-common li,
42
+ .sun-editor-common h1,
43
+ .sun-editor-common h2,
44
+ .sun-editor-common h3,
45
+ .sun-editor-common h4,
46
+ .sun-editor-common h5,
47
+ .sun-editor-common h6,
48
+ .sun-editor-common pre,
49
+ .sun-editor-common code,
50
+ .sun-editor-common form,
51
+ .sun-editor-common fieldset,
52
+ .sun-editor-common legend,
53
+ .sun-editor-common textarea,
54
+ .sun-editor-common p,
55
+ .sun-editor-common blockquote,
56
+ .sun-editor-common th,
57
+ .sun-editor-common td,
58
+ .sun-editor-common input,
59
+ .sun-editor-common select,
60
+ .sun-editor-common textarea,
61
+ .sun-editor-common button {
62
+ margin: 0;
63
+ padding: 0;
64
+ border: 0;
65
+ }
66
+
67
+ .sun-editor-common dl,
68
+ .sun-editor-common ul,
69
+ .sun-editor-common ol,
70
+ .sun-editor-common menu {
71
+ list-style: none;
72
+ }
73
+
74
+ .sun-editor-common hr {
75
+ margin: 6px 0 6px 0 !important;
76
+ }
77
+
78
+ .sun-editor textarea {
79
+ resize: none;
80
+ border: 0;
81
+ padding: 0;
82
+ }
83
+
84
+ .sun-editor button {
85
+ border: 0 none;
86
+ background-color: transparent;
87
+ touch-action: manipulation;
88
+ cursor: pointer;
89
+ outline: none;
90
+ }
91
+
92
+ .sun-editor input,
93
+ .sun-editor select,
94
+ .sun-editor textarea,
95
+ .sun-editor button {
96
+ vertical-align: middle;
97
+ }
98
+
99
+ .sun-editor button span {
100
+ display: block;
101
+ margin: 0;
102
+ padding: 0;
103
+ }
104
+
105
+ .sun-editor button .se-txt {
106
+ display: block;
107
+ margin-top: 0;
108
+ white-space: nowrap;
109
+ overflow: hidden;
110
+ text-overflow: ellipsis;
111
+ line-height: 2;
112
+ max-height: 24px;
113
+ }
114
+
115
+ .sun-editor .se-wrapper .se-code-viewer-mirror,
116
+ .sun-editor .se-wrapper .cm-editor,
117
+ .sun-editor .se-wrapper .CodeMirror {
118
+ font-size: 13px;
119
+ }
120
+
121
+ /* button children are pointer event none */
122
+ .sun-editor button * {
123
+ pointer-events: none;
124
+ backface-visibility: hidden;
125
+ -webkit-backface-visibility: hidden;
126
+ -moz-backface-visibility: hidden;
127
+ }
128
+
129
+ /** button */
130
+ .sun-editor button {
131
+ color: #000;
132
+ }
133
+
134
+ /** --- se buttons ---------------------------------------------------------- */
135
+ /** --- se-btn */
136
+ .sun-editor .se-btn {
137
+ float: left;
138
+ width: 34px;
139
+ height: 34px;
140
+ margin: 1px;
141
+ padding: 0;
142
+ font-size: 12px;
143
+ line-height: 1.8;
144
+ border-width: 0;
145
+ border-style: solid;
146
+ border-color: #ccc;
147
+ border-radius: 2px;
148
+ }
149
+
150
+ .sun-editor .se-form-group button.se-btn {
151
+ border-width: 1px;
152
+ }
153
+
154
+ .sun-editor .se-btn.se-btn-info {
155
+ color: #3288ff;
156
+ }
157
+
158
+ .sun-editor .se-btn-w-auto {
159
+ width: auto !important;
160
+ }
161
+
162
+ .sun-editor .se-btn:not(.on):not(.active):enabled:hover,
163
+ .sun-editor .se-btn:not(.on):not(.active):enabled:focus {
164
+ background-color: #e1e1e1;
165
+ border-color: #d1d1d1;
166
+ }
167
+
168
+ .sun-editor .se-btn:not(.on):not(.active):enabled:active,
169
+ .sun-editor .se-btn:not(.on):not(.active):enabled.__se__active {
170
+ background-color: #ececec;
171
+ border-color: #ececec !important;
172
+ outline: 1px solid #b1b1b1 !important;
173
+ -webkit-box-shadow: 0 0 0 0.3rem #ececec;
174
+ box-shadow: 0 0 0 0.3rem #ececec;
175
+ transition: box-shadow 0.1s ease-in-out;
176
+ }
177
+
178
+ /* after, before button : hover */
179
+ .sun-editor .se-menu-list li:hover .se-side-btn-a:not(.on):not(.active):enabled,
180
+ .sun-editor .se-menu-list li:hover .se-side-btn-b:not(.on):not(.active):enabled,
181
+ .sun-editor .se-menu-list li:hover .se-side-btn-after:not(.on):not(.active):enabled,
182
+ .sun-editor .se-menu-list li:hover .se-side-btn-before:not(.on):not(.active):enabled,
183
+ .sun-editor .se-menu-list li:hover .se-btn-input input:enabled {
184
+ border-width: 1px;
185
+ border-style: solid;
186
+ border-color: #e1e1e1;
187
+ }
188
+
189
+ /* after, before button - on, active */
190
+ .sun-editor .se-menu-list li .se-side-btn-after.on:enabled,
191
+ .sun-editor .se-menu-list li .se-side-btn-before.on:enabled,
192
+ .sun-editor .se-menu-list li .se-side-btn-after.active:enabled,
193
+ .sun-editor .se-menu-list li .se-side-btn-before.active:enabled,
194
+ .sun-editor .se-menu-list li .se-btn-input.on input:enabled,
195
+ .sun-editor .se-menu-list li .se-btn-input.active input:enabled {
196
+ border-color: #80bdff;
197
+ }
198
+
199
+ /* after, before button : hover - on, active - border */
200
+ .sun-editor .se-menu-list li .se-side-btn-after.on:enabled,
201
+ .sun-editor .se-menu-list li .se-side-btn-after.active:enabled {
202
+ border-right: 0;
203
+ border-left: 1px solid;
204
+ }
205
+ .sun-editor .se-menu-list li .se-side-btn-before.on:enabled,
206
+ .sun-editor .se-menu-list li .se-side-btn-before.active:enabled {
207
+ border-left: 0;
208
+ border-right: 1px solid;
209
+ }
210
+ .sun-editor .se-menu-list li .se-btn-input.on input:enabled,
211
+ .sun-editor .se-menu-list li .se-btn-input.active input:enabled {
212
+ border-width: 1px;
213
+ border-style: solid;
214
+ }
215
+
216
+ /* after, before button : hover - on, active */
217
+ .sun-editor .se-menu-list li:hover .se-side-btn-after.on:enabled,
218
+ .sun-editor .se-menu-list li:hover .se-side-btn-before.on:enabled,
219
+ .sun-editor .se-menu-list li:hover .se-side-btn-after.active:enabled,
220
+ .sun-editor .se-menu-list li:hover .se-side-btn-before.active:enabled,
221
+ .sun-editor .se-menu-list li:hover .se-btn-input.on input:enabled,
222
+ .sun-editor .se-menu-list li:hover .se-btn-input.active input:enabled {
223
+ border-color: #3f9dff;
224
+ }
225
+
226
+ /* se-btn.on */
227
+ .sun-editor .se-btn:enabled.on {
228
+ background-color: #eaf3ff;
229
+ color: #4592ff;
230
+ border-color: #c4ddff;
231
+ }
232
+
233
+ .sun-editor .se-btn:enabled.on:hover,
234
+ .sun-editor .se-btn:enabled.on:focus {
235
+ background-color: #d0e3ff;
236
+ color: #407dd1;
237
+ border-color: #c4ddff;
238
+ }
239
+
240
+ .sun-editor .se-btn:enabled.on:active,
241
+ .sun-editor .se-btn:enabled.on.__se__active {
242
+ background-color: #d0e3ff;
243
+ color: #3288ff;
244
+ border-color: #d0e3ff !important;
245
+ outline: 1px solid #3288ff !important;
246
+ color: 1px solid #3288ff;
247
+ -webkit-box-shadow: 0 0 0 0.3rem #d0e3ff;
248
+ box-shadow: 0 0 0 0.3rem #d0e3ff;
249
+ transition: box-shadow 0.1s ease-in-out;
250
+ }
251
+
252
+ /* se-btn.active */
253
+ .sun-editor .se-btn:enabled.active {
254
+ background-color: #dbeaff;
255
+ color: #4592ff;
256
+ border-color: #80bdff;
257
+ }
258
+
259
+ .sun-editor .se-btn:enabled.active:hover,
260
+ .sun-editor .se-btn:enabled.active:focus {
261
+ background-color: #c4ddff;
262
+ color: #1275ff;
263
+ border-color: #3f9dff;
264
+ }
265
+
266
+ .sun-editor .se-btn:enabled.active:active,
267
+ .sun-editor .se-btn:enabled.active.__se__active {
268
+ background-color: #c4ddff;
269
+ color: #1275ff;
270
+ border-color: #1275ff !important;
271
+ outline: 1px solid #1275ff !important;
272
+ -webkit-box-shadow: 0 0 0 0.3rem #c4ddff;
273
+ box-shadow: 0 0 0 0.3rem #c4ddff;
274
+ transition: box-shadow 0.1s ease-in-out;
275
+ }
276
+
277
+ /** --- primary button */
278
+ .sun-editor .se-btn-primary {
279
+ background-color: #eaf3ff;
280
+ border: 1px solid #1275ff;
281
+ border-radius: 2px;
282
+ outline: 0 none;
283
+ }
284
+
285
+ .sun-editor .se-btn-primary:hover,
286
+ .sun-editor .se-btn-primary:focus {
287
+ background-color: #c4ddff;
288
+ }
289
+
290
+ .sun-editor .se-btn-primary:active,
291
+ .sun-editor .se-btn-primary.__se__active {
292
+ background-color: #eaf3ff;
293
+ border-color: #eaf3ff !important;
294
+ outline: 1px solid #1275ff !important;
295
+ -webkit-box-shadow: 0 0 0 0.3rem #eaf3ff;
296
+ box-shadow: 0 0 0 0.3rem #eaf3ff;
297
+ transition: box-shadow 0.1s ease-in-out;
298
+ }
299
+
300
+ /* --- se-btn.success */
301
+ .sun-editor .se-btn.se-btn-success {
302
+ color: #008000;
303
+ border-color: #89b589;
304
+ }
305
+
306
+ .sun-editor .se-btn.se-btn-success:not(.on):not(.active):enabled:hover,
307
+ .sun-editor .se-btn.se-btn-success:not(.on):not(.active):enabled:focus {
308
+ background-color: #dff4e6;
309
+ border-color: #89b589;
310
+ }
311
+ .sun-editor .se-btn.se-btn-success:not(.on):not(.active):enabled:active,
312
+ .sun-editor .se-btn.se-btn-success:not(.on):not(.active):enabled.__se__active {
313
+ background-color: #dff4e6;
314
+ border-color: #dff4e6 !important;
315
+ outline: 1px solid #89b589 !important;
316
+ -webkit-box-shadow: 0 0 0 0.3rem #dff4e6;
317
+ box-shadow: 0 0 0 0.3rem #dff4e6;
318
+ transition: box-shadow 0.1s ease-in-out;
319
+ }
320
+
321
+ /* se-btn.success.on */
322
+ .sun-editor .se-btn.se-btn-success:enabled.on {
323
+ background-color: #dff4e6;
324
+ color: #008000;
325
+ border-color: #89b589;
326
+ }
327
+
328
+ .sun-editor .se-btn.se-btn-success:enabled.on:hover,
329
+ .sun-editor .se-btn.se-btn-success:enabled.on:focus {
330
+ background-color: #d5f3e0;
331
+ color: #008000;
332
+ border-color: #769c76;
333
+ }
334
+
335
+ .sun-editor .se-btn.se-btn-success:enabled.on:active,
336
+ .sun-editor .se-btn.se-btn-success:enabled.on.__se__active {
337
+ background-color: #d5f3e0;
338
+ color: #008000;
339
+ border-color: #d5f3e0 !important;
340
+ outline: 1px solid #628562 !important;
341
+ color: 1px solid #008000;
342
+ -webkit-box-shadow: 0 0 0 0.3rem #d5f3e0;
343
+ box-shadow: 0 0 0 0.3rem #d5f3e0;
344
+ transition: box-shadow 0.1s ease-in-out;
345
+ }
346
+
347
+ /* se-btn.success.active */
348
+ .sun-editor .se-btn.se-btn-success:enabled.active {
349
+ background-color: #d5f3e0;
350
+ color: #008000;
351
+ border-color: #419c41;
352
+ }
353
+
354
+ .sun-editor .se-btn.se-btn-success:enabled.active:hover,
355
+ .sun-editor .se-btn.se-btn-success:enabled.active:focus {
356
+ background-color: #c1f4d3;
357
+ color: #006c00;
358
+ border-color: #419c41;
359
+ }
360
+
361
+ .sun-editor .se-btn.se-btn-success:enabled.active:active,
362
+ .sun-editor .se-btn.se-btn-success:enabled.active.__se__active {
363
+ background-color: #c1f4d3;
364
+ color: #006c00;
365
+ border-color: #c1f4d3 !important;
366
+ outline: 1px solid #419c41 !important;
367
+ -webkit-box-shadow: 0 0 0 0.3rem #c1f4d3;
368
+ box-shadow: 0 0 0 0.3rem #c1f4d3;
369
+ transition: box-shadow 0.1s ease-in-out;
370
+ }
371
+
372
+ /* --- se-btn.danger */
373
+ .sun-editor .se-btn.se-btn-danger {
374
+ color: #b94a48;
375
+ border-color: #e1a6a2;
376
+ }
377
+
378
+ .sun-editor .se-btn.se-btn-danger:not(.on):not(.active):enabled:hover,
379
+ .sun-editor .se-btn.se-btn-danger:not(.on):not(.active):enabled:focus {
380
+ background-color: #f8e3e1;
381
+ border-color: #e1a6a2;
382
+ }
383
+
384
+ .sun-editor .se-btn.se-btn-danger:not(.on):not(.active):enabled:active,
385
+ .sun-editor .se-btn.se-btn-danger:not(.on):not(.active):enabled.__se__active {
386
+ background-color: #f8e3e1;
387
+ border-color: #f8e3e1 !important;
388
+ outline: 1px solid #e1a6a2 !important;
389
+ -webkit-box-shadow: 0 0 0 0.3rem #f8e3e1;
390
+ box-shadow: 0 0 0 0.3rem #f8e3e1;
391
+ transition: box-shadow 0.1s ease-in-out;
392
+ }
393
+
394
+ /* se-btn.danger.on */
395
+ .sun-editor .se-btn.se-btn-danger:enabled.on {
396
+ background-color: #f8e6e4;
397
+ color: #b94a48;
398
+ border-color: #d8a6a0;
399
+ }
400
+
401
+ .sun-editor .se-btn.se-btn-danger:enabled.on:hover,
402
+ .sun-editor .se-btn.se-btn-danger:enabled.on:focus {
403
+ background-color: #f7deda;
404
+ color: #b94a48;
405
+ border-color: #c8958f;
406
+ }
407
+
408
+ .sun-editor .se-btn.se-btn-danger:enabled.on:active,
409
+ .sun-editor .se-btn.se-btn-danger:enabled.on.__se__active {
410
+ background-color: #f5d0c8;
411
+ color: #b94a48;
412
+ border-color: #f5d0c8 !important;
413
+ outline: 1px solid #a37068 !important;
414
+ -webkit-box-shadow: 0 0 0 0.3rem #f7deda;
415
+ box-shadow: 0 0 0 0.3rem #f7deda;
416
+ transition: box-shadow 0.1s ease-in-out;
417
+ }
418
+
419
+ /* se-btn.danger.active */
420
+ .sun-editor .se-btn.se-btn-danger:enabled.active {
421
+ background-color: #f7deda;
422
+ color: #b94a48;
423
+ border-color: #d17872;
424
+ }
425
+
426
+ .sun-editor .se-btn.se-btn-danger:enabled.active:hover,
427
+ .sun-editor .se-btn.se-btn-danger:enabled.active:focus {
428
+ background-color: #f5d0c8;
429
+ color: #a65242;
430
+ border-color: #d17872;
431
+ }
432
+
433
+ .sun-editor .se-btn.se-btn-danger:enabled.active:active,
434
+ .sun-editor .se-btn.se-btn-danger:enabled.active.__se__active {
435
+ background-color: #f5d0c8;
436
+ color: #a65242;
437
+ border-color: #f5d0c8 !important;
438
+ outline: 1px solid #d17872 !important;
439
+ -webkit-box-shadow: 0 0 0 0.3rem #f5d0c8;
440
+ box-shadow: 0 0 0 0.3rem #f5d0c8;
441
+ transition: box-shadow 0.1s ease-in-out;
442
+ }
443
+
444
+ /** --- Input */
445
+ .sun-editor input,
446
+ .sun-editor select,
447
+ .sun-editor textarea {
448
+ color: #000;
449
+ border: 1px solid #ccc;
450
+ border-radius: 2px;
451
+ }
452
+
453
+ /* disabled buttons, icon blur */
454
+ .sun-editor .se-btn:disabled,
455
+ .sun-editor button:disabled,
456
+ .sun-editor input:disabled {
457
+ cursor: not-allowed;
458
+ color: #bdbdbd;
459
+ }
460
+
461
+ /* dropdown layer - list button */
462
+ .sun-editor .se-btn-list {
463
+ width: 100%;
464
+ height: auto;
465
+ min-height: 32px;
466
+ padding: 0 14px;
467
+ cursor: pointer;
468
+ font-size: 12px;
469
+ line-height: normal;
470
+ text-indent: 0;
471
+ text-decoration: none;
472
+ text-align: left;
473
+ }
474
+
475
+ .sun-editor .se-btn-list.default_value {
476
+ border: 1px dashed #b1b1b1;
477
+ }
478
+
479
+ /** --- Icons ---------------------------------------------------------- */
480
+ /* default svg */
481
+ .sun-editor svg {
482
+ fill: currentColor;
483
+ vertical-align: super;
484
+ }
485
+
486
+ .sun-editor button > svg,
487
+ .sun-editor .se-svg {
488
+ width: 15px;
489
+ height: 15px;
490
+ margin: auto;
491
+ fill: currentColor;
492
+ display: block;
493
+ text-align: center;
494
+ float: none;
495
+ }
496
+ .sun-editor button > svg.se-mdi {
497
+ width: 20px;
498
+ height: 20px;
499
+ }
500
+
501
+ /* sub button size */
502
+ .sun-editor button.se-sub-arrow-btn {
503
+ width: 18px;
504
+ }
505
+ .sun-editor button.se-sub-arrow-btn svg {
506
+ width: 8px;
507
+ }
508
+ .sun-editor button.se-sub-btn {
509
+ width: 24px;
510
+ }
511
+ .sun-editor button.se-sub-btn svg {
512
+ width: 12px;
513
+ }
514
+
515
+ /* side button */
516
+ .sun-editor button.se-side-btn {
517
+ border-radius: 0;
518
+ margin-left: 0;
519
+ margin-right: 0;
520
+ }
521
+ .sun-editor button.se-side-btn-a {
522
+ float: left;
523
+ border-radius: 2px 0 0 2px;
524
+ margin-right: 0;
525
+ }
526
+ .sun-editor button.se-side-btn-b {
527
+ float: left;
528
+ border-radius: 0 2px 2px 0;
529
+ margin-left: 0;
530
+ }
531
+ .sun-editor button.se-side-btn-before {
532
+ float: left;
533
+ margin-right: 0;
534
+ border-radius: 2px 0 0 2px;
535
+ }
536
+ .sun-editor button.se-side-btn-after {
537
+ margin-left: 0;
538
+ border-radius: 0 2px 2px 0;
539
+ }
540
+
541
+ /* list button icons */
542
+ .sun-editor button.se-btn-list > * li::before {
543
+ content: '';
544
+ display: inline-block;
545
+ width: 18px;
546
+ height: 13px;
547
+ background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTE5LDEzSDVWMTFIMTlWMTNaIiAvPjwvc3ZnPg==');
548
+ background-size: cover;
549
+ opacity: 0.5;
550
+ }
551
+
552
+ /* close class icon */
553
+ .sun-editor .close > svg,
554
+ .sun-editor .se-close-btn > svg {
555
+ width: 10px;
556
+ height: 10px;
557
+ }
558
+
559
+ /* se-select-btn icon */
560
+ .sun-editor .se-btn-select > svg {
561
+ float: right;
562
+ width: 8px;
563
+ height: 8px;
564
+ }
565
+
566
+ /* se-btn-list inner icon */
567
+ .sun-editor .se-select-item .se-list-icon {
568
+ display: inline-block;
569
+ width: 16px;
570
+ height: 16px;
571
+ margin: 0 6px 6px 0;
572
+ vertical-align: middle;
573
+ }
574
+
575
+ /* select menu inner icon */
576
+ .sun-editor .se-btn-list > .se-list-icon {
577
+ display: inline-block;
578
+ width: 16px;
579
+ height: 16px;
580
+ margin: -1px 10px 0 0;
581
+ vertical-align: middle;
582
+ }
583
+
584
+ /* icon class */
585
+ .sun-editor button > i::before {
586
+ -moz-osx-font-smoothing: grayscale;
587
+ -webkit-font-smoothing: antialiased;
588
+ display: inline-block;
589
+ font-style: normal;
590
+ font-variant: normal;
591
+ text-rendering: auto;
592
+ font-size: 15px;
593
+ line-height: 2;
594
+ }
595
+
596
+ .sun-editor button > [class='se-icon-text'] {
597
+ font-size: 20px;
598
+ line-height: 1;
599
+ }
600
+
601
+ /** --- arrow icon ---------------------------------------------------------- */
602
+ .sun-editor .se-arrow,
603
+ .sun-editor .se-arrow::after {
604
+ position: absolute;
605
+ display: block;
606
+ width: 0;
607
+ height: 0;
608
+ border: 11px solid transparent;
609
+ margin-right: 0;
610
+ margin-left: -11px;
611
+ }
612
+
613
+ .sun-editor .se-controller .se-arrow {
614
+ left: 20px;
615
+ right: auto;
616
+ margin-left: -11px;
617
+ margin-right: 0;
618
+ }
619
+
620
+ /* arrow up */
621
+ .sun-editor .se-arrow.se-arrow-up {
622
+ top: -12px;
623
+ border-top-width: 0;
624
+ border-bottom-color: #999;
625
+ }
626
+
627
+ .sun-editor .se-arrow.se-arrow-up::after {
628
+ top: 1px;
629
+ content: ' ';
630
+ border-top-width: 0;
631
+ border-bottom-color: #fff;
632
+ }
633
+
634
+ /* arrow down */
635
+ .sun-editor .se-arrow.se-arrow-down {
636
+ bottom: -12px;
637
+ border-bottom-width: 0;
638
+ border-top-color: #999;
639
+ }
640
+
641
+ .sun-editor .se-arrow.se-arrow-down::after {
642
+ top: -12px;
643
+ content: ' ';
644
+ border-bottom-width: 0;
645
+ border-top-color: #fff;
646
+ }
647
+
648
+ /** --- container */
649
+ .sun-editor .se-container {
650
+ position: relative;
651
+ width: 100%;
652
+ height: 100%;
653
+ }
654
+
655
+ /** --- loading box */
656
+ .sun-editor .se-loading-box {
657
+ position: fixed;
658
+ display: none;
659
+ width: 100%;
660
+ height: 100%;
661
+ top: 0;
662
+ left: 0;
663
+ background-color: #fff;
664
+ opacity: 0.7;
665
+ filter: alpha(opacity=70);
666
+ z-index: 2147483647;
667
+ }
668
+
669
+ .sun-editor .se-container .se-loading-box {
670
+ position: absolute;
671
+ }
672
+
673
+ .sun-editor .se-loading-box .se-loading-effect {
674
+ position: absolute;
675
+ display: block;
676
+ top: 50%;
677
+ left: 50%;
678
+ height: 44px;
679
+ width: 44px;
680
+ border-top: 2px solid #07d;
681
+ border-right: 2px solid transparent;
682
+ border-radius: 50%;
683
+ animation: spinner 0.8s linear infinite;
684
+ margin: -25px 0 0 -25px;
685
+ }
686
+
687
+ /** --- line breaker --- component - top, bottom */
688
+ .sun-editor .se-line-breaker-component {
689
+ position: absolute;
690
+ display: none;
691
+ width: 24px;
692
+ height: 24px;
693
+ color: #3288ff;
694
+ background-color: #fff;
695
+ border: 1px solid #3288ff;
696
+ opacity: 0.75;
697
+ border-radius: 2px;
698
+ cursor: pointer;
699
+ z-index: 2147483647;
700
+ }
701
+
702
+ .sun-editor .se-line-breaker-component:hover {
703
+ opacity: 0.9;
704
+ color: #fff;
705
+ background-color: #4592ff;
706
+ }
707
+
708
+ /** --- toolbar ---------------------------------------------------------- */
709
+ .sun-editor .se-toolbar {
710
+ display: block;
711
+ position: relative;
712
+ height: auto;
713
+ width: 100%;
714
+ overflow: visible;
715
+ padding: 0;
716
+ margin: 0;
717
+ background-color: #fff;
718
+ outline: 1px solid #e1e1e1;
719
+ z-index: 7;
720
+ }
721
+
722
+ .sun-editor .se-toolbar-shadow {
723
+ display: block !important;
724
+ position: relative !important;
725
+ width: 100% !important;
726
+ height: 0px !important;
727
+ overflow: visible !important;
728
+ visibility: hidden !important;
729
+ padding: 0 !important;
730
+ margin: 0 !important;
731
+ background-color: transparent !important;
732
+ outline: none !important;
733
+ border: none !important;
734
+ z-index: 0 !important;
735
+ }
736
+
737
+ .sun-editor .se-toolbar-separator-vertical {
738
+ display: inline-block;
739
+ height: 38px;
740
+ width: 0px;
741
+ margin: 0px;
742
+ vertical-align: top;
743
+ }
744
+
745
+ /* inline toolbar */
746
+ .sun-editor .se-toolbar.se-toolbar-inline {
747
+ display: none;
748
+ position: absolute;
749
+ box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
750
+ -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
751
+ }
752
+
753
+ /* balloon toolbar */
754
+ .sun-editor .se-toolbar.se-toolbar-balloon {
755
+ display: none;
756
+ position: absolute;
757
+ z-index: 2147483647;
758
+ width: auto;
759
+ box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
760
+ -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
761
+ }
762
+
763
+ /* sticky toolbar */
764
+ .sun-editor .se-toolbar.se-toolbar-sticky {
765
+ position: fixed;
766
+ top: 0px;
767
+ }
768
+
769
+ .sun-editor .se-toolbar-sticky-dummy {
770
+ display: none;
771
+ position: static;
772
+ z-index: -1;
773
+ }
774
+
775
+ /* toolbar arrow up */
776
+ .sun-editor .se-toolbar .se-arrow.se-arrow-up {
777
+ border-bottom-color: #e1e1e1;
778
+ }
779
+
780
+ .sun-editor .se-toolbar .se-arrow.se-arrow-up::after {
781
+ border-bottom-color: #fff;
782
+ }
783
+
784
+ /* toolbar arrow down */
785
+ .sun-editor .se-toolbar .se-arrow.se-arrow-down {
786
+ border-top-color: #e1e1e1;
787
+ }
788
+
789
+ .sun-editor .se-toolbar .se-arrow.se-arrow-down::after {
790
+ border-top-color: #fff;
791
+ }
792
+
793
+ /* toolbar visible on scroll */
794
+ .sun-editor .se-toolbar.se-toolbar-onscroll-hide {
795
+ visibility: hidden !important;
796
+ }
797
+
798
+ /** --- tool bar --- module --- button, module, group ---------------------------------------------------------- */
799
+ /* module */
800
+ .sun-editor .se-btn-module {
801
+ display: inline-block;
802
+ }
803
+
804
+ .sun-editor .se-btn-module-border {
805
+ border: 1px solid #e1e1e1;
806
+ border-radius: 2px;
807
+ margin-left: 1px;
808
+ margin-right: 1px;
809
+ }
810
+
811
+ .sun-editor .se-btn-module-enter {
812
+ display: block;
813
+ width: 100%;
814
+ height: 0px;
815
+ margin: 0;
816
+ padding: 0;
817
+ background-color: transparent;
818
+ }
819
+
820
+ /* ---more - layer */
821
+ .sun-editor .se-toolbar-more-layer {
822
+ margin: 0 -3px;
823
+ background-color: #fff;
824
+ }
825
+
826
+ .sun-editor .se-toolbar-more-layer .se-more-layer {
827
+ display: none;
828
+ border-top: 1px solid #e1e1e1;
829
+ }
830
+
831
+ .sun-editor .se-toolbar-more-layer .se-more-layer .se-more-form {
832
+ display: inline-block;
833
+ width: 100%;
834
+ height: auto;
835
+ padding: 4px 3px 0 3px;
836
+ }
837
+
838
+ /* ---more - button */
839
+ .sun-editor .se-btn-module .se-btn-more.se-btn-more-text {
840
+ width: auto;
841
+ padding: 0 4px;
842
+ }
843
+
844
+ /* innser ul */
845
+ .sun-editor .se-menu-list {
846
+ float: left;
847
+ padding: 0;
848
+ margin: 0;
849
+ }
850
+
851
+ .sun-editor .se-menu-list li {
852
+ position: relative;
853
+ float: left;
854
+ padding: 0;
855
+ margin: 0;
856
+ }
857
+
858
+ .sun-editor .se-menu-list li.se-toolbar-hidden-btn {
859
+ display: none;
860
+ }
861
+
862
+ .sun-editor .se-menu-list li .se-toolbar-btn:not(input) {
863
+ border-color: transparent;
864
+ }
865
+
866
+ /* tool bar select button (font, fontSize, formatBlock) */
867
+ .sun-editor .se-btn-select {
868
+ width: auto;
869
+ display: flex;
870
+ padding: 4px 6px;
871
+ }
872
+
873
+ .sun-editor .se-btn-select .se-txt {
874
+ flex: auto;
875
+ text-align: left;
876
+ margin-right: 4px;
877
+ }
878
+
879
+ .sun-editor .se-btn-select .se-not-arrow-text {
880
+ flex: auto;
881
+ text-align: center;
882
+ margin: 0;
883
+ }
884
+
885
+ .sun-editor .se-btn-select.on .se-txt + svg {
886
+ transform: rotate(-180deg);
887
+ }
888
+
889
+ .sun-editor .se-btn-select.se-btn-tool-font {
890
+ width: 100px;
891
+ }
892
+
893
+ .sun-editor .se-btn-select.se-btn-tool-format {
894
+ width: 82px;
895
+ }
896
+
897
+ .sun-editor .se-btn-select.se-btn-tool-font-size .se-txt {
898
+ width: 66px;
899
+ margin: 0;
900
+ }
901
+ .sun-editor .se-btn-select.se-btn-tool-font-size .se-not-arrow-text {
902
+ width: 50px;
903
+ }
904
+
905
+ /* tool bar input button (fontSize) */
906
+ .sun-editor .se-btn-input {
907
+ padding: 0 !important;
908
+ border: 0 !important;
909
+ }
910
+ .sun-editor .se-btn-input input {
911
+ font-size: 13px;
912
+ height: 34px;
913
+ border: 0;
914
+ }
915
+ .sun-editor .se-btn-input input:hover {
916
+ border: 1px solid #c1c1c1;
917
+ }
918
+ .sun-editor .se-btn-input input:focus {
919
+ border: 1px solid #3288ff !important;
920
+ outline: 0;
921
+ }
922
+
923
+ /** --- menu tray -------------------------------------------------------------- */
924
+ .sun-editor .se-btn-tray {
925
+ position: relative;
926
+ width: 100%;
927
+ height: auto;
928
+ padding: 4px 3px 0 3px;
929
+ margin: 0;
930
+ }
931
+
932
+ .sun-editor .se-menu-tray {
933
+ position: absolute;
934
+ top: 0px;
935
+ left: 0px;
936
+ width: 100%;
937
+ height: 0px;
938
+ z-index: 2147483647;
939
+ }
940
+
941
+ /** --- dropdown layer ---------------------------------------------------------- */
942
+ .sun-editor .se-dropdown {
943
+ overflow-x: hidden;
944
+ overflow-y: auto;
945
+ }
946
+
947
+ .sun-editor .se-menu-container {
948
+ overflow-x: unset;
949
+ overflow-y: unset;
950
+ }
951
+
952
+ .sun-editor .se-list-layer {
953
+ display: none;
954
+ position: absolute;
955
+ top: 0px;
956
+ left: 0px;
957
+ height: auto;
958
+ z-index: 5;
959
+ border: 1px solid #e1e1e1;
960
+ border-radius: 2px;
961
+ padding: 4px;
962
+ background-color: #fff;
963
+ -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
964
+ box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
965
+ outline: 0 none;
966
+ }
967
+
968
+ .sun-editor .se-list-layer .se-list-inner {
969
+ padding: 0;
970
+ margin: 0;
971
+ overflow: visible;
972
+ }
973
+
974
+ .sun-editor .se-list-layer button {
975
+ margin: 0 0 2px 0;
976
+ width: 100%;
977
+ }
978
+
979
+ .sun-editor .se-list-inner ul {
980
+ width: 100%;
981
+ padding: 0;
982
+ margin: auto;
983
+ }
984
+
985
+ .sun-editor .se-list-inner :not(.se-list-horizontal) li > button {
986
+ min-width: 100%;
987
+ width: max-content;
988
+ }
989
+
990
+ /* dropdown layer - basic list */
991
+ .sun-editor .se-list-inner .se-list-basic li {
992
+ width: 100%;
993
+ }
994
+ .sun-editor .se-list-inner input {
995
+ border-radius: 0;
996
+ }
997
+ .sun-editor .se-list-inner ul.se-list-carrier {
998
+ width: 165px;
999
+ height: 52px;
1000
+ }
1001
+ .sun-editor .se-list-inner ul.se-list-carrier li button > ol,
1002
+ .sun-editor .se-list-inner ul.se-list-carrier li button > ul {
1003
+ font-size: 10px;
1004
+ }
1005
+
1006
+ /* dropdown layer - checked list */
1007
+ .sun-editor .se-list-inner .se-list-checked li .se-svg {
1008
+ float: left;
1009
+ padding: 6px 6px 0 0;
1010
+ }
1011
+
1012
+ .sun-editor .se-list-inner .se-list-checked li .se-svg > svg {
1013
+ display: none;
1014
+ }
1015
+
1016
+ .sun-editor .se-list-inner .se-list-checked li.se-checked * {
1017
+ color: #4592ff;
1018
+ }
1019
+
1020
+ .sun-editor .se-list-inner .se-list-checked li.se-checked .se-svg > svg {
1021
+ display: block;
1022
+ }
1023
+
1024
+ /* dropdown layer - se-list-horizontal */
1025
+ .sun-editor .se-list-inner .se-list-horizontal {
1026
+ display: flex;
1027
+ padding: 2px;
1028
+ }
1029
+ .sun-editor .se-list-inner .se-list-horizontal li {
1030
+ padding: 0;
1031
+ margin: 0 2px;
1032
+ }
1033
+
1034
+ /** --- dropdown layer - se-list-inner > exception */
1035
+ /* dropdown layer - font size */
1036
+ .sun-editor .se-list-layer.se-list-font-size {
1037
+ min-width: 140px;
1038
+ max-height: 300px;
1039
+ }
1040
+
1041
+ /* dropdown layer - font family */
1042
+ .sun-editor .se-list-layer.se-list-font-family {
1043
+ min-width: 156px;
1044
+ }
1045
+
1046
+ .sun-editor .se-list-layer.se-list-font-family .default {
1047
+ border-bottom: 1px solid #ccc;
1048
+ }
1049
+
1050
+ /* dropdown layer - hr */
1051
+ .sun-editor .se-list-layer.se-list-line {
1052
+ width: 125px;
1053
+ }
1054
+
1055
+ .sun-editor .se-list-layer.se-list-line hr {
1056
+ border-width: 1px 0 0;
1057
+ height: 1px;
1058
+ border-color: #333;
1059
+ }
1060
+
1061
+ /* dropdown layer - align */
1062
+ .sun-editor .se-list-layer.se-list-align .se-list-inner {
1063
+ left: 9px;
1064
+ }
1065
+
1066
+ /** dropdown layer - format block, paragraph style, text style */
1067
+ .sun-editor .se-list-layer.se-list-format {
1068
+ min-width: 156px;
1069
+ }
1070
+
1071
+ .sun-editor .se-list-layer.se-list-format li {
1072
+ padding: 0;
1073
+ width: 100%;
1074
+ }
1075
+
1076
+ .sun-editor .se-list-layer.se-list-format ul .se-btn-list {
1077
+ line-height: 100%;
1078
+ }
1079
+
1080
+ .sun-editor .se-list-layer.se-list-format ul .se-btn-list[data-value='h1'] {
1081
+ height: 40px;
1082
+ }
1083
+
1084
+ .sun-editor .se-list-layer.se-list-format ul .se-btn-list[data-value='h2'] {
1085
+ height: 34px;
1086
+ }
1087
+
1088
+ .sun-editor .se-list-layer.se-list-format ul p {
1089
+ font-size: 13px;
1090
+ }
1091
+
1092
+ .sun-editor .se-list-layer.se-list-format ul div {
1093
+ font-size: 13px;
1094
+ padding: 4px 2px;
1095
+ }
1096
+
1097
+ .sun-editor .se-list-layer.se-list-format ul h1 {
1098
+ font-size: 2em;
1099
+ font-weight: bold;
1100
+ }
1101
+
1102
+ .sun-editor .se-list-layer.se-list-format ul h2 {
1103
+ font-size: 1.5em;
1104
+ font-weight: bold;
1105
+ }
1106
+
1107
+ .sun-editor .se-list-layer.se-list-format ul h3 {
1108
+ font-size: 1.17em;
1109
+ font-weight: bold;
1110
+ }
1111
+
1112
+ .sun-editor .se-list-layer.se-list-format ul h4 {
1113
+ font-size: 1em;
1114
+ font-weight: bold;
1115
+ }
1116
+
1117
+ .sun-editor .se-list-layer.se-list-format ul h5 {
1118
+ font-size: 0.83em;
1119
+ font-weight: bold;
1120
+ }
1121
+
1122
+ .sun-editor .se-list-layer.se-list-format ul h6 {
1123
+ font-size: 0.67em;
1124
+ font-weight: bold;
1125
+ }
1126
+
1127
+ .sun-editor .se-list-layer.se-list-format ul blockquote {
1128
+ font-size: 13px;
1129
+ color: #999;
1130
+ height: 22px;
1131
+ margin: 0;
1132
+ background-color: transparent;
1133
+ line-height: 1.5;
1134
+ border-style: solid;
1135
+ border-color: #b1b1b1;
1136
+ padding: 0 0 0 7px;
1137
+ border-width: 0;
1138
+ border-left-width: 5px;
1139
+ }
1140
+
1141
+ .sun-editor .se-list-layer.se-list-format ul pre {
1142
+ font-size: 13px;
1143
+ color: #666;
1144
+ padding: 4px 11px;
1145
+ margin: 0;
1146
+ background-color: #f9f9f9;
1147
+ border: 1px solid #e1e1e1;
1148
+ border-radius: 2px;
1149
+ }
1150
+
1151
+ .sun-editor .sun-editor-editable[contenteditable='true'].se-copy-format-cursor {
1152
+ cursor: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIxNnB4IiB2aWV3Qm94PSIwIDAgMjQgMTYiIHZlcnNpb249IjEuMSI+CjxnIGlkPSJzdXJmYWNlMSI+CjxwYXRoIHN0eWxlPSIgc3Ryb2tlOm5vbmU7ZmlsbC1ydWxlOm5vbnplcm87ZmlsbDpyZ2IoMCUsMCUsMCUpO2ZpbGwtb3BhY2l0eToxOyIgZD0iTSA0LjMzMjAzMSAxMi42Njc5NjkgQyA0LjMzMjAzMSAxMy4wMzUxNTYgNC40ODQzNzUgMTMuMzMyMDMxIDQuNjY3OTY5IDEzLjMzMjAzMSBMIDUuMzMyMDMxIDEzLjMzMjAzMSBMIDUuMzMyMDMxIDE0LjY2Nzk2OSBMIDQuNSAxNC42Njc5NjkgQyA0LjMxNjQwNiAxNC42Njc5NjkgNCAxNC4zNjcxODggNCAxNCBDIDQgMTQuMzY3MTg4IDMuNjgzNTk0IDE0LjY2Nzk2OSAzLjUgMTQuNjY3OTY5IEwgMi42Njc5NjkgMTQuNjY3OTY5IEwgMi42Njc5NjkgMTMuMzMyMDMxIEwgMy4zMzIwMzEgMTMuMzMyMDMxIEMgMy41MTU2MjUgMTMuMzMyMDMxIDMuNjY3OTY5IDEzLjAzNTE1NiAzLjY2Nzk2OSAxMi42Njc5NjkgTCAzLjY2Nzk2OSAzLjMzMjAzMSBDIDMuNjY3OTY5IDIuOTY0ODQ0IDMuNTE1NjI1IDIuNjY3OTY5IDMuMzMyMDMxIDIuNjY3OTY5IEwgMi42Njc5NjkgMi42Njc5NjkgTCAyLjY2Nzk2OSAxLjMzMjAzMSBMIDMuNSAxLjMzMjAzMSBDIDMuNjgzNTk0IDEuMzMyMDMxIDQgMS42MzI4MTIgNCAyIEMgNCAxLjYzMjgxMiA0LjMxNjQwNiAxLjMzMjAzMSA0LjUgMS4zMzIwMzEgTCA1LjMzMjAzMSAxLjMzMjAzMSBMIDUuMzMyMDMxIDIuNjY3OTY5IEwgNC42Njc5NjkgMi42Njc5NjkgQyA0LjQ4NDM3NSAyLjY2Nzk2OSA0LjMzMjAzMSAyLjk2NDg0NCA0LjMzMjAzMSAzLjMzMjAzMSBaIE0gNC4zMzIwMzEgMTIuNjY3OTY5ICIvPgo8cGF0aCBzdHlsZT0iIHN0cm9rZTpub25lO2ZpbGwtcnVsZTpub256ZXJvO2ZpbGw6cmdiKDAlLDAlLDAlKTtmaWxsLW9wYWNpdHk6MTsiIGQ9Ik0gMjAgMi42Njc5NjkgTCAyMCAyIEMgMjAgMS42MzI4MTIgMTkuNzAzMTI1IDEuMzMyMDMxIDE5LjMzMjAzMSAxLjMzMjAzMSBMIDExLjMzMjAzMSAxLjMzMjAzMSBDIDEwLjk2NDg0NCAxLjMzMjAzMSAxMC42Njc5NjkgMS42MzI4MTIgMTAuNjY3OTY5IDIgTCAxMC42Njc5NjkgNC42Njc5NjkgQyAxMC42Njc5NjkgNS4wMzUxNTYgMTAuOTY0ODQ0IDUuMzMyMDMxIDExLjMzMjAzMSA1LjMzMjAzMSBMIDE5LjMzMjAzMSA1LjMzMjAzMSBDIDE5LjcwMzEyNSA1LjMzMjAzMSAyMCA1LjAzNTE1NiAyMCA0LjY2Nzk2OSBMIDIwIDQgTCAyMC42Njc5NjkgNCBMIDIwLjY2Nzk2OSA2LjY2Nzk2OSBMIDE0IDYuNjY3OTY5IEwgMTQgMTQgQyAxNCAxNC4zNjcxODggMTQuMjk2ODc1IDE0LjY2Nzk2OSAxNC42Njc5NjkgMTQuNjY3OTY5IEwgMTYgMTQuNjY3OTY5IEMgMTYuMzY3MTg4IDE0LjY2Nzk2OSAxNi42Njc5NjkgMTQuMzY3MTg4IDE2LjY2Nzk2OSAxNCBMIDE2LjY2Nzk2OSA4IEwgMjIgOCBMIDIyIDIuNjY3OTY5IFogTSAyMCAyLjY2Nzk2OSAiLz4KPC9nPgo8L3N2Zz4K')
1153
+ 0 8,
1154
+ text;
1155
+ }
1156
+
1157
+ /* table resize */
1158
+ /* table resize - ew */
1159
+ .sun-editor-editable[contenteditable='true'] table th:not(.se-selected-table-cell):hover::before,
1160
+ .sun-editor-editable[contenteditable='true'] table td:not(.se-selected-table-cell):hover::before {
1161
+ content: '';
1162
+ position: absolute;
1163
+ top: 0;
1164
+ left: -2px;
1165
+ width: 4px;
1166
+ height: 100%;
1167
+ background-color: transparent;
1168
+ cursor: ew-resize;
1169
+ }
1170
+ .sun-editor-editable[contenteditable='true'] table th:not(.se-selected-table-cell):hover::after,
1171
+ .sun-editor-editable[contenteditable='true'] table td:not(.se-selected-table-cell):hover::after {
1172
+ content: '';
1173
+ position: absolute;
1174
+ top: 0;
1175
+ right: -2px;
1176
+ width: 4px;
1177
+ height: 100%;
1178
+ background-color: transparent;
1179
+ cursor: ew-resize;
1180
+ }
1181
+
1182
+ /* table resize - lines */
1183
+ .sun-editor .se-table-resize-line {
1184
+ position: absolute;
1185
+ top: 0;
1186
+ width: 4px;
1187
+ height: 100%;
1188
+ margin-left: -2px;
1189
+ background-color: #80bdff;
1190
+ opacity: 0.4;
1191
+ pointer-events: none;
1192
+ display: none;
1193
+ }
1194
+
1195
+ /* table resize - row, cursor */
1196
+ .sun-editor .se-table-resize-row {
1197
+ position: absolute;
1198
+ left: 0;
1199
+ width: 100%;
1200
+ height: 5px;
1201
+ margin-top: -3px;
1202
+ background-color: #80bdff;
1203
+ opacity: 0.4;
1204
+ pointer-events: none;
1205
+ display: none;
1206
+ }
1207
+
1208
+ .sun-editor .se-table-resize-line-prev {
1209
+ position: absolute;
1210
+ top: 0;
1211
+ width: 4px;
1212
+ height: 100%;
1213
+ margin-left: -1px;
1214
+ border-left: 1px dashed #f0c20a;
1215
+ background-color: transparent;
1216
+ opacity: 0.8;
1217
+ pointer-events: none;
1218
+ display: none;
1219
+ }
1220
+ .sun-editor .se-table-resize-row-prev {
1221
+ position: absolute;
1222
+ left: 0;
1223
+ width: 100%;
1224
+ height: 4px;
1225
+ margin-top: -1px;
1226
+ border-top: 1px dashed #f0c20a;
1227
+ background-color: transparent;
1228
+ opacity: 0.8;
1229
+ pointer-events: none;
1230
+ display: none;
1231
+ }
1232
+
1233
+ /* dropdown layer --- table selector */
1234
+ .sun-editor .se-selector-table {
1235
+ display: none;
1236
+ position: absolute;
1237
+ top: 34px;
1238
+ left: 1px;
1239
+ z-index: 5;
1240
+ padding: 5px 0;
1241
+ float: left;
1242
+ margin: 2px 0 0;
1243
+ font-size: 14px;
1244
+ text-align: left;
1245
+ list-style: none;
1246
+ background-color: #fff;
1247
+ -webkit-background-clip: padding-box;
1248
+ background-clip: padding-box;
1249
+ border: 1px solid #ccc;
1250
+ border-radius: 2px;
1251
+ -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
1252
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
1253
+ }
1254
+
1255
+ .sun-editor .se-selector-table .se-table-size {
1256
+ font-size: 18px;
1257
+ padding: 0 5px;
1258
+ }
1259
+
1260
+ .sun-editor .se-selector-table .se-table-size-picker {
1261
+ position: absolute !important;
1262
+ z-index: 3;
1263
+ font-size: 18px;
1264
+ width: 10em;
1265
+ height: 10em;
1266
+ cursor: pointer;
1267
+ }
1268
+
1269
+ .sun-editor .se-selector-table .se-table-size-highlighted {
1270
+ position: absolute !important;
1271
+ z-index: 2;
1272
+ font-size: 18px;
1273
+ width: 1em;
1274
+ height: 1em;
1275
+ background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAADJmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDIgNzkuMTYwOTI0LCAyMDE3LzA3LzEzLTAxOjA2OjM5ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo4QTZCNzMzN0I3RUYxMUU4ODcwQ0QwMjM1NTgzRTJDNyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo4QTZCNzMzNkI3RUYxMUU4ODcwQ0QwMjM1NTgzRTJDNyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOCAoV2luZG93cykiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0MzYyNEUxRUI3RUUxMUU4ODZGQzgwRjNBODgyNTdFOSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0MzYyNEUxRkI3RUUxMUU4ODZGQzgwRjNBODgyNTdFOSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pl0yAuwAAABBSURBVDhPY/wPBAxUAGCDGvdBeWSAeicIDTfIXREiQArYeR9hEBOEohyMGkQYjBpEGAxjg6ib+yFMygCVvMbAAABj0hwMTNeKJwAAAABJRU5ErkJggg==')
1276
+ repeat;
1277
+ }
1278
+
1279
+ .sun-editor .se-selector-table .se-table-size-unhighlighted {
1280
+ position: relative !important;
1281
+ z-index: 1;
1282
+ font-size: 18px;
1283
+ width: 5em;
1284
+ height: 5em;
1285
+ background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASAgMAAAAroGbEAAAACVBMVEUAAIj4+Pjp6ekKlAqjAAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfYAR0BKhmnaJzPAAAAG0lEQVQI12NgAAOtVatWMTCohoaGUY+EmIkEAEruEzK2J7tvAAAAAElFTkSuQmCC')
1286
+ repeat;
1287
+ }
1288
+
1289
+ .sun-editor .se-selector-table .se-table-size-display {
1290
+ padding-left: 5px;
1291
+ }
1292
+
1293
+ .sun-editor .se-list-layer.se-table-split {
1294
+ top: 36px;
1295
+ }
1296
+
1297
+ /* dropdown layer --- color selector button */
1298
+ .sun-editor .se-list-layer .se-selector-color {
1299
+ display: block;
1300
+ width: max-content;
1301
+ max-width: 252px;
1302
+ height: auto;
1303
+ padding: 0;
1304
+ margin: auto;
1305
+ }
1306
+
1307
+ .sun-editor .se-list-layer .se-selector-color .se-color-pallet {
1308
+ width: 100%;
1309
+ height: 100%;
1310
+ padding: 0;
1311
+ }
1312
+
1313
+ .sun-editor .se-list-layer .se-selector-color .se-color-pallet li {
1314
+ display: flex;
1315
+ float: left;
1316
+ position: relative;
1317
+ margin: 0;
1318
+ }
1319
+
1320
+ .sun-editor .se-list-layer .se-selector-color .se-color-pallet button {
1321
+ display: block;
1322
+ width: 28px;
1323
+ height: 28px;
1324
+ margin: 0;
1325
+ border-radius: 0;
1326
+ border: 1px solid #fff;
1327
+ text-indent: -9999px;
1328
+ }
1329
+
1330
+ .sun-editor .se-list-layer .se-selector-color .se-color-pallet button.active,
1331
+ .sun-editor .se-list-layer .se-selector-color .se-color-pallet button:hover,
1332
+ .sun-editor .se-list-layer .se-selector-color .se-color-pallet button:focus {
1333
+ border: 3px solid #fff;
1334
+ }
1335
+
1336
+ /* --- hue slider -------------------------------------------------------------- */
1337
+ .sun-editor .se-hue-slider {
1338
+ padding: 14px;
1339
+ }
1340
+
1341
+ .sun-editor .se-hue-slider-container {
1342
+ position: relative;
1343
+ width: auto;
1344
+ height: auto;
1345
+ border-radius: 50%;
1346
+ outline: 2px solid #fff;
1347
+ }
1348
+
1349
+ .sun-editor .se-hue-slider-container .se-hue-wheel {
1350
+ cursor: pointer;
1351
+ border-radius: 50%;
1352
+ }
1353
+
1354
+ .sun-editor .se-hue-slider-container .se-hue-wheel-pointer {
1355
+ position: absolute;
1356
+ width: 10px;
1357
+ height: 10px;
1358
+ border: 2px solid #fff;
1359
+ outline: 2px solid #000;
1360
+ border-radius: 50%;
1361
+ background-color: transparent;
1362
+ box-shadow: 0 0 2px #000;
1363
+ top: 50%;
1364
+ left: 50%;
1365
+ transform: translate(-50%, -50%);
1366
+ pointer-events: none;
1367
+ }
1368
+
1369
+ .sun-editor .se-hue-gradient-container {
1370
+ position: relative;
1371
+ margin-top: 14px;
1372
+ height: 28px;
1373
+ border-radius: 14px;
1374
+ outline: 2px solid #fff;
1375
+ }
1376
+
1377
+ .sun-editor .se-hue-gradient-container .se-hue-gradient {
1378
+ cursor: pointer;
1379
+ height: 28px;
1380
+ border-radius: 14px;
1381
+ background: linear-gradient(to right, #000, #fff);
1382
+ position: relative;
1383
+ }
1384
+
1385
+ .sun-editor .se-hue-gradient-container .se-hue-gradient-pointer {
1386
+ position: absolute;
1387
+ width: 14px;
1388
+ height: 14px;
1389
+ border: 2px solid #fff;
1390
+ outline: 2px solid #000;
1391
+ border-radius: 50%;
1392
+ background-color: transparent;
1393
+ box-shadow: 0 0 2px #000;
1394
+ top: 14px;
1395
+ left: calc(100% - 14px);
1396
+ transform: translate(-50%, -50%);
1397
+ pointer-events: none;
1398
+ }
1399
+
1400
+ .sun-editor .se-hue-final-hex {
1401
+ display: flex;
1402
+ margin-top: 10px;
1403
+ }
1404
+
1405
+ /** --- form group - input -------------------------------------------------------------- */
1406
+ .sun-editor .se-form-group {
1407
+ display: flex;
1408
+ width: 100%;
1409
+ min-height: 40px;
1410
+ height: auto;
1411
+ padding: 4px;
1412
+ }
1413
+
1414
+ .sun-editor .se-form-group.se-form-w0 {
1415
+ padding-left: 0;
1416
+ padding-right: 0;
1417
+ }
1418
+
1419
+ .sun-editor .se-form-group.se-form-h0 {
1420
+ padding-top: 0;
1421
+ padding-bottom: 0;
1422
+ }
1423
+
1424
+ .sun-editor .se-form-group input,
1425
+ .sun-editor .se-btn-group input {
1426
+ flex: auto;
1427
+ display: inline-block;
1428
+ width: auto;
1429
+ height: 34px;
1430
+ font-size: 12px;
1431
+ margin: 1px 0 1px 0;
1432
+ padding: 0 4px;
1433
+ /* border-radius: 0.25rem; */
1434
+ border: 1px solid #ccc;
1435
+ }
1436
+
1437
+ .sun-editor .se-btn-group input {
1438
+ margin: 1px 3px;
1439
+ }
1440
+
1441
+ .sun-editor .se-form-group button,
1442
+ .sun-editor .se-dropdown-form-group button {
1443
+ float: right;
1444
+ width: 34px;
1445
+ height: 34px;
1446
+ margin: 1px;
1447
+ }
1448
+
1449
+ .sun-editor .se-form-group.se-form-flex-btn button {
1450
+ float: none;
1451
+ flex: auto;
1452
+ }
1453
+
1454
+ .sun-editor .se-form-group .se-group-item {
1455
+ position: relative;
1456
+ }
1457
+
1458
+ .sun-editor .se-form-group label {
1459
+ display: inline-block;
1460
+ max-width: 100%;
1461
+ margin-bottom: 5px;
1462
+ font-weight: bold;
1463
+ }
1464
+
1465
+ /** --- form group - label -------------------------------------------------------------- */
1466
+ .sun-editor .se-form-group-label {
1467
+ width: 100%;
1468
+ height: auto;
1469
+ padding: 0px 4px;
1470
+ }
1471
+
1472
+ .sun-editor .se-form-group-label label {
1473
+ font-size: 13px;
1474
+ font-weight: bold;
1475
+ }
1476
+
1477
+ /** form group - dropdown input */
1478
+ .sun-editor .se-dropdown .se-form-group input {
1479
+ height: 34px;
1480
+ color: #555;
1481
+ }
1482
+
1483
+ .sun-editor .se-dropdown .se-form-group .se-color-input:focus {
1484
+ border-bottom: 3px solid #b1b1b1;
1485
+ }
1486
+
1487
+ /** --- editor area */
1488
+ .sun-editor .se-wrapper {
1489
+ position: relative !important;
1490
+ width: 100%;
1491
+ height: auto;
1492
+ overflow: hidden;
1493
+ z-index: 1;
1494
+ }
1495
+
1496
+ .sun-editor .se-wrapper .se-wrapper-inner {
1497
+ width: 100%;
1498
+ height: 100%;
1499
+ min-height: 65px;
1500
+ overflow-y: auto;
1501
+ overflow-x: auto;
1502
+ -webkit-overflow-scrolling: touch;
1503
+ user-select: auto;
1504
+ -o-user-select: auto;
1505
+ -moz-user-select: auto;
1506
+ -khtml-user-select: auto;
1507
+ -webkit-user-select: auto;
1508
+ -ms-user-select: auto;
1509
+ }
1510
+
1511
+ .sun-editor .se-wrapper .se-wrapper-inner:focus {
1512
+ outline: none;
1513
+ }
1514
+
1515
+ .sun-editor .se-wrapper .se-code-wrapper .se-code-view-line {
1516
+ background-color: #f5f5f5;
1517
+ color: #222;
1518
+ text-align: right;
1519
+ width: 50px;
1520
+ font-size: 13px;
1521
+ padding-right: 6px;
1522
+ overflow: hidden;
1523
+ }
1524
+
1525
+ .sun-editor .se-wrapper .se-code-viewer {
1526
+ background-color: #222;
1527
+ color: #f5f5f5;
1528
+ font-size: 13px;
1529
+ word-break: break-all;
1530
+ padding: 4px;
1531
+ margin: 0;
1532
+ resize: none !important;
1533
+ }
1534
+
1535
+ .sun-editor .se-wrapper .se-wrapper-wysiwyg {
1536
+ display: block;
1537
+ }
1538
+
1539
+ .sun-editor-editable[contenteditable='true'] .se-disable-pointer *,
1540
+ .sun-editor-editable[contenteditable='true'] .katex * {
1541
+ pointer-events: none;
1542
+ }
1543
+
1544
+ /** --- placeholder */
1545
+ .sun-editor .se-wrapper .se-placeholder {
1546
+ position: absolute;
1547
+ display: none;
1548
+ white-space: nowrap;
1549
+ text-overflow: ellipsis;
1550
+ z-index: 1;
1551
+ color: #b1b1b1;
1552
+ font-size: 13px;
1553
+ line-height: 1.5;
1554
+ top: 0;
1555
+ left: 0;
1556
+ right: 0;
1557
+ overflow: hidden;
1558
+ margin-top: 0px;
1559
+ padding-top: 16px;
1560
+ padding-left: 16px;
1561
+ margin-left: 0px;
1562
+ padding-right: 16px;
1563
+ margin-right: 0px;
1564
+ pointer-events: none;
1565
+ backface-visibility: hidden;
1566
+ -webkit-backface-visibility: hidden;
1567
+ -moz-backface-visibility: hidden;
1568
+ }
1569
+
1570
+ /** --- status bar */
1571
+ .sun-editor .se-status-bar {
1572
+ display: flex;
1573
+ width: auto;
1574
+ height: auto;
1575
+ min-height: 16px;
1576
+ border-top: 1px solid #e1e1e1;
1577
+ padding: 0 4px;
1578
+ background-color: #fff;
1579
+ cursor: ns-resize;
1580
+ }
1581
+
1582
+ .sun-editor .se-status-bar.se-resizing-none {
1583
+ cursor: default;
1584
+ }
1585
+
1586
+ .sun-editor .se-back-wrapper {
1587
+ position: fixed;
1588
+ display: none;
1589
+ cursor: default;
1590
+ top: 0;
1591
+ left: 0;
1592
+ width: 100%;
1593
+ height: 100%;
1594
+ user-select: none;
1595
+ -o-user-select: none;
1596
+ -moz-user-select: none;
1597
+ -khtml-user-select: none;
1598
+ -webkit-user-select: none;
1599
+ -ms-user-select: none;
1600
+ z-index: 2147483647;
1601
+ }
1602
+
1603
+ /** status bar - nabigation */
1604
+ .sun-editor .se-status-bar .se-navigation {
1605
+ flex: auto;
1606
+ position: relative;
1607
+ width: auto;
1608
+ height: auto;
1609
+ color: #666;
1610
+ margin: 0;
1611
+ padding: 0;
1612
+ font-size: 10px;
1613
+ line-height: 1.5;
1614
+ background: transparent;
1615
+ }
1616
+
1617
+ /** status bar - charCounter */
1618
+ .sun-editor .se-status-bar .se-char-counter-wrapper {
1619
+ flex: none;
1620
+ position: relative;
1621
+ display: block;
1622
+ width: auto;
1623
+ height: auto;
1624
+ margin: 0;
1625
+ padding: 0;
1626
+ color: #999;
1627
+ font-size: 13px;
1628
+ background: transparent;
1629
+ }
1630
+
1631
+ .sun-editor .se-status-bar .se-char-counter-wrapper.se-blink {
1632
+ color: #b94a48;
1633
+ animation: blinker 0.2s linear infinite;
1634
+ }
1635
+
1636
+ .sun-editor .se-status-bar .se-char-counter-wrapper .se-char-label {
1637
+ margin-right: 4px;
1638
+ }
1639
+
1640
+ /* --- modal ---------------------------------------------------------- */
1641
+ .sun-editor .se-modal {
1642
+ position: fixed;
1643
+ display: none;
1644
+ top: 0;
1645
+ left: 0;
1646
+ width: 100%;
1647
+ height: 100%;
1648
+ z-index: 2147483647;
1649
+ }
1650
+
1651
+ .sun-editor .se-modal label,
1652
+ .sun-editor .se-modal input,
1653
+ .sun-editor .se-modal button {
1654
+ font-size: 14px;
1655
+ line-height: 1.5;
1656
+ color: #111;
1657
+ margin: 0;
1658
+ }
1659
+
1660
+ .sun-editor .se-modal .se-modal-back {
1661
+ position: absolute;
1662
+ width: 100%;
1663
+ height: 100%;
1664
+ top: 0;
1665
+ left: 0;
1666
+ background-color: #222;
1667
+ opacity: 0.5;
1668
+ }
1669
+
1670
+ /* modal - modal */
1671
+ .sun-editor .se-modal .se-modal-inner {
1672
+ position: absolute;
1673
+ width: 100%;
1674
+ height: 100%;
1675
+ top: 0;
1676
+ left: 0;
1677
+ }
1678
+
1679
+ .sun-editor .se-modal .se-modal-inner .se-modal-content {
1680
+ position: relative;
1681
+ display: none;
1682
+ width: auto;
1683
+ max-width: 500px;
1684
+ margin: 1.75rem auto;
1685
+ background-color: #fff;
1686
+ -webkit-background-clip: padding-box;
1687
+ background-clip: padding-box;
1688
+ border: 1px solid rgba(0, 0, 0, 0.2);
1689
+ border-radius: 2px;
1690
+ outline: 0;
1691
+ -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
1692
+ box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
1693
+ }
1694
+
1695
+ @media screen and (max-width: 509px) {
1696
+ .sun-editor .se-modal .se-modal-inner .se-modal-content {
1697
+ width: 100%;
1698
+ }
1699
+ }
1700
+
1701
+ .sun-editor .se-modal .se-modal-inner .se-modal-content label {
1702
+ display: inline-block;
1703
+ max-width: 100%;
1704
+ margin-bottom: 5px;
1705
+ font-weight: bold;
1706
+ }
1707
+
1708
+ .sun-editor .se-modal .se-modal-inner .se-modal-content .se-btn-primary {
1709
+ display: inline-block;
1710
+ padding: 5px 11px;
1711
+ margin: 0 0 10px 0 !important;
1712
+ font-size: 14px;
1713
+ font-weight: normal;
1714
+ line-height: 1.42857143;
1715
+ text-align: center;
1716
+ white-space: nowrap;
1717
+ vertical-align: middle;
1718
+ -ms-touch-action: manipulation;
1719
+ touch-action: manipulation;
1720
+ border-radius: 2px;
1721
+ }
1722
+
1723
+ .sun-editor .se-modal .se-modal-inner .se-modal-header {
1724
+ height: 50px;
1725
+ padding: 6px 15px;
1726
+ border-bottom: 1px solid #e5e5e5;
1727
+ }
1728
+
1729
+ .sun-editor .se-modal .se-modal-inner .se-modal-header .se-close-btn {
1730
+ float: right;
1731
+ font-weight: bold;
1732
+ text-shadow: 0 1px 0 #fff;
1733
+ filter: alpha(opacity=100);
1734
+ opacity: 1;
1735
+ }
1736
+
1737
+ .sun-editor .se-modal .se-modal-inner .se-modal-header .se-modal-title {
1738
+ float: left;
1739
+ font-size: 15px;
1740
+ font-weight: bold;
1741
+ margin: 0;
1742
+ padding: 0;
1743
+ line-height: 2.5;
1744
+ }
1745
+
1746
+ .sun-editor .se-modal .se-modal-inner .se-modal-body {
1747
+ position: relative;
1748
+ padding: 15px 15px 5px 15px;
1749
+ }
1750
+
1751
+ .sun-editor .se-modal .se-modal-inner .se-modal-form {
1752
+ margin-bottom: 10px;
1753
+ }
1754
+ .sun-editor .se-modal .se-modal-inner .se-modal-form .se-modal-flex-form {
1755
+ position: relative;
1756
+ display: flex;
1757
+ }
1758
+ .sun-editor .se-modal .se-modal-inner .se-modal-form .se-modal-flex-form .se-btn {
1759
+ margin-right: 4px;
1760
+ margin-left: 0;
1761
+ border: 1px solid #ccc;
1762
+ }
1763
+
1764
+ .sun-editor .se-modal .se-modal-inner .se-modal-form-footer {
1765
+ margin-top: 10px;
1766
+ margin-bottom: 0;
1767
+ }
1768
+
1769
+ .sun-editor .se-modal .se-modal-inner input:disabled {
1770
+ background-color: #f3f3f3;
1771
+ }
1772
+
1773
+ .sun-editor .se-modal .se-modal-inner .se-modal-size-text {
1774
+ width: 100%;
1775
+ }
1776
+
1777
+ .sun-editor .se-modal .se-modal-inner .se-modal-size-text .size-w {
1778
+ width: 70px;
1779
+ text-align: center;
1780
+ }
1781
+
1782
+ .sun-editor .se-modal .se-modal-inner .se-modal-size-text .size-h {
1783
+ width: 70px;
1784
+ text-align: center;
1785
+ }
1786
+
1787
+ .sun-editor .se-modal .se-modal-inner .se-modal-size-x {
1788
+ margin: 0 8px 0 8px;
1789
+ width: 25px;
1790
+ text-align: center;
1791
+ }
1792
+
1793
+ .sun-editor .se-modal .se-modal-inner .se-modal-footer {
1794
+ height: auto;
1795
+ min-height: 55px;
1796
+ padding: 10px 15px 0px 15px;
1797
+ text-align: right;
1798
+ border-top: 1px solid #e5e5e5;
1799
+ }
1800
+
1801
+ .sun-editor .se-modal .se-modal-inner .se-modal-footer > div {
1802
+ float: left;
1803
+ line-height: 1.7;
1804
+ }
1805
+
1806
+ .sun-editor .se-modal .se-modal-inner .se-modal-footer > div > label {
1807
+ margin: 0 5px 0 0;
1808
+ }
1809
+
1810
+ .sun-editor .se-modal .se-modal-inner .se-modal-btn-radio {
1811
+ margin-left: 12px;
1812
+ margin-right: 6px;
1813
+ }
1814
+
1815
+ .sun-editor .se-modal .se-modal-inner .se-modal-btn-check {
1816
+ margin-left: 12px;
1817
+ margin-right: 4px;
1818
+ }
1819
+
1820
+ .sun-editor .se-modal .se-modal-inner .se-modal-btn-check:disabled + span {
1821
+ color: #999;
1822
+ }
1823
+
1824
+ .sun-editor .se-modal .se-modal-inner .se-modal-form-footer .se-modal-btn-check {
1825
+ margin-left: 0;
1826
+ margin-right: 4px;
1827
+ }
1828
+
1829
+ .sun-editor .se-modal .se-modal-inner .se-modal-form-footer label:first-child {
1830
+ margin-right: 16px;
1831
+ margin-left: 0px;
1832
+ }
1833
+
1834
+ /* modal - modal - form - files */
1835
+ .sun-editor .se-modal .se-modal-inner .se-modal-form .se-modal-form-files {
1836
+ position: relative;
1837
+ display: flex;
1838
+ align-items: center;
1839
+ }
1840
+
1841
+ .sun-editor .se-modal .se-modal-inner .se-modal-form .se-modal-form-files > input {
1842
+ flex: auto;
1843
+ }
1844
+
1845
+ .sun-editor .se-modal .se-modal-inner .se-modal-form .se-modal-form-files .se-modal-files-edge-button {
1846
+ flex: none;
1847
+ opacity: 0.8;
1848
+ border: 1px solid #ccc;
1849
+ margin-left: 1px;
1850
+ }
1851
+
1852
+ /* modal - modal - input */
1853
+ .sun-editor .se-modal .se-modal-inner .se-modal-form .se-input-select {
1854
+ display: inline-block;
1855
+ width: auto;
1856
+ height: 34px;
1857
+ font-size: 14px;
1858
+ text-align: center;
1859
+ line-height: 1.42857143;
1860
+ }
1861
+
1862
+ .sun-editor .se-modal .se-modal-inner .se-modal-form .se-input-control {
1863
+ display: inline-block;
1864
+ width: 70px;
1865
+ height: 34px;
1866
+ font-size: 14px;
1867
+ text-align: center;
1868
+ line-height: 1.42857143;
1869
+ }
1870
+
1871
+ .sun-editor .se-modal .se-modal-inner .se-modal-form .se-flex-input-wrapper {
1872
+ display: block;
1873
+ position: relative;
1874
+ width: 100%;
1875
+ height: auto;
1876
+ padding: 0;
1877
+ }
1878
+
1879
+ .sun-editor .se-modal .se-modal-inner .se-modal-form .se-flex-input-wrapper > .se-input-form-abs {
1880
+ display: block;
1881
+ position: absolute;
1882
+ width: 100%;
1883
+ height: 100%;
1884
+ padding: 0;
1885
+ margin: 0;
1886
+ background-color: #f9f9f9;
1887
+ border: 2px dashed #ccc;
1888
+ pointer-events: none;
1889
+ }
1890
+ .sun-editor .se-modal .se-modal-inner .se-modal-form .se-flex-input-wrapper > .se-input-form-abs * {
1891
+ pointer-events: none;
1892
+ vertical-align: middle;
1893
+ }
1894
+
1895
+ .sun-editor .se-modal .se-modal-inner .se-modal-form .se-flex-input-wrapper > .se-input-form-abs > div {
1896
+ display: block;
1897
+ position: relative;
1898
+ padding-top: 3px;
1899
+ width: 100%;
1900
+ height: 100%;
1901
+ margin: auto;
1902
+ }
1903
+ .sun-editor .se-modal .se-modal-inner .se-modal-form .se-flex-input-wrapper > .se-input-form-abs > div .se-input-file-w {
1904
+ width: max-content;
1905
+ max-width: 100%;
1906
+ margin: auto;
1907
+ padding: 0 4px;
1908
+ }
1909
+ .sun-editor .se-modal .se-modal-inner .se-modal-form .se-flex-input-wrapper > .se-input-form-abs > div .se-input-file-icon-up,
1910
+ .sun-editor .se-modal .se-modal-inner .se-modal-form .se-flex-input-wrapper > .se-input-form-abs > div .se-input-file-icon-files {
1911
+ display: inline-block;
1912
+ width: 20px;
1913
+ }
1914
+ .sun-editor .se-modal .se-modal-inner .se-modal-form .se-flex-input-wrapper > .se-input-form-abs > div .se-input-file-icon-files {
1915
+ display: none;
1916
+ }
1917
+ .sun-editor .se-modal .se-modal-inner .se-modal-form .se-flex-input-wrapper > .se-input-form-abs > div .se-input-file-cnt {
1918
+ display: inline;
1919
+ white-space: nowrap;
1920
+ overflow: hidden;
1921
+ text-overflow: ellipsis;
1922
+ }
1923
+
1924
+ .sun-editor .se-modal .se-modal-inner .se-modal-form .se-input-form {
1925
+ display: block;
1926
+ width: 100%;
1927
+ height: 34px;
1928
+ font-size: 14px;
1929
+ line-height: 1.42857143;
1930
+ padding: 0 4px;
1931
+ }
1932
+
1933
+ .sun-editor .se-modal .se-modal-inner .se-modal-form .se-input-form.se-input-url {
1934
+ direction: ltr;
1935
+ }
1936
+
1937
+ .sun-editor .se-modal .se-modal-inner .se-modal-form .se-input-form.se-input-url:disabled {
1938
+ text-decoration: line-through;
1939
+ color: #999;
1940
+ }
1941
+
1942
+ .sun-editor .se-modal .se-modal-inner .se-modal-form .se-video-ratio {
1943
+ width: 70px;
1944
+ margin-left: 4px;
1945
+ }
1946
+
1947
+ .sun-editor .se-modal .se-modal-inner .se-modal-form a {
1948
+ color: #004cff;
1949
+ }
1950
+
1951
+ /* modal - revert button */
1952
+ .sun-editor .se-modal .se-modal-inner .se-modal-btn-revert {
1953
+ float: right;
1954
+ border: 1px solid #ccc;
1955
+ }
1956
+
1957
+ /* modal - inner tab */
1958
+ .sun-editor .se-modal-tabs {
1959
+ width: 100%;
1960
+ height: 25px;
1961
+ border-bottom: 1px solid #e5e5e5;
1962
+ }
1963
+
1964
+ .sun-editor .se-modal-tabs button {
1965
+ background-color: #e5e5e5;
1966
+ border-right: 1px solid #e5e5e5;
1967
+ float: left;
1968
+ outline: none;
1969
+ padding: 2px 13px;
1970
+ transition: 0.3s;
1971
+ }
1972
+
1973
+ .sun-editor .se-modal-tabs button:hover {
1974
+ background-color: #fff;
1975
+ }
1976
+
1977
+ .sun-editor .se-modal-tabs button.active {
1978
+ background-color: #fff;
1979
+ border-bottom: 0;
1980
+ }
1981
+
1982
+ /* modal - modal - math */
1983
+ .sun-editor .se-modal .se-modal-inner .se-modal-form .se-input-form.se-math-exp {
1984
+ resize: vertical;
1985
+ height: 14em;
1986
+ border: 1px solid #3f9dff;
1987
+ font-size: 13px;
1988
+ padding: 4px;
1989
+ direction: ltr;
1990
+ }
1991
+
1992
+ .sun-editor .se-modal .se-modal-inner .se-modal-form .se-input-select.se-math-size {
1993
+ width: 6em;
1994
+ height: 28px;
1995
+ margin-left: 1em;
1996
+ }
1997
+
1998
+ .sun-editor .se-modal .se-modal-inner .se-modal-form .se-math-preview {
1999
+ font-size: 13px;
2000
+ }
2001
+
2002
+ .sun-editor .se-modal .se-modal-inner .se-modal-form .se-math-preview > span {
2003
+ display: inline-block;
2004
+ -webkit-box-shadow: 0 0 0 0.1rem #d0e3ff;
2005
+ box-shadow: 0 0 0 0.1rem #d0e3ff;
2006
+ }
2007
+
2008
+ .sun-editor .se-modal .se-modal-inner .se-modal-form .se-math-preview > span * {
2009
+ direction: ltr;
2010
+ }
2011
+
2012
+ .sun-editor .se-modal .se-modal-inner .se-modal-form .se-math-preview > .se-math-katex-error {
2013
+ color: #b94a48;
2014
+ -webkit-box-shadow: 0 0 0 0.1rem #f2dede;
2015
+ box-shadow: 0 0 0 0.1rem #f2dede;
2016
+ }
2017
+
2018
+ .sun-editor .se-modal .se-modal-inner .se-modal-form .se-math-preview > .se-math-katex-error svg {
2019
+ width: auto;
2020
+ height: 30px;
2021
+ color: #b94a48;
2022
+ }
2023
+
2024
+ /* modal - modal - link preview */
2025
+ .sun-editor .se-modal .se-modal-inner .se-link-preview {
2026
+ display: block;
2027
+ height: auto;
2028
+ max-height: 18px;
2029
+ font-size: 13px;
2030
+ font-weight: normal;
2031
+ font-family: inherit;
2032
+ color: #666;
2033
+ background-color: transparent;
2034
+ overflow: hidden;
2035
+ text-overflow: ellipsis;
2036
+ word-break: break-all;
2037
+ white-space: pre;
2038
+ max-height: none;
2039
+ }
2040
+
2041
+ /* modal - modal - anchor module */
2042
+ .sun-editor .se-modal .se-modal-inner .se-anchor-preview-form {
2043
+ width: 100%;
2044
+ display: flex;
2045
+ margin-top: 4px;
2046
+ }
2047
+
2048
+ .sun-editor .se-modal .se-modal-inner .se-anchor-preview-form .se-svg.se-anchor-preview-icon {
2049
+ flex: unset;
2050
+ display: none;
2051
+ line-height: 1;
2052
+ margin: 2px;
2053
+ color: #4592ff;
2054
+ }
2055
+
2056
+ .sun-editor .se-modal .se-modal-inner .se-anchor-preview-form .se-link-preview {
2057
+ flex: 1;
2058
+ margin: 0;
2059
+ }
2060
+
2061
+ /* modal - modal - anchor module - rel select */
2062
+ .sun-editor .se-modal .se-modal-inner .se-anchor-rel {
2063
+ position: relative;
2064
+ height: 34px;
2065
+ }
2066
+ .sun-editor .se-modal .se-modal-inner .se-anchor-rel-btn {
2067
+ border-width: 1px;
2068
+ }
2069
+
2070
+ .sun-editor .se-modal .se-modal-inner .se-anchor-rel-wrapper {
2071
+ display: flex;
2072
+ height: 34px;
2073
+ line-height: 1;
2074
+ padding: 0 6px;
2075
+ align-items: center;
2076
+ }
2077
+
2078
+ .sun-editor .se-modal .se-modal-inner .se-anchor-rel-preview {
2079
+ word-break: break-word;
2080
+ white-space: pre-wrap;
2081
+ overflow-wrap: break-word;
2082
+ text-align: left;
2083
+ }
2084
+
2085
+ /* .sun-editor .se-modal .se-modal-inner .se-modal-form .se-mention-item {line-height:28px;min-height:25px;padding:0 5px;cursor:pointer;}
2086
+ .sun-editor .se-modal .se-modal-inner .se-modal-form .se-mention-item:hover {background-color:#e1e1e1}
2087
+ .sun-editor .se-modal .se-modal-inner .se-modal-form .se-mention-item.se-mention-active {background-color: #d1d1d1; border-radius:3px;}
2088
+ .sun-editor .se-modal .se-modal-inner .se-modal-form .se-mention-search {margin-bottom: 10px;} */
2089
+
2090
+ /** --- controller ---------------------------------------------------------- */
2091
+ .sun-editor .se-controller {
2092
+ position: absolute;
2093
+ display: none;
2094
+ overflow: visible;
2095
+ z-index: 2147483646;
2096
+ padding: 2px 2px 0 2px;
2097
+ margin: 0;
2098
+ border: 1px solid #999;
2099
+ text-align: start;
2100
+ text-decoration: none;
2101
+ text-shadow: none;
2102
+ text-transform: none;
2103
+ letter-spacing: normal;
2104
+ word-break: normal;
2105
+ word-spacing: normal;
2106
+ word-wrap: normal;
2107
+ white-space: normal;
2108
+ background-color: #fff;
2109
+ -webkit-background-clip: padding-box;
2110
+ background-clip: padding-box;
2111
+ line-break: auto;
2112
+ }
2113
+
2114
+ .sun-editor .se-controller.se-empty-controller {
2115
+ border: none;
2116
+ padding: 0;
2117
+ }
2118
+
2119
+ .sun-editor .se-controller:not(.se-resizing-container) {
2120
+ -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2121
+ box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2122
+ }
2123
+
2124
+ .sun-editor-editable[contenteditable='true'] figure a,
2125
+ .sun-editor-editable[contenteditable='true'] figure img,
2126
+ .sun-editor-editable[contenteditable='true'] figure iframe,
2127
+ .sun-editor-editable[contenteditable='true'] figure video {
2128
+ z-index: 0;
2129
+ }
2130
+
2131
+ .sun-editor-editable[contenteditable='true'] figure figcaption {
2132
+ display: block;
2133
+ z-index: 2;
2134
+ }
2135
+
2136
+ .sun-editor-editable[contenteditable='true'] figure figcaption:focus {
2137
+ border-color: #80bdff;
2138
+ outline: 0;
2139
+ -webkit-box-shadow: 0 0 0 0.2rem #c7deff;
2140
+ box-shadow: 0 0 0 0.2rem #c7deff;
2141
+ }
2142
+
2143
+ .sun-editor-editable[contenteditable='true']:not(.se-read-only) figure:not(.se-input-component)::after {
2144
+ position: absolute;
2145
+ content: '';
2146
+ z-index: 1;
2147
+ top: 0;
2148
+ left: 0;
2149
+ right: 0;
2150
+ bottom: 0;
2151
+ cursor: default;
2152
+ display: block;
2153
+ background: rgba(0, 0, 0, 0);
2154
+ }
2155
+
2156
+ .sun-editor-editable[contenteditable='true'] .se-component {
2157
+ outline: 1px dashed #e1e1e1;
2158
+ }
2159
+
2160
+ .sun-editor-editable[contenteditable='true'] .se-component:not(:has(figure)).se-component-selected,
2161
+ .sun-editor-editable[contenteditable='true'] figure.se-component-selected,
2162
+ .sun-editor-editable[contenteditable='true'] .se-component.se-component-selected > figure {
2163
+ outline: 2px solid #80bdff;
2164
+ }
2165
+
2166
+ .sun-editor-editable[contenteditable='true'] .se-component figure.se-figure-selected:not(.se-figure-over-selected)::after {
2167
+ pointer-events: none;
2168
+ }
2169
+
2170
+ .sun-editor-editable[contenteditable='true'] .se-copy {
2171
+ background-color: #d1d1d1;
2172
+ opacity: 0.3;
2173
+ -webkit-box-shadow: 0 0 0 0.5rem #1275ff;
2174
+ box-shadow: 0 0 0 0.5rem #1275ff;
2175
+ transition: box-shadow 0.15s ease-in-out;
2176
+ }
2177
+
2178
+ .sun-editor-editable[contenteditable='true'] .se-component:not(:has(figure)).se-component-selected.se-drag-over,
2179
+ .sun-editor-editable[contenteditable='true'] figure.se-figure-selected.se-drag-over,
2180
+ .sun-editor-editable[contenteditable='true'] hr.se-component-selected.se-drag-over {
2181
+ outline: 2px solid #f0c20a;
2182
+ }
2183
+ .sun-editor-editable[contenteditable='true'] figure.se-drag-over > iframe {
2184
+ pointer-events: none;
2185
+ }
2186
+
2187
+ /* controller - button group */
2188
+ .sun-editor .se-controller .se-btn-group {
2189
+ position: relative;
2190
+ display: flex;
2191
+ padding: 0 0 2px 0;
2192
+ margin: 0;
2193
+ top: 0;
2194
+ left: 0;
2195
+ }
2196
+
2197
+ .sun-editor .se-controller .se-btn-group .se-btn-group-sub {
2198
+ left: 50%;
2199
+ min-width: auto;
2200
+ width: max-content;
2201
+ display: none;
2202
+ /* display: inline-table; */
2203
+ }
2204
+
2205
+ .sun-editor .se-controller .se-btn-group .se-btn-group-sub button {
2206
+ margin: 0;
2207
+ min-width: 72px;
2208
+ }
2209
+
2210
+ .sun-editor .se-controller .se-btn-group button {
2211
+ position: relative;
2212
+ min-height: 34px;
2213
+ height: auto;
2214
+ border: none;
2215
+ border-radius: 2px;
2216
+ margin: 1px;
2217
+ font-size: 12px;
2218
+ line-height: 1.5;
2219
+ display: inline-block;
2220
+ font-weight: normal;
2221
+ text-align: center;
2222
+ white-space: nowrap;
2223
+ -ms-touch-action: manipulation;
2224
+ touch-action: manipulation;
2225
+ }
2226
+
2227
+ /* controller - controller-content */
2228
+ .sun-editor .se-controller .se-controller-content {
2229
+ position: relative;
2230
+ padding: 0 0 2px 0;
2231
+ margin: 0;
2232
+ top: 0;
2233
+ left: 0;
2234
+ }
2235
+
2236
+ /* controller - controller-content - header */
2237
+ .sun-editor .se-controller .se-controller-header {
2238
+ width: 100%;
2239
+ height: 38px;
2240
+ padding: 4px;
2241
+ border-bottom: 1px solid #e5e5e5;
2242
+ }
2243
+
2244
+ /* controller - controller-content - body */
2245
+ .sun-editor .se-controller .se-controller-body {
2246
+ position: relative;
2247
+ font-size: 13px;
2248
+ width: 100%;
2249
+ padding: 4px 4px 1px 4px;
2250
+ }
2251
+
2252
+ .sun-editor .se-controller .se-controller-body .se-btn:disabled,
2253
+ .sun-editor .se-controller .se-controller-body button:disabled,
2254
+ .sun-editor .se-controller .se-controller-body input:disabled {
2255
+ background-color: #ececec;
2256
+ }
2257
+
2258
+ .sun-editor .se-controller .se-controller-header .se-close-btn {
2259
+ width: 28px;
2260
+ height: 28px;
2261
+ min-height: 28px;
2262
+ float: right;
2263
+ font-weight: bold;
2264
+ text-shadow: 0 1px 0 #fff;
2265
+ filter: alpha(opacity=100);
2266
+ opacity: 1;
2267
+ }
2268
+
2269
+ .sun-editor .se-controller .se-controller-header .se-controller-title {
2270
+ float: left;
2271
+ font-size: 13px;
2272
+ font-weight: bold;
2273
+ margin: 0;
2274
+ padding: 0;
2275
+ line-height: 2.2;
2276
+ }
2277
+
2278
+ /* controller - resizing(image, iframe) */
2279
+ .sun-editor .se-controller-resizing {
2280
+ font-size: 14px;
2281
+ font-style: normal;
2282
+ font-weight: normal;
2283
+ line-height: 1.42857143;
2284
+ }
2285
+
2286
+ .sun-editor .se-resizing-container {
2287
+ position: absolute;
2288
+ display: none;
2289
+ outline: none;
2290
+ pointer-events: none;
2291
+ border: 0;
2292
+ padding: 0;
2293
+ z-index: 6;
2294
+ background-color: transparent !important;
2295
+ backface-visibility: hidden;
2296
+ -webkit-backface-visibility: hidden;
2297
+ -moz-backface-visibility: hidden;
2298
+ }
2299
+
2300
+ .sun-editor .se-drag-handle {
2301
+ position: absolute;
2302
+ z-index: 2147483646;
2303
+ display: none;
2304
+ pointer-events: auto;
2305
+ cursor: move;
2306
+ width: 18px;
2307
+ height: 18px;
2308
+ background-color: #80bdff;
2309
+ border: 0;
2310
+ padding: 1px;
2311
+ color: #fff;
2312
+ outline: 2px solid transparent;
2313
+ }
2314
+ .sun-editor .se-drag-handle.se-drag-handle-full {
2315
+ cursor: default;
2316
+ }
2317
+ .sun-editor .se-drag-handle > svg {
2318
+ pointer-events: none;
2319
+ max-width: 100%;
2320
+ max-height: 100%;
2321
+ }
2322
+ .sun-editor .se-drag-handle:hover {
2323
+ background-color: #f0c20a;
2324
+ }
2325
+ .sun-editor .se-drag-handle.se-dragging {
2326
+ opacity: 0;
2327
+ }
2328
+
2329
+ .sun-editor .se-resizing-container .se-resize-dot {
2330
+ position: absolute;
2331
+ display: inline-block;
2332
+ outline: 2px solid #80bdff;
2333
+ border: 0;
2334
+ padding: 0;
2335
+ }
2336
+
2337
+ .sun-editor .se-resizing-container.se-resize-ing .se-resize-dot {
2338
+ outline: 2px solid #4592ff;
2339
+ }
2340
+
2341
+ .sun-editor .se-resizing-container .se-resize-dot > span {
2342
+ position: absolute;
2343
+ pointer-events: auto;
2344
+ width: 8px;
2345
+ height: 8px;
2346
+ border-radius: 1px;
2347
+ background-color: #4592ff;
2348
+ border: 1px solid #4592ff;
2349
+ }
2350
+
2351
+ .sun-editor .se-resizing-container .se-resize-dot > span.tl {
2352
+ top: -6px;
2353
+ left: -6px;
2354
+ cursor: nw-resize;
2355
+ }
2356
+
2357
+ .sun-editor .se-resizing-container .se-resize-dot > span.tr {
2358
+ top: -6px;
2359
+ right: -6px;
2360
+ cursor: ne-resize;
2361
+ }
2362
+
2363
+ .sun-editor .se-resizing-container .se-resize-dot > span.bl {
2364
+ bottom: -6px;
2365
+ left: -6px;
2366
+ cursor: sw-resize;
2367
+ }
2368
+
2369
+ .sun-editor .se-resizing-container .se-resize-dot > span.br {
2370
+ right: -6px;
2371
+ bottom: -6px;
2372
+ cursor: se-resize;
2373
+ }
2374
+
2375
+ .sun-editor .se-resizing-container .se-resize-dot > span.lw {
2376
+ left: -8px;
2377
+ bottom: 50%;
2378
+ cursor: w-resize;
2379
+ }
2380
+
2381
+ .sun-editor .se-resizing-container .se-resize-dot > span.th {
2382
+ left: 50%;
2383
+ top: -8px;
2384
+ cursor: n-resize;
2385
+ }
2386
+
2387
+ .sun-editor .se-resizing-container .se-resize-dot > span.rw {
2388
+ right: -8px;
2389
+ bottom: 50%;
2390
+ cursor: e-resize;
2391
+ }
2392
+
2393
+ .sun-editor .se-resizing-container .se-resize-dot > span.bh {
2394
+ right: 50%;
2395
+ bottom: -8px;
2396
+ cursor: s-resize;
2397
+ }
2398
+
2399
+ .sun-editor .se-resizing-container .se-resize-display {
2400
+ position: absolute;
2401
+ pointer-events: none;
2402
+ right: 0;
2403
+ left: auto;
2404
+ bottom: 0;
2405
+ padding: 5px;
2406
+ margin: 2px;
2407
+ font-size: 12px;
2408
+ color: #fff;
2409
+ background-color: #333;
2410
+ border-radius: 2px;
2411
+ opacity: 0.75;
2412
+ }
2413
+
2414
+ .sun-editor .se-resizing-container.se-resize-ing .se-resize-display {
2415
+ opacity: 1;
2416
+ }
2417
+
2418
+ /* controller - table */
2419
+ .sun-editor .se-controller-table {
2420
+ width: auto;
2421
+ font-size: 14px;
2422
+ font-style: normal;
2423
+ font-weight: normal;
2424
+ line-height: 1.42857143;
2425
+ }
2426
+
2427
+ .sun-editor .se-controller-table-cell {
2428
+ width: auto;
2429
+ font-size: 14px;
2430
+ font-style: normal;
2431
+ font-weight: normal;
2432
+ line-height: 1.42857143;
2433
+ }
2434
+
2435
+ /* controller - table - props */
2436
+ .sun-editor .se-controller.se-table-props .se-color-input,
2437
+ .sun-editor .se-controller.se-table-props .se-border-style {
2438
+ width: 70px;
2439
+ }
2440
+ .sun-editor .se-controller.se-table-props .__se__border_size {
2441
+ width: 52px;
2442
+ }
2443
+ .sun-editor .se-controller.se-table-props .se-table-props-align li {
2444
+ margin-right: 2px;
2445
+ }
2446
+
2447
+ /* controller - link */
2448
+ .sun-editor .se-controller-link {
2449
+ font-size: 14px;
2450
+ font-style: normal;
2451
+ font-weight: normal;
2452
+ line-height: 1.42857143;
2453
+ }
2454
+
2455
+ .sun-editor .se-controller-link::before,
2456
+ .sun-editor .se-controller-link::after {
2457
+ -webkit-box-sizing: border-box;
2458
+ -moz-box-sizing: border-box;
2459
+ box-sizing: border-box;
2460
+ }
2461
+
2462
+ .sun-editor .se-controller-link .link-content {
2463
+ padding: 0;
2464
+ margin: 0;
2465
+ }
2466
+
2467
+ .sun-editor .se-controller-link .link-content a {
2468
+ display: inline-block;
2469
+ color: #4592ff;
2470
+ max-width: 200px;
2471
+ overflow: hidden;
2472
+ text-overflow: ellipsis;
2473
+ white-space: nowrap;
2474
+ vertical-align: middle;
2475
+ margin-left: 5px;
2476
+ }
2477
+
2478
+ /* --- select menu ---------------------------------------------------------- */
2479
+ .sun-editor .se-select-menu {
2480
+ position: absolute;
2481
+ min-width: auto;
2482
+ top: 0px;
2483
+ left: 0px;
2484
+ z-index: 2147483647;
2485
+ display: none;
2486
+ width: max-content;
2487
+ height: auto;
2488
+ overflow-y: visible;
2489
+ overflow-x: visible;
2490
+ overflow: visible;
2491
+ background-color: #fff;
2492
+ border-radius: 2px;
2493
+ padding: 2px 0;
2494
+ margin: 0;
2495
+ border: 1px solid #bababa;
2496
+ -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
2497
+ box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
2498
+ outline: 0 none;
2499
+ }
2500
+
2501
+ .sun-editor .se-select-menu.se-select-menu-scroll {
2502
+ overflow-y: auto;
2503
+ }
2504
+
2505
+ .sun-editor .se-select-menu ul {
2506
+ padding: 0;
2507
+ margin: 0;
2508
+ word-break: break-all;
2509
+ width: auto;
2510
+ max-width: 100%;
2511
+ min-width: -moz-max-content;
2512
+ min-width: -webkit-max-content;
2513
+ min-width: -o-max-content;
2514
+ min-width: -ms-max-content;
2515
+ }
2516
+
2517
+ .sun-editor .se-select-menu .se-select-item {
2518
+ list-style: none;
2519
+ line-height: 28px;
2520
+ min-height: 28px;
2521
+ font-size: 12px;
2522
+ padding: 0 6px;
2523
+ margin: 2px 0;
2524
+ cursor: pointer;
2525
+ }
2526
+
2527
+ .sun-editor .se-select-menu .se-select-item button {
2528
+ padding: 0;
2529
+ margin: 0;
2530
+ min-height: 28px;
2531
+ }
2532
+ .sun-editor .se-select-menu .se-select-item button span {
2533
+ padding: 0;
2534
+ margin: 0;
2535
+ }
2536
+
2537
+ .sun-editor .se-select-menu .se-select-item *.se-select-on {
2538
+ color: #4592ff;
2539
+ }
2540
+
2541
+ .sun-editor .se-select-menu.se-select-menu-mouse-move .se-select-item:hover,
2542
+ .sun-editor .se-select-menu:not(.se-select-menu-mouse-move) .se-select-item.active {
2543
+ border-color: #d0e3ff !important;
2544
+ outline: 1px solid #3288ff !important;
2545
+ -webkit-box-shadow: 0 0 0 0.3rem #d0e3ff;
2546
+ box-shadow: 0 0 0 0.3rem #d0e3ff;
2547
+ transition: box-shadow 0.1s ease-in-out;
2548
+ }
2549
+
2550
+ .sun-editor .se-select-menu.se-select-menu-mouse-move .se-select-item:active,
2551
+ .sun-editor .se-select-menu.se-select-menu-mouse-move .se-select-item.__se__active {
2552
+ background-color: #dbeaff;
2553
+ border-color: #dbeaff !important;
2554
+ outline: 1px solid #3288ff !important;
2555
+ -webkit-box-shadow: inset 2px 2px 5px #b7ccf2, inset -2px -2px 5px #e6f2ff;
2556
+ box-shadow: inset 2px 2px 5px #b7ccf2, inset -2px -2px 5px #e6f2ff;
2557
+ transition: background-color 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
2558
+ }
2559
+
2560
+ .sun-editor .se-modal-form-files .se-select-menu {
2561
+ width: 100%;
2562
+ height: auto;
2563
+ }
2564
+
2565
+ .sun-editor .se-select-menu.se-resizing-align-list {
2566
+ width: 74px;
2567
+ }
2568
+
2569
+ /* --- browser ---------------------------------------------------------- */
2570
+ .sun-editor .se-file-browser {
2571
+ position: fixed;
2572
+ display: none;
2573
+ top: 0;
2574
+ left: 0;
2575
+ width: 100%;
2576
+ height: 100%;
2577
+ z-index: 2147483647;
2578
+ }
2579
+
2580
+ .sun-editor .se-file-browser label,
2581
+ .sun-editor .se-file-browser input,
2582
+ .sun-editor .se-file-browser button {
2583
+ font-size: 14px;
2584
+ line-height: 1.5;
2585
+ color: #111;
2586
+ margin: 0;
2587
+ }
2588
+
2589
+ .sun-editor .se-file-browser .se-file-browser-back {
2590
+ position: absolute;
2591
+ display: block;
2592
+ width: 100%;
2593
+ height: 100%;
2594
+ top: 0;
2595
+ left: 0;
2596
+ background-color: #222;
2597
+ opacity: 0.5;
2598
+ }
2599
+
2600
+ .sun-editor .se-file-browser .se-file-browser-inner {
2601
+ position: absolute;
2602
+ display: block;
2603
+ width: 100%;
2604
+ height: 100%;
2605
+ top: 0;
2606
+ left: 0;
2607
+ }
2608
+
2609
+ .sun-editor .se-file-browser .se-file-browser-inner .se-file-browser-content {
2610
+ position: relative;
2611
+ width: 960px;
2612
+ max-width: 100%;
2613
+ margin: 20px auto;
2614
+ background-color: #fff;
2615
+ -webkit-background-clip: padding-box;
2616
+ background-clip: padding-box;
2617
+ border: 1px solid rgba(0, 0, 0, 0.2);
2618
+ border-radius: 2px;
2619
+ outline: 0;
2620
+ -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
2621
+ box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
2622
+ }
2623
+
2624
+ /* --- browser - header */
2625
+ .sun-editor .se-file-browser .se-file-browser-header {
2626
+ height: auto;
2627
+ min-height: 50px;
2628
+ padding: 6px 15px 6px 15px;
2629
+ border-bottom: 1px solid #e5e5e5;
2630
+ }
2631
+
2632
+ .sun-editor .se-file-browser .se-file-browser-header .se-file-browser-close {
2633
+ float: right;
2634
+ font-weight: bold;
2635
+ text-shadow: 0 1px 0 #fff;
2636
+ filter: alpha(opacity=100);
2637
+ opacity: 1;
2638
+ }
2639
+
2640
+ .sun-editor .se-file-browser .se-file-browser-header .se-file-browser-title {
2641
+ font-size: 16px;
2642
+ font-weight: bold;
2643
+ margin: 0;
2644
+ padding: 0;
2645
+ line-height: 2.2;
2646
+ }
2647
+
2648
+ /* --- browser - header - tags */
2649
+ .sun-editor .se-file-browser .se-file-browser-tags {
2650
+ display: block;
2651
+ font-size: 13px;
2652
+ width: 100%;
2653
+ padding: 0;
2654
+ text-align: left;
2655
+ margin: 0 -15px;
2656
+ }
2657
+
2658
+ .sun-editor .se-file-browser .se-file-browser-tags a {
2659
+ display: inline-block;
2660
+ background-color: #f5f5f5;
2661
+ padding: 6px 12px;
2662
+ margin: 8px 0 8px 8px;
2663
+ color: #333;
2664
+ text-decoration: none;
2665
+ border-radius: 32px;
2666
+ -moz-border-radius: 32px;
2667
+ -webkit-border-radius: 32px;
2668
+ -moz-background-clip: padding;
2669
+ -webkit-background-clip: padding-box;
2670
+ background-clip: padding-box;
2671
+ cursor: pointer;
2672
+ }
2673
+
2674
+ .sun-editor .se-file-browser .se-file-browser-tags a:hover {
2675
+ background-color: #e1e1e1;
2676
+ }
2677
+
2678
+ .sun-editor .se-file-browser .se-file-browser-tags a:active {
2679
+ background-color: #d1d1d1;
2680
+ }
2681
+
2682
+ .sun-editor .se-file-browser .se-file-browser-tags a.on {
2683
+ background-color: #ebf3fe;
2684
+ color: #4592ff;
2685
+ }
2686
+
2687
+ .sun-editor .se-file-browser .se-file-browser-tags a.on:hover {
2688
+ background-color: #d8e8fe;
2689
+ }
2690
+
2691
+ .sun-editor .se-file-browser .se-file-browser-tags a.on:active {
2692
+ background-color: #d0e3ff;
2693
+ }
2694
+
2695
+ /* --- browser - body */
2696
+ .sun-editor .se-file-browser .se-file-browser-body {
2697
+ position: relative;
2698
+ height: auto;
2699
+ min-height: 350px;
2700
+ padding: 20px;
2701
+ overflow-y: auto;
2702
+ }
2703
+
2704
+ .sun-editor .se-file-browser .se-file-browser-body .se-file-browser-list {
2705
+ position: relative;
2706
+ width: 100%;
2707
+ }
2708
+
2709
+ @media screen and (max-width: 992px) {
2710
+ .sun-editor .se-file-browser .se-file-browser-inner .se-file-browser-content {
2711
+ width: 748px;
2712
+ }
2713
+ }
2714
+
2715
+ @media screen and (max-width: 768px) {
2716
+ .sun-editor .se-file-browser .se-file-browser-inner .se-file-browser-content {
2717
+ width: 600px;
2718
+ }
2719
+ }
2720
+
2721
+ /* --- browser - column */
2722
+ .sun-editor .se-file-browser .se-file-browser-list .se-file-item-column {
2723
+ position: relative;
2724
+ display: block;
2725
+ height: auto;
2726
+ float: left;
2727
+ }
2728
+
2729
+ /* --- browser --- custom - "se-image-list" - column */
2730
+ .sun-editor .se-file-browser .se-file-browser-list.se-image-list .se-file-item-column {
2731
+ width: calc(25% - 20px);
2732
+ margin: 0 10px;
2733
+ }
2734
+
2735
+ @media screen and (max-width: 992px) {
2736
+ .sun-editor .se-file-browser .se-file-browser-list.se-image-list .se-file-item-column {
2737
+ width: calc(33% - 20px);
2738
+ }
2739
+ }
2740
+
2741
+ @media screen and (max-width: 768px) {
2742
+ .sun-editor .se-file-browser .se-file-browser-list.se-image-list .se-file-item-column {
2743
+ width: calc(50% - 20px);
2744
+ }
2745
+ }
2746
+
2747
+ /* --- browser --- custom - "se-image-list" - item */
2748
+ .sun-editor .se-file-browser .se-file-browser-list.se-image-list .se-file-item-img {
2749
+ position: relative;
2750
+ display: block;
2751
+ cursor: pointer;
2752
+ width: 100%;
2753
+ height: auto;
2754
+ border-radius: 2px;
2755
+ outline: 0;
2756
+ margin: 10px 0;
2757
+ }
2758
+
2759
+ .sun-editor .se-file-browser .se-file-browser-list.se-image-list .se-file-item-img:hover {
2760
+ opacity: 0.8;
2761
+ -webkit-box-shadow: 0 0 0 0.2rem #3288ff;
2762
+ box-shadow: 0 0 0 0.2rem #3288ff;
2763
+ }
2764
+
2765
+ .sun-editor .se-file-browser .se-file-browser-list.se-image-list .se-file-item-img > img {
2766
+ position: relative;
2767
+ display: block;
2768
+ width: 100%;
2769
+ border-radius: 2px;
2770
+ outline: 0;
2771
+ height: auto;
2772
+ }
2773
+
2774
+ .sun-editor .se-file-browser .se-file-browser-list.se-image-list .se-file-item-img > .se-file-name-image {
2775
+ position: absolute;
2776
+ z-index: 1;
2777
+ font-size: 13px;
2778
+ color: #fff;
2779
+ left: 0px;
2780
+ bottom: 0;
2781
+ padding: 5px 10px;
2782
+ background-color: transparent;
2783
+ width: 100%;
2784
+ height: 30px;
2785
+ border-bottom-right-radius: 4px;
2786
+ border-bottom-left-radius: 4px;
2787
+ pointer-events: none;
2788
+ }
2789
+
2790
+ .sun-editor .se-file-browser .se-file-browser-list.se-image-list .se-file-item-img > .se-file-name-image.se-file-name-back {
2791
+ background-color: #333;
2792
+ opacity: 0.6;
2793
+ pointer-events: none;
2794
+ }
2795
+
2796
+ /** --- notice */
2797
+ .sun-editor .se-notice {
2798
+ position: relative;
2799
+ display: none;
2800
+ z-index: 7;
2801
+ max-width: 500px;
2802
+ width: auto;
2803
+ height: auto;
2804
+ margin: 1.75rem auto;
2805
+ border-radius: 2px;
2806
+ -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
2807
+ box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
2808
+ word-break: break-all;
2809
+ color: #b94a48;
2810
+ background-color: #fff;
2811
+ padding: 15px;
2812
+ border: 1px solid rgba(0, 0, 0, 0.2);
2813
+ }
2814
+
2815
+ .sun-editor .se-notice button {
2816
+ float: right;
2817
+ padding: 7px;
2818
+ }
2819
+
2820
+ /* --- Input focus */
2821
+ .sun-editor input:not(.se-toolbar-btn):focus,
2822
+ .sun-editor select:focus,
2823
+ .sun-editor textarea:focus {
2824
+ border-color: #80bdff;
2825
+ outline: 0;
2826
+ -webkit-box-shadow: 0 0 0 0.2rem #d0e3ff;
2827
+ box-shadow: 0 0 0 0.2rem #d0e3ff;
2828
+ transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2829
+ }
2830
+
2831
+ /** --- tooltip */
2832
+ .sun-editor .se-tooltip {
2833
+ position: relative;
2834
+ overflow: visible;
2835
+ font-size: 13px;
2836
+ }
2837
+
2838
+ .sun-editor .se-tooltip .se-tooltip-inner {
2839
+ visibility: hidden;
2840
+ position: absolute;
2841
+ display: block;
2842
+ width: auto;
2843
+ height: auto;
2844
+ top: 120%;
2845
+ left: 50%;
2846
+ background: transparent;
2847
+ opacity: 0;
2848
+ z-index: 1;
2849
+ line-height: 1.5;
2850
+ transition: opacity 0.5s;
2851
+ margin: 0;
2852
+ padding: 0;
2853
+ bottom: auto;
2854
+ float: none;
2855
+ pointer-events: none;
2856
+ backface-visibility: hidden;
2857
+ -webkit-backface-visibility: hidden;
2858
+ -moz-backface-visibility: hidden;
2859
+ }
2860
+
2861
+ .sun-editor .se-tooltip .se-tooltip-inner .se-tooltip-text {
2862
+ position: relative;
2863
+ display: inline-block;
2864
+ width: auto;
2865
+ height: auto;
2866
+ left: -50%;
2867
+ font-size: 0.9em;
2868
+ margin: 0;
2869
+ padding: 4px 6px;
2870
+ border-radius: 2px;
2871
+ background-color: #333;
2872
+ color: #fff;
2873
+ text-align: center;
2874
+ line-height: unset;
2875
+ white-space: nowrap;
2876
+ cursor: auto;
2877
+ }
2878
+
2879
+ .sun-editor .se-tooltip .se-tooltip-inner .se-tooltip-text::after {
2880
+ content: '';
2881
+ position: absolute;
2882
+ bottom: 100%;
2883
+ left: 50%;
2884
+ margin-left: -5px;
2885
+ border-width: 5px;
2886
+ border-style: solid;
2887
+ border-color: transparent transparent #333 transparent;
2888
+ }
2889
+
2890
+ .sun-editor .se-tooltip:hover .se-tooltip-inner {
2891
+ visibility: visible;
2892
+ opacity: 1;
2893
+ }
2894
+
2895
+ .sun-editor :not(.se-shortcut-hide) .se-tooltip .se-tooltip-inner .se-tooltip-text .se-shortcut {
2896
+ display: block !important;
2897
+ }
2898
+
2899
+ .sun-editor .se-shortcut-hide .se-tooltip .se-tooltip-inner .se-tooltip-text .se-shortcut {
2900
+ display: none !important;
2901
+ }
2902
+
2903
+ .sun-editor .se-tooltip .se-tooltip-inner .se-tooltip-text .se-shortcut > .se-shortcut-key {
2904
+ display: inline;
2905
+ font-weight: bold;
2906
+ }
2907
+
2908
+ /* -- color input */
2909
+ .sun-editor input.se-color-input {
2910
+ width: 72px;
2911
+ margin: 0 2px;
2912
+ border-top: 0;
2913
+ border-left: 0;
2914
+ border-right: 0;
2915
+ border-radius: 0;
2916
+ border-bottom: 2px solid #b1b1b1;
2917
+ outline: none;
2918
+ text-transform: uppercase;
2919
+ }
2920
+ .sun-editor input.se-color-input::placeholder {
2921
+ font-size: 0.9em;
2922
+ text-transform: none;
2923
+ }
2924
+ .sun-editor input.se-color-input::-webkit-search-cancel-button {
2925
+ -webkit-appearance: none;
2926
+ height: 15px;
2927
+ width: 15px;
2928
+ background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTEzLjQ2LDEyTDE5LDE3LjU0VjE5SDE3LjU0TDEyLDEzLjQ2TDYuNDYsMTlINVYxNy41NEwxMC41NCwxMkw1LDYuNDZWNUg2LjQ2TDEyLDEwLjU0TDE3LjU0LDVIMTlWNi40NkwxMy40NiwxMloiIC8+PC9zdmc+')
2929
+ no-repeat center center;
2930
+ background-size: cover;
2931
+ }
2932
+
2933
+ .sun-editor .se-visible-hidden {
2934
+ visibility: hidden;
2935
+ }
2936
+
2937
+ /** --- selected class */
2938
+ /* -- table */
2939
+ .sun-editor-editable[contenteditable='true'] table td.se-selected-table-cell::after,
2940
+ .sun-editor-editable[contenteditable='true'] table th.se-selected-table-cell::after {
2941
+ position: absolute;
2942
+ content: '';
2943
+ background-color: #d0e3ff;
2944
+ opacity: 0.3;
2945
+ width: 100%;
2946
+ height: 100%;
2947
+ bottom: -1px;
2948
+ left: -1px;
2949
+ right: -1px;
2950
+ top: -1px;
2951
+ }
2952
+ .sun-editor-editable[contenteditable='true'] table td.se-selected-cell-focus,
2953
+ .sun-editor-editable[contenteditable='true'] table th.se-selected-cell-focus {
2954
+ outline: 2px dashed #1275ff;
2955
+ z-index: 1;
2956
+ }
2957
+
2958
+ /** --- RTL start -------------------------------------------------------------------------------------------------------------------------------------------------- */
2959
+ /* icon */
2960
+ .sun-editor.se-rtl .se-icon-flip-rtl svg,
2961
+ .sun-editor.se-rtl .se-icon-flip-rtl .se-svg {
2962
+ transform: scaleX(-1);
2963
+ }
2964
+
2965
+ .sun-editor.se-rtl .se-btn-select svg {
2966
+ margin: auto 1px;
2967
+ }
2968
+
2969
+ /* statusbar */
2970
+ .sun-editor.se-rtl .se-status-bar .se-navigation {
2971
+ direction: rtl;
2972
+ }
2973
+
2974
+ /* button--- */
2975
+ /* button - select text */
2976
+ .sun-editor.se-rtl .se-btn-select .se-txt {
2977
+ flex: auto;
2978
+ text-align: right;
2979
+ direction: rtl;
2980
+ margin-left: 4px;
2981
+ }
2982
+
2983
+ /* side button */
2984
+ .sun-editor.se-rtl button.se-side-btn {
2985
+ float: right;
2986
+ }
2987
+ .sun-editor.se-rtl button.se-side-btn-b {
2988
+ float: right;
2989
+ margin-right: 0;
2990
+ border-radius: 2px 0 0 2px;
2991
+ }
2992
+ .sun-editor.se-rtl button.se-side-btn-a {
2993
+ float: right;
2994
+ margin-left: 0;
2995
+ border-radius: 0 2px 2px 0;
2996
+ }
2997
+ .sun-editor.se-rtl button.se-side-btn-after {
2998
+ margin-right: 0;
2999
+ border-radius: 2px 0 0 2px;
3000
+ }
3001
+ .sun-editor.se-rtl button.se-side-btn-before {
3002
+ float: right;
3003
+ margin-left: 0;
3004
+ border-radius: 0 2px 2px 0;
3005
+ }
3006
+
3007
+ /* after, before button:hover - on, active - border */
3008
+ .sun-editor.se-rtl .se-menu-list li .se-side-btn-after.on:enabled,
3009
+ .sun-editor.se-rtl .se-menu-list li .se-side-btn-after.active:enabled {
3010
+ border-left: 0;
3011
+ border-right: 1px solid;
3012
+ }
3013
+ .sun-editor.se-rtl .se-menu-list li .se-side-btn-before.on:enabled,
3014
+ .sun-editor.se-rtl .se-menu-list li .se-side-btn-before.active:enabled {
3015
+ border-right: 0;
3016
+ border-left: 1px solid;
3017
+ }
3018
+
3019
+ /* button - se-menu-list */
3020
+ .sun-editor.se-rtl .se-btn-list {
3021
+ text-align: right;
3022
+ }
3023
+
3024
+ .sun-editor.se-rtl .se-btn-list > .se-list-icon {
3025
+ margin: -1px 0 0 10px;
3026
+ }
3027
+
3028
+ /* button - se-menu-list - li */
3029
+ .sun-editor.se-rtl .se-menu-list:not(.se-menu-dir-fix) {
3030
+ float: right;
3031
+ }
3032
+
3033
+ .sun-editor.se-rtl .se-menu-list:not(.se-menu-dir-fix) li {
3034
+ float: right;
3035
+ }
3036
+
3037
+ /* menu list--- */
3038
+ .sun-editor.se-rtl .se-list-layer * {
3039
+ direction: rtl;
3040
+ }
3041
+
3042
+ /* menu list - format block */
3043
+ .sun-editor.se-rtl .se-list-layer.se-list-format ul blockquote {
3044
+ padding: 0 7px 0 0;
3045
+ border-right-width: 5px;
3046
+ border-left-width: 0;
3047
+ border-top: 0;
3048
+ border-bottom: 0;
3049
+ }
3050
+
3051
+ /* select menu inner icon */
3052
+ .sun-editor.se-rtl .se-select-item .se-list-icon {
3053
+ margin: 0 0 6px 6px;
3054
+ }
3055
+
3056
+ /* menu list - color picker */
3057
+ .sun-editor.se-rtl .se-list-layer .se-selector-color .se-color-pallet li {
3058
+ float: right;
3059
+ }
3060
+
3061
+ /* dropdown layer - checked list */
3062
+ .sun-editor.se-rtl .se-list-inner .se-list-checked li button > .se-svg {
3063
+ float: right;
3064
+ padding: 6px 0 0 6px;
3065
+ }
3066
+
3067
+ /* placeholder */
3068
+ .sun-editor.se-rtl .se-wrapper .se-placeholder {
3069
+ direction: rtl;
3070
+ }
3071
+
3072
+ /* tooltip */
3073
+ .sun-editor.se-rtl .se-tooltip .se-tooltip-inner .se-tooltip-text {
3074
+ direction: rtl;
3075
+ }
3076
+
3077
+ .sun-editor.se-rtl .se-tooltip .se-tooltip-inner .se-tooltip-text .se-shortcut {
3078
+ direction: ltr;
3079
+ }
3080
+
3081
+ /* modal--- */
3082
+ .sun-editor.se-rtl .se-modal * {
3083
+ direction: rtl;
3084
+ }
3085
+
3086
+ .sun-editor.se-rtl .se-modal .se-modal-inner .se-modal-form .se-video-ratio {
3087
+ margin-left: 0;
3088
+ margin-right: 4px;
3089
+ }
3090
+
3091
+ /* modal - header */
3092
+ .sun-editor.se-rtl .se-modal .se-modal-inner .se-modal-header .se-close-btn {
3093
+ float: left;
3094
+ }
3095
+
3096
+ .sun-editor.se-rtl .se-modal .se-modal-inner .se-modal-header .se-modal-title {
3097
+ float: right;
3098
+ }
3099
+
3100
+ /* modal - edge button */
3101
+ .sun-editor.se-rtl .se-modal .se-modal-inner .se-modal-form .se-modal-form-files .se-modal-files-edge-button {
3102
+ margin-left: 0;
3103
+ margin-right: 1px;
3104
+ }
3105
+
3106
+ /* modal - rel button */
3107
+ .sun-editor.se-rtl .se-modal .se-modal-inner .se-modal-form .se-modal-flex-form .se-btn {
3108
+ margin-right: 0;
3109
+ margin-left: 4px;
3110
+ }
3111
+
3112
+ /* modal - tabs */
3113
+ .sun-editor.se-rtl .se-modal-tabs button {
3114
+ float: right;
3115
+ }
3116
+
3117
+ .sun-editor.se-rtl .se-modal .se-modal-inner .se-modal-size-text {
3118
+ padding-right: 34px;
3119
+ }
3120
+
3121
+ /* modal - footer */
3122
+ .sun-editor.se-rtl .se-modal .se-modal-inner .se-modal-footer .se-btn-primary {
3123
+ float: left;
3124
+ }
3125
+
3126
+ .sun-editor.se-rtl .se-modal .se-modal-inner .se-modal-footer > div {
3127
+ float: right;
3128
+ }
3129
+
3130
+ .sun-editor.se-rtl .se-modal .se-modal-inner .se-modal-footer > div > label {
3131
+ margin: 0 0 0 5px;
3132
+ }
3133
+
3134
+ .sun-editor.se-rtl .se-modal .se-modal-inner .se-modal-form-footer label:first-child {
3135
+ margin-left: 16px;
3136
+ margin-right: 0px;
3137
+ }
3138
+
3139
+ /* modal - footer - link preview*/
3140
+ .sun-editor.se-rtl .se-modal .se-modal-inner .se-anchor-rel-preview {
3141
+ margin-left: 4px;
3142
+ text-align: right;
3143
+ }
3144
+
3145
+ /* modal - revert button */
3146
+ .sun-editor.se-rtl .se-modal .se-modal-inner .se-modal-btn-revert {
3147
+ float: left;
3148
+ }
3149
+
3150
+ /* anchor module */
3151
+ .sun-editor.se-rtl .se-modal .se-modal-inner .se-anchor-rel-btn {
3152
+ float: right;
3153
+ }
3154
+
3155
+ /* fileBrowser--- */
3156
+ .sun-editor.se-rtl .se-file-browser * {
3157
+ direction: rtl;
3158
+ }
3159
+
3160
+ /* fileBrowser - header */
3161
+ .sun-editor.se-rtl .se-file-browser .se-file-browser-tags {
3162
+ text-align: right;
3163
+ }
3164
+
3165
+ .sun-editor.se-rtl .se-file-browser .se-file-browser-tags a {
3166
+ margin: 8px 8px 0 8px;
3167
+ }
3168
+
3169
+ .sun-editor.se-rtl .se-file-browser .se-file-browser-header .se-file-browser-close {
3170
+ float: left;
3171
+ }
3172
+
3173
+ /** controller--- */
3174
+ .sun-editor.se-rtl .se-controller .se-btn-group {
3175
+ direction: rtl;
3176
+ }
3177
+
3178
+ .sun-editor.se-rtl .se-controller .se-controller-body {
3179
+ direction: rtl;
3180
+ }
3181
+
3182
+ .sun-editor.se-rtl .se-resizing-container .se-resize-display {
3183
+ direction: rtl;
3184
+ right: auto;
3185
+ left: 0;
3186
+ }
3187
+
3188
+ /* controller - header */
3189
+ .sun-editor.se-rtl .se-controller .se-controller-header .se-close-btn {
3190
+ float: left;
3191
+ }
3192
+
3193
+ .sun-editor.se-rtl .se-controller .se-controller-header .se-controller-title {
3194
+ float: right;
3195
+ }
3196
+
3197
+ /* controller - table - props */
3198
+ .sun-editor.se-rtl .se-controller.se-table-props .se-table-props-align li {
3199
+ margin-right: 0;
3200
+ margin-left: 2px;
3201
+ }
3202
+
3203
+ /** arrow--- */
3204
+ .sun-editor.se-rtl .se-controller .se-arrow {
3205
+ right: 20px;
3206
+ left: auto;
3207
+ margin-right: -11px;
3208
+ margin-left: 0;
3209
+ }
3210
+
3211
+ .sun-editor.se-rtl .sun-editor-editable[contenteditable='true'].se-copy-format-cursor {
3212
+ cursor: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIxNnB4IiB2aWV3Qm94PSIwIDAgMjQgMTYiIHZlcnNpb249IjEuMSI+CjxnIGlkPSJzdXJmYWNlMSI+CjxwYXRoIHN0eWxlPSIgc3Ryb2tlOm5vbmU7ZmlsbC1ydWxlOm5vbnplcm87ZmlsbDpyZ2IoMCUsMCUsMCUpO2ZpbGwtb3BhY2l0eToxOyIgZD0iTSAxMiAyLjY2Nzk2OSBMIDEyIDIgQyAxMiAxLjYzMjgxMiAxMS43MDMxMjUgMS4zMzIwMzEgMTEuMzMyMDMxIDEuMzMyMDMxIEwgMy4zMzIwMzEgMS4zMzIwMzEgQyAyLjk2NDg0NCAxLjMzMjAzMSAyLjY2Nzk2OSAxLjYzMjgxMiAyLjY2Nzk2OSAyIEwgMi42Njc5NjkgNC42Njc5NjkgQyAyLjY2Nzk2OSA1LjAzNTE1NiAyLjk2NDg0NCA1LjMzMjAzMSAzLjMzMjAzMSA1LjMzMjAzMSBMIDExLjMzMjAzMSA1LjMzMjAzMSBDIDExLjcwMzEyNSA1LjMzMjAzMSAxMiA1LjAzNTE1NiAxMiA0LjY2Nzk2OSBMIDEyIDQgTCAxMi42Njc5NjkgNCBMIDEyLjY2Nzk2OSA2LjY2Nzk2OSBMIDYgNi42Njc5NjkgTCA2IDE0IEMgNiAxNC4zNjcxODggNi4yOTY4NzUgMTQuNjY3OTY5IDYuNjY3OTY5IDE0LjY2Nzk2OSBMIDggMTQuNjY3OTY5IEMgOC4zNjcxODggMTQuNjY3OTY5IDguNjY3OTY5IDE0LjM2NzE4OCA4LjY2Nzk2OSAxNCBMIDguNjY3OTY5IDggTCAxNCA4IEwgMTQgMi42Njc5NjkgWiBNIDEyIDIuNjY3OTY5ICIvPgo8cGF0aCBzdHlsZT0iIHN0cm9rZTpub25lO2ZpbGwtcnVsZTpub256ZXJvO2ZpbGw6cmdiKDAlLDAlLDAlKTtmaWxsLW9wYWNpdHk6MTsiIGQ9Ik0gMjAuMzMyMDMxIDEyLjY2Nzk2OSBDIDIwLjMzMjAzMSAxMy4wMzUxNTYgMjAuNDg0Mzc1IDEzLjMzMjAzMSAyMC42Njc5NjkgMTMuMzMyMDMxIEwgMjEuMzMyMDMxIDEzLjMzMjAzMSBMIDIxLjMzMjAzMSAxNC42Njc5NjkgTCAyMC41IDE0LjY2Nzk2OSBDIDIwLjMxNjQwNiAxNC42Njc5NjkgMjAgMTQuMzY3MTg4IDIwIDE0IEMgMjAgMTQuMzY3MTg4IDE5LjY4MzU5NCAxNC42Njc5NjkgMTkuNSAxNC42Njc5NjkgTCAxOC42Njc5NjkgMTQuNjY3OTY5IEwgMTguNjY3OTY5IDEzLjMzMjAzMSBMIDE5LjMzMjAzMSAxMy4zMzIwMzEgQyAxOS41MTU2MjUgMTMuMzMyMDMxIDE5LjY2Nzk2OSAxMy4wMzUxNTYgMTkuNjY3OTY5IDEyLjY2Nzk2OSBMIDE5LjY2Nzk2OSAzLjMzMjAzMSBDIDE5LjY2Nzk2OSAyLjk2NDg0NCAxOS41MTU2MjUgMi42Njc5NjkgMTkuMzMyMDMxIDIuNjY3OTY5IEwgMTguNjY3OTY5IDIuNjY3OTY5IEwgMTguNjY3OTY5IDEuMzMyMDMxIEwgMTkuNSAxLjMzMjAzMSBDIDE5LjY4MzU5NCAxLjMzMjAzMSAyMCAxLjYzMjgxMiAyMCAyIEMgMjAgMS42MzI4MTIgMjAuMzE2NDA2IDEuMzMyMDMxIDIwLjUgMS4zMzIwMzEgTCAyMS4zMzIwMzEgMS4zMzIwMzEgTCAyMS4zMzIwMzEgMi42Njc5NjkgTCAyMC42Njc5NjkgMi42Njc5NjkgQyAyMC40ODQzNzUgMi42Njc5NjkgMjAuMzMyMDMxIDIuOTY0ODQ0IDIwLjMzMjAzMSAzLjMzMjAzMSBaIE0gMjAuMzMyMDMxIDEyLjY2Nzk2OSAiLz4KPC9nPgo8L3N2Zz4K')
3213
+ 24 0,
3214
+ text;
3215
+ }
3216
+ /** --- RTL end -------------------------------------------------------------------------------------------------------------------------------------------------- */
3217
+
3218
+ /** button module float --------------------------------------------- */
3219
+ .sun-editor .se-btn-module-border.module-float-left {
3220
+ float: left;
3221
+ }
3222
+
3223
+ .sun-editor .se-btn-module-border.module-float-right {
3224
+ float: right;
3225
+ }
3226
+
3227
+ /** --- error ---------------------------------------------------------- */
3228
+ .sun-editor .se-error {
3229
+ color: #d9534f;
3230
+ }
3231
+
3232
+ .sun-editor input.se-error:focus,
3233
+ select.se-error:focus,
3234
+ textarea.se-error:focus {
3235
+ border: 1px solid #f2dede;
3236
+ outline: 0;
3237
+ -webkit-box-shadow: 0 0 0 0.2rem #eed3d7;
3238
+ box-shadow: 0 0 0 0.2rem #eed3d7;
3239
+ transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
3240
+ }
3241
+
3242
+ /** ---------------------------------------------------------- menu items ---------------------------------------------------------- */
3243
+ /** hr menu items */
3244
+ .sun-editor hr.__se__solid {
3245
+ border-style: solid none none;
3246
+ }
3247
+
3248
+ .sun-editor hr.__se__dotted {
3249
+ border-style: dotted none none;
3250
+ }
3251
+
3252
+ .sun-editor hr.__se__dashed {
3253
+ border-style: dashed none none;
3254
+ }
3255
+
3256
+ /** mention */
3257
+ .sun-editor .se-select-menu .se-select-item .se-mention-item span + span {
3258
+ margin: 0 4px;
3259
+ opacity: 0.5;
3260
+ }
3261
+
3262
+ /** ---------------------------------------------------------- show blocks mode ----------------------------------------------------- */
3263
+ .sun-editor .se-show-block p,
3264
+ .sun-editor .se-show-block div,
3265
+ .sun-editor .se-show-block h1,
3266
+ .sun-editor .se-show-block h2,
3267
+ .sun-editor .se-show-block h3,
3268
+ .sun-editor .se-show-block h4,
3269
+ .sun-editor .se-show-block h5,
3270
+ .sun-editor .se-show-block h6,
3271
+ .sun-editor .se-show-block li,
3272
+ .sun-editor .se-show-block ol,
3273
+ .sun-editor .se-show-block ul,
3274
+ .sun-editor .se-show-block pre {
3275
+ border: 1px dashed #3f9dff !important;
3276
+ padding: 14px 8px 8px 8px !important;
3277
+ }
3278
+
3279
+ .sun-editor .se-show-block ol,
3280
+ .sun-editor .se-show-block ul {
3281
+ border: 1px dashed #d539ff !important;
3282
+ }
3283
+
3284
+ .sun-editor .se-show-block pre {
3285
+ border: 1px dashed #27c022 !important;
3286
+ }
3287
+
3288
+ .sun-editor .se-show-block p {
3289
+ background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAPAQMAAAAF7dc0AAAABlBMVEWAgID////n1o2sAAAAAnRSTlP/AOW3MEoAAAAaSURBVAjXY/j/gwGCPvxg+F4BQiAGDP1HQQByxxw0gqOzIwAAAABJRU5ErkJggg==') no-repeat;
3290
+ }
3291
+
3292
+ .sun-editor .se-show-block div {
3293
+ background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAPAQMAAAAxlBYoAAAABlBMVEWAgID////n1o2sAAAAAnRSTlP/AOW3MEoAAAAmSURBVAjXY/j//wcDDH+8XsHwDYi/hwNx1A8w/nYLKH4XoQYJAwCXnSgcl2MOPgAAAABJRU5ErkJggg==') no-repeat;
3294
+ }
3295
+
3296
+ .sun-editor .se-show-block h1 {
3297
+ background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAPAQMAAAA4f7ZSAAAABlBMVEWAgID////n1o2sAAAAAnRSTlP/AOW3MEoAAAAfSURBVAjXY/j/v4EBhr+9B+LzEPrDeygfhI8j1CBhAEhmJGY4Rf6uAAAAAElFTkSuQmCC') no-repeat;
3298
+ }
3299
+
3300
+ .sun-editor .se-show-block h2 {
3301
+ background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAPAQMAAAA4f7ZSAAAABlBMVEWAgID////n1o2sAAAAAnRSTlP/AOW3MEoAAAAmSURBVAjXY/j/v4EBhr+dB+LtQPy9geEDEH97D8T3gbgdoQYJAwA51iPuD2haEAAAAABJRU5ErkJggg==') no-repeat;
3302
+ }
3303
+
3304
+ .sun-editor .se-show-block h3 {
3305
+ background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAPAQMAAAA4f7ZSAAAABlBMVEWAgID////n1o2sAAAAAnRSTlP/AOW3MEoAAAAiSURBVAjXY/j/v4EBhr+dB+LtQPy9geHDeQgN5p9HqEHCADeWI+69VG2MAAAAAElFTkSuQmCC') no-repeat;
3306
+ }
3307
+
3308
+ .sun-editor .se-show-block h4 {
3309
+ background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAPAQMAAADTSA1RAAAABlBMVEWAgID////n1o2sAAAAAnRSTlP/AOW3MEoAAAAiSURBVAjXY/j//wADDH97DsTXIfjDdiDdDMTfIRhZHRQDAKJOJ6L+K3y7AAAAAElFTkSuQmCC') no-repeat;
3310
+ }
3311
+
3312
+ .sun-editor .se-show-block h5 {
3313
+ background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAPAQMAAAA4f7ZSAAAABlBMVEWAgID////n1o2sAAAAAnRSTlP/AOW3MEoAAAAlSURBVAjXY/j/v4EBhr+1A/F+IO5vYPiwHUh/B2IQfR6hBgkDABlWIy5uM+9GAAAAAElFTkSuQmCC') no-repeat;
3314
+ }
3315
+
3316
+ .sun-editor .se-show-block h6 {
3317
+ background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAPAQMAAAA4f7ZSAAAABlBMVEWAgID////n1o2sAAAAAnRSTlP/AOW3MEoAAAAiSURBVAjXY/j/v4EBhr+dB+LtQLy/geFDP5S9HSKOrA6KAR9GIza1ptJnAAAAAElFTkSuQmCC') no-repeat;
3318
+ }
3319
+
3320
+ .sun-editor .se-show-block li {
3321
+ background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAPCAYAAADkmO9VAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAA7SURBVDhPYxgFcNDQ0PAfykQBIHEYhgoRB/BpwCfHBKWpBkaggYxQGgOgBzyQD1aLLA4TGwWDGjAwAACR3RcEU9Ui+wAAAABJRU5ErkJggg==')
3322
+ no-repeat;
3323
+ }
3324
+
3325
+ .sun-editor .se-show-block ol {
3326
+ background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAMCAYAAABiDJ37AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAABHSURBVDhPYxgFcNDQ0PAfhKFcFIBLHCdA1oBNM0kGEmMAPgOZoDTVANUNxAqQvURMECADRiiNAWCagDSGGhyW4DRrMAEGBgAu0SX6WpGgjAAAAABJRU5ErkJggg==')
3327
+ no-repeat;
3328
+ }
3329
+
3330
+ .sun-editor .se-show-block ul {
3331
+ background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAMCAYAAABiDJ37AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAA1SURBVDhPYxgFDA0NDf+hTBSALI5LDQgwQWmqgVEDKQcsUBoF4ItFGEBXA+QzQpmDGjAwAAA8DQ4Lni6gdAAAAABJRU5ErkJggg==')
3332
+ no-repeat;
3333
+ }
3334
+
3335
+ /** --- controller wrapper ---------------------------------------------------------- */
3336
+ .sun-editor.sun-editor-carrier-wrapper {
3337
+ position: initial !important;
3338
+ display: block !important;
3339
+ width: 0 !important;
3340
+ height: 0 !important;
3341
+ border: none !important;
3342
+ outline: none !important;
3343
+ margin: 0 !important;
3344
+ padding: 0 !important;
3345
+ }
3346
+
3347
+ /* drag cursor */
3348
+ .sun-editor.sun-editor-carrier-wrapper .se-drag-cursor {
3349
+ position: absolute;
3350
+ display: none;
3351
+ pointer-events: none;
3352
+ width: 2px;
3353
+ background-color: #1275ff;
3354
+ z-index: 2147483647;
3355
+ }
3356
+ .sun-editor.sun-editor-carrier-wrapper .se-drag-cursor::before {
3357
+ content: '';
3358
+ top: -3px;
3359
+ position: absolute;
3360
+ background-color: transparent;
3361
+ width: 0;
3362
+ height: 0;
3363
+ border: 0px solid transparent;
3364
+ margin-right: 0;
3365
+ margin-left: -4px;
3366
+ border-width: 6px 5px 0 5px;
3367
+ border-color: #1275ff transparent transparent transparent;
3368
+ }
3369
+ .sun-editor.sun-editor-carrier-wrapper .se-drag-cursor::after {
3370
+ content: '';
3371
+ bottom: -3px;
3372
+ position: absolute;
3373
+ background-color: transparent;
3374
+ width: 0;
3375
+ height: 0;
3376
+ border: 0px solid transparent;
3377
+ margin-right: 0;
3378
+ margin-left: -4px;
3379
+ border-width: 0 5px 5px 5px;
3380
+ border-color: transparent transparent #1275ff transparent;
3381
+ }
3382
+
3383
+ /** animation */
3384
+ @keyframes blinker {
3385
+ 50% {
3386
+ opacity: 0;
3387
+ }
3388
+ }
3389
+
3390
+ @keyframes spinner {
3391
+ to {
3392
+ transform: rotate(361deg);
3393
+ }
3394
+ }