@syncfusion/ej2-richtexteditor 20.4.53 → 21.1.37

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 (133) hide show
  1. package/CHANGELOG.md +16 -2
  2. package/dist/ej2-richtexteditor.min.js +2 -2
  3. package/dist/ej2-richtexteditor.umd.min.js +2 -2
  4. package/dist/ej2-richtexteditor.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-richtexteditor.es2015.js +1479 -576
  6. package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
  7. package/dist/es6/ej2-richtexteditor.es5.js +1516 -605
  8. package/dist/es6/ej2-richtexteditor.es5.js.map +1 -1
  9. package/dist/global/ej2-richtexteditor.min.js +2 -2
  10. package/dist/global/ej2-richtexteditor.min.js.map +1 -1
  11. package/dist/global/index.d.ts +1 -1
  12. package/package.json +13 -13
  13. package/src/common/config.js +3 -1
  14. package/src/common/constant.d.ts +6 -0
  15. package/src/common/constant.js +6 -0
  16. package/src/common/util.d.ts +1 -0
  17. package/src/common/util.js +1 -0
  18. package/src/editor-manager/base/editor-manager.d.ts +2 -0
  19. package/src/editor-manager/base/editor-manager.js +5 -0
  20. package/src/editor-manager/base/enum.d.ts +14 -0
  21. package/src/editor-manager/base/interface.d.ts +34 -0
  22. package/src/editor-manager/plugin/clearformat.js +13 -4
  23. package/src/editor-manager/plugin/format-painter-actions.d.ts +63 -0
  24. package/src/editor-manager/plugin/format-painter-actions.js +474 -0
  25. package/src/editor-manager/plugin/image.js +0 -1
  26. package/src/editor-manager/plugin/inserthtml.js +4 -2
  27. package/src/editor-manager/plugin/isformatted.js +1 -0
  28. package/src/editor-manager/plugin/link.js +0 -1
  29. package/src/editor-manager/plugin/lists.js +1 -1
  30. package/src/editor-manager/plugin/ms-word-clean-up.js +4 -4
  31. package/src/editor-manager/plugin/selection-commands.d.ts +4 -1
  32. package/src/editor-manager/plugin/selection-commands.js +70 -9
  33. package/src/editor-manager/plugin/video.js +2 -0
  34. package/src/editor-manager/plugin.d.ts +1 -0
  35. package/src/editor-manager/plugin.js +1 -0
  36. package/src/global.js +1 -1
  37. package/src/rich-text-editor/actions/base-quick-toolbar.d.ts +1 -0
  38. package/src/rich-text-editor/actions/base-quick-toolbar.js +21 -1
  39. package/src/rich-text-editor/actions/base-toolbar.js +33 -10
  40. package/src/rich-text-editor/actions/enter-key.js +5 -10
  41. package/src/rich-text-editor/actions/format-painter.d.ts +24 -0
  42. package/src/rich-text-editor/actions/format-painter.js +142 -0
  43. package/src/rich-text-editor/actions/full-screen.js +0 -1
  44. package/src/rich-text-editor/actions/html-editor.d.ts +1 -0
  45. package/src/rich-text-editor/actions/html-editor.js +117 -97
  46. package/src/rich-text-editor/actions/toolbar.js +5 -0
  47. package/src/rich-text-editor/actions.d.ts +1 -0
  48. package/src/rich-text-editor/actions.js +1 -0
  49. package/src/rich-text-editor/base/constant.d.ts +10 -0
  50. package/src/rich-text-editor/base/constant.js +10 -0
  51. package/src/rich-text-editor/base/enum.d.ts +4 -0
  52. package/src/rich-text-editor/base/interface.d.ts +30 -3
  53. package/src/rich-text-editor/base/interface.js +12 -0
  54. package/src/rich-text-editor/base/rich-text-editor-model.d.ts +30 -4
  55. package/src/rich-text-editor/base/rich-text-editor.d.ts +35 -5
  56. package/src/rich-text-editor/base/rich-text-editor.js +40 -9
  57. package/src/rich-text-editor/base/util.js +2 -0
  58. package/src/rich-text-editor/formatter/formatter.js +22 -13
  59. package/src/rich-text-editor/formatter/html-formatter.d.ts +5 -3
  60. package/src/rich-text-editor/formatter/html-formatter.js +7 -5
  61. package/src/rich-text-editor/models/default-locale.js +4 -2
  62. package/src/rich-text-editor/models/items.d.ts +3 -0
  63. package/src/rich-text-editor/models/items.js +32 -0
  64. package/src/rich-text-editor/models/toolbar-settings-model.d.ts +29 -1
  65. package/src/rich-text-editor/models/toolbar-settings.d.ts +24 -1
  66. package/src/rich-text-editor/models/toolbar-settings.js +20 -0
  67. package/src/rich-text-editor/renderer/audio-module.js +6 -3
  68. package/src/rich-text-editor/renderer/image-module.js +11 -6
  69. package/src/rich-text-editor/renderer/link-module.js +2 -1
  70. package/src/rich-text-editor/renderer/table-module.js +18 -6
  71. package/src/rich-text-editor/renderer/toolbar-renderer.js +10 -1
  72. package/src/rich-text-editor/renderer/video-module.js +8 -5
  73. package/src/rich-text-editor/renderer/view-source.js +1 -1
  74. package/styles/bootstrap-dark.css +31 -1
  75. package/styles/bootstrap.css +31 -1
  76. package/styles/bootstrap4.css +31 -1
  77. package/styles/bootstrap5-dark.css +32 -2
  78. package/styles/bootstrap5.css +32 -2
  79. package/styles/fabric-dark.css +31 -1
  80. package/styles/fabric.css +31 -1
  81. package/styles/fluent-dark.css +34 -4
  82. package/styles/fluent.css +34 -4
  83. package/styles/highcontrast-light.css +31 -1
  84. package/styles/highcontrast.css +31 -1
  85. package/styles/material-dark.css +31 -1
  86. package/styles/material.css +31 -1
  87. package/styles/rich-text-editor/_bootstrap-dark-definition.scss +25 -1
  88. package/styles/rich-text-editor/_bootstrap-definition.scss +25 -1
  89. package/styles/rich-text-editor/_bootstrap4-definition.scss +25 -1
  90. package/styles/rich-text-editor/_bootstrap5-definition.scss +28 -5
  91. package/styles/rich-text-editor/_fabric-dark-definition.scss +25 -1
  92. package/styles/rich-text-editor/_fabric-definition.scss +25 -1
  93. package/styles/rich-text-editor/_fluent-definition.scss +30 -7
  94. package/styles/rich-text-editor/_fusionnew-definition.scss +26 -3
  95. package/styles/rich-text-editor/_highcontrast-definition.scss +25 -1
  96. package/styles/rich-text-editor/_highcontrast-light-definition.scss +25 -1
  97. package/styles/rich-text-editor/_layout.scss +47 -15
  98. package/styles/rich-text-editor/_material-dark-definition.scss +26 -1
  99. package/styles/rich-text-editor/_material-definition.scss +25 -1
  100. package/styles/rich-text-editor/_tailwind-definition.scss +28 -5
  101. package/styles/rich-text-editor/_theme.scss +54 -6
  102. package/styles/rich-text-editor/bootstrap-dark.css +31 -1
  103. package/styles/rich-text-editor/bootstrap.css +31 -1
  104. package/styles/rich-text-editor/bootstrap4.css +31 -1
  105. package/styles/rich-text-editor/bootstrap5-dark.css +32 -2
  106. package/styles/rich-text-editor/bootstrap5.css +32 -2
  107. package/styles/rich-text-editor/fabric-dark.css +31 -1
  108. package/styles/rich-text-editor/fabric.css +31 -1
  109. package/styles/rich-text-editor/fluent-dark.css +34 -4
  110. package/styles/rich-text-editor/fluent.css +34 -4
  111. package/styles/rich-text-editor/highcontrast-light.css +31 -1
  112. package/styles/rich-text-editor/highcontrast.css +31 -1
  113. package/styles/rich-text-editor/icons/_bootstrap-dark.scss +8 -0
  114. package/styles/rich-text-editor/icons/_bootstrap.scss +8 -0
  115. package/styles/rich-text-editor/icons/_bootstrap4.scss +8 -0
  116. package/styles/rich-text-editor/icons/_bootstrap5.scss +8 -0
  117. package/styles/rich-text-editor/icons/_fabric-dark.scss +8 -0
  118. package/styles/rich-text-editor/icons/_fabric.scss +8 -0
  119. package/styles/rich-text-editor/icons/_fluent.scss +8 -0
  120. package/styles/rich-text-editor/icons/_fusionnew.scss +8 -0
  121. package/styles/rich-text-editor/icons/_highcontrast-light.scss +8 -0
  122. package/styles/rich-text-editor/icons/_highcontrast.scss +8 -0
  123. package/styles/rich-text-editor/icons/_material-dark.scss +8 -0
  124. package/styles/rich-text-editor/icons/_material.scss +8 -0
  125. package/styles/rich-text-editor/icons/_material3.scss +8 -0
  126. package/styles/rich-text-editor/icons/_tailwind.scss +8 -0
  127. package/styles/rich-text-editor/material-dark.css +31 -1
  128. package/styles/rich-text-editor/material.css +31 -1
  129. package/styles/rich-text-editor/tailwind-dark.css +31 -1
  130. package/styles/rich-text-editor/tailwind.css +31 -1
  131. package/styles/tailwind-dark.css +31 -1
  132. package/styles/tailwind.css +31 -1
  133. package/styles/rich-text-editor/_material3-definition.scss +0 -196
