jodit 4.0.0-beta.41 → 4.0.0-beta.48

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 (505) hide show
  1. package/CHANGELOG.md +12 -6
  2. package/README.md +54 -12
  3. package/es2015/jodit.css +1 -1
  4. package/es2015/jodit.js +5592 -5068
  5. package/es2015/jodit.min.js +2 -2
  6. package/es2015/plugins/debug/debug.js +8 -8
  7. package/es2015/plugins/debug/debug.min.js +2 -2
  8. package/es2015/plugins/speech-recognize/speech-recognize.css +1 -1
  9. package/es2015/plugins/speech-recognize/speech-recognize.js +785 -749
  10. package/es2015/plugins/speech-recognize/speech-recognize.min.js +2 -2
  11. package/es2018/jodit.css +4896 -0
  12. package/es2018/jodit.js +38892 -0
  13. package/es2018/jodit.min.css +1 -0
  14. package/es2018/jodit.min.js +10 -0
  15. package/es2018/plugins/debug/debug.js +97 -0
  16. package/es2018/plugins/debug/debug.min.js +10 -0
  17. package/es2018/plugins/speech-recognize/speech-recognize.css +42 -0
  18. package/es2018/plugins/speech-recognize/speech-recognize.js +1043 -0
  19. package/es2018/plugins/speech-recognize/speech-recognize.min.css +1 -0
  20. package/es2018/plugins/speech-recognize/speech-recognize.min.js +10 -0
  21. package/es2021/jodit.css +1 -1
  22. package/es2021/jodit.js +5590 -5066
  23. package/es2021/jodit.min.js +2 -2
  24. package/es2021/plugins/debug/debug.js +8 -8
  25. package/es2021/plugins/debug/debug.min.js +2 -2
  26. package/es2021/plugins/speech-recognize/speech-recognize.css +1 -1
  27. package/es2021/plugins/speech-recognize/speech-recognize.js +773 -737
  28. package/es2021/plugins/speech-recognize/speech-recognize.min.js +2 -2
  29. package/es2021.en/jodit.css +1 -1
  30. package/es2021.en/jodit.js +5191 -4747
  31. package/es2021.en/jodit.min.js +2 -2
  32. package/es2021.en/plugins/debug/debug.js +8 -8
  33. package/es2021.en/plugins/debug/debug.min.js +2 -2
  34. package/es2021.en/plugins/speech-recognize/speech-recognize.css +1 -1
  35. package/es2021.en/plugins/speech-recognize/speech-recognize.js +34 -18
  36. package/es2021.en/plugins/speech-recognize/speech-recognize.min.js +2 -2
  37. package/es5/jodit.css +2 -2
  38. package/es5/jodit.js +7386 -1682
  39. package/es5/jodit.min.css +1 -1
  40. package/es5/jodit.min.js +2 -2
  41. package/es5/plugins/debug/debug.js +10 -10
  42. package/es5/plugins/debug/debug.min.js +2 -2
  43. package/es5/plugins/speech-recognize/speech-recognize.css +1 -1
  44. package/es5/plugins/speech-recognize/speech-recognize.js +791 -755
  45. package/es5/plugins/speech-recognize/speech-recognize.min.js +2 -2
  46. package/esm/config.js +2 -1
  47. package/esm/core/constants.js +2 -1
  48. package/esm/core/view/view.js +2 -1
  49. package/esm/index.js +0 -5
  50. package/esm/langs/index.js +20 -20
  51. package/esm/plugins/copy-format/langs/index.js +0 -25
  52. package/esm/plugins/index.js +0 -44
  53. package/esm/plugins/line-height/langs/index.js +0 -25
  54. package/esm/plugins/preview/preview.js +1 -1
  55. package/esm/plugins/spellcheck/langs/index.js +0 -25
  56. package/esm/plugins/symbols/langs/index.js +0 -25
  57. package/package.json +3 -6
  58. package/types/config.d.ts +560 -1
  59. package/types/core/async/async.d.ts +32 -0
  60. package/types/core/async/index.d.ts +3 -0
  61. package/types/core/component/component.d.ts +81 -0
  62. package/types/core/component/index.d.ts +3 -0
  63. package/types/core/component/statuses.d.ts +3 -0
  64. package/types/core/component/view-component.d.ts +13 -0
  65. package/types/core/constants.d.ts +62 -1
  66. package/types/core/create/create.d.ts +32 -0
  67. package/types/core/create/index.d.ts +3 -0
  68. package/types/core/decorators/cache/cache.d.ts +5 -0
  69. package/types/core/decorators/component/component.d.ts +9 -0
  70. package/types/core/decorators/debounce/debounce.d.ts +8 -0
  71. package/types/core/decorators/hook/hook.d.ts +8 -0
  72. package/types/core/decorators/idle/idle.d.ts +5 -0
  73. package/types/core/decorators/index.d.ts +5 -0
  74. package/types/core/decorators/nonenumerable/nonenumerable.d.ts +5 -0
  75. package/types/core/decorators/persistent/persistent.d.ts +5 -0
  76. package/types/core/decorators/wait/wait.d.ts +5 -0
  77. package/types/core/decorators/watch/watch.d.ts +8 -0
  78. package/types/core/dom/dom.d.ts +180 -0
  79. package/types/core/dom/index.d.ts +3 -0
  80. package/types/core/dom/lazy-walker.d.ts +3 -0
  81. package/types/core/event-emitter/event-emitter.d.ts +99 -0
  82. package/types/core/event-emitter/eventify.d.ts +25 -0
  83. package/types/core/event-emitter/index.d.ts +3 -0
  84. package/types/core/event-emitter/observable.d.ts +38 -0
  85. package/types/core/event-emitter/store.d.ts +3 -0
  86. package/types/core/global.d.ts +12 -0
  87. package/types/core/helpers/array/as-array.d.ts +3 -0
  88. package/types/core/helpers/array/index.d.ts +3 -0
  89. package/types/core/helpers/array/split-array.d.ts +6 -0
  90. package/types/core/helpers/array/to-array.d.ts +4 -0
  91. package/types/core/helpers/async/index.d.ts +3 -0
  92. package/types/core/helpers/async/set-timeout.d.ts +9 -0
  93. package/types/core/helpers/checker/has-browser-color-picker.d.ts +6 -0
  94. package/types/core/helpers/checker/index.d.ts +3 -0
  95. package/types/core/helpers/checker/is-array.d.ts +6 -0
  96. package/types/core/helpers/checker/is-boolean.d.ts +3 -0
  97. package/types/core/helpers/checker/is-equal.d.ts +3 -0
  98. package/types/core/helpers/checker/is-function.d.ts +6 -0
  99. package/types/core/helpers/checker/is-html-from-word.d.ts +6 -0
  100. package/types/core/helpers/checker/is-html.d.ts +3 -0
  101. package/types/core/helpers/checker/is-imp-interface.d.ts +12 -0
  102. package/types/core/helpers/checker/is-int.d.ts +3 -0
  103. package/types/core/helpers/checker/is-jodit-object.d.ts +6 -0
  104. package/types/core/helpers/checker/is-marker.d.ts +3 -0
  105. package/types/core/helpers/checker/is-native-function.d.ts +6 -0
  106. package/types/core/helpers/checker/is-number.d.ts +6 -0
  107. package/types/core/helpers/checker/is-numeric.d.ts +3 -0
  108. package/types/core/helpers/checker/is-plain-object.d.ts +6 -0
  109. package/types/core/helpers/checker/is-promise.d.ts +3 -0
  110. package/types/core/helpers/checker/is-set.d.ts +3 -0
  111. package/types/core/helpers/checker/is-string.d.ts +6 -0
  112. package/types/core/helpers/checker/is-url.d.ts +6 -0
  113. package/types/core/helpers/checker/is-valid-name.d.ts +6 -0
  114. package/types/core/helpers/checker/is-view-object.d.ts +6 -0
  115. package/types/core/helpers/checker/is-void.d.ts +6 -0
  116. package/types/core/helpers/checker/is-window.d.ts +3 -0
  117. package/types/core/helpers/color/color-to-hex.d.ts +16 -0
  118. package/types/core/helpers/color/index.d.ts +3 -0
  119. package/types/core/helpers/html/apply-styles.d.ts +5 -0
  120. package/types/core/helpers/html/clean-from-word.d.ts +4 -0
  121. package/types/core/helpers/html/htmlspecialchars.d.ts +7 -0
  122. package/types/core/helpers/html/index.d.ts +3 -0
  123. package/types/core/helpers/html/nl2br.d.ts +6 -0
  124. package/types/core/helpers/html/safe-html.d.ts +3 -0
  125. package/types/core/helpers/html/strip-tags.d.ts +6 -0
  126. package/types/core/helpers/index.d.ts +5 -0
  127. package/types/core/helpers/normalize/index.d.ts +3 -0
  128. package/types/core/helpers/normalize/normalize-color.d.ts +6 -0
  129. package/types/core/helpers/normalize/normalize-key-aliases.d.ts +3 -0
  130. package/types/core/helpers/normalize/normalize-license.d.ts +3 -0
  131. package/types/core/helpers/normalize/normalize-path.d.ts +3 -0
  132. package/types/core/helpers/normalize/normalize-relative-path.d.ts +3 -0
  133. package/types/core/helpers/normalize/normalize-size.d.ts +6 -0
  134. package/types/core/helpers/normalize/normalize-url.d.ts +3 -0
  135. package/types/core/helpers/size/get-content-width.d.ts +3 -0
  136. package/types/core/helpers/size/get-scroll-parent.d.ts +3 -0
  137. package/types/core/helpers/size/index.d.ts +3 -0
  138. package/types/core/helpers/size/inner-width.d.ts +3 -0
  139. package/types/core/helpers/size/object-size.d.ts +3 -0
  140. package/types/core/helpers/size/offset.d.ts +7 -0
  141. package/types/core/helpers/size/position.d.ts +3 -0
  142. package/types/core/helpers/string/camel-case.d.ts +6 -0
  143. package/types/core/helpers/string/fuzzy-search-index.d.ts +4 -0
  144. package/types/core/helpers/string/i18n.d.ts +31 -0
  145. package/types/core/helpers/string/index.d.ts +3 -0
  146. package/types/core/helpers/string/kebab-case.d.ts +3 -0
  147. package/types/core/helpers/string/stringify.d.ts +3 -0
  148. package/types/core/helpers/string/trim.d.ts +7 -0
  149. package/types/core/helpers/string/ucfirst.d.ts +6 -0
  150. package/types/core/helpers/utils/align.d.ts +12 -0
  151. package/types/core/helpers/utils/append-script.d.ts +12 -0
  152. package/types/core/helpers/utils/assert.d.ts +1 -0
  153. package/types/core/helpers/utils/attr.d.ts +12 -0
  154. package/types/core/helpers/utils/browser.d.ts +14 -0
  155. package/types/core/helpers/utils/build-query.d.ts +6 -0
  156. package/types/core/helpers/utils/complete-url.d.ts +3 -0
  157. package/types/core/helpers/utils/config-proto.d.ts +33 -0
  158. package/types/core/helpers/utils/convert-media-url-to-video-embed.d.ts +3 -0
  159. package/types/core/helpers/utils/css.d.ts +6 -0
  160. package/types/core/helpers/utils/ctrl-key.d.ts +7 -0
  161. package/types/core/helpers/utils/data-bind.d.ts +3 -0
  162. package/types/core/helpers/utils/default-language.d.ts +3 -0
  163. package/types/core/helpers/utils/error/error.d.ts +3 -0
  164. package/types/core/helpers/utils/error/errors/abort-error.d.ts +3 -0
  165. package/types/core/helpers/utils/error/errors/connection-error.d.ts +3 -0
  166. package/types/core/helpers/utils/error/errors/index.d.ts +3 -0
  167. package/types/core/helpers/utils/error/errors/options-error.d.ts +3 -0
  168. package/types/core/helpers/utils/error/index.d.ts +3 -0
  169. package/types/core/helpers/utils/get-class-name.d.ts +3 -0
  170. package/types/core/helpers/utils/get.d.ts +22 -0
  171. package/types/core/helpers/utils/human-size-to-bytes.d.ts +7 -0
  172. package/types/core/helpers/utils/index.d.ts +3 -0
  173. package/types/core/helpers/utils/mark-deprecated.d.ts +10 -0
  174. package/types/core/helpers/utils/parse-query.d.ts +6 -0
  175. package/types/core/helpers/utils/print.d.ts +9 -0
  176. package/types/core/helpers/utils/reset.d.ts +10 -0
  177. package/types/core/helpers/utils/scroll-into-view.d.ts +6 -0
  178. package/types/core/helpers/utils/selector.d.ts +29 -0
  179. package/types/core/helpers/utils/set.d.ts +16 -0
  180. package/types/core/helpers/utils/stack.d.ts +3 -0
  181. package/types/core/helpers/utils/utils.d.ts +24 -0
  182. package/types/core/helpers/utils/val.d.ts +3 -0
  183. package/types/core/plugin/helpers/init-instance.d.ts +11 -0
  184. package/types/core/plugin/helpers/load.d.ts +9 -0
  185. package/types/core/plugin/helpers/make-instance.d.ts +7 -0
  186. package/types/core/plugin/helpers/utils.d.ts +3 -0
  187. package/types/core/plugin/index.d.ts +3 -0
  188. package/types/core/plugin/interface.d.ts +4 -0
  189. package/types/core/plugin/plugin-system.d.ts +30 -0
  190. package/types/core/plugin/plugin.d.ts +10 -0
  191. package/types/core/request/ajax.d.ts +5 -0
  192. package/types/core/request/config.d.ts +6 -0
  193. package/types/core/request/index.d.ts +3 -0
  194. package/types/core/request/response.d.ts +3 -0
  195. package/types/core/selection/helpers/index.d.ts +3 -0
  196. package/types/core/selection/helpers/move-node-inside-start.d.ts +8 -0
  197. package/types/core/selection/helpers/move-the-node-along-the-edge-outward.d.ts +4 -0
  198. package/types/core/selection/index.d.ts +3 -0
  199. package/types/core/selection/interface.d.ts +9 -0
  200. package/types/core/selection/selection.d.ts +196 -0
  201. package/types/core/selection/style/api/extract.d.ts +16 -0
  202. package/types/core/selection/style/api/finite-state-machine.d.ts +3 -0
  203. package/types/core/selection/style/api/get-suit-child.d.ts +8 -0
  204. package/types/core/selection/style/api/get-suit-parent.d.ts +8 -0
  205. package/types/core/selection/style/api/has-same-style.d.ts +7 -0
  206. package/types/core/selection/style/api/is-inside-invisible-element.d.ts +4 -0
  207. package/types/core/selection/style/api/is-normal-node.d.ts +4 -0
  208. package/types/core/selection/style/api/is-same-attributes.d.ts +4 -0
  209. package/types/core/selection/style/api/is-suit-element.d.ts +24 -0
  210. package/types/core/selection/style/api/list/toggle-ordered-list.d.ts +4 -0
  211. package/types/core/selection/style/api/list/wrap-list.d.ts +5 -0
  212. package/types/core/selection/style/api/toggle-attributes.d.ts +4 -0
  213. package/types/core/selection/style/api/unwrap-children.d.ts +4 -0
  214. package/types/core/selection/style/api/wrap-unwrapped-text.d.ts +4 -0
  215. package/types/core/selection/style/api/wrap.d.ts +4 -0
  216. package/types/core/selection/style/apply-style.d.ts +4 -0
  217. package/types/core/selection/style/commit-style.d.ts +9 -0
  218. package/types/core/storage/engines/local-storage-provider.d.ts +9 -0
  219. package/types/core/storage/engines/memory-storage-provider.d.ts +3 -0
  220. package/types/core/storage/index.d.ts +3 -0
  221. package/types/core/storage/storage.d.ts +5 -0
  222. package/types/core/traits/dlgs.d.ts +3 -0
  223. package/types/core/traits/elms.d.ts +9 -0
  224. package/types/core/traits/mods.d.ts +11 -0
  225. package/types/core/ui/button/button/button.d.ts +35 -0
  226. package/types/core/ui/button/group/group.d.ts +6 -0
  227. package/types/core/ui/button/index.d.ts +5 -0
  228. package/types/core/ui/button/tooltip/tooltip.d.ts +5 -0
  229. package/types/core/ui/element.d.ts +27 -0
  230. package/types/core/ui/form/block/block.d.ts +4 -0
  231. package/types/core/ui/form/form.d.ts +7 -0
  232. package/types/core/ui/form/index.d.ts +3 -0
  233. package/types/core/ui/form/inputs/area/area.d.ts +6 -0
  234. package/types/core/ui/form/inputs/checkbox/checkbox.d.ts +8 -0
  235. package/types/core/ui/form/inputs/file/file.d.ts +4 -0
  236. package/types/core/ui/form/inputs/index.d.ts +3 -0
  237. package/types/core/ui/form/inputs/input/input.d.ts +18 -0
  238. package/types/core/ui/form/inputs/select/select.d.ts +10 -0
  239. package/types/core/ui/form/validators/index.d.ts +3 -0
  240. package/types/core/ui/form/validators/input.d.ts +9 -0
  241. package/types/core/ui/form/validators/select.d.ts +6 -0
  242. package/types/core/ui/group/group.d.ts +32 -0
  243. package/types/core/ui/group/index.d.ts +3 -0
  244. package/types/core/ui/group/list.d.ts +16 -0
  245. package/types/core/ui/group/separator.d.ts +3 -0
  246. package/types/core/ui/group/spacer.d.ts +3 -0
  247. package/types/core/ui/helpers/buttons.d.ts +9 -0
  248. package/types/core/ui/helpers/get-control-type.d.ts +10 -0
  249. package/types/core/ui/helpers/get-strong-control-types.d.ts +6 -0
  250. package/types/core/ui/icon.d.ts +15 -0
  251. package/types/core/ui/index.d.ts +5 -0
  252. package/types/core/ui/popup/index.d.ts +3 -0
  253. package/types/core/ui/popup/popup.d.ts +35 -0
  254. package/types/core/ui/progress-bar/progress-bar.d.ts +10 -0
  255. package/types/core/view/view-with-toolbar.d.ts +22 -0
  256. package/types/core/view/view.d.ts +66 -1
  257. package/types/index.d.ts +5 -0
  258. package/types/jodit.d.ts +248 -0
  259. package/types/langs/index.d.ts +5 -0
  260. package/types/modules/context-menu/context-menu.d.ts +20 -0
  261. package/types/modules/dialog/alert.d.ts +17 -0
  262. package/types/modules/dialog/confirm.d.ts +17 -0
  263. package/types/modules/dialog/dialog.d.ts +115 -0
  264. package/types/modules/dialog/index.d.ts +5 -0
  265. package/types/modules/dialog/prompt.d.ts +20 -0
  266. package/types/modules/file-browser/builders/context-menu.d.ts +3 -0
  267. package/types/modules/file-browser/builders/elements-map.d.ts +7 -0
  268. package/types/modules/file-browser/builders/item.d.ts +3 -0
  269. package/types/modules/file-browser/data-provider.d.ts +72 -0
  270. package/types/modules/file-browser/factories.d.ts +3 -0
  271. package/types/modules/file-browser/fetch/delete-file.d.ts +7 -0
  272. package/types/modules/file-browser/fetch/load-items.d.ts +7 -0
  273. package/types/modules/file-browser/fetch/load-tree.d.ts +7 -0
  274. package/types/modules/file-browser/file-browser.d.ts +39 -0
  275. package/types/modules/file-browser/index.d.ts +5 -0
  276. package/types/modules/file-browser/listeners/native-listeners.d.ts +12 -0
  277. package/types/modules/file-browser/listeners/self-listeners.d.ts +6 -0
  278. package/types/modules/file-browser/listeners/state-listeners.d.ts +7 -0
  279. package/types/modules/file-browser/ui/index.d.ts +3 -0
  280. package/types/modules/history/command.d.ts +3 -0
  281. package/types/modules/history/history.d.ts +37 -0
  282. package/types/modules/history/snapshot.d.ts +40 -0
  283. package/types/modules/history/stack.d.ts +3 -0
  284. package/types/modules/image-editor/image-editor.d.ts +54 -1
  285. package/types/modules/image-editor/templates/form.d.ts +3 -0
  286. package/types/modules/index.d.ts +5 -0
  287. package/types/modules/messages/message.d.ts +3 -0
  288. package/types/modules/messages/messages.d.ts +8 -0
  289. package/types/modules/status-bar/status-bar.d.ts +20 -0
  290. package/types/modules/table/table.d.ts +57 -0
  291. package/types/modules/toolbar/button/button.d.ts +34 -1
  292. package/types/modules/toolbar/button/content.d.ts +6 -0
  293. package/types/modules/toolbar/button/index.d.ts +3 -0
  294. package/types/modules/toolbar/collection/collection.d.ts +23 -0
  295. package/types/modules/toolbar/collection/editor-collection.d.ts +19 -0
  296. package/types/modules/toolbar/factory.d.ts +11 -0
  297. package/types/modules/uploader/config.d.ts +6 -0
  298. package/types/modules/uploader/helpers/build-data.d.ts +3 -0
  299. package/types/modules/uploader/helpers/data-uri-to-blob.d.ts +6 -0
  300. package/types/modules/uploader/helpers/index.d.ts +3 -0
  301. package/types/modules/uploader/helpers/process-old-browser-drag.d.ts +3 -0
  302. package/types/modules/uploader/helpers/send-files.d.ts +6 -0
  303. package/types/modules/uploader/helpers/send.d.ts +3 -0
  304. package/types/modules/uploader/uploader.d.ts +35 -0
  305. package/types/modules/widget/color-picker/color-picker.d.ts +22 -0
  306. package/types/modules/widget/file-selector/file-selector.d.ts +41 -0
  307. package/types/modules/widget/index.d.ts +5 -0
  308. package/types/modules/widget/tabs/tabs.d.ts +22 -0
  309. package/types/plugins/about/about.d.ts +5 -0
  310. package/types/plugins/add-new-line/add-new-line.d.ts +9 -0
  311. package/types/plugins/add-new-line/config.d.ts +22 -0
  312. package/types/plugins/backspace/backspace.d.ts +11 -0
  313. package/types/plugins/backspace/cases/check-join-neighbors.d.ts +7 -0
  314. package/types/plugins/backspace/cases/check-join-two-lists.d.ts +16 -0
  315. package/types/plugins/backspace/cases/check-not-collapsed.d.ts +16 -0
  316. package/types/plugins/backspace/cases/check-remove-char.d.ts +16 -0
  317. package/types/plugins/backspace/cases/check-remove-content-not-editable.d.ts +7 -0
  318. package/types/plugins/backspace/cases/check-remove-empty-neighbor.d.ts +16 -0
  319. package/types/plugins/backspace/cases/check-remove-empty-parent.d.ts +17 -0
  320. package/types/plugins/backspace/cases/check-remove-unbreakable-element.d.ts +17 -0
  321. package/types/plugins/backspace/cases/check-table-cell.d.ts +17 -0
  322. package/types/plugins/backspace/cases/check-unwrap-first-list-item.d.ts +17 -0
  323. package/types/plugins/backspace/cases/index.d.ts +3 -0
  324. package/types/plugins/backspace/helpers.d.ts +11 -0
  325. package/types/plugins/backspace/interface.d.ts +27 -0
  326. package/types/plugins/bold/bold.d.ts +8 -0
  327. package/types/plugins/bold/interface.d.ts +18 -0
  328. package/types/plugins/class-span/class-span.d.ts +27 -0
  329. package/types/plugins/clean-html/clean-html.d.ts +17 -0
  330. package/types/plugins/clean-html/config.d.ts +73 -0
  331. package/types/plugins/clean-html/helpers/get-hash.d.ts +6 -0
  332. package/types/plugins/clean-html/helpers/index.d.ts +3 -0
  333. package/types/plugins/clean-html/helpers/remove-format/remove-format-for-collapsed-selection.d.ts +11 -0
  334. package/types/plugins/clean-html/helpers/remove-format/remove-format-for-selection.d.ts +7 -0
  335. package/types/plugins/clean-html/helpers/visitor/filters/allow-attributes.d.ts +6 -0
  336. package/types/plugins/clean-html/helpers/visitor/filters/fill-empty-paragraph.d.ts +6 -0
  337. package/types/plugins/clean-html/helpers/visitor/filters/index.d.ts +6 -0
  338. package/types/plugins/clean-html/helpers/visitor/filters/remove-empty-text-node.d.ts +6 -0
  339. package/types/plugins/clean-html/helpers/visitor/filters/remove-inv-text-nodes.d.ts +6 -0
  340. package/types/plugins/clean-html/helpers/visitor/filters/replace-old-tags.d.ts +6 -0
  341. package/types/plugins/clean-html/helpers/visitor/filters/sanitize-attributes.d.ts +6 -0
  342. package/types/plugins/clean-html/helpers/visitor/filters/try-remove-node.d.ts +6 -0
  343. package/types/plugins/clean-html/helpers/visitor/visit-node-walker.d.ts +6 -0
  344. package/types/plugins/clipboard/clipboard.d.ts +10 -0
  345. package/types/plugins/color/color.d.ts +8 -0
  346. package/types/plugins/copy-format/copy-format.d.ts +5 -0
  347. package/types/plugins/debug/debug.d.ts +5 -0
  348. package/types/plugins/delete/delete.d.ts +14 -0
  349. package/types/plugins/delete/interface.d.ts +3 -0
  350. package/types/plugins/drag-and-drop/drag-and-drop.d.ts +5 -0
  351. package/types/plugins/drag-and-drop-element/config.d.ts +3 -0
  352. package/types/plugins/drag-and-drop-element/drag-and-drop-element.d.ts +26 -0
  353. package/types/plugins/dtd/after-insert/index.d.ts +4 -0
  354. package/types/plugins/dtd/after-insert/remove-extra-br.d.ts +9 -0
  355. package/types/plugins/dtd/before-insert/check-block-nesting.d.ts +9 -0
  356. package/types/plugins/dtd/before-insert/index.d.ts +4 -0
  357. package/types/plugins/dtd/config.d.ts +12 -0
  358. package/types/plugins/enter/enter.d.ts +11 -0
  359. package/types/plugins/enter/helpers/check-br.d.ts +7 -0
  360. package/types/plugins/enter/helpers/check-unsplittable-box.d.ts +7 -0
  361. package/types/plugins/enter/helpers/get-block-wrapper.d.ts +7 -0
  362. package/types/plugins/enter/helpers/has-previous-block.d.ts +6 -0
  363. package/types/plugins/enter/helpers/index.d.ts +3 -0
  364. package/types/plugins/enter/helpers/insert-paragraph.d.ts +7 -0
  365. package/types/plugins/enter/helpers/move-cursor-out-from-specal-tags.d.ts +7 -0
  366. package/types/plugins/enter/helpers/process-empty-li-leaf.d.ts +7 -0
  367. package/types/plugins/enter/helpers/split-fragment.d.ts +8 -0
  368. package/types/plugins/enter/helpers/wrap-text.d.ts +8 -0
  369. package/types/plugins/enter/interface.d.ts +20 -0
  370. package/types/plugins/file/file.d.ts +5 -0
  371. package/types/plugins/focus/focus.d.ts +5 -0
  372. package/types/plugins/font/font.d.ts +8 -0
  373. package/types/plugins/format-block/format-block.d.ts +8 -0
  374. package/types/plugins/fullsize/config.d.ts +22 -0
  375. package/types/plugins/fullsize/fullsize.d.ts +8 -0
  376. package/types/plugins/hotkeys/config.d.ts +3 -0
  377. package/types/plugins/hotkeys/hotkeys.d.ts +10 -0
  378. package/types/plugins/hr/hr.d.ts +5 -0
  379. package/types/plugins/iframe/config.d.ts +49 -0
  380. package/types/plugins/iframe/iframe.d.ts +9 -0
  381. package/types/plugins/image/image.d.ts +5 -0
  382. package/types/plugins/image-processor/config.d.ts +3 -0
  383. package/types/plugins/image-processor/image-processor.d.ts +8 -0
  384. package/types/plugins/image-properties/config.d.ts +60 -0
  385. package/types/plugins/image-properties/image-properties.d.ts +42 -0
  386. package/types/plugins/image-properties/templates/form.d.ts +3 -0
  387. package/types/plugins/image-properties/templates/main-tab.d.ts +3 -0
  388. package/types/plugins/image-properties/templates/position-tab.d.ts +3 -0
  389. package/types/plugins/indent/config.d.ts +3 -0
  390. package/types/plugins/indent/helpers.d.ts +4 -0
  391. package/types/plugins/indent/indent.d.ts +8 -0
  392. package/types/plugins/index.d.ts +5 -0
  393. package/types/plugins/inline-popup/config/config.d.ts +3 -0
  394. package/types/plugins/inline-popup/config/items/a.d.ts +3 -0
  395. package/types/plugins/inline-popup/config/items/cells.d.ts +3 -0
  396. package/types/plugins/inline-popup/config/items/iframe.d.ts +3 -0
  397. package/types/plugins/inline-popup/config/items/img.d.ts +3 -0
  398. package/types/plugins/inline-popup/config/items/toolbar.d.ts +3 -0
  399. package/types/plugins/inline-popup/inline-popup.d.ts +36 -0
  400. package/types/plugins/justify/justify.d.ts +8 -0
  401. package/types/plugins/key-arrow-outside/key-arrow-outside.d.ts +8 -0
  402. package/types/plugins/limit/config.d.ts +9 -0
  403. package/types/plugins/limit/limit.d.ts +22 -0
  404. package/types/plugins/line-height/config.d.ts +9 -0
  405. package/types/plugins/line-height/line-height.d.ts +5 -0
  406. package/types/plugins/link/config.d.ts +33 -0
  407. package/types/plugins/link/link.d.ts +11 -0
  408. package/types/plugins/link/template.d.ts +3 -0
  409. package/types/plugins/media/config.d.ts +9 -0
  410. package/types/plugins/media/media.d.ts +8 -0
  411. package/types/plugins/mobile/config.d.ts +6 -0
  412. package/types/plugins/mobile/mobile.d.ts +8 -0
  413. package/types/plugins/ordered-list/ordered-list.d.ts +8 -0
  414. package/types/plugins/paste/config.d.ts +19 -0
  415. package/types/plugins/paste/helpers.d.ts +15 -0
  416. package/types/plugins/paste/interface.d.ts +15 -0
  417. package/types/plugins/paste/paste.d.ts +31 -0
  418. package/types/plugins/paste-from-word/config.d.ts +21 -0
  419. package/types/plugins/paste-from-word/paste-from-word.d.ts +11 -0
  420. package/types/plugins/paste-storage/paste-storage.d.ts +8 -0
  421. package/types/plugins/placeholder/config.d.ts +31 -0
  422. package/types/plugins/placeholder/placeholder.d.ts +12 -0
  423. package/types/plugins/powered-by-jodit/powered-by-jodit.d.ts +8 -0
  424. package/types/plugins/preview/preview.d.ts +5 -0
  425. package/types/plugins/print/lib/generate-critical-css.d.ts +6 -0
  426. package/types/plugins/print/print.d.ts +5 -0
  427. package/types/plugins/redo-undo/redo-undo.d.ts +9 -0
  428. package/types/plugins/resize-cells/resize-cells.d.ts +42 -0
  429. package/types/plugins/resize-handler/resize-handler.d.ts +26 -0
  430. package/types/plugins/resizer/config.d.ts +31 -0
  431. package/types/plugins/resizer/resizer.d.ts +22 -0
  432. package/types/plugins/search/config.d.ts +21 -0
  433. package/types/plugins/search/helpers/index.d.ts +3 -0
  434. package/types/plugins/search/helpers/sentence-finder.d.ts +3 -0
  435. package/types/plugins/search/helpers/wrap-ranges-texts-in-tmp-span.d.ts +18 -0
  436. package/types/plugins/search/interface.d.ts +23 -0
  437. package/types/plugins/search/search.d.ts +22 -0
  438. package/types/plugins/search/ui/search.d.ts +6 -0
  439. package/types/plugins/select/config.d.ts +8 -0
  440. package/types/plugins/select/select.d.ts +19 -0
  441. package/types/plugins/select-cells/select-cells.d.ts +34 -0
  442. package/types/plugins/size/size.d.ts +27 -0
  443. package/types/plugins/source/config.d.ts +25 -0
  444. package/types/plugins/source/editor/engines/ace.d.ts +6 -0
  445. package/types/plugins/source/editor/engines/area.d.ts +3 -0
  446. package/types/plugins/source/editor/engines/index.d.ts +3 -0
  447. package/types/plugins/source/editor/factory.d.ts +3 -0
  448. package/types/plugins/source/editor/sourceEditor.d.ts +6 -0
  449. package/types/plugins/source/source.d.ts +17 -0
  450. package/types/plugins/speech-recognize/config.d.ts +41 -0
  451. package/types/plugins/speech-recognize/constants.d.ts +4 -0
  452. package/types/plugins/speech-recognize/helpers/api.d.ts +3 -0
  453. package/types/plugins/speech-recognize/helpers/exec-spell-command.d.ts +3 -0
  454. package/types/plugins/speech-recognize/helpers/recognize-manager.d.ts +3 -0
  455. package/types/plugins/speech-recognize/helpers/sound.d.ts +3 -0
  456. package/types/plugins/speech-recognize/interface.d.ts +12 -0
  457. package/types/plugins/speech-recognize/speech-recognize.d.ts +5 -0
  458. package/types/plugins/spellcheck/config.d.ts +4 -0
  459. package/types/plugins/spellcheck/spellcheck.d.ts +5 -0
  460. package/types/plugins/stat/stat.d.ts +5 -0
  461. package/types/plugins/sticky/config.d.ts +19 -0
  462. package/types/plugins/sticky/sticky.d.ts +18 -0
  463. package/types/plugins/symbols/symbols.d.ts +11 -0
  464. package/types/plugins/tab/cases/index.d.ts +3 -0
  465. package/types/plugins/tab/cases/on-tab-inside-li.d.ts +8 -0
  466. package/types/plugins/tab/config.d.ts +3 -0
  467. package/types/plugins/table/table.d.ts +5 -0
  468. package/types/plugins/table-keyboard-navigation/table-keyboard-navigation.d.ts +8 -0
  469. package/types/plugins/wrap-nodes/config.d.ts +13 -0
  470. package/types/plugins/xpath/xpath.d.ts +5 -0
  471. package/types/styles/icons/index.d.ts +5 -0
  472. package/types/tsconfig.json +3 -21
  473. package/esm/plugins/source/editor/engines/custom.js +0 -34
  474. package/esm/plugins/speech-recognize/config.js +0 -92
  475. package/esm/plugins/speech-recognize/constants.js +0 -11
  476. package/esm/plugins/speech-recognize/helpers/api.js +0 -7
  477. package/esm/plugins/speech-recognize/helpers/exec-spell-command.js +0 -9
  478. package/esm/plugins/speech-recognize/helpers/recognize-manager.js +0 -168
  479. package/esm/plugins/speech-recognize/helpers/sound.js +0 -30
  480. package/esm/plugins/speech-recognize/interface.js +0 -6
  481. package/esm/plugins/speech-recognize/langs/ar.js +0 -14
  482. package/esm/plugins/speech-recognize/langs/cs_cz.js +0 -14
  483. package/esm/plugins/speech-recognize/langs/de.js +0 -14
  484. package/esm/plugins/speech-recognize/langs/es.js +0 -14
  485. package/esm/plugins/speech-recognize/langs/fa.js +0 -14
  486. package/esm/plugins/speech-recognize/langs/fr.js +0 -14
  487. package/esm/plugins/speech-recognize/langs/he.js +0 -14
  488. package/esm/plugins/speech-recognize/langs/hu.js +0 -14
  489. package/esm/plugins/speech-recognize/langs/id.js +0 -14
  490. package/esm/plugins/speech-recognize/langs/index.js +0 -26
  491. package/esm/plugins/speech-recognize/langs/it.js +0 -14
  492. package/esm/plugins/speech-recognize/langs/ja.js +0 -14
  493. package/esm/plugins/speech-recognize/langs/ko.js +0 -14
  494. package/esm/plugins/speech-recognize/langs/mn.js +0 -14
  495. package/esm/plugins/speech-recognize/langs/nl.js +0 -14
  496. package/esm/plugins/speech-recognize/langs/pl.js +0 -14
  497. package/esm/plugins/speech-recognize/langs/pt_br.js +0 -14
  498. package/esm/plugins/speech-recognize/langs/ru.js +0 -14
  499. package/esm/plugins/speech-recognize/langs/tr.js +0 -14
  500. package/esm/plugins/speech-recognize/langs/zh_cn.js +0 -14
  501. package/esm/plugins/speech-recognize/langs/zh_tw.js +0 -14
  502. package/esm/plugins/speech-recognize/speech-recognize.js +0 -115
  503. package/esm/polyfills.js +0 -54
  504. package/types/plugins/source/editor/engines/custom.d.ts +0 -24
  505. package/types/polyfills.d.ts +0 -10