@@ -293,6 +293,10 @@
293
293
  .e-rte-file-manager::before {
294
294
  content: '\e42b';
295
295
  }
296
+
297
+ .e-rte-format-painter::before {
298
+ content: '\e980';
299
+ }
296
300
  }
297
301
 
298
302
  .e-richtexteditor {
@@ -317,4 +321,8 @@
317
321
  .e-table-cell::before {
318
322
  content: '\e89c';
319
323
  }
324
+
325
+ .e-rte-cursor-brush {
326
+ cursor: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.96 6.90428L12.21 5.70428L13.6 2.49428C13.93 1.73428 13.58 0.854278 12.82 0.524278L11.9 0.124277C11.14 -0.205723 10.26 0.144276 9.93 0.904276L8.54 4.11428L5.79 2.91428L5.59 3.37428C5.59 3.37428 5.06 4.59428 4.33 6.06428C3.03 8.68428 2.33 9.53428 1.62 10.1243L1 10.6443L11.37 15.1443L13.36 10.5543L14.95 6.88428L14.96 6.90428ZM6.3 4.23428L9.06 5.43428L10.65 1.76428C10.87 1.25428 11.46 1.02428 11.97 1.24428C12.48 1.46428 12.71 2.05428 12.49 2.56428L10.9 6.23428L13.65 7.43428L12.85 9.26428L5.46 6.05428C5.82 5.30428 6.12 4.65428 6.31 4.24428L6.3 4.23428ZM5.01 6.94428L10.2 9.19428L12.45 10.1743L12.37 10.3543L3.86 10.8143L2.79 10.3543C3.5 9.50428 3.98 8.97428 5 6.95428L5.01 6.94428ZM10.85 13.8443L5.91 11.7043L11.92 11.3843L10.85 13.8543V13.8443Z" fill="black"/><path d="M6.3 4.23428L9.06 5.43428L10.65 1.76428C10.87 1.25428 11.46 1.02428 11.97 1.24428C12.48 1.46428 12.71 2.05428 12.49 2.56428L10.9 6.23428L13.65 7.43428L12.85 9.26428L5.46 6.05428C5.82 5.30428 6.12 4.65428 6.31 4.24428L6.3 4.23428Z" fill="white"/><path d="M5.01 6.94428L10.2 9.19428L12.45 10.1743L12.37 10.3543L3.86 10.8143L2.79 10.3543C3.5 9.50428 3.98 8.97428 5 6.95428L5.01 6.94428Z" fill="white"/><path d="M10.85 13.8443L5.91 11.7043L11.92 11.3843L10.85 13.8543V13.8443Z" fill="white"/></svg>'), text;
327
+ }
320
328
  }
@@ -292,6 +292,10 @@
292
292
  .e-rte-file-manager::before {
293
293
  content: '\e83c';
294
294
  }
295
+
296
+ .e-rte-format-painter::before {
297
+ content: '\e8bd';
298
+ }
295
299
  }
296
300
 
297
301
  .e-richtexteditor {
@@ -316,4 +320,8 @@
316
320
  .e-table-cell::before {
317
321
  content: '\e7c2';
318
322
  }
323
+
324
+ .e-rte-cursor-brush {
325
+ cursor: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M9 3C9 1.34315 10.3431 0 12 0C13.6569 0 15 1.34315 15 3V8H18C19.6569 8 21 9.34315 21 11V22C21 23.1046 20.1046 24 19 24H5C3.89543 24 3 23.1046 3 22V11C3 9.34315 4.34315 8 6 8H9V3ZM12 2C11.4477 2 11 2.44772 11 3V8.36C11 9.26575 10.2657 10 9.36 10H6C5.44772 10 5 10.4477 5 11V13H19V11C19 10.4477 18.5523 10 18 10H14.64C13.7343 10 13 9.26575 13 8.36V3C13 2.44772 12.5523 2 12 2ZM19 15H5V22H7V18C7 17.4477 7.44772 17 8 17C8.55228 17 9 17.4477 9 18V22H15V20C15 19.4477 15.4477 19 16 19C16.5523 19 17 19.4477 17 20V22H19V15Z" fill="black"/><path d="M11 3C11 2.44772 11.4477 2 12 2C12.5523 2 13 2.44772 13 3V8.36C13 9.26575 13.7343 10 14.64 10H18C18.5523 10 19 10.4477 19 11V13H5V11C5 10.4477 5.44772 10 6 10H9.36C10.2657 10 11 9.26575 11 8.36V3Z" fill="white"/><path d="M5 15H19V22H17V20C17 19.4477 16.5523 19 16 19C15.4477 19 15 19.4477 15 20V22H9V18C9 17.4477 8.55228 17 8 17C7.44772 17 7 17.4477 7 18V22H5V15Z" fill="white"/></svg>'), text;
326
+ }
319
327
  }
@@ -292,6 +292,10 @@
292
292
  .e-rte-file-manager::before {
293
293
  content: '\e83c';
294
294
  }
295
+
296
+ .e-rte-format-painter::before {
297
+ content: '\e8bd';
298
+ }
295
299
  }
296
300
 
297
301
  .e-richtexteditor {
@@ -316,4 +320,8 @@
316
320
  .e-table-cell::before {
317
321
  content: '\e7c2';
318
322
  }
323
+
324
+ .e-rte-cursor-brush {
325
+ cursor: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.0561 9V4C10.0561 2.35001 11.4057 1 13.0561 1C14.7065 1 16.0561 2.35001 16.0561 4V9H19.0463C20.1459 9 21.0463 9.89999 21.0463 11V22C21.0463 23.1 20.1459 24 19.0561 24H5.4057C4.77484 24 4.185 23.71 3.80609 23.2C3.42523 22.7 3.30609 22.07 3.47601 21.47C4.685 17.21 4.96625 12.67 5.02484 10.92C5.06586 9.84 5.94476 9 7.02484 9H10.0561ZM16.0561 22.0044V19C16.0561 18.45 15.6069 18 15.0561 18C14.5053 18 14.0561 18.45 14.0561 19V22.0073L11.0561 22.0117V20C11.0561 19.45 10.6069 19 10.0561 19C9.50531 19 9.05609 19.45 9.05609 20V22.0146L5.4057 22.02C5.98969 19.9657 6.36469 17.8564 6.60883 16H19.0561V22L16.0561 22.0044ZM14.0561 9V4C14.0561 3.45 13.6069 3 13.0561 3C12.5053 3 12.0561 3.45 12.0561 4V9H14.0561ZM7.03461 11C7.00922 11.664 6.95453 12.7153 6.83344 14H19.0561V11H7.03461Z" fill="black"/><path d="M6.83344 14C6.95453 12.7153 7.00922 11.664 7.03461 11H19.0561V14H6.83344Z" fill="white"/><path d="M14.0561 4V9H12.0561V4C12.0561 3.45 12.5053 3 13.0561 3C13.6069 3 14.0561 3.45 14.0561 4Z" fill="white"/><path d="M16.0561 19V22.0044L19.0561 22V16H6.60883C6.36469 17.8564 5.98969 19.9657 5.4057 22.02L9.05609 22.0146V20C9.05609 19.45 9.50531 19 10.0561 19C10.6069 19 11.0561 19.45 11.0561 20V22.0117L14.0561 22.0073V19C14.0561 18.45 14.5053 18 15.0561 18C15.6069 18 16.0561 18.45 16.0561 19Z" fill="white"/></svg>'), text;
326
+ }
319
327
  }
@@ -293,6 +293,10 @@
293
293
  .e-rte-file-manager::before {
294
294
  content: '\e42b';
295
295
  }
296
+
297
+ .e-rte-format-painter::before {
298
+ content: '\e97b';
299
+ }
296
300
  }
297
301
 
298
302
  .e-richtexteditor {
@@ -317,4 +321,8 @@
317
321
  .e-table-cell::before {
318
322
  content: '\e89c';
319
323
  }
324
+
325
+ .e-rte-cursor-brush {
326
+ cursor: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.96 6.90428L12.21 5.70428L13.6 2.49428C13.93 1.73428 13.58 0.854278 12.82 0.524278L11.9 0.124277C11.14 -0.205723 10.26 0.144276 9.93 0.904276L8.54 4.11428L5.79 2.91428L5.59 3.37428C5.59 3.37428 5.06 4.59428 4.33 6.06428C3.03 8.68428 2.33 9.53428 1.62 10.1243L1 10.6443L11.37 15.1443L13.36 10.5543L14.95 6.88428L14.96 6.90428ZM6.3 4.23428L9.06 5.43428L10.65 1.76428C10.87 1.25428 11.46 1.02428 11.97 1.24428C12.48 1.46428 12.71 2.05428 12.49 2.56428L10.9 6.23428L13.65 7.43428L12.85 9.26428L5.46 6.05428C5.82 5.30428 6.12 4.65428 6.31 4.24428L6.3 4.23428ZM5.01 6.94428L10.2 9.19428L12.45 10.1743L12.37 10.3543L3.86 10.8143L2.79 10.3543C3.5 9.50428 3.98 8.97428 5 6.95428L5.01 6.94428ZM10.85 13.8443L5.91 11.7043L11.92 11.3843L10.85 13.8543V13.8443Z" fill="black"/><path d="M6.3 4.23428L9.06 5.43428L10.65 1.76428C10.87 1.25428 11.46 1.02428 11.97 1.24428C12.48 1.46428 12.71 2.05428 12.49 2.56428L10.9 6.23428L13.65 7.43428L12.85 9.26428L5.46 6.05428C5.82 5.30428 6.12 4.65428 6.31 4.24428L6.3 4.23428Z" fill="white"/><path d="M5.01 6.94428L10.2 9.19428L12.45 10.1743L12.37 10.3543L3.86 10.8143L2.79 10.3543C3.5 9.50428 3.98 8.97428 5 6.95428L5.01 6.94428Z" fill="white"/><path d="M10.85 13.8443L5.91 11.7043L11.92 11.3843L10.85 13.8543V13.8443Z" fill="white"/></svg>'), text;
327
+ }
320
328
  }
@@ -293,6 +293,10 @@
293
293
  .e-rte-file-manager::before {
294
294
  content: '\e42b';
295
295
  }
296
+
297
+ .e-rte-format-painter::before {
298
+ content: '\e97b';
299
+ }
296
300
  }
297
301
 