@@ -0,0 +1,4896 @@
1
+ /*!
2
+ * jodit - Jodit is awesome and usefully wysiwyg editor with filebrowser
3
+ * Author: Chupurnov <chupurnov@gmail.com> (https://xdsoft.net/jodit/)
4
+ * Version: v4.0.0-beta.48
5
+ * Url: https://xdsoft.net/jodit/
6
+ * License(s): MIT
7
+ */
8
+
9
+ /*!
10
+ * Jodit Editor (https://xdsoft.net/jodit/)
11
+ * Released under MIT see LICENSE.txt in the project root for license information.
12
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
13
+ */
14
+ /*!
15
+ * Jodit Editor (https://xdsoft.net/jodit/)
16
+ * Released under MIT see LICENSE.txt in the project root for license information.
17
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
18
+ */
19
+ :root {
20
+ --jd-color-white: #fff;
21
+ --jd-color-gray: #dadada;
22
+ --jd-color-gray-dark: #a5a5a5;
23
+ --jd-color-dark: #4c4c4c;
24
+ --jd-color-blue: #b5d6fd;
25
+ --jd-color-light-blue: rgba(181, 214, 253, 0.5);
26
+ --jd-color-red: #ff3b3b;
27
+ --jd-color-light-red: rgba(255, 59, 59, 0.4);
28
+ --jd-color-default: var(--jd-color-dark);
29
+ --jd-color-text: #222222;
30
+ --jd-color-label: var(--jd-color-gray-dark);
31
+ --jd-color-error: var(--jd-color-red);
32
+ --jd-color-border: var(--jd-color-gray);
33
+ --jd-color-border-dark: var(--jd-color-dark);
34
+ --jd-color-border-selected: #1e88e5;
35
+ --jd-color-border-active: #b5b5b5;
36
+ --jd-color-selection: var(--jd-color-dark);
37
+ --jd-color-selection-area: #bdbdbd;
38
+ --jd-color-separator: var(--jd-color-border);
39
+ --jd-color-placeholder: var(--jd-color-gray-dark);
40
+ --jd-color-panel: #f9f9f9;
41
+ --jd-color-resizer: #c8c8c8;
42
+ --jd-color-background-default: var(--jd-color-white);
43
+ --jd-color-background-light-gray: #f5f5f6;
44
+ --jd-color-background-gray: var(--jd-color-gray);
45
+ --jd-color-background-gray-hover: #f8f8f8;
46
+ --jd-color-background-hover: #7a450f;
47
+ --jd-color-background-button-hover: #ecebe9;
48
+ --jd-color-background-button-hover-opacity30: rgba(236, 235, 233, 0.3);
49
+ --jd-color-background-progress: #b91f1f;
50
+ --jd-color-background-filebrowser-folders: #3f3f3f;
51
+ --jd-color-background-active: #2196f3;
52
+ --jd-color-background-selection: #b5d6fd;
53
+ --jd-color-background-selection_opacity50: rgba(181, 214, 253, 0.995);
54
+ --jd-color-source-area: #323232;
55
+ --jd-color-button-background-hover: #dcdcdc;
56
+ --jd-color-button-background-hover_opacity40: rgba(220, 220, 220, 0.4);
57
+ --jd-color-button-background-hover_opacity60: rgba(220, 220, 220, 0.6);
58
+ --jd-font-default: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
59
+ Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
60
+ --jd-font-size-default: 14px;
61
+ --jd-font-size-small: 11px;
62
+ --jd-color-text-icons: rgba(0, 0, 0, 0.75);
63
+ --jd-color-icon: var(--jd-color-dark);
64
+ --jd-padding-default: 8px;
65
+ --jd-border-radius-default: 3px;
66
+ --jd-z-index-full-size: 100000;
67
+ --jd-z-index-popup: 10000001;
68
+ --jd-z-index-dialog-overlay: 20000003;
69
+ --jd-z-index-dialog: 20000004;
70
+ --jd-z-index-context-menu: 30000005;
71
+ --jd-z-index-tooltip: 30000006;
72
+ --jd-icon-loader-size: 48px;
73
+ --jd-width_element_default: 18px;
74
+ --jd-height_element_default: 18px;
75
+ --jd-dark_background_color: #575757;
76
+ --jd-dark-text-color: var(--jd-color-white);
77
+ --jd-dark_background_ligher: #787878;
78
+ --jd-dark_background_darknes: #353535;
79
+ --jd-dark_border_color: #444;
80
+ --jd-dark_text_color: #d1cccc;
81
+ --jd-dark_text_color_opacity80: rgba(209, 204, 204, 0.8);
82
+ --jd-dark_text_color_opacity50: rgba(209, 204, 204, 0.5);
83
+ --jd-dark_icon_color: #c0c0c0;
84
+ --jd-dark_toolbar_color: #5f5c5c;
85
+ --jd-dark_toolbar_seperator_color1: rgba(81, 81, 81, 0.41);
86
+ --jd-dark_toolbar_seperator_color2: #686767;
87
+ --jd-dark_toolbar_seperator_color_opacity80: rgba(104, 103, 103, 0.8);
88
+ --jd-dark_toolbar_seperator_color3: rgba(104, 103, 103, 0.75);
89
+ --jd-dark_color-border-selected: #152f5f;
90
+ --jd-width-default: 180px;
91
+ --jd-width-input-min: var(--jd-width-default);
92
+ --jd-input-height: 32px;
93
+ --jd-button-icon-size: 14px;
94
+ --jd-margin-v: 2px;
95
+ --jd-button-df-size: calc((var(--jd-button-icon-size) - 4px) * 2);
96
+ --jd-button-size: calc(var(--jd-button-icon-size) + var(--jd-button-df-size) + var(--jd-margin-v) * 2);
97
+ --jd-focus-input-box-shadow: 0 0 0 0.05rem rgba(0, 123, 255, 0.25);
98
+ }
99
+ /*!
100
+ * Jodit Editor (https://xdsoft.net/jodit/)
101
+ * Released under MIT see LICENSE.txt in the project root for license information.
102
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
103
+ */
104
+ .jodit-wysiwyg {
105
+ outline: 0;
106
+ }
107
+ .jodit-wysiwyg::selection,
108
+ .jodit-wysiwyg *::selection {
109
+ background: #b5d6fd;
110
+ color: #4c4c4c;
111
+ }
112
+ .jodit-container:not(.jodit_inline) .jodit-wysiwyg {
113
+ position: relative;
114
+ padding: 8px;
115
+ margin: 0;
116
+ outline: 0;
117
+ overflow-x: auto;
118
+ }
119
+ .jodit-container:not(.jodit_inline) .jodit-wysiwyg img {
120
+ position: relative;
121
+ max-width: 100%;
122
+ }
123
+ .jodit-container:not(.jodit_inline) .jodit-wysiwyg jodit-media {
124
+ position: relative;
125
+ }
126
+ .jodit-container:not(.jodit_inline) .jodit-wysiwyg jodit-media * {
127
+ position: relative;
128
+ z-index: 0;
129
+ }
130
+ .jodit-container:not(.jodit_inline) .jodit-wysiwyg jodit-media::before {
131
+ position: absolute;
132
+ z-index: 1;
133
+ top: 0;
134
+ right: 0;
135
+ bottom: 0;
136
+ left: 0;
137
+ content: '';
138
+ }
139
+ /*!
140
+ * Jodit Editor (https://xdsoft.net/jodit/)
141
+ * Released under MIT see LICENSE.txt in the project root for license information.
142
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
143
+ */
144
+ :root {
145
+ --jd-switche-width: 60px;
146
+ --jd-switche-height: 32px;
147
+ --jd-switche-slider-margin: 4px;
148
+ --jd-switche-slider-size: calc(var(--jd-switche-height) - var(--jd-switche-slider-margin) * 2);
149
+ }
150
+ .jodit-form {
151
+ font-family: var(--jd-font-default);
152
+ font-size: var(--jd-font-size-default);
153
+ color: var(--jd-color-default);
154
+ }
155
+ .jodit-form.jodit_error {
156
+ border-color: var(--jd-color-error);
157
+ box-shadow: inset 0 0 3px 0 rgba(189, 189, 189, 0.3);
158
+ }
159
+ @media (max-width: 768px) {
160
+ .jodit-form {
161
+ min-width: 150px;
162
+ }
163
+ }
164
+ .jodit-form button {
165
+ height: 36px;
166
+ padding: var(--jd-padding-default);
167
+ border: none;
168
+ margin-top: var(--jd-padding-default);
169
+ margin-bottom: var(--jd-padding-default);
170
+ background: #d6d6d6;
171
+ color: var(--jd-color-dark);
172
+ cursor: pointer;
173
+ font-size: 16px;
174
+ line-height: 1;
175
+ outline: none;
176
+ text-decoration: none;
177
+ transition: background 0.2s ease 0s;
178
+ }
179
+ .jodit-form button:hover {
180
+ background-color: var(--jd-color-background-button-hover);
181
+ color: var(--jd-color-dark);
182
+ }
183
+ .jodit-form button:active {
184
+ background: var(--jd-color-background-button-hover);
185
+ color: var(--jd-color-dark);
186
+ }
187
+ .jodit-form label {
188
+ display: flex;
189
+ align-items: center;
190
+ margin-bottom: var(--jd-padding-default);
191
+ text-align: left;
192
+ white-space: nowrap;
193
+ }
194
+ .jodit-form label:last-child {
195
+ margin-bottom: 0;
196
+ }
197
+ .jodit-form .jodit-form__center {
198
+ justify-content: center;
199
+ }
200
+ .jodit .jodit-textarea,
201
+ .jodit .jodit-select,
202
+ .jodit .jodit-input {
203
+ font-family: var(--jd-font-default);
204
+ font-size: var(--jd-font-size-default);
205
+ width: 100%;
206
+ height: var(--jd-input-height);
207
+ box-sizing: border-box;
208
+ padding: 0 var(--jd-padding-default);
209
+ border: 1px solid var(--jd-color-border);
210
+ border-radius: 0;
211
+ -webkit-appearance: none;
212
+ -moz-appearance: none;
213
+ appearance: none;
214
+ background-color: var(--jd-color-white);
215
+ line-height: var(--jd-input-height);
216
+ outline: none;
217
+ }
218
+ .jodit .jodit-textarea[disabled],
219
+ .jodit .jodit-select[disabled],
220
+ .jodit .jodit-input[disabled] {
221
+ background-color: #f0f0f0;
222
+ color: var(--jd-color-border);
223
+ }
224
+ .jodit .jodit-textarea_has-error_true,
225
+ .jodit .jodit-select_has-error_true,
226
+ .jodit .jodit-input_has-error_true {
227
+ border-color: var(--jd-color-red);
228
+ }
229
+ .jodit .jodit-input:focus {
230
+ border-color: #66afe9;
231
+ outline: 0;
232
+ }
233
+ .jodit-checkbox {
234
+ position: relative;
235
+ z-index: 2;
236
+ width: 16px;
237
+ height: 16px;
238
+ padding: 0;
239
+ border: 0 none;
240
+ margin: 0 calc(var(--jd-padding-default) / 2) 0 0;
241
+ cursor: pointer;
242
+ outline: none;
243
+ }
244
+ .jodit-select {
245
+ padding-right: calc(var(--jd-padding-default) * 2);
246
+ background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%204.95%2010%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23fff%3B%7D.cls-2%7Bfill%3A%23444%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Ctitle%3Earrows%3C%2Ftitle%3E%3Crect%20class%3D%22cls-1%22%20width%3D%224.95%22%20height%3D%2210%22%2F%3E%3Cpolygon%20class%3D%22cls-2%22%20points%3D%221.41%204.67%202.48%203.18%203.54%204.67%201.41%204.67%22%2F%3E%3Cpolygon%20class%3D%22cls-2%22%20points%3D%223.54%205.33%202.48%206.82%201.41%205.33%203.54%205.33%22%2F%3E%3C%2Fsvg%3E");
247
+ background-position: 98% 50%;
248
+ background-repeat: no-repeat;
249
+ }
250
+ .jodit-textarea {
251
+ min-width: var(--jd-width-input-min);
252
+ height: auto;
253
+ }
254
+ .jodit-form__group {
255
+ display: flex;
256
+ min-width: var(--jd-width-input-min);
257
+ flex-direction: column;
258
+ margin-bottom: var(--jd-padding-default);
259
+ }
260
+ .jodit-form__group > label {
261
+ margin-bottom: var(--jd-padding-default);
262
+ }
263
+ .jodit-button {
264
+ position: relative;
265
+ display: inline-flex;
266
+ width: auto;
267
+ height: calc(var(--jd-padding-default) * 4);
268
+ align-items: center;
269
+ justify-content: center;
270
+ padding: 0 var(--jd-padding-default);
271
+ border: 0;
272
+ border-radius: 0.25rem;
273
+ margin: 0;
274
+ background-color: var(--jd-color-background-gray);
275
+ color: var(--jd-color-default);
276
+ cursor: pointer;
277
+ line-height: 1;
278
+ text-decoration: none;
279
+ user-select: none;
280
+ }
281
+ .jodit-button svg {
282
+ display: inline-block;
283
+ width: 24px;
284
+ height: 24px;
285
+ }
286
+ .jodit-button svg + span {
287
+ margin-left: calc(var(--jd-padding-default) / 2);
288
+ }
289
+ .jodit-button:active {
290
+ outline: 0;
291
+ }
292
+ .jodit-button:focus {
293
+ outline: 0;
294
+ }
295
+ .jodit-button.disabled {
296
+ opacity: 0.7;
297
+ }
298
+ .jodit-buttons {
299
+ display: flex;
300
+ flex-wrap: nowrap;
301
+ justify-content: space-between;
302
+ margin-bottom: var(--jd-padding-default);
303
+ }
304
+ .jodit-button .jodit_icon,
305
+ .jodit-dialog__header .jodit_icon,
306
+ .jodit-button svg,
307
+ .jodit-dialog__header svg {
308
+ display: inline-block;
309
+ width: 16px;
310
+ height: 16px;
311
+ vertical-align: middle;
312
+ }
313
+ .jodit-switcher {
314
+ position: relative;
315
+ display: inline-block;
316
+ width: var(--jd-switche-width);
317
+ height: var(--jd-switche-height);
318
+ }
319
+ .jodit-switcher input {
320
+ width: 0;
321
+ height: 0;
322
+ opacity: 0;
323
+ }
324
+ .jodit-switcher .jodit-switcher__slider {
325
+ position: absolute;
326
+ top: 0;
327
+ right: 0;
328
+ bottom: 0;
329
+ left: 0;
330
+ border-radius: var(--jd-switche-height);
331
+ background-color: var(--jd-color-gray);
332
+ cursor: pointer;
333
+ transition: 0.4s;
334
+ }
335
+ .jodit-switcher .jodit-switcher__slider:before {
336
+ position: absolute;
337
+ bottom: var(--jd-switche-slider-margin);
338
+ left: var(--jd-switche-slider-margin);
339
+ width: var(--jd-switche-slider-size);
340
+ height: var(--jd-switche-slider-size);
341
+ border-radius: 50%;
342
+ background-color: white;
343
+ content: '';
344
+ transition: 0.4s;
345
+ }
346
+ input:checked + .jodit-switcher__slider {
347
+ background-color: var(--jd-color-background-active);
348
+ }
349
+ input:checked + .jodit-switcher__slider:before {
350
+ transform: translateX(calc(var(--jd-switche-width) - var(--jd-switche-slider-margin) * 2 - var(--jd-switche-slider-size)));
351
+ }
352
+ input:focus + .jodit-switcher__slider {
353
+ box-shadow: 0 0 1px var(--jd-color-background-active);
354
+ }
355
+ /*!
356
+ * Jodit Editor (https://xdsoft.net/jodit/)
357
+ * Released under MIT see LICENSE.txt in the project root for license information.
358
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
359
+ */
360
+ .jodit-button-group {
361
+ display: flex;
362
+ }
363
+ .jodit-button-group input {
364
+ display: none;
365
+ }
366
+ .jodit-button-group button {
367
+ display: flex;
368
+ flex: 1;
369
+ justify-content: center;
370
+ text-align: center;
371
+ }
372
+ .jodit-button-group button + button {
373
+ margin-left: -1px;
374
+ }
375
+ .jodit-button-group input:first-child + button,
376
+ .jodit-button-group button:first-child {
377
+ border-right: 0;
378
+ border-bottom-right-radius: 0;
379
+ border-top-right-radius: 0;
380
+ }
381
+ .jodit-button-group input:last-child + button,
382
+ .jodit-button-group button:last-child {
383
+ border-left: 0;
384
+ border-bottom-left-radius: 0;
385
+ border-top-left-radius: 0;
386
+ }
387
+ .jodit-button-group input[type='checkbox']:not(:checked) + button + button {
388
+ background-image: none;
389
+ box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.05);
390
+ }
391
+ .jodit-button-group input[type='checkbox']:checked + button {
392
+ background-image: none;
393
+ box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.05);
394
+ }
395
+ /*!
396
+ * Jodit Editor (https://xdsoft.net/jodit/)
397
+ * Released under MIT see LICENSE.txt in the project root for license information.
398
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
399
+ */
400
+ .jodit_text_icons .jodit_icon {
401
+ width: auto;
402
+ font-size: var(--jd-font-size-default);
403
+ }
404
+ .jodit_text_icons .jodit_icon::first-letter {
405
+ text-transform: uppercase;
406
+ }
407
+ .jodit_text_icons .jodit-tabs .jodit-tabs__buttons > a {
408
+ width: auto;
409
+ font-family: var(--jd-font-default);
410
+ }
411
+ .jodit_text_icons .jodit-tabs .jodit-tabs__buttons > a i {
412
+ width: auto;
413
+ }
414
+ .jodit_text_icons.jodit-dialog .jodit-dialog__header a,
415
+ .jodit_text_icons.jodit-dialog .jodit-button {
416
+ width: auto;
417
+ padding: var(--jd-padding-default);
418
+ color: var(--jd-color-text-icons);
419
+ font-family: var(--jd-font-default);
420
+ }
421
+ .jodit_text_icons.jodit-dialog .jodit-dialog__header a .jodit_icon,
422
+ .jodit_text_icons.jodit-dialog .jodit-button .jodit_icon {
423
+ width: auto;
424
+ }
425
+ /*!
426
+ * Jodit Editor (https://xdsoft.net/jodit/)
427
+ * Released under MIT see LICENSE.txt in the project root for license information.
428
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
429
+ */
430
+ .jodit-grid {
431
+ display: flex;
432
+ width: 100%;
433
+ }
434
+ .jodit-grid.jodit-grid_column {
435
+ flex-direction: column;
436
+ }
437
+ @media (max-width: 480px) {
438
+ .jodit-grid.jodit-grid_xs-column {
439
+ flex-direction: column;
440
+ }
441
+ }
442
+ .jodit-grid [class*='jodit_col-'] {
443
+ flex: 1 1 auto;
444
+ }
445
+ .jodit-grid .jodit_col-lg-5-5 {
446
+ width: 100%;
447
+ }
448
+ .jodit-grid .jodit_col-lg-4-5 {
449
+ width: 80%;
450
+ }
451
+ .jodit-grid .jodit_col-lg-3-5 {
452
+ width: 60%;
453
+ }
454
+ .jodit-grid .jodit_col-lg-2-5 {
455
+ width: 40%;
456
+ }
457
+ .jodit-grid .jodit_col-lg-1-5 {
458
+ width: 20%;
459
+ }
460
+ .jodit-grid .jodit_col-lg-4-4 {
461
+ width: 100%;
462
+ }
463
+ .jodit-grid .jodit_col-lg-3-4 {
464
+ width: 75%;
465
+ }
466
+ .jodit-grid .jodit_col-lg-2-4 {
467
+ width: 50%;
468
+ }
469
+ .jodit-grid .jodit_col-lg-1-4 {
470
+ width: 25%;
471
+ }
472
+ @media (max-width: 992px) {
473
+ .jodit-grid .jodit_col-md-5-5 {
474
+ width: 100%;
475
+ }
476
+ .jodit-grid .jodit_col-md-4-5 {
477
+ width: 80%;
478
+ }
479
+ .jodit-grid .jodit_col-md-3-5 {
480
+ width: 60%;
481
+ }
482
+ .jodit-grid .jodit_col-md-2-5 {
483
+ width: 40%;
484
+ }
485
+ .jodit-grid .jodit_col-md-1-5 {
486
+ width: 20%;
487
+ }
488
+ .jodit-grid .jodit_col-md-4-4 {
489
+ width: 100%;
490
+ }
491
+ .jodit-grid .jodit_col-md-3-4 {
492
+ width: 75%;
493
+ }
494
+ .jodit-grid .jodit_col-md-2-4 {
495
+ width: 50%;
496
+ }
497
+ .jodit-grid .jodit_col-md-1-4 {
498
+ width: 25%;
499
+ }
500
+ }
501
+ @media (max-width: 768px) {
502
+ .jodit-grid .jodit_col-sm-5-5 {
503
+ width: 100%;
504
+ }
505
+ .jodit-grid .jodit_col-sm-4-5 {
506
+ width: 80%;
507
+ }
508
+ .jodit-grid .jodit_col-sm-3-5 {
509
+ width: 60%;
510
+ }
511
+ .jodit-grid .jodit_col-sm-2-5 {
512
+ width: 40%;
513
+ }
514
+ .jodit-grid .jodit_col-sm-1-5 {
515
+ width: 20%;
516
+ }
517
+ .jodit-grid .jodit_col-sm-4-4 {
518
+ width: 100%;
519
+ }
520
+ .jodit-grid .jodit_col-sm-3-4 {
521
+ width: 75%;
522
+ }
523
+ .jodit-grid .jodit_col-sm-2-4 {
524
+ width: 50%;
525
+ }
526
+ .jodit-grid .jodit_col-sm-1-4 {
527
+ width: 25%;
528
+ }
529
+ }
530
+ @media (max-width: 480px) {
531
+ .jodit-grid .jodit_col-xs-5-5 {
532
+ width: 100%;
533
+ }
534
+ .jodit-grid .jodit_col-xs-4-5 {
535
+ width: 80%;
536
+ }
537
+ .jodit-grid .jodit_col-xs-3-5 {
538
+ width: 60%;
539
+ }
540
+ .jodit-grid .jodit_col-xs-2-5 {
541
+ width: 40%;
542
+ }
543
+ .jodit-grid .jodit_col-xs-1-5 {
544
+ width: 20%;
545
+ }
546
+ .jodit-grid .jodit_col-xs-4-4 {
547
+ width: 100%;
548
+ }
549
+ .jodit-grid .jodit_col-xs-3-4 {
550
+ width: 75%;
551
+ }
552
+ .jodit-grid .jodit_col-xs-2-4 {
553
+ width: 50%;
554
+ }
555
+ .jodit-grid .jodit_col-xs-1-4 {
556
+ width: 25%;
557
+ }
558
+ }
559
+ /*!
560
+ * Jodit Editor (https://xdsoft.net/jodit/)
561
+ * Released under MIT see LICENSE.txt in the project root for license information.
562
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
563
+ */
564
+ @keyframes rotate {
565
+ to {
566
+ transform: rotate(360deg);
567
+ }
568
+ }
569
+ .jodit-icon_loader {
570
+ display: inline-block;
571
+ width: var(--jd-icon-loader-size);
572
+ height: var(--jd-icon-loader-size);
573
+ animation: rotate 2s ease-out 0s infinite;
574
+ background: url(data:image/png;base64,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) no-repeat center;
575
+ background-size: 100% 100%;
576
+ vertical-align: middle;
577
+ will-change: transform;
578
+ }
579
+ .jodit-icon {
580
+ overflow: visible;
581
+ width: 14px;
582
+ height: 14px;
583
+ background: center no-repeat;
584
+ background-size: contain;
585
+ fill: var(--jd-color-icon);
586
+ stroke: var(--jd-color-icon);
587
+ transform-origin: 0 0 !important;
588
+ }
589
+ .jodit-icon_close {
590
+ stroke: var(--jd-color-icon);
591
+ }
592
+ svg.jodit-icon {
593
+ height: auto;
594
+ isolation: isolate;
595
+ }
596
+ .jodit-icon_text {
597
+ font-size: 14px;
598
+ }
599
+ /*!
600
+ * Jodit Editor (https://xdsoft.net/jodit/)
601
+ * Released under MIT see LICENSE.txt in the project root for license information.
602
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
603
+ */
604
+ .jodit,
605
+ .jodit-container,
606
+ .jodit *,
607
+ .jodit-container * {
608
+ box-sizing: border-box;
609
+ }
610
+ .jodit .jodit-workplace,
611
+ .jodit-container .jodit-workplace {
612
+ position: relative;
613
+ overflow: auto;
614
+ }
615
+ .jodit .jodit-workplace .jodit-wysiwyg,
616
+ .jodit-container .jodit-workplace .jodit-wysiwyg,
617
+ .jodit .jodit-workplace .jodit-wysiwyg_iframe,
618
+ .jodit-container .jodit-workplace .jodit-wysiwyg_iframe {
619
+ width: 100%;
620
+ height: 100%;
621
+ }
622
+ .jodit-wysiwyg *[contenteditable='false'] {
623
+ cursor: default;
624
+ }
625
+ .jodit-container:not(.jodit_inline) {
626
+ border: 1px solid var(--jd-color-border);
627
+ border-radius: var(--jd-border-radius-default);
628
+ background-color: var(--jd-color-background-light-gray);
629
+ }
630
+ .jodit-container:not(.jodit_inline) .jodit-workplace {
631
+ max-height: 100%;
632
+ border: 0 solid var(--jd-color-border);
633
+ background-color: var(--jd-color-background-default);
634
+ }
635
+ .jodit-container:not(.jodit_inline).jodit_disabled {
636
+ background: var(--jd-color-background-gray);
637
+ }
638
+ .jodit-container:not(.jodit_inline).jodit_disabled .jodit-workplace {
639
+ opacity: 0.4;
640
+ }
641
+ .jodit_lock {
642
+ user-select: none !important;
643
+ }
644
+ .jodit_disabled {
645
+ user-select: none !important;
646
+ }
647
+ .jodit_hidden {
648
+ display: none !important;
649
+ }
650
+ .jodit_vertical_middle {
651
+ display: flex;
652
+ align-items: center;
653
+ }
654
+ .jodit-box {
655
+ position: static;
656
+ width: auto;
657
+ max-width: none;
658
+ height: auto;
659
+ padding: 0;
660
+ border: 0;
661
+ margin: 0;
662
+ background: 0 0;
663
+ float: none;
664
+ outline: 0;
665
+ }
666
+
667
+ /*!
668
+ * Jodit Editor (https://xdsoft.net/jodit/)
669
+ * Released under MIT see LICENSE.txt in the project root for license information.
670
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
671
+ */
672
+ .jodit-context-menu {
673
+ position: static;
674
+ width: auto;
675
+ max-width: none;
676
+ height: auto;
677
+ padding: 0;
678
+ border: 0;
679
+ margin: 0;
680
+ background: 0 0;
681
+ float: none;
682
+ outline: 0;
683
+ position: fixed;
684
+ z-index: var(--jd-z-index-popup);
685
+ display: inline-block;
686
+ box-shadow: var(--jd-popup-box-shadow);
687
+ transform: translate3d(0, 0, 0);
688
+ z-index: var(--jd-z-index-context-menu);
689
+ }
690
+ .jodit-context-menu__content {
691
+ font-family: var(--jd-font-default);
692
+ font-size: var(--jd-font-size-default);
693
+ overflow: auto;
694
+ max-height: 300px;
695
+ padding: var(--jd-padding-default);
696
+ background: var(--jd-color-background-default);
697
+ overflow-scrolling: touch;
698
+ }
699
+ .jodit-context-menu_padding_false .jodit-context-menu__content {
700
+ padding: 0;
701
+ }
702
+ .jodit-context-menu_max-height_false .jodit-context-menu__content {
703
+ max-height: fit-content;
704
+ }
705
+ .jodit-context-menu .jodit-ui-button {
706
+ display: flex;
707
+ }
708
+ .jodit-context-menu__actions {
709
+ font-family: var(--jd-font-default);
710
+ font-size: var(--jd-font-size-default);
711
+ }
712
+ .jodit-context-menu__actions button {
713
+ width: 100%;
714
+ }
715
+ .jodit-context-menu_theme_dark .jodit-context-menu__content {
716
+ background-color: var(--jd-dark_background_color);
717
+ }
718
+
719
+ /*!
720
+ * Jodit Editor (https://xdsoft.net/jodit/)
721
+ * Released under MIT see LICENSE.txt in the project root for license information.
722
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
723
+ */
724
+ :root {
725
+ --jd-popup-box-shadow: 0 4px 1px -2px rgba(76, 76, 76, 0.2),
726
+ 0 3px 3px 0 rgba(76, 76, 76, 0.15), 0 1px 4px 0 rgba(76, 76, 76, 0.13);
727
+ }
728
+ .jodit-popup {
729
+ position: static;
730
+ width: auto;
731
+ max-width: none;
732
+ height: auto;
733
+ padding: 0;
734
+ border: 0;
735
+ margin: 0;
736
+ background: 0 0;
737
+ float: none;
738
+ outline: 0;
739
+ position: fixed;
740
+ z-index: var(--jd-z-index-popup);
741
+ display: inline-block;
742
+ box-shadow: var(--jd-popup-box-shadow);
743
+ transform: translate3d(0, 0, 0);
744
+ }
745
+ .jodit-popup__content {
746
+ font-family: var(--jd-font-default);
747
+ font-size: var(--jd-font-size-default);
748
+ overflow: auto;
749
+ max-height: 300px;
750
+ padding: var(--jd-padding-default);
751
+ background: var(--jd-color-background-default);
752
+ overflow-scrolling: touch;
753
+ }
754
+ .jodit-popup_padding_false .jodit-popup__content {
755
+ padding: 0;
756
+ }
757
+ .jodit-popup_max-height_false .jodit-popup__content {
758
+ max-height: fit-content;
759
+ }
760
+
761
+ /*!
762
+ * Jodit Editor (https://xdsoft.net/jodit/)
763
+ * Released under MIT see LICENSE.txt in the project root for license information.
764
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
765
+ */
766
+ .jodit-ui-button-icon-text__icon {
767
+ display: none;
768
+ }
769
+ .jodit-ui-button-icon-text__icon:not(:empty) {
770
+ display: inline-flex;
771
+ }
772
+ .jodit-ui-button-icon-text__text {
773
+ display: none;
774
+ }
775
+ .jodit-ui-button-icon-text__text:not(:empty) {
776
+ font-family: var(--jd-font-default);
777
+ font-size: var(--jd-font-size-default);
778
+ display: inline-flex;
779
+ flex-grow: 1;
780
+ justify-content: center;
781
+ }
782
+ .jodit-ui-button-icon-text_context_menu .jodit-ui-button-icon-text__text {
783
+ position: relative;
784
+ justify-content: left;
785
+ padding-left: var(--jd-padding-default);
786
+ }
787
+ .jodit-ui-button-icon-text_context_menu .jodit-ui-button-icon-text__text::before {
788
+ position: absolute;
789
+ top: calc(var(--jd-padding-default) * -1);
790
+ left: 0;
791
+ height: 35px;
792
+ border-left: 1px solid var(--jd-color-border);
793
+ content: '';
794
+ }
795
+ .jodit-ui-button-icon-text__icon:not(:empty) + .jodit-ui-button-icon-text__text:not(:empty) {
796
+ margin-left: var(--jd-padding-default);
797
+ }
798
+ .jodit-ui-button-icon-text__icon:empty + .jodit-ui-button-icon-text__text:not(:empty) {
799
+ padding: 0 var(--jd-padding-default);
800
+ }
801
+ .jodit-ui-button-clear {
802
+ position: relative;
803
+ box-sizing: border-box;
804
+ padding: 0;
805
+ border: 0;
806
+ appearance: none;
807
+ background: 0 0;
808
+ box-shadow: none;
809
+ font-style: normal;
810
+ outline: 0;
811
+ text-align: center;
812
+ text-decoration: none;
813
+ text-transform: none;
814
+ user-select: none;
815
+ }
816
+ .jodit-ui-button_clear {
817
+ position: relative;
818
+ box-sizing: border-box;
819
+ padding: 0;
820
+ border: 0;
821
+ appearance: none;
822
+ background: 0 0;
823
+ box-shadow: none;
824
+ font-style: normal;
825
+ outline: 0;
826
+ text-align: center;
827
+ text-decoration: none;
828
+ text-transform: none;
829
+ user-select: none;
830
+ }
831
+ .jodit-ui-button-sizes {
832
+ min-width: 34px;
833
+ height: 34px;
834
+ }
835
+ .jodit-ui-button-sizes .jodit-icon {
836
+ width: 14px;
837
+ height: 14px;
838
+ }
839
+ .jodit-ui-button-sizes button {
840
+ min-width: 34px;
841
+ height: 34px;
842
+ padding: 0;
843
+ appearance: none;
844
+ }
845
+ .jodit-ui-button-sizes_text-icons_true button {
846
+ padding: 0 var(--jd-padding-default);
847
+ }
848
+ .jodit-ui-button-sizes_size_tiny {
849
+ min-width: 16px;
850
+ height: 16px;
851
+ }
852
+ .jodit-ui-button-sizes_size_tiny .jodit-icon {
853
+ width: 8px;
854
+ height: 8px;
855
+ }
856
+ .jodit-ui-button-sizes_size_tiny button {
857
+ min-width: 16px;
858
+ height: 16px;
859
+ padding: 0;
860
+ appearance: none;
861
+ }
862
+ .jodit-ui-button-sizes_size_tiny_text-icons_true button {
863
+ padding: 0 var(--jd-padding-default);
864
+ }
865
+ .jodit-ui-button-sizes_size_xsmall {
866
+ min-width: 22px;
867
+ height: 22px;
868
+ }
869
+ .jodit-ui-button-sizes_size_xsmall .jodit-icon {
870
+ width: 10px;
871
+ height: 10px;
872
+ }
873
+ .jodit-ui-button-sizes_size_xsmall button {
874
+ min-width: 22px;
875
+ height: 22px;
876
+ padding: 0;
877
+ appearance: none;
878
+ }
879
+ .jodit-ui-button-sizes_size_xsmall_text-icons_true button {
880
+ padding: 0 var(--jd-padding-default);
881
+ }
882
+ .jodit-ui-button-sizes_size_small {
883
+ min-width: 28px;
884
+ height: 28px;
885
+ }
886
+ .jodit-ui-button-sizes_size_small .jodit-icon {
887
+ width: 12px;
888
+ height: 12px;
889
+ }
890
+ .jodit-ui-button-sizes_size_small button {
891
+ min-width: 28px;
892
+ height: 28px;
893
+ padding: 0;
894
+ appearance: none;
895
+ }
896
+ .jodit-ui-button-sizes_size_small_text-icons_true button {
897
+ padding: 0 var(--jd-padding-default);
898
+ }
899
+ .jodit-ui-button-sizes_size_large {
900
+ min-width: 40px;
901
+ height: 40px;
902
+ }
903
+ .jodit-ui-button-sizes_size_large .jodit-icon {
904
+ width: 16px;
905
+ height: 16px;
906
+ }
907
+ .jodit-ui-button-sizes_size_large button {
908
+ min-width: 40px;
909
+ height: 40px;
910
+ padding: 0;
911
+ appearance: none;
912
+ }
913
+ .jodit-ui-button-sizes_size_large_text-icons_true button {
914
+ padding: 0 var(--jd-padding-default);
915
+ }
916
+ .jodit-ui-button-variants_variant_default {
917
+ background-color: #e3e3e3;
918
+ color: #212529;
919
+ }
920
+ .jodit-ui-button-variants_variant_default svg {
921
+ fill: #212529;
922
+ stroke: #212529;
923
+ }
924
+ .jodit-ui-button-variants_variant_default [disabled] {
925
+ opacity: 0.7;
926
+ }
927
+ .jodit-ui-button-variants_variant_default:hover:not([disabled]) {
928
+ background-color: #c9cdd1;
929
+ color: #212529;
930
+ }
931
+ .jodit-ui-button-variants_variant_default:hover:not([disabled]) svg {
932
+ fill: #212529;
933
+ stroke: #212529;
934
+ }
935
+ .jodit-ui-button-variants_variant_default:active:not([disabled]) {
936
+ background-color: #dae0e5;
937
+ color: #212529;
938
+ }
939
+ .jodit-ui-button-variants_variant_default:active:not([disabled]) svg {
940
+ fill: #212529;
941
+ stroke: #212529;
942
+ }
943
+ .jodit-ui-button-variants_variant_default:focus:not([disabled]) {
944
+ outline: 1px dashed #dae0e5;
945
+ }
946
+ .jodit-ui-button-variants_variant_primary {
947
+ background-color: #007bff;
948
+ color: #fff;
949
+ }
950
+ .jodit-ui-button-variants_variant_primary svg {
951
+ fill: #fff;
952
+ stroke: #fff;
953
+ }
954
+ .jodit-ui-button-variants_variant_primary [disabled] {
955
+ opacity: 0.7;
956
+ }
957
+ .jodit-ui-button-variants_variant_primary:hover:not([disabled]) {
958
+ background-color: #0069d9;
959
+ color: #fff;
960
+ }
961
+ .jodit-ui-button-variants_variant_primary:hover:not([disabled]) svg {
962
+ fill: #fff;
963
+ stroke: #fff;
964
+ }
965
+ .jodit-ui-button-variants_variant_primary:active:not([disabled]) {
966
+ background-color: #0062cc;
967
+ color: #fff;
968
+ }
969
+ .jodit-ui-button-variants_variant_primary:active:not([disabled]) svg {
970
+ fill: #fff;
971
+ stroke: #fff;
972
+ }
973
+ .jodit-ui-button-variants_variant_primary:focus:not([disabled]) {
974
+ outline: 1px dashed #0062cc;
975
+ }
976
+ .jodit-ui-button-variants_variant_secondary {
977
+ background-color: #d8d8d8;
978
+ color: #212529;
979
+ border-radius: 0;
980
+ }
981
+ .jodit-ui-button-variants_variant_secondary svg {
982
+ fill: #212529;
983
+ stroke: #212529;
984
+ }
985
+ .jodit-ui-button-variants_variant_secondary [disabled] {
986
+ opacity: 0.7;
987
+ }
988
+ .jodit-ui-button-variants_variant_secondary:hover:not([disabled]) {
989
+ background-color: #c9cdd1;
990
+ color: #212529;
991
+ }
992
+ .jodit-ui-button-variants_variant_secondary:hover:not([disabled]) svg {
993
+ fill: #212529;
994
+ stroke: #212529;
995
+ }
996
+ .jodit-ui-button-variants_variant_secondary:active:not([disabled]) {
997
+ background-color: #dae0e5;
998
+ color: #212529;
999
+ }
1000
+ .jodit-ui-button-variants_variant_secondary:active:not([disabled]) svg {
1001
+ fill: #212529;
1002
+ stroke: #212529;
1003
+ }
1004
+ .jodit-ui-button-variants_variant_secondary:focus:not([disabled]) {
1005
+ outline: 1px dashed #dae0e5;
1006
+ }
1007
+ .jodit-ui-button-variants_variant_success {
1008
+ background-color: #28a745;
1009
+ color: #fff;
1010
+ }
1011
+ .jodit-ui-button-variants_variant_success svg {
1012
+ fill: #fff;
1013
+ stroke: #fff;
1014
+ }
1015
+ .jodit-ui-button-variants_variant_success [disabled] {
1016
+ opacity: 0.7;
1017
+ }
1018
+ .jodit-ui-button-variants_variant_success:hover:not([disabled]) {
1019
+ background-color: #218838;
1020
+ color: #fff;
1021
+ }
1022
+ .jodit-ui-button-variants_variant_success:hover:not([disabled]) svg {
1023
+ fill: #fff;
1024
+ stroke: #fff;
1025
+ }
1026
+ .jodit-ui-button-variants_variant_success:active:not([disabled]) {
1027
+ background-color: #1e7e34;
1028
+ color: #fff;
1029
+ }
1030
+ .jodit-ui-button-variants_variant_success:active:not([disabled]) svg {
1031
+ fill: #fff;
1032
+ stroke: #fff;
1033
+ }
1034
+ .jodit-ui-button-variants_variant_success:focus:not([disabled]) {
1035
+ outline: 1px dashed #1e7e34;
1036
+ }
1037
+ .jodit-ui-button-variants_variant_danger {
1038
+ background-color: #dc3545;
1039
+ color: #fff;
1040
+ }
1041
+ .jodit-ui-button-variants_variant_danger svg {
1042
+ fill: #fff;
1043
+ stroke: #fff;
1044
+ }
1045
+ .jodit-ui-button-variants_variant_danger [disabled] {
1046
+ opacity: 0.7;
1047
+ }
1048
+ .jodit-ui-button-variants_variant_danger:hover:not([disabled]) {
1049
+ background-color: #c82333;
1050
+ color: #fff;
1051
+ }
1052
+ .jodit-ui-button-variants_variant_danger:hover:not([disabled]) svg {
1053
+ fill: #fff;
1054
+ stroke: #fff;
1055
+ }
1056
+ .jodit-ui-button-variants_variant_danger:active:not([disabled]) {
1057
+ background-color: #bd2130;
1058
+ color: #fff;
1059
+ }
1060
+ .jodit-ui-button-variants_variant_danger:active:not([disabled]) svg {
1061
+ fill: #fff;
1062
+ stroke: #fff;
1063
+ }
1064
+ .jodit-ui-button-variants_variant_danger:focus:not([disabled]) {
1065
+ outline: 1px dashed #bd2130;
1066
+ }
1067
+ .jodit-ui-button-style {
1068
+ display: inline-flex;
1069
+ align-items: center;
1070
+ justify-content: center;
1071
+ padding: 0 var(--jd-padding-default);
1072
+ border-radius: var(--jd-border-radius-default);
1073
+ color: var(--jd-color-text-icons);
1074
+ }
1075
+ .jodit-ui-button {
1076
+ position: relative;
1077
+ box-sizing: border-box;
1078
+ padding: 0;
1079
+ border: 0;
1080
+ appearance: none;
1081
+ background: 0 0;
1082
+ box-shadow: none;
1083
+ font-style: normal;
1084
+ outline: 0;
1085
+ text-align: center;
1086
+ text-decoration: none;
1087
+ text-transform: none;
1088
+ user-select: none;
1089
+ display: inline-flex;
1090
+ align-items: center;
1091
+ justify-content: center;
1092
+ padding: 0 var(--jd-padding-default);
1093
+ border-radius: var(--jd-border-radius-default);
1094
+ color: var(--jd-color-text-icons);
1095
+ cursor: pointer;
1096
+ min-width: 34px;
1097
+ height: 34px;
1098
+ }
1099
+ .jodit-ui-button:hover:not([disabled]),
1100
+ .jodit-ui-button:focus-visible:not([disabled]) {
1101
+ background-color: var(--jd-color-button-background-hover);
1102
+ opacity: 1;
1103
+ outline: 0;
1104
+ }
1105
+ .jodit-ui-button:active:not([disabled]),
1106
+ .jodit-ui-button[aria-pressed='true']:not([disabled]) {
1107
+ background-color: var(--jd-color-button-background-hover_opacity40);
1108
+ outline: 0;
1109
+ }
1110
+ .jodit-ui-button[aria-pressed='true']:hover:not([disabled]) {
1111
+ background-color: var(--jd-color-button-background-hover_opacity60);
1112
+ }
1113
+ .jodit-ui-button[disabled] {
1114
+ opacity: 0.3;
1115
+ pointer-events: none;
1116
+ }
1117
+ .jodit-ui-button .jodit-icon {
1118
+ width: 14px;
1119
+ height: 14px;
1120
+ }
1121
+ .jodit-ui-button button {
1122
+ min-width: 34px;
1123
+ height: 34px;
1124
+ padding: 0;
1125
+ appearance: none;
1126
+ }
1127
+ .jodit-ui-button_text-icons_true button {
1128
+ padding: 0 var(--jd-padding-default);
1129
+ }
1130
+ .jodit-ui-button_size_tiny {
1131
+ min-width: 16px;
1132
+ height: 16px;
1133
+ }
1134
+ .jodit-ui-button_size_tiny .jodit-icon {
1135
+ width: 8px;
1136
+ height: 8px;
1137
+ }
1138
+ .jodit-ui-button_size_tiny button {
1139
+ min-width: 16px;
1140
+ height: 16px;
1141
+ padding: 0;
1142
+ appearance: none;
1143
+ }
1144
+ .jodit-ui-button_size_tiny_text-icons_true button {
1145
+ padding: 0 var(--jd-padding-default);
1146
+ }
1147
+ .jodit-ui-button_size_xsmall {
1148
+ min-width: 22px;
1149
+ height: 22px;
1150
+ }
1151
+ .jodit-ui-button_size_xsmall .jodit-icon {
1152
+ width: 10px;
1153
+ height: 10px;
1154
+ }
1155
+ .jodit-ui-button_size_xsmall button {
1156
+ min-width: 22px;
1157
+ height: 22px;
1158
+ padding: 0;
1159
+ appearance: none;
1160
+ }
1161
+ .jodit-ui-button_size_xsmall_text-icons_true button {
1162
+ padding: 0 var(--jd-padding-default);
1163
+ }
1164
+ .jodit-ui-button_size_small {
1165
+ min-width: 28px;
1166
+ height: 28px;
1167
+ }
1168
+ .jodit-ui-button_size_small .jodit-icon {
1169
+ width: 12px;
1170
+ height: 12px;
1171
+ }
1172
+ .jodit-ui-button_size_small button {
1173
+ min-width: 28px;
1174
+ height: 28px;
1175
+ padding: 0;
1176
+ appearance: none;
1177
+ }
1178
+ .jodit-ui-button_size_small_text-icons_true button {
1179
+ padding: 0 var(--jd-padding-default);
1180
+ }
1181
+ .jodit-ui-button_size_large {
1182
+ min-width: 40px;
1183
+ height: 40px;
1184
+ }
1185
+ .jodit-ui-button_size_large .jodit-icon {
1186
+ width: 16px;
1187
+ height: 16px;
1188
+ }
1189
+ .jodit-ui-button_size_large button {
1190
+ min-width: 40px;
1191
+ height: 40px;
1192
+ padding: 0;
1193
+ appearance: none;
1194
+ }
1195
+ .jodit-ui-button_size_large_text-icons_true button {
1196
+ padding: 0 var(--jd-padding-default);
1197
+ }
1198
+ .jodit-ui-button__icon {
1199
+ display: none;
1200
+ }
1201
+ .jodit-ui-button__icon:not(:empty) {
1202
+ display: inline-flex;
1203
+ }
1204
+ .jodit-ui-button__text {
1205
+ display: none;
1206
+ }
1207
+ .jodit-ui-button__text:not(:empty) {
1208
+ font-family: var(--jd-font-default);
1209
+ font-size: var(--jd-font-size-default);
1210
+ display: inline-flex;
1211
+ flex-grow: 1;
1212
+ justify-content: center;
1213
+ }
1214
+ .jodit-ui-button_context_menu .jodit-ui-button__text {
1215
+ position: relative;
1216
+ justify-content: left;
1217
+ padding-left: var(--jd-padding-default);
1218
+ }
1219
+ .jodit-ui-button_context_menu .jodit-ui-button__text::before {
1220
+ position: absolute;
1221
+ top: calc(var(--jd-padding-default) * -1);
1222
+ left: 0;
1223
+ height: 35px;
1224
+ border-left: 1px solid var(--jd-color-border);
1225
+ content: '';
1226
+ }
1227
+ .jodit-ui-button__icon:not(:empty) + .jodit-ui-button__text:not(:empty) {
1228
+ margin-left: var(--jd-padding-default);
1229
+ }
1230
+ .jodit-ui-button__icon:empty + .jodit-ui-button__text:not(:empty) {
1231
+ padding: 0 var(--jd-padding-default);
1232
+ }
1233
+ .jodit-ui-button:focus:not([disabled]) {
1234
+ outline: 1px dashed var(--jd-color-background-selection);
1235
+ }
1236
+ .jodit-ui-button_variant_default {
1237
+ background-color: #e3e3e3;
1238
+ color: #212529;
1239
+ }
1240
+ .jodit-ui-button_variant_default svg {
1241
+ fill: #212529;
1242
+ stroke: #212529;
1243
+ }
1244
+ .jodit-ui-button_variant_default [disabled] {
1245
+ opacity: 0.7;
1246
+ }
1247
+ .jodit-ui-button_variant_default:hover:not([disabled]) {
1248
+ background-color: #c9cdd1;
1249
+ color: #212529;
1250
+ }
1251
+ .jodit-ui-button_variant_default:hover:not([disabled]) svg {
1252
+ fill: #212529;
1253
+ stroke: #212529;
1254
+ }
1255
+ .jodit-ui-button_variant_default:active:not([disabled]) {
1256
+ background-color: #dae0e5;
1257
+ color: #212529;
1258
+ }
1259
+ .jodit-ui-button_variant_default:active:not([disabled]) svg {
1260
+ fill: #212529;
1261
+ stroke: #212529;
1262
+ }
1263
+ .jodit-ui-button_variant_default:focus:not([disabled]) {
1264
+ outline: 1px dashed #dae0e5;
1265
+ }
1266
+ .jodit-ui-button_variant_primary {
1267
+ background-color: #007bff;
1268
+ color: #fff;
1269
+ }
1270
+ .jodit-ui-button_variant_primary svg {
1271
+ fill: #fff;
1272
+ stroke: #fff;
1273
+ }
1274
+ .jodit-ui-button_variant_primary [disabled] {
1275
+ opacity: 0.7;
1276
+ }
1277
+ .jodit-ui-button_variant_primary:hover:not([disabled]) {
1278
+ background-color: #0069d9;
1279
+ color: #fff;
1280
+ }
1281
+ .jodit-ui-button_variant_primary:hover:not([disabled]) svg {
1282
+ fill: #fff;
1283
+ stroke: #fff;
1284
+ }
1285
+ .jodit-ui-button_variant_primary:active:not([disabled]) {
1286
+ background-color: #0062cc;
1287
+ color: #fff;
1288
+ }
1289
+ .jodit-ui-button_variant_primary:active:not([disabled]) svg {
1290
+ fill: #fff;
1291
+ stroke: #fff;
1292
+ }
1293
+ .jodit-ui-button_variant_primary:focus:not([disabled]) {
1294
+ outline: 1px dashed #0062cc;
1295
+ }
1296
+ .jodit-ui-button_variant_secondary {
1297
+ background-color: #d8d8d8;
1298
+ color: #212529;
1299
+ border-radius: 0;
1300
+ }
1301
+ .jodit-ui-button_variant_secondary svg {
1302
+ fill: #212529;
1303
+ stroke: #212529;
1304
+ }
1305
+ .jodit-ui-button_variant_secondary [disabled] {
1306
+ opacity: 0.7;
1307
+ }
1308
+ .jodit-ui-button_variant_secondary:hover:not([disabled]) {
1309
+ background-color: #c9cdd1;
1310
+ color: #212529;
1311
+ }
1312
+ .jodit-ui-button_variant_secondary:hover:not([disabled]) svg {
1313
+ fill: #212529;
1314
+ stroke: #212529;
1315
+ }
1316
+ .jodit-ui-button_variant_secondary:active:not([disabled]) {
1317
+ background-color: #dae0e5;
1318
+ color: #212529;
1319
+ }
1320
+ .jodit-ui-button_variant_secondary:active:not([disabled]) svg {
1321
+ fill: #212529;
1322
+ stroke: #212529;
1323
+ }
1324
+ .jodit-ui-button_variant_secondary:focus:not([disabled]) {
1325
+ outline: 1px dashed #dae0e5;
1326
+ }
1327
+ .jodit-ui-button_variant_success {
1328
+ background-color: #28a745;
1329
+ color: #fff;
1330
+ }
1331
+ .jodit-ui-button_variant_success svg {
1332
+ fill: #fff;
1333
+ stroke: #fff;
1334
+ }
1335
+ .jodit-ui-button_variant_success [disabled] {
1336
+ opacity: 0.7;
1337
+ }
1338
+ .jodit-ui-button_variant_success:hover:not([disabled]) {
1339
+ background-color: #218838;
1340
+ color: #fff;
1341
+ }
1342
+ .jodit-ui-button_variant_success:hover:not([disabled]) svg {
1343
+ fill: #fff;
1344
+ stroke: #fff;
1345
+ }
1346
+ .jodit-ui-button_variant_success:active:not([disabled]) {
1347
+ background-color: #1e7e34;
1348
+ color: #fff;
1349
+ }
1350
+ .jodit-ui-button_variant_success:active:not([disabled]) svg {
1351
+ fill: #fff;
1352
+ stroke: #fff;
1353
+ }
1354
+ .jodit-ui-button_variant_success:focus:not([disabled]) {
1355
+ outline: 1px dashed #1e7e34;
1356
+ }
1357
+ .jodit-ui-button_variant_danger {
1358
+ background-color: #dc3545;
1359
+ color: #fff;
1360
+ }
1361
+ .jodit-ui-button_variant_danger svg {
1362
+ fill: #fff;
1363
+ stroke: #fff;
1364
+ }
1365
+ .jodit-ui-button_variant_danger [disabled] {
1366
+ opacity: 0.7;
1367
+ }
1368
+ .jodit-ui-button_variant_danger:hover:not([disabled]) {
1369
+ background-color: #c82333;
1370
+ color: #fff;
1371
+ }
1372
+ .jodit-ui-button_variant_danger:hover:not([disabled]) svg {
1373
+ fill: #fff;
1374
+ stroke: #fff;
1375
+ }
1376
+ .jodit-ui-button_variant_danger:active:not([disabled]) {
1377
+ background-color: #bd2130;
1378
+ color: #fff;
1379
+ }
1380
+ .jodit-ui-button_variant_danger:active:not([disabled]) svg {
1381
+ fill: #fff;
1382
+ stroke: #fff;
1383
+ }
1384
+ .jodit-ui-button_variant_danger:focus:not([disabled]) {
1385
+ outline: 1px dashed #bd2130;
1386
+ }
1387
+
1388
+ /*!
1389
+ * Jodit Editor (https://xdsoft.net/jodit/)
1390
+ * Released under MIT see LICENSE.txt in the project root for license information.
1391
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
1392
+ */
1393
+ .jodit-ui-list {
1394
+ display: flex;
1395
+ flex-direction: column;
1396
+ }
1397
+ .jodit-ui-list_mode_vertical .jodit-ui-group {
1398
+ flex-direction: column;
1399
+ border: 0;
1400
+ background-color: transparent;
1401
+ }
1402
+ .jodit-ui-list_mode_vertical .jodit-toolbar-button {
1403
+ height: auto;
1404
+ min-height: var(--jd-button-size);
1405
+ }
1406
+ .jodit-ui-list_mode_vertical .jodit-toolbar-button__button {
1407
+ width: 100%;
1408
+ height: auto;
1409
+ min-height: var(--jd-button-size);
1410
+ cursor: pointer;
1411
+ }
1412
+ .jodit-ui-list_mode_vertical .jodit-toolbar-button__text:not(:empty) {
1413
+ justify-content: left;
1414
+ }
1415
+ .jodit-ui-separator {
1416
+ padding: 0;
1417
+ border-right: 1px solid var(--jd-color-border);
1418
+ border-left: 0;
1419
+ margin: 2px;
1420
+ cursor: default;
1421
+ }
1422
+ .jodit-ui-break {
1423
+ width: 0;
1424
+ height: 0 !important;
1425
+ flex-basis: 100%;
1426
+ border-top: 1px solid var(--jd-color-border);
1427
+ }
1428
+ .jodit-ui-spacer {
1429
+ flex: 1;
1430
+ }
1431
+
1432
+ /*!
1433
+ * Jodit Editor (https://xdsoft.net/jodit/)
1434
+ * Released under MIT see LICENSE.txt in the project root for license information.
1435
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
1436
+ */
1437
+ .jodit-ui-group {
1438
+ display: inline-flex;
1439
+ max-width: 100%;
1440
+ flex: 0 0 auto;
1441
+ flex-shrink: 0;
1442
+ flex-wrap: wrap;
1443
+ }
1444
+ .jodit-ui-group_line_true {
1445
+ display: flex;
1446
+ justify-content: stretch;
1447
+ }
1448
+ .jodit-ui-group_separated_true:not(:last-child):not(.jodit-ui-group_before-spacer_true):after {
1449
+ content: '';
1450
+ padding: 0;
1451
+ border-right: 1px solid var(--jd-color-border);
1452
+ border-left: 0;
1453
+ margin: 2px;
1454
+ cursor: default;
1455
+ }
1456
+ .jodit-ui-group:last-child {
1457
+ border-bottom: 0;
1458
+ }
1459
+
1460
+ .jodit-ui-button-group {
1461
+ margin-bottom: var(--jd-padding-default);
1462
+ }
1463
+ .jodit-ui-button-group__label {
1464
+ display: block;
1465
+ margin-bottom: calc(var(--jd-padding-default) / 4);
1466
+ color: var(--jd-color-label);
1467
+ font-size: 0.8em;
1468
+ }
1469
+ .jodit-ui-button-group__options {
1470
+ display: flex;
1471
+ justify-content: flex-start;
1472
+ }
1473
+ .jodit-ui-button-group .jodit-ui-button:not(:last-child) {
1474
+ border-bottom-right-radius: 0;
1475
+ border-top-right-radius: 0;
1476
+ }
1477
+ .jodit-ui-button-group .jodit-ui-button + .jodit-ui-button {
1478
+ border-left: 1px solid var(--jd-color-button-background-hover_opacity40);
1479
+ border-bottom-left-radius: 0;
1480
+ border-top-left-radius: 0;
1481
+ }
1482
+ .jodit-ui-button-group .jodit-ui-button[aria-pressed='true']:not([disabled]) {
1483
+ border-left: 0;
1484
+ background-color: var(--jd-color-button-background-hover);
1485
+ box-shadow: inset 0 0 3px 0 var(--jd-color-dark);
1486
+ color: var(--jd-color-dark);
1487
+ outline: 0;
1488
+ }
1489
+ .jodit-ui-button-group .jodit-ui-button[aria-pressed='true']:not([disabled]) + .jodit-ui-button {
1490
+ border: 0;
1491
+ }
1492
+
1493
+ /*!
1494
+ * Jodit Editor (https://xdsoft.net/jodit/)
1495
+ * Released under MIT see LICENSE.txt in the project root for license information.
1496
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
1497
+ */
1498
+ :root {
1499
+ --jd-tooltip-color: #fff;
1500
+ --jd-tooltip-background-color: rgba(0, 0, 0, 0.7);
1501
+ --jd-tooltip-sfx-shadow: rgba(0, 0, 0, 0.15);
1502
+ --jd-tooltip-border-width: 0;
1503
+ --jd-tooltip-border-color: #e5e5e5;
1504
+ }
1505
+ .jodit-ui-tooltip {
1506
+ position: fixed;
1507
+ z-index: var(--jd-z-index-tooltip);
1508
+ width: auto;
1509
+ max-width: 120px;
1510
+ border-radius: 4px;
1511
+ animation-fill-mode: forwards;
1512
+ animation-timing-function: ease-out;
1513
+ background-clip: padding-box;
1514
+ background-color: var(--jd-tooltip-background-color);
1515
+ box-shadow: 0 0 0 var(--jd-tooltip-border-width) var(--jd-tooltip-border-color), 0 8px 20px var(--jd-tooltip-border-width) var(--jd-tooltip-sfx-shadow);
1516
+ color: var(--jd-tooltip-color);
1517
+ font-family: var(--jd-font-default);
1518
+ font-size: var(--jd-font-size-small);
1519
+ line-height: 1.4;
1520
+ opacity: 0;
1521
+ outline: none;
1522
+ text-rendering: optimizeLegibility;
1523
+ transform: translateX(-50%);
1524
+ transition: opacity 0.2s ease 0s;
1525
+ user-select: none;
1526
+ white-space: normal;
1527
+ }
1528
+ @media (max-width: 768px) {
1529
+ .jodit-ui-tooltip {
1530
+ display: none;
1531
+ }
1532
+ }
1533
+ .jodit-ui-tooltip__content {
1534
+ padding: calc(var(--jd-padding-default) / 2) calc(var(--jd-padding-default) * 1.5);
1535
+ }
1536
+ .jodit-ui-tooltip.jodit-ui-tooltip_visible_true {
1537
+ opacity: 1;
1538
+ }
1539
+
1540
+ /*!
1541
+ * Jodit Editor (https://xdsoft.net/jodit/)
1542
+ * Released under MIT see LICENSE.txt in the project root for license information.
1543
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
1544
+ */
1545
+ .jodit-dialog {
1546
+ font-family: var(--jd-font-default);
1547
+ font-size: var(--jd-font-size-default);
1548
+ position: absolute;
1549
+ display: none;
1550
+ width: 0;
1551
+ height: 0;
1552
+ box-sizing: border-box;
1553
+ border: 0;
1554
+ will-change: left, top, width, height;
1555
+ }
1556
+ .jodit-dialog_moved_true {
1557
+ user-select: none;
1558
+ }
1559
+ .jodit-dialog * {
1560
+ box-sizing: border-box;
1561
+ }
1562
+ .jodit-dialog .jodit_elfinder,
1563
+ .jodit-dialog .jodit_elfinder * {
1564
+ box-sizing: initial;
1565
+ }
1566
+ .jodit-dialog__overlay {
1567
+ position: fixed;
1568
+ z-index: var(--jd-z-index-dialog-overlay);
1569
+ top: 0;
1570
+ left: 0;
1571
+ display: none;
1572
+ overflow: auto;
1573
+ width: 100%;
1574
+ height: 100%;
1575
+ background-color: rgba(0, 0, 0, 0.5);
1576
+ text-align: center;
1577
+ white-space: nowrap;
1578
+ }
1579
+ .jodit-dialog_static_true .jodit-dialog__overlay {
1580
+ display: none;
1581
+ }
1582
+ .jodit-dialog_modal_true .jodit-dialog__overlay {
1583
+ display: block;
1584
+ }
1585
+ .jodit-dialog_active_true {
1586
+ display: block;
1587
+ }
1588
+ .jodit-dialog__panel {
1589
+ position: fixed;
1590
+ z-index: var(--jd-z-index-dialog);
1591
+ top: 0;
1592
+ left: 0;
1593
+ display: flex;
1594
+ min-width: 200px;
1595
+ max-width: 100%;
1596
+ min-height: 100px;
1597
+ max-height: 100%;
1598
+ flex-flow: column nowrap;
1599
+ background-color: #fff;
1600
+ --jd-box-shadow-blur: calc(var(--jd-padding-default) * 2);
1601
+ --jd-box-shadow-1: 0 var(--jd-padding-default) var(--jd-box-shadow-blur) rgba(0, 0, 0, 0.19);
1602
+ box-shadow: var(--jd-box-shadow-1), 0 6px 6px rgba(0, 0, 0, 0.23);
1603
+ text-align: left;
1604
+ white-space: normal;
1605
+ }
1606
+ @media (max-width: 480px) {
1607
+ .jodit-dialog:not(.jodit-dialog_adaptive_false) .jodit-dialog__panel {
1608
+ top: 0 !important;
1609
+ left: 0 !important;
1610
+ width: 100% !important;
1611
+ max-width: 100%;
1612
+ height: 100% !important;
1613
+ }
1614
+ }
1615
+ .jodit-dialog_static_true {
1616
+ position: relative;
1617
+ z-index: inherit;
1618
+ display: block;
1619
+ width: auto;
1620
+ height: auto;
1621
+ box-sizing: border-box;
1622
+ }
1623
+ .jodit-dialog_static_true .jodit-dialog__panel {
1624
+ position: relative;
1625
+ z-index: inherit;
1626
+ top: auto !important;
1627
+ left: auto !important;
1628
+ width: 100% !important;
1629
+ border: 1px solid var(--jd-color-border);
1630
+ box-shadow: none;
1631
+ }
1632
+ .jodit-dialog_theme_dark,
1633
+ .jodit-dialog_theme_dark .jodit-dialog__panel {
1634
+ background-color: var(--jd-dark_background_darknes);
1635
+ color: var(--jd-dark-text-color);
1636
+ }
1637
+ .jodit-dialog__header {
1638
+ display: flex;
1639
+ min-height: 50px;
1640
+ justify-content: space-between;
1641
+ border-bottom: 1px solid var(--jd-color-border);
1642
+ cursor: move;
1643
+ text-align: left;
1644
+ }
1645
+ .jodit-dialog__header-toolbar,
1646
+ .jodit-dialog__header-title {
1647
+ display: flex;
1648
+ flex-shrink: 3;
1649
+ align-items: center;
1650
+ padding: 0 var(--jd-padding-default);
1651
+ margin: 0;
1652
+ font-size: 18px;
1653
+ font-weight: 400;
1654
+ line-height: 48px;
1655
+ vertical-align: top;
1656
+ }
1657
+ @media (max-width: 480px) {
1658
+ .jodit-dialog__header-toolbar {
1659
+ padding-left: 0;
1660
+ }
1661
+ }
1662
+ .jodit-dialog__header-button {
1663
+ height: 48px;
1664
+ flex-basis: 48px;
1665
+ color: #222;
1666
+ font-size: 28px;
1667
+ line-height: 48px;
1668
+ text-align: center;
1669
+ text-decoration: none;
1670
+ transition: background-color 0.2s ease 0s;
1671
+ }
1672
+ .jodit-dialog__header-button:hover {
1673
+ background-color: var(--jd-color-background-button-hover);
1674
+ }
1675
+ .jodit-dialog__header .jodit_toolbar {
1676
+ border: 0;
1677
+ background: transparent;
1678
+ box-shadow: none;
1679
+ }
1680
+ .jodit-dialog__header .jodit_toolbar > li.jodit-toolbar-button .jodit-input {
1681
+ width: auto;
1682
+ padding-left: var(--jd-padding-default);
1683
+ }
1684
+ @media (max-width: 480px) {
1685
+ .jodit-dialog:not(.jodit-dialog_adaptive_false) .jodit-dialog__header {
1686
+ flex-direction: column;
1687
+ }
1688
+ }
1689
+ .jodit-dialog_slim_true .jodit-dialog__header {
1690
+ min-height: 10px;
1691
+ }
1692
+ .jodit-dialog_slim_true .jodit-dialog__header-toolbar,
1693
+ .jodit-dialog_slim_true .jodit-dialog__header-title {
1694
+ padding: 0 calc(var(--jd-padding-default) / 4);
1695
+ }
1696
+ .jodit-dialog_theme_dark .jodit-dialog__header {
1697
+ border-color: var(--jd-color-dark);
1698
+ }
1699
+ .jodit-dialog_fullsize_true .jodit-dialog__header {
1700
+ cursor: default;
1701
+ }
1702
+ .jodit-dialog__content {
1703
+ overflow: auto;
1704
+ min-height: 100px;
1705
+ flex: 1;
1706
+ }
1707
+ .jodit-dialog__content .jodit-form__group {
1708
+ padding: 0 var(--jd-padding-default);
1709
+ margin-bottom: calc(var(--jd-padding-default) * 1.5);
1710
+ }
1711
+ .jodit-dialog__content .jodit-form__group:first-child {
1712
+ margin-top: var(--jd-padding-default);
1713
+ }
1714
+ .jodit-dialog__content .jodit-form__group label + .jodit-select,
1715
+ .jodit-dialog__content .jodit-form__group label + .jodit-grid,
1716
+ .jodit-dialog__content .jodit-form__group label + .jodit-input_group,
1717
+ .jodit-dialog__content .jodit-form__group label + input {
1718
+ margin-top: calc(var(--jd-padding-default) / 2);
1719
+ }
1720
+ .jodit-dialog__content .jodit-form__group .jodit-input_group {
1721
+ display: table;
1722
+ width: 100%;
1723
+ border-collapse: separate;
1724
+ }
1725
+ .jodit-dialog__content .jodit-form__group .jodit-input_group > * {
1726
+ display: table-cell;
1727
+ height: 34px;
1728
+ vertical-align: middle;
1729
+ }
1730
+ .jodit-dialog__content .jodit-form__group .jodit-input_group > input {
1731
+ margin: 0 !important;
1732
+ }
1733
+ .jodit-dialog__content .jodit-form__group .jodit-input_group > input:not([class*='col-']) {
1734
+ width: 100%;
1735
+ }
1736
+ .jodit-dialog__content .jodit-form__group .jodit-input_group-buttons {
1737
+ width: 1%;
1738
+ font-size: 0;
1739
+ vertical-align: middle;
1740
+ white-space: nowrap;
1741
+ }
1742
+ .jodit-dialog__content .jodit-form__group .jodit-input_group-buttons > .jodit-button {
1743
+ height: 34px;
1744
+ border: 1px solid var(--jd-color-border);
1745
+ border-radius: 0;
1746
+ margin-left: -1px;
1747
+ line-height: 34px;
1748
+ }
1749
+ .jodit-dialog__footer {
1750
+ display: none;
1751
+ flex-wrap: nowrap;
1752
+ justify-content: space-between;
1753
+ padding: var(--jd-padding-default);
1754
+ }
1755
+ .jodit-dialog__footer button {
1756
+ margin-right: calc(var(--jd-padding-default) / 2);
1757
+ }
1758
+ .jodit-dialog__footer button:last-child {
1759
+ margin-right: 0;
1760
+ }
1761
+ .jodit-dialog__column {
1762
+ display: flex;
1763
+ }
1764
+ .jodit-dialog__resizer {
1765
+ display: none;
1766
+ position: relative;
1767
+ }
1768
+ .jodit-dialog__resizer svg {
1769
+ position: absolute;
1770
+ right: 0;
1771
+ bottom: 0;
1772
+ overflow: hidden;
1773
+ width: 12px;
1774
+ height: 12px;
1775
+ cursor: nwse-resize;
1776
+ fill: var(--jd-color-gray-dark);
1777
+ user-select: none;
1778
+ }
1779
+ .jodit-dialog_resizable_true .jodit-dialog__resizer {
1780
+ display: block;
1781
+ }
1782
+ @media (max-width: 480px) {
1783
+ .jodit-dialog__resizer {
1784
+ display: none;
1785
+ }
1786
+ }
1787
+ .jodit-dialog_prompt {
1788
+ min-width: 200px;
1789
+ max-width: 300px;
1790
+ padding: var(--jd-padding-default);
1791
+ word-break: break-all;
1792
+ }
1793
+ .jodit-dialog_prompt label {
1794
+ display: block;
1795
+ margin-bottom: calc(var(--jd-padding-default) / 2);
1796
+ }
1797
+ .jodit-dialog_alert {
1798
+ min-width: 200px;
1799
+ max-width: 300px;
1800
+ padding: var(--jd-padding-default);
1801
+ word-break: break-all;
1802
+ }
1803
+ .jodit-dialog_footer_true .jodit-dialog__footer {
1804
+ display: flex;
1805
+ }
1806
+ .jodit_fullsize .jodit-dialog__panel {
1807
+ top: 0 !important;
1808
+ right: 0 !important;
1809
+ bottom: 0 !important;
1810
+ left: 0 !important;
1811
+ width: 100% !important;
1812
+ height: 100% !important;
1813
+ }
1814
+ .jodit_fullsize .jodit-dialog__panel .jodit-dialog__resizer {
1815
+ display: none;
1816
+ }
1817
+ .jodit-dialog .jodit-ui-messages {
1818
+ z-index: var(--jd-z-index-dialog);
1819
+ }
1820
+
1821
+ /*!
1822
+ * Jodit Editor (https://xdsoft.net/jodit/)
1823
+ * Released under MIT see LICENSE.txt in the project root for license information.
1824
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
1825
+ */
1826
+ .jodit-toolbar__box:not(:empty) {
1827
+ --jd-color-background-default: var(--jd-color-panel);
1828
+ overflow: hidden;
1829
+ border-radius: var(--jd-border-radius-default) var(--jd-border-radius-default) 0 0;
1830
+ border-bottom: 1px solid var(--jd-color-border);
1831
+ background-color: var(--jd-color-background-default);
1832
+ }
1833
+ .jodit-toolbar__box:not(:empty) .jodit-toolbar-editor-collection:after {
1834
+ background-color: var(--jd-color-panel);
1835
+ }
1836
+
1837
+ /*!
1838
+ * Jodit Editor (https://xdsoft.net/jodit/)
1839
+ * Released under MIT see LICENSE.txt in the project root for license information.
1840
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
1841
+ */
1842
+ :root {
1843
+ --jd-em-color-border: #b6d4fe;
1844
+ --jd-em-color-bg: #cfe2ff;
1845
+ --jd-em-color-color: #084298;
1846
+ --jd-em-border-radius: 0.375rem;
1847
+ --jd-em-padding: calc(1rem / 2) 1rem;
1848
+ --jd-em-font-size: 1rem;
1849
+ }
1850
+ .jodit-ui-messages {
1851
+ position: absolute;
1852
+ z-index: 3;
1853
+ right: 0;
1854
+ bottom: 0;
1855
+ overflow: visible;
1856
+ width: 0;
1857
+ height: 0;
1858
+ }
1859
+ .jodit-ui-message {
1860
+ position: absolute;
1861
+ right: calc(var(--jd-padding-default) / 2);
1862
+ bottom: 0;
1863
+ display: block;
1864
+ padding: var(--jd-em-padding);
1865
+ border: 1px solid var(--jd-em-color-border);
1866
+ border-radius: var(--jd-em-border-radius);
1867
+ background: var(--jd-em-color-bg);
1868
+ color: var(--jd-em-color-color);
1869
+ cursor: pointer;
1870
+ font-size: var(--jd-em-font-size);
1871
+ opacity: 0;
1872
+ transition: opacity 0.1s linear, bottom 0.3s linear, transform 0.1s ease-out;
1873
+ white-space: pre;
1874
+ }
1875
+ .jodit-ui-message_active_true {
1876
+ opacity: 1;
1877
+ }
1878
+ .jodit-ui-message:active {
1879
+ transform: scale(0.76);
1880
+ }
1881
+ .jodit-ui-message_variant_secondary {
1882
+ --jd-em-color-border: #d3d6d8;
1883
+ --jd-em-color-bg: #e2e3e5;
1884
+ --jd-em-color-color: #41464b;
1885
+ border-color: var(--jd-em-color-border);
1886
+ background: var(--jd-em-color-bg);
1887
+ color: var(--jd-em-color-color);
1888
+ }
1889
+ .jodit-ui-message_variant_error,
1890
+ .jodit-ui-message_variant_danger {
1891
+ --jd-em-color-border: #f5c2c7;
1892
+ --jd-em-color-bg: #f8d7da;
1893
+ --jd-em-color-color: #842029;
1894
+ border-color: var(--jd-em-color-border);
1895
+ background: var(--jd-em-color-bg);
1896
+ color: var(--jd-em-color-color);
1897
+ }
1898
+ .jodit-ui-message_variant_success {
1899
+ --jd-em-color-border: #badbcc;
1900
+ --jd-em-color-bg: #d1e7dd;
1901
+ --jd-em-color-color: #0f5132;
1902
+ border-color: var(--jd-em-color-border);
1903
+ background: var(--jd-em-color-bg);
1904
+ color: var(--jd-em-color-color);
1905
+ }
1906
+
1907
+ .jodit-ui-label {
1908
+ display: block;
1909
+ margin-bottom: calc(var(--jd-padding-default) / 4);
1910
+ color: var(--jd-color-label);
1911
+ font-size: 0.8em;
1912
+ }
1913
+ .jodit-ui-input {
1914
+ display: flex;
1915
+ flex-direction: column;
1916
+ margin-bottom: var(--jd-padding-default);
1917
+ }
1918
+ .jodit-ui-input__input {
1919
+ font-family: var(--jd-font-default);
1920
+ font-size: var(--jd-font-size-default);
1921
+ width: 100%;
1922
+ height: var(--jd-input-height);
1923
+ box-sizing: border-box;
1924
+ padding: 0 var(--jd-padding-default);
1925
+ border: 1px solid var(--jd-color-border);
1926
+ border-radius: 0;
1927
+ -webkit-appearance: none;
1928
+ -moz-appearance: none;
1929
+ appearance: none;
1930
+ background-color: var(--jd-color-white);
1931
+ line-height: var(--jd-input-height);
1932
+ outline: none;
1933
+ border: 0;
1934
+ }
1935
+ .jodit-ui-input__input[disabled] {
1936
+ background-color: #f0f0f0;
1937
+ color: var(--jd-color-border);
1938
+ }
1939
+ .jodit-ui-input__input_has-error_true {
1940
+ border-color: var(--jd-color-red);
1941
+ }
1942
+ .jodit-ui-input__input:focus {
1943
+ outline: 0;
1944
+ }
1945
+ .jodit-ui-input_theme_dark .jodit-ui-input__input {
1946
+ background-color: var(--jd-color-gray);
1947
+ }
1948
+ .jodit-ui-input_has-error_true .jodit-ui-input__input {
1949
+ border-color: var(--jd-color-red);
1950
+ }
1951
+ .jodit-ui-input__error,
1952
+ .jodit-ui-input__label {
1953
+ display: block;
1954
+ margin-bottom: calc(var(--jd-padding-default) / 4);
1955
+ color: var(--jd-color-label);
1956
+ font-size: 0.8em;
1957
+ }
1958
+ .jodit-ui-input_has-error_true .jodit-ui-input__label,
1959
+ .jodit-ui-input__error {
1960
+ color: var(--jd-color-error);
1961
+ }
1962
+ .jodit-ui-input__wrapper {
1963
+ display: flex;
1964
+ min-width: 200px;
1965
+ align-items: center;
1966
+ justify-content: stretch;
1967
+ border: 1px solid var(--jd-color-border);
1968
+ background-color: var(--jd-color-white);
1969
+ }
1970
+ @media (max-width: 480px) {
1971
+ .jodit-ui-input__wrapper {
1972
+ min-width: 140px;
1973
+ }
1974
+ }
1975
+ .jodit-ui-input_theme_dark .jodit-ui-input__wrapper {
1976
+ border-color: var(--jd-color-border);
1977
+ background-color: var(--jd-color-gray);
1978
+ }
1979
+ .jodit-ui-input_focused_true .jodit-ui-input__wrapper {
1980
+ border-color: var(--jd-color-border-selected);
1981
+ }
1982
+ .jodit-ui-input__icon:not(:empty) {
1983
+ display: flex;
1984
+ align-items: center;
1985
+ padding: 0 var(--jd-padding-default);
1986
+ }
1987
+ .jodit-ui-input__icon:not(:empty) svg {
1988
+ width: 16px;
1989
+ height: 16px;
1990
+ fill: var(--jd-color-border);
1991
+ }
1992
+ .jodit-ui-input__icon:not(:empty) + .jodit-ui-input__input {
1993
+ padding-left: 0;
1994
+ }
1995
+ .jodit-ui-input__clear {
1996
+ display: flex;
1997
+ align-items: center;
1998
+ padding: 0 var(--jd-padding-default) 0 0;
1999
+ opacity: 0.8;
2000
+ }
2001
+ .jodit-ui-input__clear:active {
2002
+ opacity: 1;
2003
+ transform: scale(1.1, 1.1);
2004
+ }
2005
+ .jodit-ui-input__clear svg {
2006
+ width: 12px;
2007
+ height: 12px;
2008
+ fill: var(--jd-color-border);
2009
+ }
2010
+ .jodit-ui-input_theme_dark .jodit-ui-input__icon svg,
2011
+ .jodit-ui-input_theme_dark .jodit-ui-input__clear svg {
2012
+ fill: var(--jd-color-dark);
2013
+ }
2014
+ .jodit-ui-block .jodit-ui-input {
2015
+ margin-bottom: 0;
2016
+ }
2017
+
2018
+ .jodit-ui-select {
2019
+ display: flex;
2020
+ flex-direction: column;
2021
+ margin-bottom: var(--jd-padding-default);
2022
+ }
2023
+ .jodit-ui-select__input {
2024
+ font-family: var(--jd-font-default);
2025
+ font-size: var(--jd-font-size-default);
2026
+ width: 100%;
2027
+ height: var(--jd-input-height);
2028
+ box-sizing: border-box;
2029
+ padding: 0 var(--jd-padding-default);
2030
+ border: 1px solid var(--jd-color-border);
2031
+ border-radius: 0;
2032
+ -webkit-appearance: none;
2033
+ -moz-appearance: none;
2034
+ appearance: none;
2035
+ background-color: var(--jd-color-white);
2036
+ line-height: var(--jd-input-height);
2037
+ outline: none;
2038
+ border: 0;
2039
+ }
2040
+ .jodit-ui-select__input[disabled] {
2041
+ background-color: #f0f0f0;
2042
+ color: var(--jd-color-border);
2043
+ }
2044
+ .jodit-ui-select__input_has-error_true {
2045
+ border-color: var(--jd-color-red);
2046
+ }
2047
+ .jodit-ui-select__input:focus {
2048
+ outline: 0;
2049
+ }
2050
+ .jodit-ui-select_theme_dark .jodit-ui-select__input {
2051
+ background-color: var(--jd-color-gray);
2052
+ }
2053
+ .jodit-ui-select_has-error_true .jodit-ui-select__input {
2054
+ border-color: var(--jd-color-red);
2055
+ }
2056
+ .jodit-ui-select__error,
2057
+ .jodit-ui-select__label {
2058
+ display: block;
2059
+ margin-bottom: calc(var(--jd-padding-default) / 4);
2060
+ color: var(--jd-color-label);
2061
+ font-size: 0.8em;
2062
+ }
2063
+ .jodit-ui-select_has-error_true .jodit-ui-select__label,
2064
+ .jodit-ui-select__error {
2065
+ color: var(--jd-color-error);
2066
+ }
2067
+ .jodit-ui-select__wrapper {
2068
+ display: flex;
2069
+ min-width: 200px;
2070
+ align-items: center;
2071
+ justify-content: stretch;
2072
+ border: 1px solid var(--jd-color-border);
2073
+ background-color: var(--jd-color-white);
2074
+ }
2075
+ @media (max-width: 480px) {
2076
+ .jodit-ui-select__wrapper {
2077
+ min-width: 140px;
2078
+ }
2079
+ }
2080
+ .jodit-ui-select_theme_dark .jodit-ui-select__wrapper {
2081
+ border-color: var(--jd-color-border);
2082
+ background-color: var(--jd-color-gray);
2083
+ }
2084
+ .jodit-ui-select_focused_true .jodit-ui-select__wrapper {
2085
+ border-color: var(--jd-color-border-selected);
2086
+ }
2087
+ .jodit-ui-select__icon:not(:empty) {
2088
+ display: flex;
2089
+ align-items: center;
2090
+ padding: 0 var(--jd-padding-default);
2091
+ }
2092
+ .jodit-ui-select__icon:not(:empty) svg {
2093
+ width: 16px;
2094
+ height: 16px;
2095
+ fill: var(--jd-color-border);
2096
+ }
2097
+ .jodit-ui-select__icon:not(:empty) + .jodit-ui-select__input {
2098
+ padding-left: 0;
2099
+ }
2100
+ .jodit-ui-select__clear {
2101
+ display: flex;
2102
+ align-items: center;
2103
+ padding: 0 var(--jd-padding-default) 0 0;
2104
+ opacity: 0.8;
2105
+ }
2106
+ .jodit-ui-select__clear:active {
2107
+ opacity: 1;
2108
+ transform: scale(1.1, 1.1);
2109
+ }
2110
+ .jodit-ui-select__clear svg {
2111
+ width: 12px;
2112
+ height: 12px;
2113
+ fill: var(--jd-color-border);
2114
+ }
2115
+ .jodit-ui-select_theme_dark .jodit-ui-select__icon svg,
2116
+ .jodit-ui-select_theme_dark .jodit-ui-select__clear svg {
2117
+ fill: var(--jd-color-dark);
2118
+ }
2119
+ .jodit-ui-select__input {
2120
+ padding-right: calc(var(--jd-padding-default) * 2);
2121
+ background-image: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iNC45NSIgaGVpZ2h0PSIxMCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxLjQxIDQuNjcgMi40OCAzLjE4IDMuNTQgNC42NyAxLjQxIDQuNjciLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMy41NCA1LjMzIDIuNDggNi44MiAxLjQxIDUuMzMgMy41NCA1LjMzIi8+PC9zdmc+);
2122
+ background-position: 98% 50%;
2123
+ background-repeat: no-repeat;
2124
+ }
2125
+ .jodit-ui-select_size_tiny {
2126
+ margin-bottom: 0;
2127
+ }
2128
+ .jodit-ui-select_size_tiny .jodit-ui-select__input {
2129
+ --jd-height: calc(var(--jd-input-height) / 1.8);
2130
+ height: var(--jd-height);
2131
+ line-height: var(--jd-height);
2132
+ }
2133
+ .jodit-ui-select_variant_outline .jodit-ui-select__wrapper {
2134
+ border: 0;
2135
+ }
2136
+ .jodit-ui-select_variant_outline .jodit-ui-select__wrapper select {
2137
+ outline: 0;
2138
+ }
2139
+ .jodit-ui-select_width_auto {
2140
+ width: auto;
2141
+ }
2142
+ .jodit-ui-select_width_auto .jodit-ui-select__wrapper {
2143
+ min-width: auto;
2144
+ }
2145
+
2146
+ .jodit-ui-text-area {
2147
+ display: flex;
2148
+ flex-direction: column;
2149
+ margin-bottom: var(--jd-padding-default);
2150
+ width: 100%;
2151
+ }
2152
+ .jodit-ui-text-area__input {
2153
+ font-family: var(--jd-font-default);
2154
+ font-size: var(--jd-font-size-default);
2155
+ width: 100%;
2156
+ height: var(--jd-input-height);
2157
+ box-sizing: border-box;
2158
+ padding: 0 var(--jd-padding-default);
2159
+ border: 1px solid var(--jd-color-border);
2160
+ border-radius: 0;
2161
+ -webkit-appearance: none;
2162
+ -moz-appearance: none;
2163
+ appearance: none;
2164
+ background-color: var(--jd-color-white);
2165
+ line-height: var(--jd-input-height);
2166
+ outline: none;
2167
+ border: 0;
2168
+ }
2169
+ .jodit-ui-text-area__input[disabled] {
2170
+ background-color: #f0f0f0;
2171
+ color: var(--jd-color-border);
2172
+ }
2173
+ .jodit-ui-text-area__input_has-error_true {
2174
+ border-color: var(--jd-color-red);
2175
+ }
2176
+ .jodit-ui-text-area__input:focus {
2177
+ outline: 0;
2178
+ }
2179
+ .jodit-ui-text-area_theme_dark .jodit-ui-text-area__input {
2180
+ background-color: var(--jd-color-gray);
2181
+ }
2182
+ .jodit-ui-text-area_has-error_true .jodit-ui-text-area__input {
2183
+ border-color: var(--jd-color-red);
2184
+ }
2185
+ .jodit-ui-text-area__error,
2186
+ .jodit-ui-text-area__label {
2187
+ display: block;
2188
+ margin-bottom: calc(var(--jd-padding-default) / 4);
2189
+ color: var(--jd-color-label);
2190
+ font-size: 0.8em;
2191
+ }
2192
+ .jodit-ui-text-area_has-error_true .jodit-ui-text-area__label,
2193
+ .jodit-ui-text-area__error {
2194
+ color: var(--jd-color-error);
2195
+ }
2196
+ .jodit-ui-text-area__wrapper {
2197
+ display: flex;
2198
+ min-width: 200px;
2199
+ align-items: center;
2200
+ justify-content: stretch;
2201
+ border: 1px solid var(--jd-color-border);
2202
+ background-color: var(--jd-color-white);
2203
+ }
2204
+ @media (max-width: 480px) {
2205
+ .jodit-ui-text-area__wrapper {
2206
+ min-width: 140px;
2207
+ }
2208
+ }
2209
+ .jodit-ui-text-area_theme_dark .jodit-ui-text-area__wrapper {
2210
+ border-color: var(--jd-color-border);
2211
+ background-color: var(--jd-color-gray);
2212
+ }
2213
+ .jodit-ui-text-area_focused_true .jodit-ui-text-area__wrapper {
2214
+ border-color: var(--jd-color-border-selected);
2215
+ }
2216
+ .jodit-ui-text-area__icon:not(:empty) {
2217
+ display: flex;
2218
+ align-items: center;
2219
+ padding: 0 var(--jd-padding-default);
2220
+ }
2221
+ .jodit-ui-text-area__icon:not(:empty) svg {
2222
+ width: 16px;
2223
+ height: 16px;
2224
+ fill: var(--jd-color-border);
2225
+ }
2226
+ .jodit-ui-text-area__icon:not(:empty) + .jodit-ui-text-area__input {
2227
+ padding-left: 0;
2228
+ }
2229
+ .jodit-ui-text-area__clear {
2230
+ display: flex;
2231
+ align-items: center;
2232
+ padding: 0 var(--jd-padding-default) 0 0;
2233
+ opacity: 0.8;
2234
+ }
2235
+ .jodit-ui-text-area__clear:active {
2236
+ opacity: 1;
2237
+ transform: scale(1.1, 1.1);
2238
+ }
2239
+ .jodit-ui-text-area__clear svg {
2240
+ width: 12px;
2241
+ height: 12px;
2242
+ fill: var(--jd-color-border);
2243
+ }
2244
+ .jodit-ui-text-area_theme_dark .jodit-ui-text-area__icon svg,
2245
+ .jodit-ui-text-area_theme_dark .jodit-ui-text-area__clear svg {
2246
+ fill: var(--jd-color-dark);
2247
+ }
2248
+ .jodit-ui-text-area__wrapper {
2249
+ flex: 1;
2250
+ }
2251
+ .jodit-ui-text-area__input {
2252
+ height: 100%;
2253
+ min-height: 60px;
2254
+ }
2255
+
2256
+ .jodit-ui-checkbox {
2257
+ display: flex;
2258
+ flex-direction: row-reverse;
2259
+ align-items: center;
2260
+ justify-content: flex-end;
2261
+ margin-bottom: var(--jd-padding-default);
2262
+ }
2263
+ .jodit-ui-checkbox__input {
2264
+ margin-right: var(--jd-padding-default);
2265
+ }
2266
+ .jodit-ui-checkbox_switch_true .jodit-ui-checkbox__wrapper {
2267
+ position: relative;
2268
+ display: inline-block;
2269
+ width: 60px;
2270
+ height: 34px;
2271
+ margin-right: var(--jd-padding-default);
2272
+ }
2273
+ .jodit-ui-checkbox_switch_true .jodit-ui-checkbox__wrapper input {
2274
+ width: 0;
2275
+ height: 0;
2276
+ opacity: 0;
2277
+ }
2278
+ .jodit-ui-checkbox_switch_true .jodit-ui-checkbox__switch-slider {
2279
+ position: absolute;
2280
+ top: 0;
2281
+ right: 0;
2282
+ bottom: 0;
2283
+ left: 0;
2284
+ background-color: #ccc;
2285
+ border-radius: 34px;
2286
+ cursor: pointer;
2287
+ transition: 0.4s;
2288
+ }
2289
+ .jodit-ui-checkbox_switch_true .jodit-ui-checkbox__switch-slider:before {
2290
+ position: absolute;
2291
+ bottom: 4px;
2292
+ left: 4px;
2293
+ width: 26px;
2294
+ height: 26px;
2295
+ background-color: white;
2296
+ border-radius: 50%;
2297
+ content: '';
2298
+ transition: 0.4s;
2299
+ }
2300
+ .jodit-ui-checkbox_switch_true.jodit-ui-checkbox_checked_true .jodit-ui-checkbox__switch-slider {
2301
+ background-color: #2196f3;
2302
+ }
2303
+ .jodit-ui-checkbox_switch_true.jodit-ui-checkbox_checked_true .jodit-ui-checkbox__switch-slider:before {
2304
+ transform: translateX(26px);
2305
+ }
2306
+ .jodit-ui-checkbox_switch_true.jodit-ui-checkbox_focused_true .jodit-ui-checkbox__switch-slider {
2307
+ box-shadow: 0 0 1px #2196f3;
2308
+ }
2309
+ .jodit-ui-block .jodit-ui-checkbox {
2310
+ margin-bottom: 0;
2311
+ }
2312
+
2313
+ .jodit-ui-file-input {
2314
+ position: relative;
2315
+ overflow: hidden;
2316
+ }
2317
+ .jodit-ui-file-input__input {
2318
+ position: absolute;
2319
+ top: 0;
2320
+ right: 0;
2321
+ bottom: 0;
2322
+ padding: 0;
2323
+ margin: 0 calc(var(--jd-padding-default) * -1) 0 0;
2324
+ cursor: pointer;
2325
+ font-size: 400px;
2326
+ opacity: 0;
2327
+ }
2328
+
2329
+ .jodit-ui-block {
2330
+ display: flex;
2331
+ align-items: center;
2332
+ justify-content: stretch;
2333
+ margin-bottom: var(--jd-padding-default);
2334
+ }
2335
+ .jodit-ui-block_width_full {
2336
+ width: 100%;
2337
+ }
2338
+ .jodit-ui-block_align_full {
2339
+ justify-content: space-between;
2340
+ }
2341
+ .jodit-ui-block_align_right {
2342
+ justify-content: flex-end;
2343
+ }
2344
+ .jodit-ui-block_padding_true {
2345
+ padding: var(--jd-padding-default);
2346
+ }
2347
+
2348
+ /*!
2349
+ * Jodit Editor (https://xdsoft.net/jodit/)
2350
+ * Released under MIT see LICENSE.txt in the project root for license information.
2351
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
2352
+ */
2353
+ @keyframes pulse {
2354
+ 30% {
2355
+ opacity: 0.6;
2356
+ }
2357
+ 60% {
2358
+ opacity: 0;
2359
+ }
2360
+ to {
2361
+ opacity: 0.6;
2362
+ }
2363
+ }
2364
+ .jodit-progress-bar {
2365
+ position: absolute;
2366
+ z-index: 2147483647;
2367
+ top: 0;
2368
+ left: 0;
2369
+ height: 2px;
2370
+ border-radius: 1px;
2371
+ opacity: 0.7;
2372
+ }
2373
+ .jodit-progress-bar div {
2374
+ position: relative;
2375
+ height: 2px;
2376
+ background: var(--jd-color-background-progress);
2377
+ transition: width 500ms ease-out, opacity 500ms linear;
2378
+ will-change: width, opacity;
2379
+ }
2380
+ .jodit-progress-bar div::before,
2381
+ .jodit-progress-bar div::after {
2382
+ position: absolute;
2383
+ top: 0;
2384
+ display: inline-block;
2385
+ height: 2px;
2386
+ animation: pulse 2s ease-out 0s infinite;
2387
+ border-radius: 100%;
2388
+ box-shadow: var(--jd-color-background-progress) 1px 0 6px 1px;
2389
+ content: '';
2390
+ opacity: 0.6;
2391
+ }
2392
+ .jodit-progress-bar div::before {
2393
+ right: -80px;
2394
+ width: 180px;
2395
+ clip: rect(-6px, 90px, 14px, -6px);
2396
+ }
2397
+ .jodit-progress-bar div::after {
2398
+ right: 0;
2399
+ width: 20px;
2400
+ clip: rect(-6px, 22px, 14px, var(--jd-padding-default));
2401
+ }
2402
+
2403
+ /*!
2404
+ * Jodit Editor (https://xdsoft.net/jodit/)
2405
+ * Released under MIT see LICENSE.txt in the project root for license information.
2406
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
2407
+ */
2408
+ .jodit-toolbar-collection,
2409
+ .jodit-toolbar-editor-collection {
2410
+ display: flex;
2411
+ flex-direction: column;
2412
+ }
2413
+ .jodit-toolbar-collection_mode_horizontal,
2414
+ .jodit-toolbar-editor-collection_mode_horizontal {
2415
+ position: relative;
2416
+ background-image: repeating-linear-gradient(transparent 0, transparent calc(var(--jd-button-size) - 1px), var(--jd-color-border) var(--jd-button-size));
2417
+ }
2418
+ .jodit-toolbar-collection_mode_horizontal:after,
2419
+ .jodit-toolbar-editor-collection_mode_horizontal:after {
2420
+ position: absolute;
2421
+ bottom: 0;
2422
+ left: 0;
2423
+ display: block;
2424
+ width: 100%;
2425
+ height: 1px;
2426
+ background-color: var(--jd-color-background-default);
2427
+ content: '';
2428
+ }
2429
+ .jodit-toolbar-collection_size_tiny,
2430
+ .jodit-toolbar-editor-collection_size_tiny {
2431
+ --jd-button-icon-size: 8px;
2432
+ }
2433
+ .jodit-toolbar-collection_size_tiny.jodit-toolbar-collection_mode_horizontal,
2434
+ .jodit-toolbar-editor-collection_size_tiny.jodit-toolbar-collection_mode_horizontal,
2435
+ .jodit-toolbar-collection_size_tiny.jodit-toolbar-editor-collection_mode_horizontal,
2436
+ .jodit-toolbar-editor-collection_size_tiny.jodit-toolbar-editor-collection_mode_horizontal {
2437
+ background-image: repeating-linear-gradient(transparent 0, transparent 19px, var(--jd-color-border) 20px);
2438
+ }
2439
+ .jodit-toolbar-collection_size_xsmall,
2440
+ .jodit-toolbar-editor-collection_size_xsmall {
2441
+ --jd-button-icon-size: 10px;
2442
+ }
2443
+ .jodit-toolbar-collection_size_xsmall.jodit-toolbar-collection_mode_horizontal,
2444
+ .jodit-toolbar-editor-collection_size_xsmall.jodit-toolbar-collection_mode_horizontal,
2445
+ .jodit-toolbar-collection_size_xsmall.jodit-toolbar-editor-collection_mode_horizontal,
2446
+ .jodit-toolbar-editor-collection_size_xsmall.jodit-toolbar-editor-collection_mode_horizontal {
2447
+ background-image: repeating-linear-gradient(transparent 0, transparent 25px, var(--jd-color-border) 26px);
2448
+ }
2449
+ .jodit-toolbar-collection_size_small,
2450
+ .jodit-toolbar-editor-collection_size_small {
2451
+ --jd-button-icon-size: 12px;
2452
+ }
2453
+ .jodit-toolbar-collection_size_small.jodit-toolbar-collection_mode_horizontal,
2454
+ .jodit-toolbar-editor-collection_size_small.jodit-toolbar-collection_mode_horizontal,
2455
+ .jodit-toolbar-collection_size_small.jodit-toolbar-editor-collection_mode_horizontal,
2456
+ .jodit-toolbar-editor-collection_size_small.jodit-toolbar-editor-collection_mode_horizontal {
2457
+ background-image: repeating-linear-gradient(transparent 0, transparent 31px, var(--jd-color-border) 32px);
2458
+ }
2459
+ .jodit-toolbar-collection_size_middle,
2460
+ .jodit-toolbar-editor-collection_size_middle {
2461
+ --jd-button-icon-size: 14px;
2462
+ }
2463
+ .jodit-toolbar-collection_size_middle.jodit-toolbar-collection_mode_horizontal,
2464
+ .jodit-toolbar-editor-collection_size_middle.jodit-toolbar-collection_mode_horizontal,
2465
+ .jodit-toolbar-collection_size_middle.jodit-toolbar-editor-collection_mode_horizontal,
2466
+ .jodit-toolbar-editor-collection_size_middle.jodit-toolbar-editor-collection_mode_horizontal {
2467
+ background-image: repeating-linear-gradient(transparent 0, transparent 37px, var(--jd-color-border) 38px);
2468
+ }
2469
+ .jodit-toolbar-collection_size_large,
2470
+ .jodit-toolbar-editor-collection_size_large {
2471
+ --jd-button-icon-size: 16px;
2472
+ }
2473
+ .jodit-toolbar-collection_size_large.jodit-toolbar-collection_mode_horizontal,
2474
+ .jodit-toolbar-editor-collection_size_large.jodit-toolbar-collection_mode_horizontal,
2475
+ .jodit-toolbar-collection_size_large.jodit-toolbar-editor-collection_mode_horizontal,
2476
+ .jodit-toolbar-editor-collection_size_large.jodit-toolbar-editor-collection_mode_horizontal {
2477
+ background-image: repeating-linear-gradient(transparent 0, transparent 43px, var(--jd-color-border) 44px);
2478
+ }
2479
+ .jodit-toolbar-collection_mode_vertical .jodit-ui-group,
2480
+ .jodit-toolbar-editor-collection_mode_vertical .jodit-ui-group {
2481
+ flex-direction: column;
2482
+ border: 0;
2483
+ background-color: transparent;
2484
+ }
2485
+ .jodit-toolbar-collection_mode_vertical .jodit-toolbar-button,
2486
+ .jodit-toolbar-editor-collection_mode_vertical .jodit-toolbar-button {
2487
+ height: auto;
2488
+ min-height: var(--jd-button-size);
2489
+ }
2490
+ .jodit-toolbar-collection_mode_vertical .jodit-toolbar-button__button,
2491
+ .jodit-toolbar-editor-collection_mode_vertical .jodit-toolbar-button__button {
2492
+ width: 100%;
2493
+ height: auto;
2494
+ min-height: var(--jd-button-size);
2495
+ cursor: pointer;
2496
+ }
2497
+ .jodit-toolbar-collection_mode_vertical .jodit-toolbar-button__text:not(:empty),
2498
+ .jodit-toolbar-editor-collection_mode_vertical .jodit-toolbar-button__text:not(:empty) {
2499
+ justify-content: left;
2500
+ }
2501
+ .jodit-toolbar-collection .jodit-toolbar-content,
2502
+ .jodit-toolbar-editor-collection .jodit-toolbar-content,
2503
+ .jodit-toolbar-collection .jodit-toolbar-button,
2504
+ .jodit-toolbar-editor-collection .jodit-toolbar-button {
2505
+ padding: 0;
2506
+ margin: var(--jd-margin-v) 1px;
2507
+ }
2508
+ .jodit-dialog .jodit-toolbar-collection_mode_horizontal,
2509
+ .jodit-dialog .jodit-toolbar-editor-collection_mode_horizontal {
2510
+ background-image: none;
2511
+ }
2512
+
2513
+ /*!
2514
+ * Jodit Editor (https://xdsoft.net/jodit/)
2515
+ * Released under MIT see LICENSE.txt in the project root for license information.
2516
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
2517
+ */
2518
+ .jodit-toolbar-button {
2519
+ display: flex;
2520
+ overflow: hidden;
2521
+ align-items: center;
2522
+ justify-content: center;
2523
+ border: 1px solid transparent;
2524
+ border-radius: var(--jd-border-radius-default);
2525
+ min-width: 34px;
2526
+ height: 34px;
2527
+ }
2528
+ .jodit-toolbar-button__icon {
2529
+ display: none;
2530
+ }
2531
+ .jodit-toolbar-button__icon:not(:empty) {
2532
+ display: inline-flex;
2533
+ }
2534
+ .jodit-toolbar-button__text {
2535
+ display: none;
2536
+ }
2537
+ .jodit-toolbar-button__text:not(:empty) {
2538
+ font-family: var(--jd-font-default);
2539
+ font-size: var(--jd-font-size-default);
2540
+ display: inline-flex;
2541
+ flex-grow: 1;
2542
+ justify-content: center;
2543
+ }
2544
+ .jodit-toolbar-button_context_menu .jodit-toolbar-button__text {
2545
+ position: relative;
2546
+ justify-content: left;
2547
+ padding-left: var(--jd-padding-default);
2548
+ }
2549
+ .jodit-toolbar-button_context_menu .jodit-toolbar-button__text::before {
2550
+ position: absolute;
2551
+ top: calc(var(--jd-padding-default) * -1);
2552
+ left: 0;
2553
+ height: 35px;
2554
+ border-left: 1px solid var(--jd-color-border);
2555
+ content: '';
2556
+ }
2557
+ .jodit-toolbar-button__icon:not(:empty) + .jodit-toolbar-button__text:not(:empty) {
2558
+ margin-left: var(--jd-padding-default);
2559
+ }
2560
+ .jodit-toolbar-button__icon:empty + .jodit-toolbar-button__text:not(:empty) {
2561
+ padding: 0 var(--jd-padding-default);
2562
+ }
2563
+ .jodit-toolbar-button__icon:empty + .jodit-toolbar-button__text:not(:empty) {
2564
+ padding: 0;
2565
+ }
2566
+ .jodit-toolbar-button .jodit-icon {
2567
+ width: 14px;
2568
+ height: 14px;
2569
+ }
2570
+ .jodit-toolbar-button button {
2571
+ min-width: 34px;
2572
+ height: 34px;
2573
+ padding: 0;
2574
+ appearance: none;
2575
+ }
2576
+ .jodit-toolbar-button_text-icons_true button {
2577
+ padding: 0 var(--jd-padding-default);
2578
+ }
2579
+ .jodit-toolbar-button_size_tiny {
2580
+ min-width: 16px;
2581
+ height: 16px;
2582
+ }
2583
+ .jodit-toolbar-button_size_tiny .jodit-icon {
2584
+ width: 8px;
2585
+ height: 8px;
2586
+ }
2587
+ .jodit-toolbar-button_size_tiny button {
2588
+ min-width: 16px;
2589
+ height: 16px;
2590
+ padding: 0;
2591
+ appearance: none;
2592
+ }
2593
+ .jodit-toolbar-button_size_tiny_text-icons_true button {
2594
+ padding: 0 var(--jd-padding-default);
2595
+ }
2596
+ .jodit-toolbar-button_size_xsmall {
2597
+ min-width: 22px;
2598
+ height: 22px;
2599
+ }
2600
+ .jodit-toolbar-button_size_xsmall .jodit-icon {
2601
+ width: 10px;
2602
+ height: 10px;
2603
+ }
2604
+ .jodit-toolbar-button_size_xsmall button {
2605
+ min-width: 22px;
2606
+ height: 22px;
2607
+ padding: 0;
2608
+ appearance: none;
2609
+ }
2610
+ .jodit-toolbar-button_size_xsmall_text-icons_true button {
2611
+ padding: 0 var(--jd-padding-default);
2612
+ }
2613
+ .jodit-toolbar-button_size_small {
2614
+ min-width: 28px;
2615
+ height: 28px;
2616
+ }
2617
+ .jodit-toolbar-button_size_small .jodit-icon {
2618
+ width: 12px;
2619
+ height: 12px;
2620
+ }
2621
+ .jodit-toolbar-button_size_small button {
2622
+ min-width: 28px;
2623
+ height: 28px;
2624
+ padding: 0;
2625
+ appearance: none;
2626
+ }
2627
+ .jodit-toolbar-button_size_small_text-icons_true button {
2628
+ padding: 0 var(--jd-padding-default);
2629
+ }
2630
+ .jodit-toolbar-button_size_large {
2631
+ min-width: 40px;
2632
+ height: 40px;
2633
+ }
2634
+ .jodit-toolbar-button_size_large .jodit-icon {
2635
+ width: 16px;
2636
+ height: 16px;
2637
+ }
2638
+ .jodit-toolbar-button_size_large button {
2639
+ min-width: 40px;
2640
+ height: 40px;
2641
+ padding: 0;
2642
+ appearance: none;
2643
+ }
2644
+ .jodit-toolbar-button_size_large_text-icons_true button {
2645
+ padding: 0 var(--jd-padding-default);
2646
+ }
2647
+ .jodit-toolbar-button__button {
2648
+ cursor: pointer;
2649
+ position: relative;
2650
+ box-sizing: border-box;
2651
+ padding: 0;
2652
+ border: 0;
2653
+ appearance: none;
2654
+ background: 0 0;
2655
+ box-shadow: none;
2656
+ font-style: normal;
2657
+ outline: 0;
2658
+ text-align: center;
2659
+ text-decoration: none;
2660
+ text-transform: none;
2661
+ user-select: none;
2662
+ display: inline-flex;
2663
+ align-items: center;
2664
+ justify-content: center;
2665
+ padding: 0 var(--jd-padding-default);
2666
+ border-radius: var(--jd-border-radius-default);
2667
+ color: var(--jd-color-text-icons);
2668
+ }
2669
+ .jodit-toolbar-button__button:hover:not([disabled]),
2670
+ .jodit-toolbar-button__button:focus-visible:not([disabled]) {
2671
+ background-color: var(--jd-color-button-background-hover);
2672
+ opacity: 1;
2673
+ outline: 0;
2674
+ }
2675
+ .jodit-toolbar-button__button:active:not([disabled]),
2676
+ .jodit-toolbar-button__button[aria-pressed='true']:not([disabled]) {
2677
+ background-color: var(--jd-color-button-background-hover_opacity40);
2678
+ outline: 0;
2679
+ }
2680
+ .jodit-toolbar-button__button[aria-pressed='true']:hover:not([disabled]) {
2681
+ background-color: var(--jd-color-button-background-hover_opacity60);
2682
+ }
2683
+ .jodit-toolbar-button__button[disabled] {
2684
+ opacity: 0.3;
2685
+ pointer-events: none;
2686
+ }
2687
+ .jodit-toolbar-button__trigger {
2688
+ display: flex;
2689
+ height: 100%;
2690
+ align-items: center;
2691
+ justify-content: center;
2692
+ border-radius: 0 var(--jd-border-radius-default) var(--jd-border-radius-default) 0;
2693
+ opacity: 0.4;
2694
+ cursor: pointer;
2695
+ width: 14px;
2696
+ }
2697
+ .jodit-toolbar-button__trigger:hover:not([disabled]),
2698
+ .jodit-toolbar-button__trigger:focus-visible:not([disabled]) {
2699
+ background-color: var(--jd-color-button-background-hover);
2700
+ opacity: 1;
2701
+ outline: 0;
2702
+ }
2703
+ .jodit-toolbar-button__trigger:active:not([disabled]),
2704
+ .jodit-toolbar-button__trigger[aria-pressed='true']:not([disabled]) {
2705
+ background-color: var(--jd-color-button-background-hover_opacity40);
2706
+ outline: 0;
2707
+ }
2708
+ .jodit-toolbar-button__trigger[aria-pressed='true']:hover:not([disabled]) {
2709
+ background-color: var(--jd-color-button-background-hover_opacity60);
2710
+ }
2711
+ .jodit-toolbar-button__trigger[disabled] {
2712
+ opacity: 0.3;
2713
+ pointer-events: none;
2714
+ }
2715
+ .jodit-toolbar-button__trigger svg {
2716
+ width: 10px;
2717
+ }
2718
+ .jodit-toolbar-button_size_tiny .jodit-toolbar-button__trigger {
2719
+ width: 8px;
2720
+ }
2721
+ .jodit-toolbar-button_size_tiny .jodit-toolbar-button__trigger svg {
2722
+ width: 4px;
2723
+ }
2724
+ .jodit-toolbar-button_size_xsmall .jodit-toolbar-button__trigger {
2725
+ width: 10px;
2726
+ }
2727
+ .jodit-toolbar-button_size_xsmall .jodit-toolbar-button__trigger svg {
2728
+ width: 6px;
2729
+ }
2730
+ .jodit-toolbar-button_size_small .jodit-toolbar-button__trigger {
2731
+ width: 12px;
2732
+ }
2733
+ .jodit-toolbar-button_size_small .jodit-toolbar-button__trigger svg {
2734
+ width: 8px;
2735
+ }
2736
+ .jodit-toolbar-button_size_large .jodit-toolbar-button__trigger {
2737
+ width: 16px;
2738
+ }
2739
+ .jodit-toolbar-button_size_large .jodit-toolbar-button__trigger svg {
2740
+ width: 12px;
2741
+ }
2742
+ .jodit-toolbar-button_with-trigger_true .jodit-toolbar-button__button {
2743
+ border-radius: var(--jd-border-radius-default) 0 0 var(--jd-border-radius-default);
2744
+ }
2745
+ .jodit-toolbar-button_with-trigger_true:hover:not([disabled]) {
2746
+ border-color: var(--jd-color-border);
2747
+ }
2748
+ .jodit-toolbar-button_stroke_false svg {
2749
+ stroke: none;
2750
+ }
2751
+
2752
+ /*!
2753
+ * Jodit Editor (https://xdsoft.net/jodit/)
2754
+ * Released under MIT see LICENSE.txt in the project root for license information.
2755
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
2756
+ */
2757
+ .jodit-toolbar-content {
2758
+ position: relative;
2759
+ box-sizing: border-box;
2760
+ border: 0;
2761
+ appearance: none;
2762
+ background: 0 0;
2763
+ box-shadow: none;
2764
+ font-style: normal;
2765
+ outline: 0;
2766
+ text-align: center;
2767
+ text-decoration: none;
2768
+ text-transform: none;
2769
+ user-select: none;
2770
+ display: inline-flex;
2771
+ align-items: center;
2772
+ justify-content: center;
2773
+ padding: 0 var(--jd-padding-default);
2774
+ border-radius: var(--jd-border-radius-default);
2775
+ color: var(--jd-color-text-icons);
2776
+ cursor: pointer;
2777
+ min-width: 34px;
2778
+ height: 34px;
2779
+ padding: 0;
2780
+ border: 1px solid transparent;
2781
+ }
2782
+ .jodit-toolbar-content:hover:not([disabled]),
2783
+ .jodit-toolbar-content:focus-visible:not([disabled]) {
2784
+ background-color: var(--jd-color-button-background-hover);
2785
+ opacity: 1;
2786
+ outline: 0;
2787
+ }
2788
+ .jodit-toolbar-content:active:not([disabled]),
2789
+ .jodit-toolbar-content[aria-pressed='true']:not([disabled]) {
2790
+ background-color: var(--jd-color-button-background-hover_opacity40);
2791
+ outline: 0;
2792
+ }
2793
+ .jodit-toolbar-content[aria-pressed='true']:hover:not([disabled]) {
2794
+ background-color: var(--jd-color-button-background-hover_opacity60);
2795
+ }
2796
+ .jodit-toolbar-content[disabled] {
2797
+ opacity: 0.3;
2798
+ pointer-events: none;
2799
+ }
2800
+ .jodit-toolbar-content .jodit-icon {
2801
+ width: 14px;
2802
+ height: 14px;
2803
+ }
2804
+ .jodit-toolbar-content button {
2805
+ min-width: 34px;
2806
+ height: 34px;
2807
+ padding: 0;
2808
+ appearance: none;
2809
+ }
2810
+ .jodit-toolbar-content_text-icons_true button {
2811
+ padding: 0 var(--jd-padding-default);
2812
+ }
2813
+ .jodit-toolbar-content_size_tiny {
2814
+ min-width: 16px;
2815
+ height: 16px;
2816
+ }
2817
+ .jodit-toolbar-content_size_tiny .jodit-icon {
2818
+ width: 8px;
2819
+ height: 8px;
2820
+ }
2821
+ .jodit-toolbar-content_size_tiny button {
2822
+ min-width: 16px;
2823
+ height: 16px;
2824
+ padding: 0;
2825
+ appearance: none;
2826
+ }
2827
+ .jodit-toolbar-content_size_tiny_text-icons_true button {
2828
+ padding: 0 var(--jd-padding-default);
2829
+ }
2830
+ .jodit-toolbar-content_size_xsmall {
2831
+ min-width: 22px;
2832
+ height: 22px;
2833
+ }
2834
+ .jodit-toolbar-content_size_xsmall .jodit-icon {
2835
+ width: 10px;
2836
+ height: 10px;
2837
+ }
2838
+ .jodit-toolbar-content_size_xsmall button {
2839
+ min-width: 22px;
2840
+ height: 22px;
2841
+ padding: 0;
2842
+ appearance: none;
2843
+ }
2844
+ .jodit-toolbar-content_size_xsmall_text-icons_true button {
2845
+ padding: 0 var(--jd-padding-default);
2846
+ }
2847
+ .jodit-toolbar-content_size_small {
2848
+ min-width: 28px;
2849
+ height: 28px;
2850
+ }
2851
+ .jodit-toolbar-content_size_small .jodit-icon {
2852
+ width: 12px;
2853
+ height: 12px;
2854
+ }
2855
+ .jodit-toolbar-content_size_small button {
2856
+ min-width: 28px;
2857
+ height: 28px;
2858
+ padding: 0;
2859
+ appearance: none;
2860
+ }
2861
+ .jodit-toolbar-content_size_small_text-icons_true button {
2862
+ padding: 0 var(--jd-padding-default);
2863
+ }
2864
+ .jodit-toolbar-content_size_large {
2865
+ min-width: 40px;
2866
+ height: 40px;
2867
+ }
2868
+ .jodit-toolbar-content_size_large .jodit-icon {
2869
+ width: 16px;
2870
+ height: 16px;
2871
+ }
2872
+ .jodit-toolbar-content_size_large button {
2873
+ min-width: 40px;
2874
+ height: 40px;
2875
+ padding: 0;
2876
+ appearance: none;
2877
+ }
2878
+ .jodit-toolbar-content_size_large_text-icons_true button {
2879
+ padding: 0 var(--jd-padding-default);
2880
+ }
2881
+ .jodit-toolbar-content__icon {
2882
+ display: none;
2883
+ }
2884
+ .jodit-toolbar-content__icon:not(:empty) {
2885
+ display: inline-flex;
2886
+ }
2887
+ .jodit-toolbar-content__text {
2888
+ display: none;
2889
+ }
2890
+ .jodit-toolbar-content__text:not(:empty) {
2891
+ font-family: var(--jd-font-default);
2892
+ font-size: var(--jd-font-size-default);
2893
+ display: inline-flex;
2894
+ flex-grow: 1;
2895
+ justify-content: center;
2896
+ }
2897
+ .jodit-toolbar-content_context_menu .jodit-toolbar-content__text {
2898
+ position: relative;
2899
+ justify-content: left;
2900
+ padding-left: var(--jd-padding-default);
2901
+ }
2902
+ .jodit-toolbar-content_context_menu .jodit-toolbar-content__text::before {
2903
+ position: absolute;
2904
+ top: calc(var(--jd-padding-default) * -1);
2905
+ left: 0;
2906
+ height: 35px;
2907
+ border-left: 1px solid var(--jd-color-border);
2908
+ content: '';
2909
+ }
2910
+ .jodit-toolbar-content__icon:not(:empty) + .jodit-toolbar-content__text:not(:empty) {
2911
+ margin-left: var(--jd-padding-default);
2912
+ }
2913
+ .jodit-toolbar-content__icon:empty + .jodit-toolbar-content__text:not(:empty) {
2914
+ padding: 0 var(--jd-padding-default);
2915
+ }
2916
+ .jodit-toolbar-content:focus:not([disabled]) {
2917
+ outline: 1px dashed var(--jd-color-background-selection);
2918
+ }
2919
+ .jodit-toolbar-content_variant_default {
2920
+ background-color: #e3e3e3;
2921
+ color: #212529;
2922
+ }
2923
+ .jodit-toolbar-content_variant_default svg {
2924
+ fill: #212529;
2925
+ stroke: #212529;
2926
+ }
2927
+ .jodit-toolbar-content_variant_default [disabled] {
2928
+ opacity: 0.7;
2929
+ }
2930
+ .jodit-toolbar-content_variant_default:hover:not([disabled]) {
2931
+ background-color: #c9cdd1;
2932
+ color: #212529;
2933
+ }
2934
+ .jodit-toolbar-content_variant_default:hover:not([disabled]) svg {
2935
+ fill: #212529;
2936
+ stroke: #212529;
2937
+ }
2938
+ .jodit-toolbar-content_variant_default:active:not([disabled]) {
2939
+ background-color: #dae0e5;
2940
+ color: #212529;
2941
+ }
2942
+ .jodit-toolbar-content_variant_default:active:not([disabled]) svg {
2943
+ fill: #212529;
2944
+ stroke: #212529;
2945
+ }
2946
+ .jodit-toolbar-content_variant_default:focus:not([disabled]) {
2947
+ outline: 1px dashed #dae0e5;
2948
+ }
2949
+ .jodit-toolbar-content_variant_primary {
2950
+ background-color: #007bff;
2951
+ color: #fff;
2952
+ }
2953
+ .jodit-toolbar-content_variant_primary svg {
2954
+ fill: #fff;
2955
+ stroke: #fff;
2956
+ }
2957
+ .jodit-toolbar-content_variant_primary [disabled] {
2958
+ opacity: 0.7;
2959
+ }
2960
+ .jodit-toolbar-content_variant_primary:hover:not([disabled]) {
2961
+ background-color: #0069d9;
2962
+ color: #fff;
2963
+ }
2964
+ .jodit-toolbar-content_variant_primary:hover:not([disabled]) svg {
2965
+ fill: #fff;
2966
+ stroke: #fff;
2967
+ }
2968
+ .jodit-toolbar-content_variant_primary:active:not([disabled]) {
2969
+ background-color: #0062cc;
2970
+ color: #fff;
2971
+ }
2972
+ .jodit-toolbar-content_variant_primary:active:not([disabled]) svg {
2973
+ fill: #fff;
2974
+ stroke: #fff;
2975
+ }
2976
+ .jodit-toolbar-content_variant_primary:focus:not([disabled]) {
2977
+ outline: 1px dashed #0062cc;
2978
+ }
2979
+ .jodit-toolbar-content_variant_secondary {
2980
+ background-color: #d8d8d8;
2981
+ color: #212529;
2982
+ border-radius: 0;
2983
+ }
2984
+ .jodit-toolbar-content_variant_secondary svg {
2985
+ fill: #212529;
2986
+ stroke: #212529;
2987
+ }
2988
+ .jodit-toolbar-content_variant_secondary [disabled] {
2989
+ opacity: 0.7;
2990
+ }
2991
+ .jodit-toolbar-content_variant_secondary:hover:not([disabled]) {
2992
+ background-color: #c9cdd1;
2993
+ color: #212529;
2994
+ }
2995
+ .jodit-toolbar-content_variant_secondary:hover:not([disabled]) svg {
2996
+ fill: #212529;
2997
+ stroke: #212529;
2998
+ }
2999
+ .jodit-toolbar-content_variant_secondary:active:not([disabled]) {
3000
+ background-color: #dae0e5;
3001
+ color: #212529;
3002
+ }
3003
+ .jodit-toolbar-content_variant_secondary:active:not([disabled]) svg {
3004
+ fill: #212529;
3005
+ stroke: #212529;
3006
+ }
3007
+ .jodit-toolbar-content_variant_secondary:focus:not([disabled]) {
3008
+ outline: 1px dashed #dae0e5;
3009
+ }
3010
+ .jodit-toolbar-content_variant_success {
3011
+ background-color: #28a745;
3012
+ color: #fff;
3013
+ }
3014
+ .jodit-toolbar-content_variant_success svg {
3015
+ fill: #fff;
3016
+ stroke: #fff;
3017
+ }
3018
+ .jodit-toolbar-content_variant_success [disabled] {
3019
+ opacity: 0.7;
3020
+ }
3021
+ .jodit-toolbar-content_variant_success:hover:not([disabled]) {
3022
+ background-color: #218838;
3023
+ color: #fff;
3024
+ }
3025
+ .jodit-toolbar-content_variant_success:hover:not([disabled]) svg {
3026
+ fill: #fff;
3027
+ stroke: #fff;
3028
+ }
3029
+ .jodit-toolbar-content_variant_success:active:not([disabled]) {
3030
+ background-color: #1e7e34;
3031
+ color: #fff;
3032
+ }
3033
+ .jodit-toolbar-content_variant_success:active:not([disabled]) svg {
3034
+ fill: #fff;
3035
+ stroke: #fff;
3036
+ }
3037
+ .jodit-toolbar-content_variant_success:focus:not([disabled]) {
3038
+ outline: 1px dashed #1e7e34;
3039
+ }
3040
+ .jodit-toolbar-content_variant_danger {
3041
+ background-color: #dc3545;
3042
+ color: #fff;
3043
+ }
3044
+ .jodit-toolbar-content_variant_danger svg {
3045
+ fill: #fff;
3046
+ stroke: #fff;
3047
+ }
3048
+ .jodit-toolbar-content_variant_danger [disabled] {
3049
+ opacity: 0.7;
3050
+ }
3051
+ .jodit-toolbar-content_variant_danger:hover:not([disabled]) {
3052
+ background-color: #c82333;
3053
+ color: #fff;
3054
+ }
3055
+ .jodit-toolbar-content_variant_danger:hover:not([disabled]) svg {
3056
+ fill: #fff;
3057
+ stroke: #fff;
3058
+ }
3059
+ .jodit-toolbar-content_variant_danger:active:not([disabled]) {
3060
+ background-color: #bd2130;
3061
+ color: #fff;
3062
+ }
3063
+ .jodit-toolbar-content_variant_danger:active:not([disabled]) svg {
3064
+ fill: #fff;
3065
+ stroke: #fff;
3066
+ }
3067
+ .jodit-toolbar-content_variant_danger:focus:not([disabled]) {
3068
+ outline: 1px dashed #bd2130;
3069
+ }
3070
+ .jodit-toolbar-content:hover:not([disabled]) {
3071
+ background-color: transparent;
3072
+ opacity: 1;
3073
+ outline: 0;
3074
+ }
3075
+
3076
+ /*!
3077
+ * Jodit Editor (https://xdsoft.net/jodit/)
3078
+ * Released under MIT see LICENSE.txt in the project root for license information.
3079
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
3080
+ */
3081
+ /*!
3082
+ * Jodit Editor (https://xdsoft.net/jodit/)
3083
+ * Released under MIT see LICENSE.txt in the project root for license information.
3084
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
3085
+ */
3086
+ :root {
3087
+ --jd-first_column: 31%;
3088
+ --jd-cols: 4;
3089
+ --jd-info-background: #e9e9e9;
3090
+ --jd-icon-size: 12px;
3091
+ --jd-col_size: 150px;
3092
+ }
3093
+ .jodit-filebrowser {
3094
+ display: flex;
3095
+ height: 100%;
3096
+ font-family: var(--jd-font-default);
3097
+ }
3098
+ .jodit-filebrowser_no-files_true {
3099
+ padding: var(--jd-padding-default);
3100
+ }
3101
+ @media (max-width: 480px) {
3102
+ .jodit-filebrowser {
3103
+ flex-flow: column-reverse;
3104
+ }
3105
+ }
3106
+ .jodit-dialog .jodit-dialog__header-title.jodit-filebrowser__title-box {
3107
+ display: flex;
3108
+ align-items: center;
3109
+ padding-left: var(--jd-padding-default);
3110
+ }
3111
+ /*!
3112
+ * Jodit Editor (https://xdsoft.net/jodit/)
3113
+ * Released under MIT see LICENSE.txt in the project root for license information.
3114
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
3115
+ */
3116
+ .jodit-filebrowser-preview {
3117
+ position: relative;
3118
+ display: flex;
3119
+ min-width: 400px;
3120
+ max-width: Min(100%, 1000px);
3121
+ height: 100%;
3122
+ min-height: Min(100%, 500px);
3123
+ max-height: 100%;
3124
+ align-items: center;
3125
+ justify-content: center;
3126
+ margin: auto;
3127
+ text-align: center;
3128
+ }
3129
+ @media (max-width: 768px) {
3130
+ .jodit-filebrowser-preview {
3131
+ min-width: auto;
3132
+ max-width: 100%;
3133
+ height: 100%;
3134
+ min-height: auto;
3135
+ max-height: 100%;
3136
+ }
3137
+ }
3138
+ .jodit-filebrowser-preview__box {
3139
+ display: flex;
3140
+ flex-grow: 1;
3141
+ align-items: center;
3142
+ justify-content: center;
3143
+ }
3144
+ .jodit-filebrowser-preview__navigation {
3145
+ position: absolute;
3146
+ top: 0;
3147
+ left: 0;
3148
+ height: 100%;
3149
+ cursor: pointer;
3150
+ }
3151
+ .jodit-filebrowser-preview__navigation_arrow_next {
3152
+ right: 0;
3153
+ left: auto;
3154
+ }
3155
+ .jodit-filebrowser-preview__navigation svg {
3156
+ position: relative;
3157
+ top: 50%;
3158
+ width: 45px;
3159
+ height: 45px;
3160
+ fill: #9e9ba7;
3161
+ transform: translateY(-50%);
3162
+ transition: fill 0.3s linear;
3163
+ }
3164
+ .jodit-filebrowser-preview__navigation:hover svg {
3165
+ fill: #000;
3166
+ }
3167
+ .jodit-filebrowser-preview img {
3168
+ max-width: 100%;
3169
+ max-height: 100%;
3170
+ }
3171
+
3172
+ /*!
3173
+ * Jodit Editor (https://xdsoft.net/jodit/)
3174
+ * Released under MIT see LICENSE.txt in the project root for license information.
3175
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
3176
+ */
3177
+ :root {
3178
+ --jd-image_editor_resizer_border_color: #05ff00;
3179
+ --jd-image_editor_resizer_target_size: padding-default;
3180
+ --jd-image_editor_resizer_target_border_color: #383838;
3181
+ --jd-image_editor_resizer_target_bg_color: #8c7878;
3182
+ }
3183
+ .jodit-image-editor {
3184
+ overflow: hidden;
3185
+ width: 100%;
3186
+ height: 100%;
3187
+ padding: var(--jd-padding-default);
3188
+ }
3189
+ @media (max-width: 768px) {
3190
+ .jodit-image-editor {
3191
+ height: auto;
3192
+ }
3193
+ }
3194
+ .jodit-image-editor > div,
3195
+ .jodit-image-editor > div > div {
3196
+ height: 100%;
3197
+ }
3198
+ @media (max-width: 768px) {
3199
+ .jodit-image-editor > div,
3200
+ .jodit-image-editor > div > div {
3201
+ height: auto;
3202
+ min-height: 200px;
3203
+ }
3204
+ }
3205
+ .jodit-image-editor * {
3206
+ box-sizing: border-box;
3207
+ }
3208
+ .jodit-image-editor .jodit-image-editor__slider-title {
3209
+ padding: 0.8em 1em;
3210
+ border-bottom: 1px solid rgba(158, 158, 158, 0.31);
3211
+ background-color: #f9f9f9;
3212
+ color: #333333;
3213
+ cursor: pointer;
3214
+ font-weight: bold;
3215
+ line-height: 1em;
3216
+ text-overflow: ellipsis;
3217
+ text-shadow: #f3f3f3 0 1px 0;
3218
+ user-select: none;
3219
+ white-space: nowrap;
3220
+ }
3221
+ .jodit-image-editor .jodit-image-editor__slider-title svg {
3222
+ display: inline-block;
3223
+ width: 16px;
3224
+ margin-right: var(--jd-padding-default);
3225
+ vertical-align: middle;
3226
+ }
3227
+ .jodit-image-editor .jodit-image-editor__slider-content {
3228
+ display: none;
3229
+ }
3230
+ .jodit-image-editor .jodit-image-editor__slider.jodit-image-editor_active .jodit-image-editor__slider-title {
3231
+ background-color: #5d5d5d;
3232
+ color: #fff;
3233
+ text-shadow: #000 0 1px 0;
3234
+ }
3235
+ .jodit-image-editor .jodit-image-editor__slider.jodit-image-editor_active .jodit-image-editor__slider-title svg {
3236
+ fill: white;
3237
+ }
3238
+ .jodit-image-editor .jodit-image-editor__slider.jodit-image-editor_active .jodit-image-editor__slider-content {
3239
+ display: block;
3240
+ }
3241
+ .jodit-image-editor__area {
3242
+ position: relative;
3243
+ display: none;
3244
+ overflow: hidden;
3245
+ width: 100%;
3246
+ height: 100%;
3247
+ background-color: #eee;
3248
+ background-image: linear-gradient(45deg, var(--jd-color-border) 25%, transparent 25%, transparent 75%, var(--jd-color-border) 75%, var(--jd-color-border)), linear-gradient(45deg, var(--jd-color-border) 25%, transparent 25%, transparent 75%, var(--jd-color-border) 75%, var(--jd-color-border));
3249
+ background-position: 0 0, 15px 15px;
3250
+ background-size: 30px 30px;
3251
+ user-select: none;
3252
+ }
3253
+ .jodit-image-editor__area.jodit-image-editor_active {
3254
+ display: block;
3255
+ }
3256
+ .jodit-image-editor__area .jodit-image-editor__box {
3257
+ position: relative;
3258
+ z-index: 1;
3259
+ overflow: hidden;
3260
+ height: 100%;
3261
+ pointer-events: none;
3262
+ }
3263
+ .jodit-image-editor__area .jodit-image-editor__box img {
3264
+ max-width: 100%;
3265
+ max-height: 100%;
3266
+ user-select: none;
3267
+ }
3268
+ .jodit-image-editor__area .jodit-image-editor__croper,
3269
+ .jodit-image-editor__area .jodit-image-editor__resizer {
3270
+ position: absolute;
3271
+ z-index: 2;
3272
+ top: var(--jd-padding-default);
3273
+ left: 20px;
3274
+ width: 100px;
3275
+ height: 100px;
3276
+ border: 1px solid #fff;
3277
+ background-repeat: no-repeat;
3278
+ box-shadow: 0 0 11px #000;
3279
+ pointer-events: none;
3280
+ }
3281
+ .jodit-image-editor__area .jodit-image-editor__croper i.jodit_bottomright,
3282
+ .jodit-image-editor__area .jodit-image-editor__resizer i.jodit_bottomright {
3283
+ position: absolute;
3284
+ z-index: 4;
3285
+ right: calc(var(--jd-padding-default) * -1);
3286
+ bottom: calc(var(--jd-padding-default) * -1);
3287
+ display: inline-block;
3288
+ width: 20px;
3289
+ height: 20px;
3290
+ border: 1px solid var(--jd-image_editor_resizer_target_border_color);
3291
+ background-color: var(--jd-image_editor_resizer_target_bg_color);
3292
+ border-radius: 50%;
3293
+ box-shadow: 0 0 11px #000;
3294
+ cursor: se-resize;
3295
+ pointer-events: all;
3296
+ }
3297
+ .jodit-image-editor__area .jodit-image-editor__croper i.jodit_bottomright:active,
3298
+ .jodit-image-editor__area .jodit-image-editor__resizer i.jodit_bottomright:active {
3299
+ border: 1px solid yellow;
3300
+ }
3301
+ .jodit-image-editor__area.jodit-image-editor__area_crop {
3302
+ position: relative;
3303
+ height: 100%;
3304
+ background: #eee;
3305
+ line-height: 100%;
3306
+ text-align: center;
3307
+ }
3308
+ .jodit-image-editor__area.jodit-image-editor__area_crop .jodit-image-editor__box {
3309
+ overflow: visible;
3310
+ height: 100%;
3311
+ line-height: 100%;
3312
+ pointer-events: all;
3313
+ text-align: left;
3314
+ }
3315
+ .jodit-image-editor__area.jodit-image-editor__area_crop .jodit-image-editor__box img {
3316
+ width: 100%;
3317
+ max-width: 100%;
3318
+ height: 100%;
3319
+ max-height: 100%;
3320
+ }
3321
+ .jodit-image-editor__area.jodit-image-editor__area_crop .jodit-image-editor__box::after {
3322
+ position: absolute;
3323
+ z-index: 1;
3324
+ top: 0;
3325
+ right: 0;
3326
+ bottom: 0;
3327
+ left: 0;
3328
+ margin: auto;
3329
+ background: rgba(255, 255, 255, 0.3);
3330
+ content: '';
3331
+ }
3332
+ .jodit-image-editor__area.jodit-image-editor__area_crop .jodit-image-editor__box .jodit-image-editor__croper {
3333
+ cursor: move;
3334
+ pointer-events: all;
3335
+ }
3336
+ .jodit-image-editor__area.jodit-image-editor__area_crop .jodit-image-editor__box .jodit-image-editor__croper i.jodit-image-editor__sizes {
3337
+ position: absolute;
3338
+ bottom: -30px;
3339
+ left: 100%;
3340
+ display: block;
3341
+ padding: 9px 6px;
3342
+ background: rgba(0, 0, 0, 0.2);
3343
+ border-radius: 0.4em;
3344
+ color: #ffffff;
3345
+ font-size: 12px;
3346
+ text-align: center;
3347
+ text-shadow: none;
3348
+ white-space: pre;
3349
+ }
3350
+ .jodit-image-editor__area.jodit-image-editor__area_crop.jodit-image-editor_active {
3351
+ display: flex;
3352
+ align-items: center;
3353
+ justify-content: center;
3354
+ }
3355
+
3356
+ .jodit-filebrowser-files {
3357
+ position: relative;
3358
+ display: none;
3359
+ height: 100%;
3360
+ vertical-align: top;
3361
+ overflow-anchor: auto;
3362
+ }
3363
+ .jodit-filebrowser-files .jodit-button {
3364
+ border-radius: 0;
3365
+ }
3366
+ .jodit-filebrowser-files_loading_true:before {
3367
+ position: absolute;
3368
+ top: 0;
3369
+ left: 0;
3370
+ width: 100%;
3371
+ height: 100%;
3372
+ content: '';
3373
+ }
3374
+ .jodit-filebrowser-files_loading_true:after {
3375
+ position: absolute;
3376
+ top: 50%;
3377
+ left: 50%;
3378
+ margin-top: calc(var(--jd-icon-loader-size) / -2);
3379
+ margin-left: calc(var(--jd-icon-loader-size) / -2);
3380
+ content: '';
3381
+ opacity: 0.7;
3382
+ display: inline-block;
3383
+ width: var(--jd-icon-loader-size);
3384
+ height: var(--jd-icon-loader-size);
3385
+ animation: rotate 2s ease-out 0s infinite;
3386
+ background: url(data:image/png;base64,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) no-repeat center;
3387
+ background-size: 100% 100%;
3388
+ vertical-align: middle;
3389
+ will-change: transform;
3390
+ }
3391
+ .jodit-filebrowser-files_active_true {
3392
+ display: flex;
3393
+ }
3394
+ .jodit-filebrowser-files::-webkit-scrollbar {
3395
+ width: calc(var(--jd-padding-default) / 2);
3396
+ }
3397
+ .jodit-filebrowser-files::-webkit-scrollbar-track {
3398
+ -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
3399
+ }
3400
+ .jodit-filebrowser-files::-webkit-scrollbar-thumb {
3401
+ background-color: darkgrey;
3402
+ outline: 1px solid slategrey;
3403
+ }
3404
+ .jodit-filebrowser-files_active_true {
3405
+ width: 100%;
3406
+ flex-wrap: wrap;
3407
+ align-content: flex-start;
3408
+ padding: calc(var(--jd-padding-default) / 2);
3409
+ overflow-y: auto;
3410
+ }
3411
+ .jodit-filebrowser-files__item {
3412
+ position: relative;
3413
+ display: flex;
3414
+ overflow: hidden;
3415
+ width: var(--jd-col_size);
3416
+ height: var(--jd-col_size);
3417
+ align-items: center;
3418
+ justify-content: center;
3419
+ border: 1px solid var(--jd-color-border);
3420
+ margin: calc(var(--jd-padding-default) / 2);
3421
+ font-size: 0;
3422
+ text-align: center;
3423
+ transition: border 0.1s linear, bottom 0.1s linear;
3424
+ }
3425
+ @media (max-width: 480px) {
3426
+ .jodit-filebrowser-files__item {
3427
+ width: calc(50% - var(--jd-padding-default));
3428
+ }
3429
+ }
3430
+ .jodit-filebrowser-files__item img {
3431
+ max-width: 100%;
3432
+ }
3433
+ .jodit-filebrowser-files__item:hover {
3434
+ border-color: #433b5c;
3435
+ }
3436
+ .jodit-filebrowser-files__item_active_true {
3437
+ border-color: var(--jd-color-border-selected);
3438
+ background-color: var(--jd-color-border-active);
3439
+ }
3440
+ .jodit-filebrowser-files__item_active_true .jodit-filebrowser-files__item-info {
3441
+ background-color: var(--jd-color-border-active);
3442
+ color: white;
3443
+ text-shadow: none;
3444
+ }
3445
+ .jodit-filebrowser-files__item-info {
3446
+ position: absolute;
3447
+ right: 0;
3448
+ bottom: 0;
3449
+ left: 0;
3450
+ overflow: visible;
3451
+ padding: 0.3em 0.6em;
3452
+ background-color: var(--jd-info-background);
3453
+ color: #333333;
3454
+ font-size: 14px;
3455
+ line-height: 16px;
3456
+ opacity: 0.85;
3457
+ text-align: left;
3458
+ text-shadow: #eeeeee 0 1px 0;
3459
+ transition: opacity 400ms ease;
3460
+ white-space: normal;
3461
+ }
3462
+ .jodit-filebrowser-files__item-info > span {
3463
+ display: block;
3464
+ overflow: hidden;
3465
+ font-size: 0.75em;
3466
+ text-overflow: ellipsis;
3467
+ white-space: nowrap;
3468
+ }
3469
+ .jodit-filebrowser-files__item-info > span.jodit-filebrowser-files__item-info-filename {
3470
+ font-size: 0.9em;
3471
+ font-weight: bold;
3472
+ }
3473
+ .jodit-filebrowser-files__item:hover:not(.jodit-filebrowser-files__item_active_true) .jodit-filebrowser-files__item-info {
3474
+ bottom: -100px;
3475
+ }
3476
+ .jodit-filebrowser-files_view_list {
3477
+ scroll-behavior: smooth;
3478
+ }
3479
+ .jodit-filebrowser-files_view_list a {
3480
+ display: block;
3481
+ width: 100%;
3482
+ height: 26px;
3483
+ border-width: 0 0 1px 0;
3484
+ margin: 0;
3485
+ line-height: 26px;
3486
+ text-align: left;
3487
+ white-space: nowrap;
3488
+ }
3489
+ .jodit-filebrowser-files_view_list a img {
3490
+ display: inline-block;
3491
+ min-width: 16px;
3492
+ max-width: 16px;
3493
+ margin-left: 4px;
3494
+ vertical-align: middle;
3495
+ }
3496
+ .jodit-filebrowser-files_view_list a .jodit-filebrowser-files__item-info {
3497
+ position: static;
3498
+ display: inline-block;
3499
+ width: calc(100% - 20px);
3500
+ height: 100%;
3501
+ padding: 0;
3502
+ margin-left: 4px;
3503
+ background-color: transparent;
3504
+ font-size: 0;
3505
+ line-height: inherit;
3506
+ vertical-align: middle;
3507
+ }
3508
+ .jodit-filebrowser-files_view_list a .jodit-filebrowser-files__item-info > span {
3509
+ display: inline-block;
3510
+ height: 100%;
3511
+ font-size: 12px;
3512
+ }
3513
+ .jodit-filebrowser-files_view_list a .jodit-filebrowser-files__item-info-filename {
3514
+ width: 50%;
3515
+ }
3516
+ .jodit-filebrowser-files_view_list a .jodit-filebrowser-files__item-info-filesize {
3517
+ width: 25%;
3518
+ }
3519
+ .jodit-filebrowser-files_view_list a .jodit-filebrowser-files__item-info-filechanged {
3520
+ width: 25%;
3521
+ }
3522
+ .jodit-filebrowser-files_view_list a:hover {
3523
+ background-color: #433b5c;
3524
+ }
3525
+ .jodit-filebrowser-files_view_list a:hover .jodit-filebrowser-files__item-info {
3526
+ color: #fff;
3527
+ text-shadow: none;
3528
+ }
3529
+ .jodit-filebrowser-files_view_list a::before {
3530
+ display: inline-block;
3531
+ height: 100%;
3532
+ content: '';
3533
+ vertical-align: middle;
3534
+ }
3535
+
3536
+ :root {
3537
+ --jd-color-folder-title: #b1b1b1;
3538
+ }
3539
+ .jodit-filebrowser-tree {
3540
+ position: relative;
3541
+ display: none;
3542
+ height: 100%;
3543
+ vertical-align: top;
3544
+ overflow-anchor: auto;
3545
+ }
3546
+ .jodit-filebrowser-tree .jodit-button {
3547
+ border-radius: 0;
3548
+ }
3549
+ .jodit-filebrowser-tree_active_true {
3550
+ display: flex;
3551
+ }
3552
+ .jodit-filebrowser-tree_loading_true:before {
3553
+ position: absolute;
3554
+ top: 0;
3555
+ left: 0;
3556
+ width: 100%;
3557
+ height: 100%;
3558
+ content: '';
3559
+ }
3560
+ .jodit-filebrowser-tree_loading_true:after {
3561
+ position: absolute;
3562
+ top: 50%;
3563
+ left: 50%;
3564
+ margin-top: calc(var(--jd-icon-loader-size) / -2);
3565
+ margin-left: calc(var(--jd-icon-loader-size) / -2);
3566
+ content: '';
3567
+ opacity: 0.7;
3568
+ display: inline-block;
3569
+ width: var(--jd-icon-loader-size);
3570
+ height: var(--jd-icon-loader-size);
3571
+ animation: rotate 2s ease-out 0s infinite;
3572
+ background: url(data:image/png;base64,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) no-repeat center;
3573
+ background-size: 100% 100%;
3574
+ vertical-align: middle;
3575
+ will-change: transform;
3576
+ }
3577
+ .jodit-filebrowser-tree::-webkit-scrollbar {
3578
+ width: calc(var(--jd-padding-default) / 2);
3579
+ }
3580
+ .jodit-filebrowser-tree::-webkit-scrollbar-track {
3581
+ -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
3582
+ }
3583
+ .jodit-filebrowser-tree::-webkit-scrollbar-thumb {
3584
+ background-color: darkgrey;
3585
+ outline: 1px solid slategrey;
3586
+ }
3587
+ .jodit-filebrowser-tree_active_true {
3588
+ z-index: 2;
3589
+ width: var(--jd-first_column);
3590
+ min-width: 200px;
3591
+ max-width: 290px;
3592
+ flex-direction: column;
3593
+ background-color: var(--jd-color-background-filebrowser-folders);
3594
+ overflow-y: auto;
3595
+ }
3596
+ @media (max-width: 480px) {
3597
+ .jodit-filebrowser-tree_active_true {
3598
+ width: auto;
3599
+ max-width: 100%;
3600
+ height: 100px;
3601
+ }
3602
+ }
3603
+ .jodit-filebrowser-tree_active_true::-webkit-scrollbar {
3604
+ width: calc(var(--jd-padding-default) / 2);
3605
+ }
3606
+ .jodit-filebrowser-tree_active_true::-webkit-scrollbar-track {
3607
+ -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
3608
+ }
3609
+ .jodit-filebrowser-tree_active_true::-webkit-scrollbar-thumb {
3610
+ background-color: rgba(127, 127, 127, 0.5);
3611
+ outline: 1px solid slategrey;
3612
+ }
3613
+ .jodit-filebrowser-tree__item {
3614
+ position: relative;
3615
+ display: flex;
3616
+ min-height: 38px;
3617
+ align-items: center;
3618
+ justify-content: space-between;
3619
+ padding: calc(var(--jd-padding-default) / 2) var(--jd-padding-default);
3620
+ border-bottom: 1px solid #474747;
3621
+ color: var(--jd-color-folder-title);
3622
+ text-decoration: none;
3623
+ transition: background-color 0.2s ease 0s;
3624
+ word-break: break-all;
3625
+ }
3626
+ .jodit-filebrowser-tree__item-title {
3627
+ flex: 1;
3628
+ color: var(--jd-color-folder-title);
3629
+ }
3630
+ .jodit-filebrowser-tree__item .jodit-icon_folder {
3631
+ display: flex;
3632
+ width: calc(var(--jd-icon-size) + 4px);
3633
+ height: calc(var(--jd-icon-size) + 4px);
3634
+ align-items: center;
3635
+ justify-content: center;
3636
+ margin-left: calc(var(--jd-padding-default) / 2);
3637
+ opacity: 0.3;
3638
+ }
3639
+ .jodit-filebrowser-tree__item .jodit-icon_folder svg {
3640
+ width: var(--jd-icon-size);
3641
+ height: var(--jd-icon-size);
3642
+ fill: var(--jd-color-folder-title) !important;
3643
+ stroke: var(--jd-color-folder-title) !important;
3644
+ }
3645
+ .jodit-filebrowser-tree__item .jodit-icon_folder:hover {
3646
+ background: #696969;
3647
+ }
3648
+ .jodit-filebrowser-tree__item:hover {
3649
+ background-color: var(--jd-color-background-button-hover);
3650
+ }
3651
+ .jodit-filebrowser-tree__item:hover-title {
3652
+ color: var(--jd-color-text);
3653
+ }
3654
+ .jodit-filebrowser-tree__item:hover i.jodit-icon_folder {
3655
+ opacity: 0.6;
3656
+ }
3657
+ .jodit-filebrowser-tree__source-title {
3658
+ position: relative;
3659
+ display: block;
3660
+ padding: 2px 4px;
3661
+ border-bottom: 1px solid #484848;
3662
+ background: #5a5a5a;
3663
+ color: #969696;
3664
+ font-size: 12px;
3665
+ user-select: none;
3666
+ word-break: break-all;
3667
+ }
3668
+ a + .jodit-filebrowser-tree__source-title {
3669
+ margin-top: var(--jd-padding-default);
3670
+ }
3671
+
3672
+ /*!
3673
+ * Jodit Editor (https://xdsoft.net/jodit/)
3674
+ * Released under MIT see LICENSE.txt in the project root for license information.
3675
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
3676
+ */
3677
+ .jodit-status-bar {
3678
+ display: flex;
3679
+ overflow: hidden;
3680
+ height: 20px;
3681
+ align-items: center;
3682
+ justify-content: flex-start;
3683
+ padding: 0 calc(var(--jd-padding-default) / 2);
3684
+ background-color: var(--jd-color-panel);
3685
+ border-radius: 0 0 var(--jd-border-radius-default) var(--jd-border-radius-default);
3686
+ color: var(--jd-color-text-icons);
3687
+ font-size: var(--jd-font-size-small);
3688
+ text-transform: uppercase;
3689
+ }
3690
+ .jodit-status-bar_resize-handle_true {
3691
+ padding-right: 14px;
3692
+ }
3693
+ .jodit-status-bar::before {
3694
+ flex: auto;
3695
+ order: 1;
3696
+ content: '';
3697
+ }
3698
+ .jodit-status-bar .jodit-status-bar__item {
3699
+ order: 0;
3700
+ padding: 0;
3701
+ margin: 0 var(--jd-padding-default) 0 0;
3702
+ line-height: 1.57142857em;
3703
+ }
3704
+ .jodit-status-bar .jodit-status-bar__item,
3705
+ .jodit-status-bar .jodit-status-bar__item > span {
3706
+ font-family: var(--jd-font-default);
3707
+ font-size: var(--jd-font-size-default);
3708
+ font-size: var(--jd-font-size-small);
3709
+ }
3710
+ .jodit-status-bar .jodit-status-bar__item.jodit-status-bar__item-right {
3711
+ order: 2;
3712
+ margin: 0 0 0 var(--jd-padding-default);
3713
+ }
3714
+ .jodit-status-bar .jodit-status-bar__item a {
3715
+ border-radius: 3px;
3716
+ cursor: default;
3717
+ text-decoration: none;
3718
+ }
3719
+ .jodit-status-bar .jodit-status-bar__item a:hover {
3720
+ background-color: var(--jd-color-background-gray);
3721
+ text-decoration: none;
3722
+ }
3723
+ .jodit-status-bar a.jodit-status-bar-link {
3724
+ cursor: pointer;
3725
+ }
3726
+ .jodit-status-bar a.jodit-status-bar-link,
3727
+ .jodit-status-bar a.jodit-status-bar-link:hover,
3728
+ .jodit-status-bar a.jodit-status-bar-link:visited {
3729
+ background-color: transparent;
3730
+ color: var(--jd-color-text-icons);
3731
+ }
3732
+ .jodit-status-bar a.jodit-status-bar-link:hover {
3733
+ text-decoration: underline;
3734
+ }
3735
+ .jodit-workplace + .jodit-status-bar:not(:empty) {
3736
+ border-top: 1px solid var(--jd-color-border);
3737
+ }
3738
+ .jodit_disabled .jodit-status-bar {
3739
+ opacity: 0.4;
3740
+ }
3741
+
3742
+ /*!
3743
+ * Jodit Editor (https://xdsoft.net/jodit/)
3744
+ * Released under MIT see LICENSE.txt in the project root for license information.
3745
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
3746
+ */
3747
+ .jodit-drag-and-drop__file-box,
3748
+ .jodit_uploadfile_button {
3749
+ position: relative;
3750
+ overflow: hidden;
3751
+ width: 100%;
3752
+ padding: 25px 0;
3753
+ border: dashed 1px var(--jd-color-gray);
3754
+ margin: var(--jd-padding-default) 0;
3755
+ text-align: center;
3756
+ }
3757
+ .jodit-drag-and-drop__file-box:hover,
3758
+ .jodit_uploadfile_button:hover {
3759
+ background-color: var(--jd-color-background-button-hover);
3760
+ }
3761
+ .jodit-drag-and-drop__file-box input,
3762
+ .jodit_uploadfile_button input {
3763
+ position: absolute;
3764
+ top: 0;
3765
+ right: 0;
3766
+ bottom: 0;
3767
+ left: 0;
3768
+ padding: 0;
3769
+ margin: 0;
3770
+ cursor: pointer;
3771
+ font-size: 400px;
3772
+ opacity: 0;
3773
+ }
3774
+ @media (max-width: 768px) {
3775
+ .jodit-drag-and-drop__file-box {
3776
+ width: auto;
3777
+ min-width: var(--jd-width-input-min);
3778
+ max-width: 100%;
3779
+ }
3780
+ }
3781
+
3782
+ /*!
3783
+ * Jodit Editor (https://xdsoft.net/jodit/)
3784
+ * Released under MIT see LICENSE.txt in the project root for license information.
3785
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
3786
+ */
3787
+ .jodit-about {
3788
+ padding: 20px;
3789
+ }
3790
+ .jodit-about a {
3791
+ color: #459ce7;
3792
+ text-decoration: none;
3793
+ }
3794
+ .jodit-about a:focus,
3795
+ .jodit-about a:hover {
3796
+ color: #23527c;
3797
+ outline: 0;
3798
+ text-decoration: underline;
3799
+ }
3800
+ .jodit-about div {
3801
+ margin-bottom: calc(var(--jd-padding-default) / 2);
3802
+ }
3803
+
3804
+ /*!
3805
+ * Jodit Editor (https://xdsoft.net/jodit/)
3806
+ * Released under MIT see LICENSE.txt in the project root for license information.
3807
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
3808
+ */
3809
+ :root {
3810
+ --jd-color-new-line: var(--jd-color-border);
3811
+ --jd-width-icon: 30px;
3812
+ --jd-height-icon: 30px;
3813
+ --jd-offset-handle: calc(100% - var(--jd-width-icon));
3814
+ }
3815
+ .jodit-add-new-line {
3816
+ position: fixed;
3817
+ z-index: 1;
3818
+ top: 0;
3819
+ display: block;
3820
+ height: 1px;
3821
+ box-sizing: border-box;
3822
+ outline: none;
3823
+ }
3824
+ .jodit-add-new-line * {
3825
+ box-sizing: border-box;
3826
+ }
3827
+ .jodit-add-new-line::after {
3828
+ display: block;
3829
+ width: 100%;
3830
+ height: 1px;
3831
+ background-color: var(--jd-color-new-line);
3832
+ content: '';
3833
+ }
3834
+ .jodit-add-new-line span {
3835
+ position: absolute;
3836
+ left: var(--jd-offset-handle);
3837
+ display: flex;
3838
+ width: var(--jd-width-icon);
3839
+ height: var(--jd-height-icon);
3840
+ align-items: center;
3841
+ justify-content: center;
3842
+ border: 1px solid var(--jd-color-new-line);
3843
+ background: var(--jd-color-background-button-hover-opacity30);
3844
+ cursor: pointer;
3845
+ }
3846
+ .jodit-add-new-line span:hover {
3847
+ background: var(--jd-color-background-button-hover);
3848
+ }
3849
+ .jodit-add-new-line_after span {
3850
+ bottom: 0;
3851
+ }
3852
+ .jodit-add-new-line svg {
3853
+ width: 16px;
3854
+ fill: var(--jd-color-new-line);
3855
+ }
3856
+ .jodit-source__mode .jodit-add-new-line {
3857
+ display: none !important;
3858
+ }
3859
+
3860
+ /*!
3861
+ * Jodit Editor (https://xdsoft.net/jodit/)
3862
+ * Released under MIT see LICENSE.txt in the project root for license information.
3863
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
3864
+ */
3865
+ :root {
3866
+ --jd-color-picker-cell-size: 24px;
3867
+ }
3868
+ .jodit-color-picker {
3869
+ margin: 0;
3870
+ text-align: left;
3871
+ user-select: none;
3872
+ }
3873
+ .jodit-color-picker__group {
3874
+ display: flex;
3875
+ max-width: calc(var(--jd-color-picker-cell-size) * 10);
3876
+ flex-wrap: wrap;
3877
+ margin-bottom: calc(var(--jd-padding-default) / 2);
3878
+ white-space: normal;
3879
+ }
3880
+ .jodit-color-picker__color-item {
3881
+ display: block;
3882
+ width: var(--jd-color-picker-cell-size);
3883
+ height: var(--jd-color-picker-cell-size);
3884
+ border: 1px solid transparent;
3885
+ text-align: center;
3886
+ text-decoration: none;
3887
+ vertical-align: middle;
3888
+ }
3889
+ .jodit-color-picker__color-item:hover {
3890
+ border-color: #000;
3891
+ }
3892
+ .jodit-color-picker__color-item_active_true,
3893
+ .jodit-color-picker__color-item:active {
3894
+ border: 2px solid var(--jd-color-border-selected);
3895
+ }
3896
+ .jodit-color-picker__native svg {
3897
+ display: inline-block;
3898
+ width: 16px;
3899
+ height: 16px;
3900
+ margin-right: 4px;
3901
+ }
3902
+ .jodit-color-picker__native input {
3903
+ width: 18px;
3904
+ height: 18px;
3905
+ padding: 0;
3906
+ border: none;
3907
+ appearance: none;
3908
+ }
3909
+ .jodit-color-picker__native input[type='color']::-webkit-color-swatch-wrapper {
3910
+ padding: 0;
3911
+ }
3912
+ .jodit-color-picker__native input input[type='color']::-webkit-color-swatch {
3913
+ border: none;
3914
+ }
3915
+
3916
+ /*!
3917
+ * Jodit Editor (https://xdsoft.net/jodit/)
3918
+ * Released under MIT see LICENSE.txt in the project root for license information.
3919
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
3920
+ */
3921
+ .jodit-tabs {
3922
+ font-family: var(--jd-font-default);
3923
+ font-size: var(--jd-font-size-default);
3924
+ }
3925
+ .jodit-tabs .jodit-tabs__buttons {
3926
+ display: flex;
3927
+ justify-content: center;
3928
+ margin-top: 4px;
3929
+ margin-bottom: calc(var(--jd-padding-default) / 2);
3930
+ line-height: 18px;
3931
+ }
3932
+ .jodit-tabs .jodit-tabs__buttons > * {
3933
+ margin-left: calc(var(--jd-padding-default) / 2);
3934
+ cursor: pointer;
3935
+ }
3936
+ .jodit-tabs .jodit-tabs__buttons > *:only-of-type {
3937
+ width: 100%;
3938
+ }
3939
+ .jodit-tabs .jodit-tabs__buttons > *:first-child {
3940
+ margin-left: 0;
3941
+ }
3942
+ @media (max-width: 480px) {
3943
+ .jodit-tabs .jodit-tabs__buttons {
3944
+ display: block;
3945
+ }
3946
+ .jodit-tabs .jodit-tabs__buttons > * {
3947
+ width: 100%;
3948
+ margin-left: 0;
3949
+ }
3950
+ }
3951
+ .jodit-tabs__button {
3952
+ min-width: 80px;
3953
+ }
3954
+ .jodit-tabs__button_columns_3 {
3955
+ width: calc(100% / 3);
3956
+ }
3957
+ .jodit-tabs__button_columns_2 {
3958
+ width: 50%;
3959
+ }
3960
+ .jodit-tabs .jodit-tabs__wrapper .jodit-tab {
3961
+ display: none;
3962
+ }
3963
+ .jodit-tabs .jodit-tabs__wrapper .jodit-tab.jodit-tab_active {
3964
+ display: block;
3965
+ }
3966
+ .jodit-tabs .jodit-tabs__wrapper .jodit-tab.jodit-tab_empty {
3967
+ min-width: 220px;
3968
+ min-height: 100px;
3969
+ }
3970
+
3971
+ /*!
3972
+ * Jodit Editor (https://xdsoft.net/jodit/)
3973
+ * Released under MIT see LICENSE.txt in the project root for license information.
3974
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
3975
+ */
3976
+ .jodit_fullsize-box_true {
3977
+ position: static !important;
3978
+ z-index: var(--jd-z-index-full-size) !important;
3979
+ overflow: visible !important;
3980
+ }
3981
+ html.jodit_fullsize-box_true,
3982
+ body.jodit_fullsize-box_true {
3983
+ overflow: hidden !important;
3984
+ width: 0 !important;
3985
+ height: 0 !important;
3986
+ }
3987
+ html.jodit_fullsize-box_true {
3988
+ position: fixed !important;
3989
+ }
3990
+ .jodit_fullsize {
3991
+ position: absolute;
3992
+ z-index: var(--jd-z-index-full-size);
3993
+ top: 0;
3994
+ right: 0;
3995
+ bottom: 0;
3996
+ left: 0;
3997
+ max-width: none !important;
3998
+ }
3999
+ .jodit_fullsize .toolbar {
4000
+ width: 100% !important;
4001
+ }
4002
+ .jodit_fullsize .jodit_editor,
4003
+ .jodit_fullsize .jodit__area {
4004
+ height: 100%;
4005
+ }
4006
+
4007
+ /*!
4008
+ * Jodit Editor (https://xdsoft.net/jodit/)
4009
+ * Released under MIT see LICENSE.txt in the project root for license information.
4010
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
4011
+ */
4012
+ .jodit-properties__unlock > svg,
4013
+ .jodit-properties__lock > svg {
4014
+ display: inline-block;
4015
+ overflow: hidden;
4016
+ width: 14px;
4017
+ height: 14px;
4018
+ fill: #222;
4019
+ font-size: 8px;
4020
+ font-style: normal;
4021
+ line-height: 14px;
4022
+ transform-origin: 0 0 !important;
4023
+ vertical-align: middle;
4024
+ }
4025
+ .jodit-properties .jodit-properties_view_box {
4026
+ padding: var(--jd-padding-default);
4027
+ }
4028
+ .jodit-properties .jodit-properties_view_box .jodit-properties_image_view {
4029
+ display: flex;
4030
+ height: 150px;
4031
+ align-items: center;
4032
+ justify-content: center;
4033
+ padding: 0;
4034
+ margin: 0 0 var(--jd-padding-default);
4035
+ background-color: #f6f6f6;
4036
+ }
4037
+ .jodit-properties .jodit-properties_view_box .jodit-properties_image_view img {
4038
+ max-width: 100%;
4039
+ max-height: 100%;
4040
+ }
4041
+ .jodit-properties .jodit-properties_view_box .jodit-properties_image_sizes.jodit-form__group {
4042
+ min-width: auto;
4043
+ flex-direction: row;
4044
+ align-items: center;
4045
+ padding: 0 !important;
4046
+ margin: 0 !important;
4047
+ }
4048
+ .jodit-properties .jodit-properties_view_box .jodit-properties_image_sizes.jodit-form__group a {
4049
+ display: inline-block;
4050
+ cursor: pointer;
4051
+ }
4052
+ .jodit-properties .jodit-properties_view_box .jodit-properties_image_sizes.jodit-form__group .jodit-input {
4053
+ width: calc(50% - 8px) !important;
4054
+ }
4055
+
4056
+ /*!
4057
+ * Jodit Editor (https://xdsoft.net/jodit/)
4058
+ * Released under MIT see LICENSE.txt in the project root for license information.
4059
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
4060
+ */
4061
+ .jodit-popup-inline__container {
4062
+ z-index: 1300;
4063
+ min-width: 700px;
4064
+ }
4065
+
4066
+ /*!
4067
+ * Jodit Editor (https://xdsoft.net/jodit/)
4068
+ * Released under MIT see LICENSE.txt in the project root for license information.
4069
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
4070
+ */
4071
+ .jodit-paste-storage {
4072
+ max-width: 600px;
4073
+ padding: var(--jd-padding-default);
4074
+ }
4075
+ @media (max-width: 768px) {
4076
+ .jodit-paste-storage {
4077
+ max-width: 100%;
4078
+ }
4079
+ }
4080
+ .jodit-paste-storage > div {
4081
+ max-width: 100%;
4082
+ max-height: 300px;
4083
+ border: 1px solid var(--jd-color-border);
4084
+ }
4085
+ .jodit-paste-storage > div:first-child {
4086
+ margin-bottom: var(--jd-padding-default);
4087
+ }
4088
+ .jodit-paste-storage > div:first-child a {
4089
+ display: block;
4090
+ overflow: hidden;
4091
+ max-width: 100%;
4092
+ box-sizing: border-box;
4093
+ padding: calc(var(--jd-padding-default) / 2);
4094
+ border: 1px solid transparent;
4095
+ margin: 0;
4096
+ color: var(--jd-color-default);
4097
+ outline: none;
4098
+ text-decoration: none;
4099
+ text-overflow: ellipsis;
4100
+ white-space: pre;
4101
+ }
4102
+ .jodit-paste-storage > div:first-child a.jodit_active {
4103
+ background-color: var(--jd-dark_background_color);
4104
+ color: var(--jd-color-white);
4105
+ }
4106
+ .jodit-paste-storage > div:first-child a:focus {
4107
+ outline: none;
4108
+ }
4109
+ .jodit-paste-storage > div:last-child {
4110
+ overflow: auto;
4111
+ padding: var(--jd-padding-default);
4112
+ }
4113
+ .jodit-paste-storage > div:last-child ul,
4114
+ .jodit-paste-storage > div:last-child li {
4115
+ margin: 0;
4116
+ }
4117
+
4118
+ /*!
4119
+ * Jodit Editor (https://xdsoft.net/jodit/)
4120
+ * Released under MIT see LICENSE.txt in the project root for license information.
4121
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
4122
+ */
4123
+ .jodit-placeholder {
4124
+ position: absolute;
4125
+ z-index: 1;
4126
+ top: 0;
4127
+ left: 0;
4128
+ display: block;
4129
+ width: 100%;
4130
+ padding: var(--jd-padding-default);
4131
+ color: var(--jd-color-placeholder);
4132
+ pointer-events: none;
4133
+ user-select: none !important;
4134
+ }
4135
+
4136
+ .jodit__preview-box table {
4137
+ max-width: 100%;
4138
+ border: none;
4139
+ margin-top: 1em;
4140
+ margin-bottom: 1em;
4141
+ border-collapse: collapse;
4142
+ empty-cells: show;
4143
+ }
4144
+ .jodit__preview-box table tr {
4145
+ user-select: none;
4146
+ }
4147
+ .jodit__preview-box table tr th,
4148
+ .jodit__preview-box table tr td {
4149
+ min-width: 2em;
4150
+ padding: 0.4em;
4151
+ border: 1px solid var(--jd-color-border);
4152
+ user-select: text;
4153
+ vertical-align: middle;
4154
+ /**
4155
+ // In some circumstances, because of this rule,
4156
+ // the borders of the table are not shown - you need to find out under what
4157
+ &[style*='border'] {
4158
+ border-style: double !important;
4159
+ }
4160
+ */
4161
+ }
4162
+
4163
+ .jodit-table-resizer {
4164
+ position: absolute;
4165
+ z-index: 3;
4166
+ padding-right: calc(var(--jd-padding-default) / 2);
4167
+ padding-left: calc(var(--jd-padding-default) / 2);
4168
+ margin-left: calc(var(--jd-padding-default) / -2);
4169
+ cursor: col-resize;
4170
+ }
4171
+ .jodit-table-resizer::after {
4172
+ display: block;
4173
+ width: 0;
4174
+ height: 100%;
4175
+ border: 0;
4176
+ content: '';
4177
+ }
4178
+ .jodit-table-resizer_moved {
4179
+ z-index: 2;
4180
+ background-color: var(--jd-color-background-selection);
4181
+ }
4182
+ .jodit-table-resizer_moved::after {
4183
+ border-right: 1px solid var(--jd-color-border) moved;
4184
+ }
4185
+
4186
+ /*!
4187
+ * Jodit Editor (https://xdsoft.net/jodit/)
4188
+ * Released under MIT see LICENSE.txt in the project root for license information.
4189
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
4190
+ */
4191
+ [data-jodit_iframe_wrapper] {
4192
+ position: relative;
4193
+ display: block;
4194
+ user-select: none;
4195
+ }
4196
+ [data-jodit_iframe_wrapper] iframe {
4197
+ position: relative;
4198
+ }
4199
+ [data-jodit_iframe_wrapper]::after {
4200
+ position: absolute;
4201
+ z-index: 1;
4202
+ top: 0;
4203
+ right: 0;
4204
+ bottom: 0;
4205
+ left: 0;
4206
+ display: block;
4207
+ background: rgba(0, 0, 0, 0);
4208
+ content: '';
4209
+ cursor: pointer;
4210
+ }
4211
+ [data-jodit_iframe_wrapper][data-jodit-wrapper_active='true'] iframe {
4212
+ z-index: 2;
4213
+ }
4214
+ .jodit_lock [data-jodit-wrapper_active='true'] iframe {
4215
+ z-index: 1;
4216
+ }
4217
+ :root {
4218
+ --jd-viewer_width: 70px;
4219
+ --jd-viewer_height: 24px;
4220
+ --jd-resizer-handle-size: 10px;
4221
+ --jd-resizer-border-color: #98c1f1;
4222
+ --jd-resizer-handle-color: #5ba4f3;
4223
+ --jd-resizer-handle-hover-color: #537ebb;
4224
+ }
4225
+ .jodit-resizer {
4226
+ position: absolute;
4227
+ top: 0;
4228
+ left: 0;
4229
+ width: 100px;
4230
+ height: 100px;
4231
+ box-sizing: border-box;
4232
+ font-size: 0;
4233
+ outline: 3px solid var(--jd-resizer-border-color);
4234
+ pointer-events: none;
4235
+ }
4236
+ .jodit-resizer * {
4237
+ box-sizing: border-box;
4238
+ }
4239
+ .jodit-resizer > span {
4240
+ position: absolute;
4241
+ top: 50%;
4242
+ left: 50%;
4243
+ display: inline-block;
4244
+ overflow: visible;
4245
+ width: var(--jd-viewer_width);
4246
+ height: var(--jd-viewer_height);
4247
+ margin-top: calc(var(--jd-viewer_height) / -2);
4248
+ margin-left: calc(var(--jd-viewer_width) / -2);
4249
+ background-color: var(--jd-color-placeholder);
4250
+ color: var(--jd-color-white);
4251
+ font-size: 12px;
4252
+ line-height: var(--jd-viewer_height);
4253
+ opacity: 0;
4254
+ text-align: center;
4255
+ transition: opacity 0.2s linear;
4256
+ }
4257
+ .jodit-resizer > div {
4258
+ position: absolute;
4259
+ z-index: 4;
4260
+ display: inline-block;
4261
+ width: var(--jd-resizer-handle-size);
4262
+ height: var(--jd-resizer-handle-size);
4263
+ background-color: var(--jd-resizer-handle-color);
4264
+ pointer-events: all;
4265
+ }
4266
+ .jodit-resizer > div:hover {
4267
+ background-color: var(--jd-resizer-handle-hover-color);
4268
+ }
4269
+ .jodit-resizer > div:nth-child(1) {
4270
+ top: calc(var(--jd-resizer-handle-size) / -2);
4271
+ left: calc(var(--jd-resizer-handle-size) / -2);
4272
+ cursor: nwse-resize;
4273
+ }
4274
+ .jodit-resizer > div:nth-child(2) {
4275
+ top: calc(var(--jd-resizer-handle-size) / -2);
4276
+ right: calc(var(--jd-resizer-handle-size) / -2);
4277
+ cursor: nesw-resize;
4278
+ }
4279
+ .jodit-resizer > div:nth-child(3) {
4280
+ right: calc(var(--jd-resizer-handle-size) / -2);
4281
+ bottom: calc(var(--jd-resizer-handle-size) / -2);
4282
+ cursor: nwse-resize;
4283
+ }
4284
+ .jodit-resizer > div:nth-child(4) {
4285
+ bottom: calc(var(--jd-resizer-handle-size) / -2);
4286
+ left: calc(var(--jd-resizer-handle-size) / -2);
4287
+ cursor: nesw-resize;
4288
+ }
4289
+ @media (max-width: 768px) {
4290
+ .jodit-resizer > div :root {
4291
+ --jd-resizer-handle-size: calc(var(--jd-resizer-handle-size) * 2);
4292
+ }
4293
+ }
4294
+
4295
+ /*!
4296
+ * Jodit Editor (https://xdsoft.net/jodit/)
4297
+ * Released under MIT see LICENSE.txt in the project root for license information.
4298
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
4299
+ */
4300
+ :root {
4301
+ --jd-height-search: 30px;
4302
+ --jd-width-search: 320px;
4303
+ --jd-width-search-input-box: 60%;
4304
+ --jd-width-search-count-box: 15%;
4305
+ --jd-transform-button-active: 0.95;
4306
+ --jd-timeout-button-active: 0.1s;
4307
+ }
4308
+ .jodit-ui-search {
4309
+ position: absolute;
4310
+ top: 0;
4311
+ right: 0;
4312
+ width: 0;
4313
+ height: 0;
4314
+ }
4315
+ .jodit-ui-search_sticky_true {
4316
+ position: fixed;
4317
+ }
4318
+ .jodit-ui-search__box {
4319
+ position: absolute;
4320
+ right: 0;
4321
+ display: flex;
4322
+ width: var(--jd-width-search);
4323
+ max-width: 100vw;
4324
+ padding: calc(var(--jd-padding-default) / 2);
4325
+ border: solid var(--jd-color-border);
4326
+ border-width: 0 0 1px 1px;
4327
+ background-color: var(--jd-color-panel);
4328
+ }
4329
+ .jodit-ui-search__box input {
4330
+ width: 100%;
4331
+ height: 100%;
4332
+ padding: 0 var(--jd-padding-default);
4333
+ border: 0;
4334
+ margin: 0;
4335
+ background-color: transparent;
4336
+ outline: none;
4337
+ }
4338
+ .jodit-ui-search__box input[data-ref='replace'] {
4339
+ display: none;
4340
+ }
4341
+ .jodit-ui-search__box input:not(:focus) + input:not(:focus) {
4342
+ border-top: 1px solid var(--jd-color-border);
4343
+ }
4344
+ .jodit-ui-search__buttons,
4345
+ .jodit-ui-search__counts,
4346
+ .jodit-ui-search__inputs {
4347
+ height: var(--jd-height-search);
4348
+ }
4349
+ .jodit-ui-search__inputs {
4350
+ width: var(--jd-width-search-input-box);
4351
+ padding-right: calc(var(--jd-padding-default) / 2);
4352
+ }
4353
+ .jodit-ui-search__counts {
4354
+ display: flex;
4355
+ width: var(--jd-width-search-count-box);
4356
+ align-items: center;
4357
+ justify-content: center;
4358
+ border-left: 1px solid var(--jd-color-border);
4359
+ color: var(--jd-color-border);
4360
+ }
4361
+ .jodit-ui-search__buttons {
4362
+ display: flex;
4363
+ flex: 1;
4364
+ align-items: center;
4365
+ justify-content: center;
4366
+ padding-left: 0;
4367
+ }
4368
+ .jodit-ui-search__buttons button {
4369
+ width: 32%;
4370
+ height: 100%;
4371
+ border: 1px solid transparent;
4372
+ margin-right: 1%;
4373
+ background-color: transparent;
4374
+ }
4375
+ .jodit-ui-search__buttons button[data-ref='replace-btn'] {
4376
+ display: none;
4377
+ width: 100%;
4378
+ border: 1px solid var(--jd-color-border);
4379
+ margin-top: 2px;
4380
+ }
4381
+ .jodit-ui-search__buttons button:hover {
4382
+ background-color: var(--jd-color-background-button-hover);
4383
+ }
4384
+ .jodit-ui-search__buttons button:focus {
4385
+ border: 1px solid var(--jd-color-background-selection_opacity50);
4386
+ }
4387
+ .jodit-ui-search__buttons button:active {
4388
+ border: 1px solid var(--jd-color-background-selection);
4389
+ transform: scale(var(--jd-transform-button-active), var(--jd-transform-button-active));
4390
+ }
4391
+ .jodit-ui-search_empty-query_true [data-ref='next'],
4392
+ .jodit-ui-search_empty-query_true [data-ref='prev'] {
4393
+ opacity: 0.5;
4394
+ }
4395
+ .jodit-ui-search_replace_true .jodit-ui-search__counts,
4396
+ .jodit-ui-search_replace_true .jodit-ui-search__inputs {
4397
+ height: calc(var(--jd-height-search) * 2);
4398
+ }
4399
+ .jodit-ui-search_replace_true .jodit-ui-search__counts input,
4400
+ .jodit-ui-search_replace_true .jodit-ui-search__inputs input {
4401
+ height: 50%;
4402
+ transition: background-color var(--jd-timeout-button-active) linear;
4403
+ }
4404
+ .jodit-ui-search_replace_true .jodit-ui-search__counts input:focus,
4405
+ .jodit-ui-search_replace_true .jodit-ui-search__inputs input:focus {
4406
+ box-shadow: inset 0 0 3px 0 var(--jd-color-border);
4407
+ }
4408
+ .jodit-ui-search_replace_true .jodit-ui-search__counts input[data-ref='replace'],
4409
+ .jodit-ui-search_replace_true .jodit-ui-search__inputs input[data-ref='replace'] {
4410
+ display: block;
4411
+ }
4412
+ .jodit-ui-search_replace_true .jodit-ui-search__buttons {
4413
+ flex-wrap: wrap;
4414
+ }
4415
+ .jodit-ui-search_replace_true .jodit-ui-search__buttons button[data-ref='replace-btn'] {
4416
+ display: block;
4417
+ }
4418
+ [jd-tmp-selection] {
4419
+ background-color: aquamarine;
4420
+ }
4421
+
4422
+ /*!
4423
+ * Jodit Editor (https://xdsoft.net/jodit/)
4424
+ * Released under MIT see LICENSE.txt in the project root for license information.
4425
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
4426
+ */
4427
+ .jodit-container:not(.jodit_inline) {
4428
+ min-height: 100px;
4429
+ }
4430
+ .jodit-container:not(.jodit_inline) .jodit-workplace {
4431
+ display: flex;
4432
+ overflow: hidden;
4433
+ height: auto;
4434
+ min-height: 50px;
4435
+ flex-direction: column;
4436
+ }
4437
+ .jodit-container:not(.jodit_inline) .jodit-editor__resize {
4438
+ position: relative;
4439
+ }
4440
+ .jodit-container:not(.jodit_inline) .jodit-editor__resize svg {
4441
+ position: absolute;
4442
+ right: 0;
4443
+ bottom: 0;
4444
+ overflow: hidden;
4445
+ width: 12px;
4446
+ height: 12px;
4447
+ cursor: nwse-resize;
4448
+ fill: var(--jd-color-gray-dark);
4449
+ user-select: none;
4450
+ }
4451
+
4452
+ /*!
4453
+ * Jodit Editor (https://xdsoft.net/jodit/)
4454
+ * Released under MIT see LICENSE.txt in the project root for license information.
4455
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
4456
+ */
4457
+ .jodit-source {
4458
+ position: relative;
4459
+ display: none;
4460
+ overflow: auto;
4461
+ min-height: 100%;
4462
+ flex: auto;
4463
+ background-color: var(--jd-color-source-area);
4464
+ }
4465
+ .jodit-source .jodit-source__mirror-fake {
4466
+ min-height: 100%;
4467
+ }
4468
+ .jodit-source * {
4469
+ font: 12px / normal 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', monospace;
4470
+ }
4471
+ .jodit-container.jodit-source__mode .jodit-wysiwyg,
4472
+ .jodit-container.jodit-source__mode .jodit-wysiwyg_iframe {
4473
+ display: none !important;
4474
+ }
4475
+ .jodit-container.jodit-source__mode .jodit-source {
4476
+ display: block !important;
4477
+ }
4478
+ .jodit-container.jodit_split_mode .jodit-workplace {
4479
+ flex-direction: row;
4480
+ flex-wrap: nowrap;
4481
+ }
4482
+ .jodit-container.jodit_split_mode .jodit-wysiwyg,
4483
+ .jodit-container.jodit_split_mode .jodit-wysiwyg_iframe,
4484
+ .jodit-container.jodit_split_mode .jodit-source {
4485
+ display: block !important;
4486
+ width: 50%;
4487
+ flex: 1;
4488
+ }
4489
+ .jodit-source__mirror {
4490
+ z-index: 2;
4491
+ overflow: auto;
4492
+ width: 100%;
4493
+ height: 100%;
4494
+ min-height: 100%;
4495
+ box-sizing: border-box;
4496
+ padding: var(--jd-padding-default);
4497
+ border: 0;
4498
+ margin: 0;
4499
+ background: var(--jd-color-source-area);
4500
+ box-shadow: none;
4501
+ color: #f0f0f0;
4502
+ line-height: 1.5;
4503
+ outline: none;
4504
+ resize: none;
4505
+ tab-size: 2em;
4506
+ font: 12px / normal 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', monospace;
4507
+ white-space: pre-wrap;
4508
+ }
4509
+ .jodit-source__mirror::selection {
4510
+ background: var(--jd-color-selection-area);
4511
+ }
4512
+
4513
+ /*!
4514
+ * Jodit Editor (https://xdsoft.net/jodit/)
4515
+ * Released under MIT see LICENSE.txt in the project root for license information.
4516
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
4517
+ */
4518
+ .jodit_sticky-dummy_toolbar {
4519
+ display: none;
4520
+ }
4521
+ .jodit_sticky > .jodit-toolbar__box {
4522
+ position: fixed;
4523
+ position: sticky;
4524
+ z-index: 3;
4525
+ top: 0;
4526
+ left: auto;
4527
+ border-bottom: 1px solid var(--jd-color-border);
4528
+ }
4529
+ .jodit_sticky .jodit_sticky-dummy_toolbar {
4530
+ display: block;
4531
+ }
4532
+
4533
+ /*!
4534
+ * Jodit Editor (https://xdsoft.net/jodit/)
4535
+ * Released under MIT see LICENSE.txt in the project root for license information.
4536
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
4537
+ */
4538
+ .jodit-symbols {
4539
+ width: 460px;
4540
+ padding: var(--jd-padding-default);
4541
+ }
4542
+ .jodit-symbols__container {
4543
+ display: flex;
4544
+ }
4545
+ .jodit-symbols__container_table {
4546
+ width: 88%;
4547
+ }
4548
+ .jodit-symbols__container_preview {
4549
+ width: 12%;
4550
+ }
4551
+ .jodit-symbols__preview {
4552
+ padding: 20px 0;
4553
+ border: 1px solid var(--jd-color-border);
4554
+ font-size: 34px;
4555
+ text-align: center;
4556
+ }
4557
+ .jodit-symbols__table {
4558
+ border: 0;
4559
+ border-spacing: 0;
4560
+ table-layout: fixed;
4561
+ }
4562
+ .jodit-symbols__table td {
4563
+ padding: 0;
4564
+ }
4565
+ .jodit-symbols__table td a {
4566
+ display: inline-block;
4567
+ width: calc(var(--jd-width_element_default) * 1.2);
4568
+ height: calc(var(--jd-height_element_default) * 1.2);
4569
+ box-sizing: border-box;
4570
+ border: 1px solid transparent;
4571
+ color: var(--jd-color-default);
4572
+ cursor: pointer;
4573
+ font-size: 16px;
4574
+ line-height: calc(var(--jd-height_element_default) * 1.2);
4575
+ text-align: center;
4576
+ text-decoration: none;
4577
+ vertical-align: top;
4578
+ }
4579
+ .jodit-symbols__table td a:hover,
4580
+ .jodit-symbols__table td a:focus {
4581
+ outline: 2px solid var(--jd-color-border);
4582
+ }
4583
+
4584
+ /*!
4585
+ * Jodit Editor (https://xdsoft.net/jodit/)
4586
+ * Released under MIT see LICENSE.txt in the project root for license information.
4587
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
4588
+ */
4589
+ .jodit-context table,
4590
+ .jodit-wysiwyg table {
4591
+ max-width: 100%;
4592
+ border: none;
4593
+ margin-top: 1em;
4594
+ margin-bottom: 1em;
4595
+ border-collapse: collapse;
4596
+ empty-cells: show;
4597
+ }
4598
+ .jodit-context table tr,
4599
+ .jodit-wysiwyg table tr {
4600
+ user-select: none;
4601
+ }
4602
+ .jodit-context table tr th,
4603
+ .jodit-wysiwyg table tr th,
4604
+ .jodit-context table tr td,
4605
+ .jodit-wysiwyg table tr td {
4606
+ min-width: 2em;
4607
+ padding: 0.4em;
4608
+ border: 1px solid var(--jd-color-border);
4609
+ user-select: text;
4610
+ vertical-align: middle;
4611
+ /**
4612
+ // In some circumstances, because of this rule,
4613
+ // the borders of the table are not shown - you need to find out under what
4614
+ &[style*='border'] {
4615
+ border-style: double !important;
4616
+ }
4617
+ */
4618
+ }
4619
+ .jodit-form__inserter .jodit-form__table-creator-box {
4620
+ display: flex;
4621
+ }
4622
+ @media (max-width: 768px) {
4623
+ .jodit-form__inserter .jodit-form__table-creator-box {
4624
+ flex-direction: column;
4625
+ }
4626
+ }
4627
+ .jodit-form__inserter .jodit-form__table-creator-box .jodit-form__container {
4628
+ min-width: 180px;
4629
+ padding: 0;
4630
+ margin: 0;
4631
+ font-size: 0;
4632
+ }
4633
+ .jodit-form__inserter .jodit-form__table-creator-box .jodit-form__container > div > span {
4634
+ display: inline-block;
4635
+ width: var(--jd-width_element_default);
4636
+ height: var(--jd-height_element_default);
4637
+ box-sizing: border-box;
4638
+ border: 1px solid var(--jd-color-border);
4639
+ margin-bottom: 2px;
4640
+ margin-left: 2px;
4641
+ vertical-align: top;
4642
+ }
4643
+ .jodit-form__inserter .jodit-form__table-creator-box .jodit-form__container > div > span:first-child {
4644
+ margin-left: 0;
4645
+ }
4646
+ .jodit-form__inserter .jodit-form__table-creator-box .jodit-form__container > div > span.jodit_hovered {
4647
+ border-color: var(--jd-color-background-hover);
4648
+ background: var(--jd-color-background-hover);
4649
+ }
4650
+ .jodit-form__inserter .jodit-form__table-creator-box .jodit-form__options {
4651
+ font-size: var(--jd-font-size-default);
4652
+ }
4653
+ .jodit-form__inserter .jodit-form__table-creator-box .jodit-form__options label {
4654
+ padding-top: 0;
4655
+ text-align: left;
4656
+ }
4657
+ .jodit-form__inserter .jodit-form__table-creator-box .jodit-form__options label input {
4658
+ margin-right: var(--jd-padding-default);
4659
+ }
4660
+ .jodit-form__inserter label {
4661
+ padding: 8px;
4662
+ margin: 0;
4663
+ font-size: 14px;
4664
+ text-align: center;
4665
+ }
4666
+
4667
+ /*!
4668
+ * Jodit Editor (https://xdsoft.net/jodit/)
4669
+ * Released under MIT see LICENSE.txt in the project root for license information.
4670
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
4671
+ */
4672
+ .jodit-xpath {
4673
+ display: flex;
4674
+ align-items: center;
4675
+ margin-left: calc(var(--jd-padding-default) / -2);
4676
+ }
4677
+ .jodit-xpath__item {
4678
+ display: flex;
4679
+ height: var(--jd-font-size-small);
4680
+ line-height: calc(var(--jd-font-size-small) - 1px);
4681
+ }
4682
+ .jodit-xpath__item a {
4683
+ padding: 0 3px;
4684
+ margin-left: 2px;
4685
+ color: var(--jd-color-default);
4686
+ font-size: var(--jd-font-size-small);
4687
+ outline: 0;
4688
+ }
4689
+
4690
+ /*!
4691
+ * Jodit Editor (https://xdsoft.net/jodit/)
4692
+ * Released under MIT see LICENSE.txt in the project root for license information.
4693
+ * Copyright (c) 2013-2023 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
4694
+ */
4695
+ .jodit-dialog_theme_dark,
4696
+ .jodit_theme_dark {
4697
+ --jd-color-border: #6b6b6b;
4698
+ }
4699
+ .jodit-dialog_theme_dark .jodit-toolbar-collection_mode_horizontal,
4700
+ .jodit_theme_dark .jodit-toolbar-collection_mode_horizontal,
4701
+ .jodit-dialog_theme_dark .jodit-toolbar-editor-collection_mode_horizontal,
4702
+ .jodit_theme_dark .jodit-toolbar-editor-collection_mode_horizontal {
4703
+ background-image: repeating-linear-gradient(transparent 0, transparent calc(var(--jd-button-size) - 1px), var(--jd-color-border) var(--jd-button-size));
4704
+ }
4705
+ .jodit-dialog_theme_dark .jodit-toolbar-collection_mode_horizontal:after,
4706
+ .jodit_theme_dark .jodit-toolbar-collection_mode_horizontal:after,
4707
+ .jodit-dialog_theme_dark .jodit-toolbar-editor-collection_mode_horizontal:after,
4708
+ .jodit_theme_dark .jodit-toolbar-editor-collection_mode_horizontal:after {
4709
+ background-color: var(--jd-color-border);
4710
+ }
4711
+ .jodit-dialog_theme_dark .jodit-toolbar__box:not(:empty),
4712
+ .jodit_theme_dark .jodit-toolbar__box:not(:empty) {
4713
+ border-color: var(--jd-color-border);
4714
+ }
4715
+ .jodit-dialog_theme_dark .jodit-toolbar__box:not(:empty) .jodit-toolbar-editor-collection:after,
4716
+ .jodit_theme_dark .jodit-toolbar__box:not(:empty) .jodit-toolbar-editor-collection:after {
4717
+ background-color: var(--jd-color-border);
4718
+ }
4719
+ .jodit-dialog_theme_dark .jodit-ui-group_separated_true:not(:last-child):not(
4720
+ .jodit-ui-group_before-spacer_true
4721
+ ):after,
4722
+ .jodit_theme_dark .jodit-ui-group_separated_true:not(:last-child):not(
4723
+ .jodit-ui-group_before-spacer_true
4724
+ ):after {
4725
+ border-right-color: var(--jd-color-border);
4726
+ }
4727
+ .jodit-dialog_theme_dark.jodit-container,
4728
+ .jodit_theme_dark.jodit-container {
4729
+ --jd-color-border: #6b6b6b;
4730
+ border-color: var(--jd-color-border);
4731
+ background-color: var(--jd-dark_background_color);
4732
+ }
4733
+ .jodit-dialog_theme_dark.jodit-container.jodit_disabled,
4734
+ .jodit_theme_dark.jodit-container.jodit_disabled {
4735
+ background-color: var(--jd-dark_background_color);
4736
+ }
4737
+ .jodit-dialog_theme_dark.jodit-container:not(.jodit_inline) .jodit-workplace,
4738
+ .jodit_theme_dark.jodit-container:not(.jodit_inline) .jodit-workplace {
4739
+ border-color: var(--jd-dark_background_color);
4740
+ }
4741
+ .jodit-dialog_theme_dark .jodit-popup__content,
4742
+ .jodit_theme_dark .jodit-popup__content {
4743
+ background: var(--jd-dark_background_ligher);
4744
+ }
4745
+ .jodit-dialog_theme_dark .jodit-ui-button__text,
4746
+ .jodit_theme_dark .jodit-ui-button__text,
4747
+ .jodit-dialog_theme_dark .jodit-toolbar-button__text,
4748
+ .jodit_theme_dark .jodit-toolbar-button__text {
4749
+ color: var(--jd-dark_text_color);
4750
+ }
4751
+ .jodit-dialog_theme_dark .jodit-ui-button:hover:not([disabled]),
4752
+ .jodit_theme_dark .jodit-ui-button:hover:not([disabled]),
4753
+ .jodit-dialog_theme_dark .jodit-toolbar-button:hover:not([disabled]),
4754
+ .jodit_theme_dark .jodit-toolbar-button:hover:not([disabled]),
4755
+ .jodit-dialog_theme_dark .jodit-ui-button__button:hover:not([disabled]),
4756
+ .jodit_theme_dark .jodit-ui-button__button:hover:not([disabled]),
4757
+ .jodit-dialog_theme_dark .jodit-toolbar-button__button:hover:not([disabled]),
4758
+ .jodit_theme_dark .jodit-toolbar-button__button:hover:not([disabled]),
4759
+ .jodit-dialog_theme_dark .jodit-ui-button__trigger:hover:not([disabled]),
4760
+ .jodit_theme_dark .jodit-ui-button__trigger:hover:not([disabled]),
4761
+ .jodit-dialog_theme_dark .jodit-toolbar-button__trigger:hover:not([disabled]),
4762
+ .jodit_theme_dark .jodit-toolbar-button__trigger:hover:not([disabled]) {
4763
+ background-color: var(--jd-dark_background_ligher);
4764
+ }
4765
+ .jodit-dialog_theme_dark .jodit-workplace + .jodit-status-bar:not(:empty),
4766
+ .jodit_theme_dark .jodit-workplace + .jodit-status-bar:not(:empty),
4767
+ .jodit-dialog_theme_dark .jodit-status-bar,
4768
+ .jodit_theme_dark .jodit-status-bar {
4769
+ border-color: var(--jd-color-border);
4770
+ background-color: var(--jd-dark_toolbar_color);
4771
+ color: var(--jd-dark_text_color);
4772
+ }
4773
+ .jodit-dialog_theme_dark .jodit-workplace + .jodit-status-bar:not(:empty) a.jodit-status-bar-link,
4774
+ .jodit_theme_dark .jodit-workplace + .jodit-status-bar:not(:empty) a.jodit-status-bar-link,
4775
+ .jodit-dialog_theme_dark .jodit-status-bar a.jodit-status-bar-link,
4776
+ .jodit_theme_dark .jodit-status-bar a.jodit-status-bar-link,
4777
+ .jodit-dialog_theme_dark .jodit-workplace + .jodit-status-bar:not(:empty) a.jodit-status-bar-link:hover,
4778
+ .jodit_theme_dark .jodit-workplace + .jodit-status-bar:not(:empty) a.jodit-status-bar-link:hover,
4779
+ .jodit-dialog_theme_dark .jodit-status-bar a.jodit-status-bar-link:hover,
4780
+ .jodit_theme_dark .jodit-status-bar a.jodit-status-bar-link:hover,
4781
+ .jodit-dialog_theme_dark .jodit-workplace + .jodit-status-bar:not(:empty) a.jodit-status-bar-link:visited,
4782
+ .jodit_theme_dark .jodit-workplace + .jodit-status-bar:not(:empty) a.jodit-status-bar-link:visited,
4783
+ .jodit-dialog_theme_dark .jodit-status-bar a.jodit-status-bar-link:visited,
4784
+ .jodit_theme_dark .jodit-status-bar a.jodit-status-bar-link:visited {
4785
+ color: var(--jd-dark_text_color);
4786
+ }
4787
+ .jodit-dialog_theme_dark .jodit-workplace + .jodit-status-bar:not(:empty),
4788
+ .jodit_theme_dark .jodit-workplace + .jodit-status-bar:not(:empty),
4789
+ .jodit-dialog_theme_dark .jodit-status-bar,
4790
+ .jodit_theme_dark .jodit-status-bar,
4791
+ .jodit-dialog_theme_dark .jodit-workplace + .jodit-status-bar:not(:empty) .jodit-status-bar__item a,
4792
+ .jodit_theme_dark .jodit-workplace + .jodit-status-bar:not(:empty) .jodit-status-bar__item a,
4793
+ .jodit-dialog_theme_dark .jodit-status-bar .jodit-status-bar__item a,
4794
+ .jodit_theme_dark .jodit-status-bar .jodit-status-bar__item a,
4795
+ .jodit-dialog_theme_dark .jodit-workplace + .jodit-status-bar:not(:empty) .jodit-status-bar__item span,
4796
+ .jodit_theme_dark .jodit-workplace + .jodit-status-bar:not(:empty) .jodit-status-bar__item span,
4797
+ .jodit-dialog_theme_dark .jodit-status-bar .jodit-status-bar__item span,
4798
+ .jodit_theme_dark .jodit-status-bar .jodit-status-bar__item span {
4799
+ color: var(--jd-dark_text_color);
4800
+ }
4801
+ .jodit-dialog_theme_dark .jodit-toolbar__box:not(:empty),
4802
+ .jodit_theme_dark .jodit-toolbar__box:not(:empty) {
4803
+ background: var(--jd-dark_toolbar_color);
4804
+ }
4805
+ .jodit-dialog_theme_dark .jodit__upload-button svg,
4806
+ .jodit_theme_dark .jodit__upload-button svg,
4807
+ .jodit-dialog_theme_dark .jodit-toolbar-button .jodit-toolbar-button__trigger,
4808
+ .jodit_theme_dark .jodit-toolbar-button .jodit-toolbar-button__trigger,
4809
+ .jodit-dialog_theme_dark .jodit-icon,
4810
+ .jodit_theme_dark .jodit-icon {
4811
+ fill: var(--jd-dark_icon_color);
4812
+ stroke: var(--jd-dark_icon_color);
4813
+ }
4814
+ .jodit-dialog_theme_dark .jodit-icon-close,
4815
+ .jodit_theme_dark .jodit-icon-close {
4816
+ stroke: var(--jd-dark_icon_color);
4817
+ }
4818
+ .jodit-dialog_theme_dark .jodit-wysiwyg_iframe,
4819
+ .jodit_theme_dark .jodit-wysiwyg_iframe,
4820
+ .jodit-dialog_theme_dark .jodit-wysiwyg,
4821
+ .jodit_theme_dark .jodit-wysiwyg {
4822
+ background-color: var(--jd-dark_background_color);
4823
+ color: var(--jd-dark_text_color);
4824
+ }
4825
+ .jodit-dialog_theme_dark .jodit-form textarea,
4826
+ .jodit_theme_dark .jodit-form textarea,
4827
+ .jodit-dialog_theme_dark .jodit-form input[type='url'],
4828
+ .jodit_theme_dark .jodit-form input[type='url'],
4829
+ .jodit-dialog_theme_dark .jodit-form input[type='text'],
4830
+ .jodit_theme_dark .jodit-form input[type='text'] {
4831
+ border-color: var(--jd-dark_toolbar_seperator_color2);
4832
+ background-color: var(--jd-dark_toolbar_seperator_color1);
4833
+ color: var(--jd-dark_text_color);
4834
+ }
4835
+ .jodit-dialog_theme_dark .jodit-form button,
4836
+ .jodit_theme_dark .jodit-form button {
4837
+ background-color: var(--jd-dark_toolbar_seperator_color3);
4838
+ color: var(--jd-dark_text_color);
4839
+ }
4840
+ .jodit-dialog_theme_dark .jodit-placeholder,
4841
+ .jodit_theme_dark .jodit-placeholder {
4842
+ color: var(--jd-dark_text_color_opacity80);
4843
+ }
4844
+ .jodit-dialog_theme_dark .jodit-drag-and-drop__file-box,
4845
+ .jodit_theme_dark .jodit-drag-and-drop__file-box,
4846
+ .jodit-dialog_theme_dark .jodit_uploadfile_button,
4847
+ .jodit_theme_dark .jodit_uploadfile_button {
4848
+ color: var(--jd-dark_text_color);
4849
+ }
4850
+ .jodit-dialog_theme_dark .jodit-drag-and-drop__file-box:hover,
4851
+ .jodit_theme_dark .jodit-drag-and-drop__file-box:hover,
4852
+ .jodit-dialog_theme_dark .jodit_uploadfile_button:hover,
4853
+ .jodit_theme_dark .jodit_uploadfile_button:hover {
4854
+ background-color: var(--jd-dark_toolbar_seperator_color3);
4855
+ }
4856
+ .jodit-dialog_theme_dark .jodit-add-new-line::before,
4857
+ .jodit_theme_dark .jodit-add-new-line::before {
4858
+ border-top-color: var(--jd-dark_toolbar_seperator_color2);
4859
+ }
4860
+ .jodit-dialog_theme_dark .jodit-add-new-line span,
4861
+ .jodit_theme_dark .jodit-add-new-line span {
4862
+ border-color: var(--jd-dark_toolbar_seperator_color2);
4863
+ background: var(--jd-dark_toolbar_seperator_color3);
4864
+ }
4865
+ .jodit-dialog_theme_dark .jodit-add-new-line span svg,
4866
+ .jodit_theme_dark .jodit-add-new-line span svg {
4867
+ fill: var(--jd-dark_text_color);
4868
+ }
4869
+ .jodit-dialog_theme_dark .jodit-resizer > i,
4870
+ .jodit_theme_dark .jodit-resizer > i {
4871
+ border-color: var(--jd-dark_icon_color);
4872
+ background: var(--jd-dark_toolbar_seperator_color3);
4873
+ }
4874
+ .jodit-dialog_theme_dark .jodit-select,
4875
+ .jodit_theme_dark .jodit-select,
4876
+ .jodit-dialog_theme_dark .jodit-input,
4877
+ .jodit_theme_dark .jodit-input {
4878
+ border-color: var(--jd-dark_border_color);
4879
+ background-color: var(--jd-dark_background_ligher);
4880
+ color: var(--jd-dark_border_color);
4881
+ }
4882
+ .jodit-dialog_theme_dark.jodit-dialog,
4883
+ .jodit_theme_dark.jodit-dialog {
4884
+ background-color: var(--jd-dark_background_color);
4885
+ }
4886
+ .jodit-dialog_theme_dark.jodit-dialog .jodit-filebrowser__files.active .jodit-filebrowser__files-item,
4887
+ .jodit_theme_dark.jodit-dialog .jodit-filebrowser__files.active .jodit-filebrowser__files-item,
4888
+ .jodit-dialog_theme_dark.jodit-dialog .jodit-dialog__header,
4889
+ .jodit_theme_dark.jodit-dialog .jodit-dialog__header {
4890
+ border-color: var(--jd-dark_border_color);
4891
+ }
4892
+ .jodit-dialog_theme_dark.jodit-dialog .jodit-filebrowser__files.active .jodit-filebrowser__files-item-info,
4893
+ .jodit_theme_dark.jodit-dialog .jodit-filebrowser__files.active .jodit-filebrowser__files-item-info {
4894
+ background-color: var(--jd-dark_text_color);
4895
+ }
4896
+