298
302
  .e-richtexteditor {
@@ -317,4 +321,8 @@
317
321
  .e-table-cell::before {
318
322
  content: '\e89c';
319
323
  }
324
+
325
+ .e-rte-cursor-brush {
326
+ cursor: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.96 6.90428L12.21 5.70428L13.6 2.49428C13.93 1.73428 13.58 0.854278 12.82 0.524278L11.9 0.124277C11.14 -0.205723 10.26 0.144276 9.93 0.904276L8.54 4.11428L5.79 2.91428L5.59 3.37428C5.59 3.37428 5.06 4.59428 4.33 6.06428C3.03 8.68428 2.33 9.53428 1.62 10.1243L1 10.6443L11.37 15.1443L13.36 10.5543L14.95 6.88428L14.96 6.90428ZM6.3 4.23428L9.06 5.43428L10.65 1.76428C10.87 1.25428 11.46 1.02428 11.97 1.24428C12.48 1.46428 12.71 2.05428 12.49 2.56428L10.9 6.23428L13.65 7.43428L12.85 9.26428L5.46 6.05428C5.82 5.30428 6.12 4.65428 6.31 4.24428L6.3 4.23428ZM5.01 6.94428L10.2 9.19428L12.45 10.1743L12.37 10.3543L3.86 10.8143L2.79 10.3543C3.5 9.50428 3.98 8.97428 5 6.95428L5.01 6.94428ZM10.85 13.8443L5.91 11.7043L11.92 11.3843L10.85 13.8543V13.8443Z" fill="black"/><path d="M6.3 4.23428L9.06 5.43428L10.65 1.76428C10.87 1.25428 11.46 1.02428 11.97 1.24428C12.48 1.46428 12.71 2.05428 12.49 2.56428L10.9 6.23428L13.65 7.43428L12.85 9.26428L5.46 6.05428C5.82 5.30428 6.12 4.65428 6.31 4.24428L6.3 4.23428Z" fill="white"/><path d="M5.01 6.94428L10.2 9.19428L12.45 10.1743L12.37 10.3543L3.86 10.8143L2.79 10.3543C3.5 9.50428 3.98 8.97428 5 6.95428L5.01 6.94428Z" fill="white"/><path d="M10.85 13.8443L5.91 11.7043L11.92 11.3843L10.85 13.8543V13.8443Z" fill="white"/></svg>'), text;
327
+ }
320
328
  }
@@ -293,6 +293,10 @@
293
293
  .e-rte-file-manager::before {
294
294
  content: '\e609';
295
295
  }
296
+
297
+ .e-rte-format-painter::before {
298
+ content: '\e97b';
299
+ }
296
300
  }
297
301
 
298
302
  .e-richtexteditor {
@@ -317,4 +321,8 @@
317
321
  .e-table-cell::before {
318
322
  content: '\e89c';
319
323
  }
324
+
325
+ .e-rte-cursor-brush {
326
+ cursor: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M16 9H4V3H16V5H20V13H12V20C12 20.55 11.5508 21 11 21H10C9.44922 21 9 20.55 9 20V11H18V7H16V9ZM6 7H14V5H6V7Z" fill="white"/><path d="M14 7H6V5H14V7Z" fill="black"/><path fill-rule="evenodd" clip-rule="evenodd" d="M4 9V3H16V5H20V13H12V20C12 20.55 11.5508 21 11 21H10C9.44922 21 9 20.55 9 20V11H18V7H16V9H4ZM7 11H2V1H18V3H22V15H14V20C14 21.6536 12.6564 23 11 23H10C8.34364 23 7 21.6536 7 20V11Z" fill="black"/></svg>'), text;
327
+ }
320
328
  }
@@ -293,6 +293,10 @@
293
293
  .e-rte-file-manager::before {
294
294
  content: '\e609';
295
295
  }
296
+
297
+ .e-rte-format-painter::before {
298
+ content: '\e97b';
299
+ }
296
300
  }
297
301
 
298
302
  .e-richtexteditor {
@@ -317,4 +321,8 @@
317
321
  .e-table-cell::before {
318
322
  content: '\e89c';
319
323
  }
324
+
325
+ .e-rte-cursor-brush {
326
+ cursor: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M16 9H4V3H16V5H20V13H12V20C12 20.55 11.5508 21 11 21H10C9.44922 21 9 20.55 9 20V11H18V7H16V9ZM6 7H14V5H6V7Z" fill="white"/><path d="M14 7H6V5H14V7Z" fill="black"/><path fill-rule="evenodd" clip-rule="evenodd" d="M4 9V3H16V5H20V13H12V20C12 20.55 11.5508 21 11 21H10C9.44922 21 9 20.55 9 20V11H18V7H16V9H4ZM7 11H2V1H18V3H22V15H14V20C14 21.6536 12.6564 23 11 23H10C8.34364 23 7 21.6536 7 20V11Z" fill="black"/></svg>'), text;
327
+ }
320
328
  }
@@ -292,6 +292,10 @@
292
292
  .e-rte-file-manager::before {
293
293
  content: '\e83c';
294
294
  }
295
+
296
+ .e-rte-format-painter::before {
297
+ content: '\e8bd';
298
+ }
295
299
  }
296
300
 
297
301
  .e-richtexteditor {
@@ -316,4 +320,8 @@
316
320
  .e-table-cell::before {
317
321
  content: '\e7c2';
318
322
  }
323
+
324
+ .e-rte-cursor-brush {
325
+ cursor: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M16 9H4V3H16V5H20V13H12V20C12 20.55 11.5508 21 11 21H10C9.44922 21 9 20.55 9 20V11H18V7H16V9ZM6 7H14V5H6V7Z" fill="white"/><path d="M14 7H6V5H14V7Z" fill="black"/><path fill-rule="evenodd" clip-rule="evenodd" d="M4 9V3H16V5H20V13H12V20C12 20.55 11.5508 21 11 21H10C9.44922 21 9 20.55 9 20V11H18V7H16V9H4ZM7 11H4C2.89543 11 2 10.1046 2 9V3C2 1.89543 2.89543 1 4 1H16C17.1046 1 18 1.89543 18 3H20C21.1046 3 22 3.89543 22 5V13C22 14.1046 21.1046 15 20 15H14V20C14 21.6536 12.6564 23 11 23H10C8.34364 23 7 21.6536 7 20V11Z" fill="black"/></svg>'), text;
326
+ }
319
327
  }
@@ -292,6 +292,10 @@
292
292
  .e-rte-file-manager::before {
293
293
  content: '\e83c';
294
294
  }
295
+
296
+ .e-rte-format-painter::before {
297
+ content: '\e8bd';
298
+ }
295
299
  }
296
300
 
297
301
  .e-richtexteditor {
@@ -316,4 +320,8 @@
316
320
  .e-table-cell::before {
317
321
  content: '\e7c2';
318
322
  }
323
+
324
+ .e-rte-cursor-brush {
325
+ cursor: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.0561 9V4C10.0561 2.35001 11.4057 1 13.0561 1C14.7065 1 16.0561 2.35001 16.0561 4V9H19.0463C20.1459 9 21.0463 9.89999 21.0463 11V22C21.0463 23.1 20.1459 24 19.0561 24H5.4057C4.77484 24 4.185 23.71 3.80609 23.2C3.42523 22.7 3.30609 22.07 3.47601 21.47C4.685 17.21 4.96625 12.67 5.02484 10.92C5.06586 9.84 5.94476 9 7.02484 9H10.0561ZM16.0561 22.0044V19C16.0561 18.45 15.6069 18 15.0561 18C14.5053 18 14.0561 18.45 14.0561 19V22.0073L11.0561 22.0117V20C11.0561 19.45 10.6069 19 10.0561 19C9.50531 19 9.05609 19.45 9.05609 20V22.0146L5.4057 22.02C5.98969 19.9657 6.36469 17.8564 6.60883 16H19.0561V22L16.0561 22.0044ZM14.0561 9V4C14.0561 3.45 13.6069 3 13.0561 3C12.5053 3 12.0561 3.45 12.0561 4V9H14.0561ZM7.03461 11C7.00922 11.664 6.95453 12.7153 6.83344 14H19.0561V11H7.03461Z" fill="black"/><path d="M6.83344 14C6.95453 12.7153 7.00922 11.664 7.03461 11H19.0561V14H6.83344Z" fill="white"/><path d="M14.0561 4V9H12.0561V4C12.0561 3.45 12.5053 3 13.0561 3C13.6069 3 14.0561 3.45 14.0561 4Z" fill="white"/><path d="M16.0561 19V22.0044L19.0561 22V16H6.60883C6.36469 17.8564 5.98969 19.9657 5.4057 22.02L9.05609 22.0146V20C9.05609 19.45 9.50531 19 10.0561 19C10.6069 19 11.0561 19.45 11.0561 20V22.0117L14.0561 22.0073V19C14.0561 18.45 14.5053 18 15.0561 18C15.6069 18 16.0561 18.45 16.0561 19Z" fill="white"/></svg>'), text;
326
+ }
319
327
  }
@@ -295,6 +295,10 @@
295
295
  .e-rte-dropdown-popup .e-rte-file-manager::before {
296
296
  content: "\e609";
297
297
  }
298
+ .e-rte-toolbar .e-rte-format-painter::before,
299
+ .e-rte-dropdown-popup .e-rte-format-painter::before {
300
+ content: "\e97b";
301
+ }
298
302
 
299
303
  .e-richtexteditor .e-south-east::before,
300
304
  .e-richtexteditor .e-south-west::before {
@@ -317,6 +321,10 @@
317
321
  content: "\e89c";
318
322
  }
319
323
 
324
+ .e-rte-cursor-brush {
325
+ cursor: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M16 9H4V3H16V5H20V13H12V20C12 20.55 11.5508 21 11 21H10C9.44922 21 9 20.55 9 20V11H18V7H16V9ZM6 7H14V5H6V7Z" fill="white"/><path d="M14 7H6V5H14V7Z" fill="black"/><path fill-rule="evenodd" clip-rule="evenodd" d="M4 9V3H16V5H20V13H12V20C12 20.55 11.5508 21 11 21H10C9.44922 21 9 20.55 9 20V11H18V7H16V9H4ZM7 11H2V1H18V3H22V15H14V20C14 21.6536 12.6564 23 11 23H10C8.34364 23 7 21.6536 7 20V11Z" fill="black"/></svg>'), text;
326
+ }
327
+
320
328
  /*! tab layout */
321
329
  .e-bigger .e-richtexteditor .e-rte-toolbar .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child,
322
330
  .e-richtexteditor.e-bigger .e-rte-toolbar .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
@@ -545,6 +553,7 @@
545
553
  margin-right: 0;
546
554
  }
547
555
  .e-richtexteditor .e-rte-toolbar.e-rte-tb-mobile .e-toolbar-multirow {
556
+ display: inline-block;
548
557
  margin-left: 0;
549
558
  margin-right: 0;
550
559
  overflow-x: auto;
@@ -1407,6 +1416,7 @@
1407
1416
  }
1408
1417
  .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items:not(.e-tbar-pos).e-toolbar-multirow {
1409
1418
  white-space: nowrap;
1419
+ display: inline-block;
1410
1420
  }
1411
1421
  .e-rte-quick-popup .e-rte-quick-toolbar.e-remove-white-space .e-toolbar-items:not(.e-tbar-pos).e-toolbar-multirow {
1412
1422
  white-space: nowrap;
@@ -2279,6 +2289,11 @@
2279
2289
  margin: 1px;
2280
2290
  }
2281
2291
 
2292
+ .e-transparent.e-rte-elements.e-tbar-btn.e-rte-fontcolor-dropdown,
2293
+ .e-transparent.e-rte-elements.e-tbar-btn.e-rte-backgroundcolor-dropdown {
2294
+ visibility: hidden;
2295
+ }
2296
+
2282
2297
  /*! tab layout */
2283
2298
  .e-richtexteditor .e-rte-toolbar {
2284
2299
  border: 1px solid #616161;
@@ -2371,6 +2386,9 @@
2371
2386
  .e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn .e-icons {
2372
2387
  color: #fff;
2373
2388
  }
2389
+ .e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover .e-icons {
2390
+ color: #fff;
2391
+ }
2374
2392
  .e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn .e-icons {
2375
2393
  color: #fff;
2376
2394
  }
@@ -2389,6 +2407,9 @@
2389
2407
  .e-richtexteditor .e-toolbar-wrapper + .e-rte-toolbar:not(.e-rte-tb-float) {
2390
2408
  border: 0;
2391
2409
  }
2410
+ .e-richtexteditor .e-toolbar-wrapper {
2411
+ background: #212121;
2412
+ }
2392
2413
  .e-richtexteditor img.e-img-focus::selection,
2393
2414
  .e-richtexteditor audio.e-audio-focus::selection,
2394
2415
  .e-richtexteditor .e-video-focus::selection {
@@ -2587,7 +2608,8 @@
2587
2608
 
2588
2609
  .e-dialog .e-img-uploadwrap .e-droptext,
2589
2610
  .e-dialog .e-aud-uploadwrap .e-droptext,
2590
- .e-dialog .e-vid-uploadwrap .e-droptext {
2611
+ .e-dialog .e-vid-uploadwrap .e-droptext,
2612
+ .e-dialog.e-device .e-vid-uploadwrap .e-droptext {
2591
2613
  border: dashed 2px rgba(255, 255, 255, 0.12);
2592
2614
  border-radius: 4px;
2593
2615
  color: rgba(255, 255, 255, 0.7);
@@ -2600,6 +2622,10 @@
2600
2622
  width: 300px;
2601
2623
  }
2602
2624
 
2625
+ .e-dialog .e-vid-uploadwrap .e-droptext {
2626
+ height: 108px;
2627
+ }
2628
+
2603
2629
  .e-dialog.e-device.e-dlg-modal .e-img-uploadwrap .e-droptext,
2604
2630
  .e-dialog.e-device.e-dlg-modal .e-vid-uploadwrap .e-droptext,
2605
2631
  .e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap .e-droptext {
@@ -2752,6 +2778,10 @@ span.e-table-box.e-rbox-select {
2752
2778
  color: #fff;
2753
2779
  }
2754
2780
 
2781
+ .e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-active .e-icons {
2782
+ color: #fff;
2783
+ }
2784
+
2755
2785
  .e-richtexteditor.e-rte-tb-expand .e-rte-content-border {
2756
2786
  border-bottom: 0;
2757
2787
  }
@@ -295,6 +295,10 @@
295
295
  .e-rte-dropdown-popup .e-rte-file-manager::before {
296
296
  content: "\e609";
297
297
  }
298
+ .e-rte-toolbar .e-rte-format-painter::before,
299
+ .e-rte-dropdown-popup .e-rte-format-painter::before {
300
+ content: "\e97b";
301
+ }
298
302
 
299
303
  .e-richtexteditor .e-south-east::before,
300
304
  .e-richtexteditor .e-south-west::before {
@@ -317,6 +321,10 @@
317
321
  content: "\e89c";
318
322
  }
319
323
 
324
+ .e-rte-cursor-brush {
325
+ cursor: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M16 9H4V3H16V5H20V13H12V20C12 20.55 11.5508 21 11 21H10C9.44922 21 9 20.55 9 20V11H18V7H16V9ZM6 7H14V5H6V7Z" fill="white"/><path d="M14 7H6V5H14V7Z" fill="black"/><path fill-rule="evenodd" clip-rule="evenodd" d="M4 9V3H16V5H20V13H12V20C12 20.55 11.5508 21 11 21H10C9.44922 21 9 20.55 9 20V11H18V7H16V9H4ZM7 11H2V1H18V3H22V15H14V20C14 21.6536 12.6564 23 11 23H10C8.34364 23 7 21.6536 7 20V11Z" fill="black"/></svg>'), text;
326
+ }
327
+
320
328
  /*! tab layout */
321
329
  .e-bigger .e-richtexteditor .e-rte-toolbar .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child,
322
330
  .e-richtexteditor.e-bigger .e-rte-toolbar .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
@@ -545,6 +553,7 @@
545
553
  margin-right: 0;
546
554
  }
547
555
  .e-richtexteditor .e-rte-toolbar.e-rte-tb-mobile .e-toolbar-multirow {
556
+ display: inline-block;
548
557
  margin-left: 0;
549
558
  margin-right: 0;
550
559
  overflow-x: auto;
@@ -1407,6 +1416,7 @@
1407
1416
  }
1408
1417
  .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items:not(.e-tbar-pos).e-toolbar-multirow {
1409
1418
  white-space: nowrap;
1419
+ display: inline-block;
1410
1420
  }
1411
1421
  .e-rte-quick-popup .e-rte-quick-toolbar.e-remove-white-space .e-toolbar-items:not(.e-tbar-pos).e-toolbar-multirow {
1412
1422
  white-space: nowrap;
@@ -2279,6 +2289,11 @@
2279
2289
  margin: 1px;
2280
2290
  }
2281
2291
 
2292
+ .e-transparent.e-rte-elements.e-tbar-btn.e-rte-fontcolor-dropdown,
2293
+ .e-transparent.e-rte-elements.e-tbar-btn.e-rte-backgroundcolor-dropdown {
2294
+ visibility: hidden;
2295
+ }
2296
+
2282
2297
  /*! tab layout */
2283
2298
  .e-richtexteditor .e-rte-toolbar {
2284
2299
  border: 1px solid rgba(0, 0, 0, 0.12);
@@ -2371,6 +2386,9 @@
2371
2386
  .e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn .e-icons {
2372
2387
  color: #000;
2373
2388
  }
2389
+ .e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover .e-icons {
2390
+ color: #000;
2391
+ }
2374
2392
  .e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn .e-icons {
2375
2393
  color: #000;
2376
2394
  }
@@ -2389,6 +2407,9 @@
2389
2407
  .e-richtexteditor .e-toolbar-wrapper + .e-rte-toolbar:not(.e-rte-tb-float) {
2390
2408
  border: 0;
2391
2409
  }
2410
+ .e-richtexteditor .e-toolbar-wrapper {
2411
+ background: #fafafa;
2412
+ }
2392
2413
  .e-richtexteditor img.e-img-focus::selection,
2393
2414
  .e-richtexteditor audio.e-audio-focus::selection,
2394
2415
  .e-richtexteditor .e-video-focus::selection {
@@ -2587,7 +2608,8 @@
2587
2608
 
2588
2609
  .e-dialog .e-img-uploadwrap .e-droptext,
2589
2610
  .e-dialog .e-aud-uploadwrap .e-droptext,
2590
- .e-dialog .e-vid-uploadwrap .e-droptext {
2611
+ .e-dialog .e-vid-uploadwrap .e-droptext,
2612
+ .e-dialog.e-device .e-vid-uploadwrap .e-droptext {
2591
2613
  border: dashed 2px rgba(0, 0, 0, 0.12);
2592
2614
  border-radius: 4px;
2593
2615
  color: rgba(0, 0, 0, 0.38);
@@ -2600,6 +2622,10 @@
2600
2622
  width: 300px;
2601
2623
  }
2602
2624
 
2625
+ .e-dialog .e-vid-uploadwrap .e-droptext {
2626
+ height: 108px;
2627
+ }
2628
+
2603
2629
  .e-dialog.e-device.e-dlg-modal .e-img-uploadwrap .e-droptext,
2604
2630
  .e-dialog.e-device.e-dlg-modal .e-vid-uploadwrap .e-droptext,
2605
2631
  .e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap .e-droptext {
@@ -2752,6 +2778,10 @@ span.e-table-box.e-rbox-select {
2752
2778
  color: #000;
2753
2779
  }
2754
2780
 
2781
+ .e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-active .e-icons {
2782
+ color: #000;
2783
+ }
2784
+
2755
2785
  .e-richtexteditor.e-rte-tb-expand .e-rte-content-border {
2756
2786
  border-bottom: 0;
2757
2787
  }
@@ -295,6 +295,10 @@
295
295
  .e-rte-dropdown-popup .e-rte-file-manager::before {
296
296
  content: "\e83c";
297
297
  }
298
+ .e-rte-toolbar .e-rte-format-painter::before,
299
+ .e-rte-dropdown-popup .e-rte-format-painter::before {
300
+ content: "\e8bd";
301
+ }
298
302
 
299
303
  .e-richtexteditor .e-south-east::before,
300
304
  .e-richtexteditor .e-south-west::before {
@@ -317,6 +321,10 @@
317
321
  content: "\e7c2";
318
322
  }
319
323
 
324
+ .e-rte-cursor-brush {
325
+ cursor: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.0561 9V4C10.0561 2.35001 11.4057 1 13.0561 1C14.7065 1 16.0561 2.35001 16.0561 4V9H19.0463C20.1459 9 21.0463 9.89999 21.0463 11V22C21.0463 23.1 20.1459 24 19.0561 24H5.4057C4.77484 24 4.185 23.71 3.80609 23.2C3.42523 22.7 3.30609 22.07 3.47601 21.47C4.685 17.21 4.96625 12.67 5.02484 10.92C5.06586 9.84 5.94476 9 7.02484 9H10.0561ZM16.0561 22.0044V19C16.0561 18.45 15.6069 18 15.0561 18C14.5053 18 14.0561 18.45 14.0561 19V22.0073L11.0561 22.0117V20C11.0561 19.45 10.6069 19 10.0561 19C9.50531 19 9.05609 19.45 9.05609 20V22.0146L5.4057 22.02C5.98969 19.9657 6.36469 17.8564 6.60883 16H19.0561V22L16.0561 22.0044ZM14.0561 9V4C14.0561 3.45 13.6069 3 13.0561 3C12.5053 3 12.0561 3.45 12.0561 4V9H14.0561ZM7.03461 11C7.00922 11.664 6.95453 12.7153 6.83344 14H19.0561V11H7.03461Z" fill="black"/><path d="M6.83344 14C6.95453 12.7153 7.00922 11.664 7.03461 11H19.0561V14H6.83344Z" fill="white"/><path d="M14.0561 4V9H12.0561V4C12.0561 3.45 12.5053 3 13.0561 3C13.6069 3 14.0561 3.45 14.0561 4Z" fill="white"/><path d="M16.0561 19V22.0044L19.0561 22V16H6.60883C6.36469 17.8564 5.98969 19.9657 5.4057 22.02L9.05609 22.0146V20C9.05609 19.45 9.50531 19 10.0561 19C10.6069 19 11.0561 19.45 11.0561 20V22.0117L14.0561 22.0073V19C14.0561 18.45 14.5053 18 15.0561 18C15.6069 18 16.0561 18.45 16.0561 19Z" fill="white"/></svg>'), text;
326
+ }
327
+
320
328
  /*! tab layout */
321
329
  .e-bigger .e-richtexteditor .e-rte-toolbar .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child,
322
330
  .e-richtexteditor.e-bigger .e-rte-toolbar .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
@@ -549,6 +557,7 @@
549
557
  margin-right: 0;
550
558
  }
551
559
  .e-richtexteditor .e-rte-toolbar.e-rte-tb-mobile .e-toolbar-multirow {
560
+ display: inline-block;
552
561
  margin-left: 0;
553
562
  margin-right: 0;
554
563
  overflow-x: auto;
@@ -1412,6 +1421,7 @@
1412
1421
  }
1413
1422
  .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items:not(.e-tbar-pos).e-toolbar-multirow {
1414
1423
  white-space: nowrap;
1424
+ display: inline-block;
1415
1425
  }
1416
1426
  .e-rte-quick-popup .e-rte-quick-toolbar.e-remove-white-space .e-toolbar-items:not(.e-tbar-pos).e-toolbar-multirow {
1417
1427
  white-space: nowrap;
@@ -2305,6 +2315,11 @@
2305
2315
  margin: 1px;
2306
2316
  }
2307
2317
 
2318
+ .e-transparent.e-rte-elements.e-tbar-btn.e-rte-fontcolor-dropdown,
2319
+ .e-transparent.e-rte-elements.e-tbar-btn.e-rte-backgroundcolor-dropdown {
2320
+ visibility: hidden;
2321
+ }
2322
+
2308
2323
  /*! tab layout */
2309
2324
  .e-richtexteditor .e-rte-toolbar {
2310
2325
  border: 1px solid #4b5563;
@@ -2400,6 +2415,9 @@
2400
2415
  .e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn .e-icons {
2401
2416
  color: #d1d5db;
2402
2417
  }
2418
+ .e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover .e-icons {
2419
+ color: #d1d5db;
2420
+ }
2403
2421
  .e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn .e-icons {
2404
2422
  color: #d1d5db;
2405
2423
  }
@@ -2418,6 +2436,9 @@
2418
2436
  .e-richtexteditor .e-toolbar-wrapper + .e-rte-toolbar:not(.e-rte-tb-float) {
2419
2437
  border: 0;
2420
2438
  }
2439
+ .e-richtexteditor .e-toolbar-wrapper {
2440
+ background: #374151;
2441
+ }
2421
2442
  .e-richtexteditor img.e-img-focus::selection,
2422
2443
  .e-richtexteditor audio.e-audio-focus::selection,
2423
2444
  .e-richtexteditor .e-video-focus::selection {
@@ -2616,7 +2637,8 @@
2616
2637
 
2617
2638
  .e-dialog .e-img-uploadwrap .e-droptext,
2618
2639
  .e-dialog .e-aud-uploadwrap .e-droptext,
2619
- .e-dialog .e-vid-uploadwrap .e-droptext {
2640
+ .e-dialog .e-vid-uploadwrap .e-droptext,
2641
+ .e-dialog.e-device .e-vid-uploadwrap .e-droptext {
2620
2642
  border: dashed 2px #9ca3af;
2621
2643
  border-radius: 4px;
2622
2644
  color: #9ca3af;
@@ -2629,6 +2651,10 @@
2629
2651
  width: 300px;
2630
2652
  }
2631
2653
 
2654
+ .e-dialog .e-vid-uploadwrap .e-droptext {
2655
+ height: 108px;
2656
+ }
2657
+
2632
2658
  .e-dialog.e-device.e-dlg-modal .e-img-uploadwrap .e-droptext,
2633
2659
  .e-dialog.e-device.e-dlg-modal .e-vid-uploadwrap .e-droptext,
2634
2660
  .e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap .e-droptext {
@@ -2781,6 +2807,10 @@ span.e-table-box.e-rbox-select {
2781
2807
  color: #d1d5db;
2782
2808
  }
2783
2809
 
2810
+ .e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-active .e-icons {
2811
+ color: #d1d5db;
2812
+ }
2813
+
2784
2814
  .e-richtexteditor .e-rte-toolbar .e-toolbar-extended {
2785
2815
  background: #374151;
2786
2816
  }
@@ -295,6 +295,10 @@
295
295
  .e-rte-dropdown-popup .e-rte-file-manager::before {
296
296
  content: "\e83c";
297
297
  }
298
+ .e-rte-toolbar .e-rte-format-painter::before,
299
+ .e-rte-dropdown-popup .e-rte-format-painter::before {
300
+ content: "\e8bd";
301
+ }
298
302
 
299
303
  .e-richtexteditor .e-south-east::before,
300
304
  .e-richtexteditor .e-south-west::before {
@@ -317,6 +321,10 @@
317
321
  content: "\e7c2";
318
322
  }
319
323
 
324
+ .e-rte-cursor-brush {
325
+ cursor: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.0561 9V4C10.0561 2.35001 11.4057 1 13.0561 1C14.7065 1 16.0561 2.35001 16.0561 4V9H19.0463C20.1459 9 21.0463 9.89999 21.0463 11V22C21.0463 23.1 20.1459 24 19.0561 24H5.4057C4.77484 24 4.185 23.71 3.80609 23.2C3.42523 22.7 3.30609 22.07 3.47601 21.47C4.685 17.21 4.96625 12.67 5.02484 10.92C5.06586 9.84 5.94476 9 7.02484 9H10.0561ZM16.0561 22.0044V19C16.0561 18.45 15.6069 18 15.0561 18C14.5053 18 14.0561 18.45 14.0561 19V22.0073L11.0561 22.0117V20C11.0561 19.45 10.6069 19 10.0561 19C9.50531 19 9.05609 19.45 9.05609 20V22.0146L5.4057 22.02C5.98969 19.9657 6.36469 17.8564 6.60883 16H19.0561V22L16.0561 22.0044ZM14.0561 9V4C14.0561 3.45 13.6069 3 13.0561 3C12.5053 3 12.0561 3.45 12.0561 4V9H14.0561ZM7.03461 11C7.00922 11.664 6.95453 12.7153 6.83344 14H19.0561V11H7.03461Z" fill="black"/><path d="M6.83344 14C6.95453 12.7153 7.00922 11.664 7.03461 11H19.0561V14H6.83344Z" fill="white"/><path d="M14.0561 4V9H12.0561V4C12.0561 3.45 12.5053 3 13.0561 3C13.6069 3 14.0561 3.45 14.0561 4Z" fill="white"/><path d="M16.0561 19V22.0044L19.0561 22V16H6.60883C6.36469 17.8564 5.98969 19.9657 5.4057 22.02L9.05609 22.0146V20C9.05609 19.45 9.50531 19 10.0561 19C10.6069 19 11.0561 19.45 11.0561 20V22.0117L14.0561 22.0073V19C14.0561 18.45 14.5053 18 15.0561 18C15.6069 18 16.0561 18.45 16.0561 19Z" fill="white"/></svg>'), text;
326
+ }
327
+
320
328
  /*! tab layout */
321
329
  .e-bigger .e-richtexteditor .e-rte-toolbar .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child,
322
330
  .e-richtexteditor.e-bigger .e-rte-toolbar .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
@@ -549,6 +557,7 @@
549
557
  margin-right: 0;
550
558
  }
551
559
  .e-richtexteditor .e-rte-toolbar.e-rte-tb-mobile .e-toolbar-multirow {
560
+ display: inline-block;
552
561
  margin-left: 0;
553
562
  margin-right: 0;
554
563
  overflow-x: auto;
@@ -1412,6 +1421,7 @@
1412
1421
  }
1413
1422
  .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items:not(.e-tbar-pos).e-toolbar-multirow {
1414
1423
  white-space: nowrap;
1424
+ display: inline-block;
1415
1425
  }
1416
1426
  .e-rte-quick-popup .e-rte-quick-toolbar.e-remove-white-space .e-toolbar-items:not(.e-tbar-pos).e-toolbar-multirow {
1417
1427
  white-space: nowrap;
@@ -2305,6 +2315,11 @@
2305
2315
  margin: 1px;
2306
2316
  }
2307
2317
 
2318
+ .e-transparent.e-rte-elements.e-tbar-btn.e-rte-fontcolor-dropdown,
2319
+ .e-transparent.e-rte-elements.e-tbar-btn.e-rte-backgroundcolor-dropdown {
2320
+ visibility: hidden;
2321
+ }
2322
+
2308
2323
  /*! tab layout */
2309
2324
  .e-richtexteditor .e-rte-toolbar {
2310
2325
  border: 1px solid #e5e7eb;
@@ -2400,6 +2415,9 @@
2400
2415
  .e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn .e-icons {
2401
2416
  color: #6b7280;
2402
2417
  }
2418
+ .e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover .e-icons {
2419
+ color: #6b7280;
2420
+ }
2403
2421
  .e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn .e-icons {
2404
2422
  color: #6b7280;
2405
2423
  }
@@ -2418,6 +2436,9 @@
2418
2436
  .e-richtexteditor .e-toolbar-wrapper + .e-rte-toolbar:not(.e-rte-tb-float) {
2419
2437
  border: 0;
2420
2438
  }
2439
+ .e-richtexteditor .e-toolbar-wrapper {
2440
+ background: #f3f4f6;
2441
+ }
2421
2442
  .e-richtexteditor img.e-img-focus::selection,
2422
2443
  .e-richtexteditor audio.e-audio-focus::selection,
2423
2444
  .e-richtexteditor .e-video-focus::selection {
@@ -2616,7 +2637,8 @@
2616
2637
 
2617
2638
  .e-dialog .e-img-uploadwrap .e-droptext,
2618
2639
  .e-dialog .e-aud-uploadwrap .e-droptext,
2619
- .e-dialog .e-vid-uploadwrap .e-droptext {
2640
+ .e-dialog .e-vid-uploadwrap .e-droptext,
2641
+ .e-dialog.e-device .e-vid-uploadwrap .e-droptext {
2620
2642
  border: dashed 2px #9ca3af;
2621
2643
  border-radius: 4px;
2622
2644
  color: #6b7280;
@@ -2629,6 +2651,10 @@
2629
2651
  width: 300px;
2630
2652
  }
2631
2653
 
2654
+ .e-dialog .e-vid-uploadwrap .e-droptext {
2655
+ height: 108px;
2656
+ }
2657
+
2632
2658
  .e-dialog.e-device.e-dlg-modal .e-img-uploadwrap .e-droptext,
2633
2659
  .e-dialog.e-device.e-dlg-modal .e-vid-uploadwrap .e-droptext,
2634
2660
  .e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap .e-droptext {
@@ -2781,6 +2807,10 @@ span.e-table-box.e-rbox-select {
2781
2807
  color: #6b7280;
2782
2808
  }
2783
2809
 
2810
+ .e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-active .e-icons {
2811
+ color: #6b7280;
2812
+ }
2813
+
2784
2814
  .e-richtexteditor .e-rte-toolbar .e-toolbar-extended {
2785
2815
  background: #f3f4f6;
2786
2816
  }