@syncfusion/ej2-richtexteditor 20.4.52 → 21.1.35

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 (140) hide show
  1. package/CHANGELOG.md +32 -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 +1623 -639
  6. package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
  7. package/dist/es6/ej2-richtexteditor.es5.js +1638 -646
  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 +2 -1
  17. package/src/common/util.js +15 -6
  18. package/src/editor-manager/base/editor-manager.d.ts +2 -0
  19. package/src/editor-manager/base/editor-manager.js +6 -1
  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-exec.js +1 -1
  27. package/src/editor-manager/plugin/inserthtml.d.ts +1 -1
  28. package/src/editor-manager/plugin/inserthtml.js +18 -10
  29. package/src/editor-manager/plugin/isformatted.js +1 -0
  30. package/src/editor-manager/plugin/link.js +0 -1
  31. package/src/editor-manager/plugin/lists.js +1 -1
  32. package/src/editor-manager/plugin/ms-word-clean-up.js +57 -19
  33. package/src/editor-manager/plugin/selection-commands.d.ts +4 -1
  34. package/src/editor-manager/plugin/selection-commands.js +70 -9
  35. package/src/editor-manager/plugin/video.js +2 -0
  36. package/src/editor-manager/plugin.d.ts +1 -0
  37. package/src/editor-manager/plugin.js +1 -0
  38. package/src/global.js +1 -1
  39. package/src/rich-text-editor/actions/base-quick-toolbar.d.ts +1 -0
  40. package/src/rich-text-editor/actions/base-quick-toolbar.js +21 -1
  41. package/src/rich-text-editor/actions/base-toolbar.js +33 -10
  42. package/src/rich-text-editor/actions/enter-key.js +23 -16
  43. package/src/rich-text-editor/actions/format-painter.d.ts +24 -0
  44. package/src/rich-text-editor/actions/format-painter.js +142 -0
  45. package/src/rich-text-editor/actions/full-screen.js +0 -1
  46. package/src/rich-text-editor/actions/html-editor.d.ts +1 -0
  47. package/src/rich-text-editor/actions/html-editor.js +117 -97
  48. package/src/rich-text-editor/actions/paste-clean-up.js +2 -2
  49. package/src/rich-text-editor/actions/quick-toolbar.js +8 -1
  50. package/src/rich-text-editor/actions/toolbar.js +10 -0
  51. package/src/rich-text-editor/actions.d.ts +1 -0
  52. package/src/rich-text-editor/actions.js +1 -0
  53. package/src/rich-text-editor/base/constant.d.ts +10 -0
  54. package/src/rich-text-editor/base/constant.js +10 -0
  55. package/src/rich-text-editor/base/enum.d.ts +4 -0
  56. package/src/rich-text-editor/base/interface.d.ts +30 -3
  57. package/src/rich-text-editor/base/interface.js +12 -0
  58. package/src/rich-text-editor/base/rich-text-editor-model.d.ts +30 -4
  59. package/src/rich-text-editor/base/rich-text-editor.d.ts +35 -5
  60. package/src/rich-text-editor/base/rich-text-editor.js +46 -10
  61. package/src/rich-text-editor/base/util.js +2 -0
  62. package/src/rich-text-editor/formatter/formatter.js +22 -13
  63. package/src/rich-text-editor/formatter/html-formatter.d.ts +5 -3
  64. package/src/rich-text-editor/formatter/html-formatter.js +7 -5
  65. package/src/rich-text-editor/models/default-locale.js +4 -2
  66. package/src/rich-text-editor/models/items.d.ts +3 -0
  67. package/src/rich-text-editor/models/items.js +32 -0
  68. package/src/rich-text-editor/models/toolbar-settings-model.d.ts +29 -1
  69. package/src/rich-text-editor/models/toolbar-settings.d.ts +24 -1
  70. package/src/rich-text-editor/models/toolbar-settings.js +20 -0
  71. package/src/rich-text-editor/renderer/audio-module.js +6 -3
  72. package/src/rich-text-editor/renderer/image-module.js +11 -6
  73. package/src/rich-text-editor/renderer/link-module.js +2 -1
  74. package/src/rich-text-editor/renderer/table-module.js +18 -6
  75. package/src/rich-text-editor/renderer/toolbar-renderer.js +10 -1
  76. package/src/rich-text-editor/renderer/video-module.js +8 -5
  77. package/src/rich-text-editor/renderer/view-source.js +1 -1
  78. package/styles/bootstrap-dark.css +31 -1
  79. package/styles/bootstrap.css +31 -1
  80. package/styles/bootstrap4.css +31 -1
  81. package/styles/bootstrap5-dark.css +32 -2
  82. package/styles/bootstrap5.css +32 -2
  83. package/styles/fabric-dark.css +31 -1
  84. package/styles/fabric.css +31 -1
  85. package/styles/fluent-dark.css +34 -4
  86. package/styles/fluent.css +34 -4
  87. package/styles/highcontrast-light.css +31 -1
  88. package/styles/highcontrast.css +31 -1
  89. package/styles/material-dark.css +31 -1
  90. package/styles/material.css +31 -1
  91. package/styles/rich-text-editor/_bootstrap-dark-definition.scss +25 -1
  92. package/styles/rich-text-editor/_bootstrap-definition.scss +25 -1
  93. package/styles/rich-text-editor/_bootstrap4-definition.scss +25 -1
  94. package/styles/rich-text-editor/_bootstrap5-definition.scss +28 -5
  95. package/styles/rich-text-editor/_fabric-dark-definition.scss +25 -1
  96. package/styles/rich-text-editor/_fabric-definition.scss +25 -1
  97. package/styles/rich-text-editor/_fluent-definition.scss +30 -7
  98. package/styles/rich-text-editor/_fusionnew-definition.scss +26 -3
  99. package/styles/rich-text-editor/_highcontrast-definition.scss +25 -1
  100. package/styles/rich-text-editor/_highcontrast-light-definition.scss +25 -1
  101. package/styles/rich-text-editor/_layout.scss +47 -15
  102. package/styles/rich-text-editor/_material-dark-definition.scss +26 -1
  103. package/styles/rich-text-editor/_material-definition.scss +25 -1
  104. package/styles/rich-text-editor/_tailwind-definition.scss +28 -5
  105. package/styles/rich-text-editor/_theme.scss +54 -6
  106. package/styles/rich-text-editor/bootstrap-dark.css +31 -1
  107. package/styles/rich-text-editor/bootstrap.css +31 -1
  108. package/styles/rich-text-editor/bootstrap4.css +31 -1
  109. package/styles/rich-text-editor/bootstrap5-dark.css +32 -2
  110. package/styles/rich-text-editor/bootstrap5.css +32 -2
  111. package/styles/rich-text-editor/fabric-dark.css +31 -1
  112. package/styles/rich-text-editor/fabric.css +31 -1
  113. package/styles/rich-text-editor/fluent-dark.css +34 -4
  114. package/styles/rich-text-editor/fluent.css +34 -4
  115. package/styles/rich-text-editor/highcontrast-light.css +31 -1
  116. package/styles/rich-text-editor/highcontrast.css +31 -1
  117. package/styles/rich-text-editor/icons/_bootstrap-dark.scss +8 -0
  118. package/styles/rich-text-editor/icons/_bootstrap.scss +8 -0
  119. package/styles/rich-text-editor/icons/_bootstrap4.scss +8 -0
  120. package/styles/rich-text-editor/icons/_bootstrap5.scss +8 -0
  121. package/styles/rich-text-editor/icons/_fabric-dark.scss +8 -0
  122. package/styles/rich-text-editor/icons/_fabric.scss +8 -0
  123. package/styles/rich-text-editor/icons/_fluent.scss +8 -0
  124. package/styles/rich-text-editor/icons/_fusionnew.scss +8 -0
  125. package/styles/rich-text-editor/icons/_highcontrast-light.scss +8 -0
  126. package/styles/rich-text-editor/icons/_highcontrast.scss +8 -0
  127. package/styles/rich-text-editor/icons/_material-dark.scss +8 -0
  128. package/styles/rich-text-editor/icons/_material.scss +8 -0
  129. package/styles/rich-text-editor/icons/_material3.scss +8 -0
  130. package/styles/rich-text-editor/icons/_tailwind.scss +8 -0
  131. package/styles/rich-text-editor/material-dark.css +31 -1
  132. package/styles/rich-text-editor/material.css +31 -1
  133. package/styles/rich-text-editor/tailwind-dark.css +31 -1
  134. package/styles/rich-text-editor/tailwind.css +31 -1
  135. package/styles/tailwind-dark.css +31 -1
  136. package/styles/tailwind.css +31 -1
  137. package/GitLeaksReport.json +0 -1
  138. package/gitleaks-ci/gitleaks +0 -0
  139. package/gitleaks-ci.tar.gz +0 -0
  140. package/styles/rich-text-editor/_material3-definition.scss +0 -196
@@ -294,6 +294,10 @@
294
294
  .e-rte-dropdown-popup .e-rte-file-manager::before {
295
295
  content: "\e42b";
296
296
  }
297
+ .e-rte-toolbar .e-rte-format-painter::before,
298
+ .e-rte-dropdown-popup .e-rte-format-painter::before {
299
+ content: "\e97b";
300
+ }
297
301
 
298
302
  .e-richtexteditor .e-south-east::before,
299
303
  .e-richtexteditor .e-south-west::before {
@@ -316,6 +320,10 @@
316
320
  content: "\e89c";
317
321
  }
318
322
 
323
+ .e-rte-cursor-brush {
324
+ 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;
325
+ }
326
+
319
327
  /*! tab layout */
320
328
  .e-bigger .e-richtexteditor .e-rte-toolbar .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child,
321
329
  .e-richtexteditor.e-bigger .e-rte-toolbar .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
@@ -544,6 +552,7 @@
544
552
  margin-right: 0;
545
553
  }
546
554
  .e-richtexteditor .e-rte-toolbar.e-rte-tb-mobile .e-toolbar-multirow {
555
+ display: inline-block;
547
556
  margin-left: 0;
548
557
  margin-right: 0;
549
558
  overflow-x: auto;
@@ -1406,6 +1415,7 @@
1406
1415
  }
1407
1416
  .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items:not(.e-tbar-pos).e-toolbar-multirow {
1408
1417
  white-space: nowrap;
1418
+ display: inline-block;
1409
1419
  }
1410
1420
  .e-rte-quick-popup .e-rte-quick-toolbar.e-remove-white-space .e-toolbar-items:not(.e-tbar-pos).e-toolbar-multirow {
1411
1421
  white-space: nowrap;
@@ -2278,6 +2288,11 @@
2278
2288
  margin: 1px;
2279
2289
  }
2280
2290
 
2291
+ .e-transparent.e-rte-elements.e-tbar-btn.e-rte-fontcolor-dropdown,
2292
+ .e-transparent.e-rte-elements.e-tbar-btn.e-rte-backgroundcolor-dropdown {
2293
+ visibility: hidden;
2294
+ }
2295
+
2281
2296
  /*! tab layout */
2282
2297
  .e-richtexteditor .e-rte-toolbar {
2283
2298
  border: 1px solid #000;
@@ -2370,6 +2385,9 @@
2370
2385
  .e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn .e-icons {
2371
2386
  color: #000;
2372
2387
  }
2388
+ .e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover .e-icons {
2389
+ color: #000;
2390
+ }
2373
2391
  .e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn .e-icons {
2374
2392
  color: #fff;
2375
2393
  }
@@ -2388,6 +2406,9 @@
2388
2406
  .e-richtexteditor .e-toolbar-wrapper + .e-rte-toolbar:not(.e-rte-tb-float) {
2389
2407
  border: 0;
2390
2408
  }
2409
+ .e-richtexteditor .e-toolbar-wrapper {
2410
+ background: #fff;
2411
+ }
2391
2412
  .e-richtexteditor img.e-img-focus::selection,
2392
2413
  .e-richtexteditor audio.e-audio-focus::selection,
2393
2414
  .e-richtexteditor .e-video-focus::selection {
@@ -2586,7 +2607,8 @@
2586
2607
 
2587
2608
  .e-dialog .e-img-uploadwrap .e-droptext,
2588
2609
  .e-dialog .e-aud-uploadwrap .e-droptext,
2589
- .e-dialog .e-vid-uploadwrap .e-droptext {
2610
+ .e-dialog .e-vid-uploadwrap .e-droptext,
2611
+ .e-dialog.e-device .e-vid-uploadwrap .e-droptext {
2590
2612
  border: dashed 2px #757575;
2591
2613
  border-radius: 4px;
2592
2614
  color: #000;
@@ -2599,6 +2621,10 @@
2599
2621
  width: 288px;
2600
2622
  }
2601
2623
 
2624
+ .e-dialog .e-vid-uploadwrap .e-droptext {
2625
+ height: 108px;
2626
+ }
2627
+
2602
2628
  .e-dialog.e-device.e-dlg-modal .e-img-uploadwrap .e-droptext,
2603
2629
  .e-dialog.e-device.e-dlg-modal .e-vid-uploadwrap .e-droptext,
2604
2630
  .e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap .e-droptext {
@@ -2751,6 +2777,10 @@ span.e-table-box.e-rbox-select {
2751
2777
  color: #fff;
2752
2778
  }
2753
2779
 
2780
+ .e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-active .e-icons {
2781
+ color: #000;
2782
+ }
2783
+
2754
2784
  .e-richtexteditor.e-rte-tb-expand .e-rte-content-border {
2755
2785
  border-bottom: 0;
2756
2786
  }
@@ -294,6 +294,10 @@
294
294
  .e-rte-dropdown-popup .e-rte-file-manager::before {
295
295
  content: "\e42b";
296
296
  }
297
+ .e-rte-toolbar .e-rte-format-painter::before,
298
+ .e-rte-dropdown-popup .e-rte-format-painter::before {
299
+ content: "\e97b";
300
+ }
297
301
 
298
302
  .e-richtexteditor .e-south-east::before,
299
303
  .e-richtexteditor .e-south-west::before {
@@ -316,6 +320,10 @@
316
320
  content: "\e89c";
317
321
  }
318
322
 
323
+ .e-rte-cursor-brush {
324
+ 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;
325
+ }
326
+
319
327
  /*! tab layout */
320
328
  .e-bigger .e-richtexteditor .e-rte-toolbar .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child,
321
329
  .e-richtexteditor.e-bigger .e-rte-toolbar .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child {
@@ -544,6 +552,7 @@
544
552
  margin-right: 0;
545
553
  }
546
554
  .e-richtexteditor .e-rte-toolbar.e-rte-tb-mobile .e-toolbar-multirow {
555
+ display: inline-block;
547
556
  margin-left: 0;
548
557
  margin-right: 0;
549
558
  overflow-x: auto;
@@ -1406,6 +1415,7 @@
1406
1415
  }
1407
1416
  .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items:not(.e-tbar-pos).e-toolbar-multirow {
1408
1417
  white-space: nowrap;
1418
+ display: inline-block;
1409
1419
  }
1410
1420
  .e-rte-quick-popup .e-rte-quick-toolbar.e-remove-white-space .e-toolbar-items:not(.e-tbar-pos).e-toolbar-multirow {
1411
1421
  white-space: nowrap;
@@ -2278,6 +2288,11 @@
2278
2288
  margin: 1px;
2279
2289
  }
2280
2290
 
2291
+ .e-transparent.e-rte-elements.e-tbar-btn.e-rte-fontcolor-dropdown,
2292
+ .e-transparent.e-rte-elements.e-tbar-btn.e-rte-backgroundcolor-dropdown {
2293
+ visibility: hidden;
2294
+ }
2295
+
2281
2296
  /*! tab layout */
2282
2297
  .e-richtexteditor .e-rte-toolbar {
2283
2298
  border: 1px solid #fff;
@@ -2367,6 +2382,9 @@
2367
2382
  .e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn .e-icons {
2368
2383
  color: #fff;
2369
2384
  }
2385
+ .e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover .e-icons {
2386
+ color: #fff;
2387
+ }
2370
2388
  .e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn .e-icons {
2371
2389
  color: #000;
2372
2390
  }
@@ -2382,6 +2400,9 @@
2382
2400
  .e-richtexteditor .e-toolbar-wrapper + .e-rte-toolbar:not(.e-rte-tb-float) {
2383
2401
  border: 0;
2384
2402
  }
2403
+ .e-richtexteditor .e-toolbar-wrapper {
2404
+ background: #000;
2405
+ }
2385
2406
  .e-richtexteditor img.e-img-focus::selection,
2386
2407
  .e-richtexteditor audio.e-audio-focus::selection,
2387
2408
  .e-richtexteditor .e-video-focus::selection {
@@ -2581,7 +2602,8 @@
2581
2602
 
2582
2603
  .e-dialog .e-img-uploadwrap .e-droptext,
2583
2604
  .e-dialog .e-aud-uploadwrap .e-droptext,
2584
- .e-dialog .e-vid-uploadwrap .e-droptext {
2605
+ .e-dialog .e-vid-uploadwrap .e-droptext,
2606
+ .e-dialog.e-device .e-vid-uploadwrap .e-droptext {
2585
2607
  border: dashed 2px #969696;
2586
2608
  border-radius: 4px;
2587
2609
  color: #fff;
@@ -2594,6 +2616,10 @@
2594
2616
  width: 288px;
2595
2617
  }
2596
2618
 
2619
+ .e-dialog .e-vid-uploadwrap .e-droptext {
2620
+ height: 108px;
2621
+ }
2622
+
2597
2623
  .e-dialog.e-device.e-dlg-modal .e-img-uploadwrap .e-droptext,
2598
2624
  .e-dialog.e-device.e-dlg-modal .e-vid-uploadwrap .e-droptext,
2599
2625
  .e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap .e-droptext {
@@ -2747,6 +2773,10 @@ span.e-table-box.e-rbox-select {
2747
2773
  color: #fff;
2748
2774
  }
2749
2775
 
2776
+ .e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-active .e-icons {
2777
+ color: #fff;
2778
+ }
2779
+
2750
2780
  .e-richtexteditor.e-rte-tb-expand .e-rte-content-border {
2751
2781
  border-bottom: 0;
2752
2782
  }
@@ -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
  }
@@ -7,13 +7,14 @@ $rte-list-btn-flex: column !default;
7
7
  $rte-list-btn-line-height: 1 !default;
8
8
  $rte-split-btn-line-height: 39px !default;
9
9
  $rte-big-split-btn-line-height: 38px !default;
10
- $skin-name: 'bootstrap' !default;
11
10
  $rte-border-color: $grey-99 !default;
12
11
  $rte-full-screen-bg: $grey-white !default;
13
12
  $rte-content-bg: $grey-base !default;
14
13
  $rte-content-font-color: $grey-dark-font !default;
15
14
  $rte-item-color: $grey-dark-font !default;
16
15
  $rte-icons-color: $grey-dark-font !default;
16
+ $rte-tlbar-expand-active: $grey-dark-font !default;
17
+ $rte-hover-icons-color: $grey-dark-font !default;
17
18
 
18
19
  $rte-big-quick-item-btn-width: 39px !default;
19
20
  $rte-quick-item-btn-width: 27px !default;
@@ -138,6 +139,7 @@ $rte-table-span-active-bg-color: rgba($brand-primary, .2) !default;
138
139
  $rte-table-span-active-border-color: lighten($brand-primary, 0%) !default;
139
140
  $rte-table-select-border-color: #0478d7 !default;
140
141
  $rte-table-popup-bg: $grey-dark !default;
142
+ $rte-table-resize-back-color: $grey-dark !default;
141
143
  $rte-table-popup-color: rgb(255, 0, 0) !default;
142
144
  $rte-table-popup-box: 0 3px 8px 0 rgba($grey-base, .26) !default;
143
145
  $rte-table-border-color: $grey-e6 !default;
@@ -189,7 +191,29 @@ $rte-big-file-browser-dlg-max-height: 557px !default;
189
191
  $rte-big-table-dlg-max-height: 330px !default;
190
192
  $rte-big-edit-table-dlg-max-height: 414px !default;
191
193
  $rte-drop-text-width: 300px !default;
194
+ $rte-drop-text-height: 185px !default;
192
195
  $rte-drop-text-mobile-width: 250px !default;
196
+ $rte-tbar-default-bg: $grey-darker;
197
+ $rte-droparea-line-height: 10;
198
+ $rte-droparea-browsebtn-height: 36px;
199
+ $rte-droparea-browsebtn-padding: 0 18px;
200
+ $rte-droparea-browsebtn-top: -50px;
201
+ $rte-insert-dialog-font-size: 15px;
202
+ $rte-big-insert-dialog-font-size: 15px;
203
+ $rte-table-popup-tablecell-height: 14px;
204
+ $rte-table-popup-tablecell-width: 14px;
205
+ $rte-table-popup-tablecell-margin: 1px;
206
+ $rte-table-popup-row-height : 16px;
207
+ $rte-border-top-left-radius: 0;
208
+ $rte-border-top-right-radius: 0;
209
+ $rte-border-bottom-right-radius: 0;
210
+ $rte-border-bottom-left-radius: 0;
211
+ $rte-big-border-radius: 0;
212
+ $rte-big-table-row-height : 18px;
213
+ $rte-big-tablecell-height : 16px;
214
+ $rte-big-tablecell-width : 16px;
215
+ $rte-toolbar-item-frist-last-child-margin: 0 6px;
216
+ $rte-big-toolbar-item-frist-last-child-margin: 0 6px;
193
217
 
194
218
  //enddefault
195
219
 
@@ -6,13 +6,14 @@ $rte-list-btn-flex: column !default;
6
6
  $rte-list-btn-line-height: 1 !default;
7
7
  $rte-split-btn-line-height: 39px !default;
8
8
  $rte-big-split-btn-line-height: 38px !default;
9
- $skin-name: 'bootstrap' !default;
10
9
  $rte-border-color: $grey-dd !default;
11
10
  $rte-full-screen-bg: $grey-white !default;
12
11
  $rte-content-bg: $grey-white !default;
13
12
  $rte-content-font-color: #333 !default;
14
13
  $rte-item-color: $base-font !default;
15
14
  $rte-icons-color: $base-font !default;
15
+ $rte-tlbar-expand-active: $base-font !default;
16
+ $rte-hover-icons-color: $base-font !default;
16
17
 
17
18
  $rte-big-quick-item-btn-width: 39px !default;
18
19
  $rte-quick-item-btn-width: 27px !default;
@@ -136,6 +137,7 @@ $rte-table-span-active-bg-color: rgba($brand-primary, .2) !default;
136
137
  $rte-table-span-active-border-color: $grey-cc !default;
137
138
  $rte-table-select-border-color: #0478d7 !default;
138
139
  $rte-table-popup-bg: $brand-primary-font !default;
140
+ $rte-table-resize-back-color: $brand-primary-font !default;
139
141
  $rte-table-popup-color: $grey-base !default;
140
142
  $rte-table-popup-box: 0 3px 8px 0 rgba($grey-base, .26) !default;
141
143
  $rte-table-border-color: #bdbdbd !default;
@@ -188,7 +190,29 @@ $rte-big-file-browser-dlg-max-height: 557px !default;
188
190
  $rte-big-table-dlg-max-height: 330px !default;
189
191
  $rte-big-edit-table-dlg-max-height: 414px !default;
190
192
  $rte-drop-text-width: 300px !default;
193
+ $rte-drop-text-height: 185px !default;
191
194
  $rte-drop-text-mobile-width: 250px !default;
195
+ $rte-tbar-default-bg: $grey-f8;
196
+ $rte-droparea-line-height: 10;
197
+ $rte-droparea-browsebtn-height: 36px;
198
+ $rte-droparea-browsebtn-padding: 0 18px;
199
+ $rte-droparea-browsebtn-top: -50px;
200
+ $rte-insert-dialog-font-size: 15px;
201
+ $rte-big-insert-dialog-font-size: 15px;
202
+ $rte-table-popup-tablecell-height: 14px;
203
+ $rte-table-popup-tablecell-width: 14px;
204
+ $rte-table-popup-tablecell-margin: 1px;
205
+ $rte-table-popup-row-height : 16px;
206
+ $rte-border-top-left-radius: 0;
207
+ $rte-border-top-right-radius: 0;
208
+ $rte-border-bottom-right-radius: 0;
209
+ $rte-border-bottom-left-radius: 0;
210
+ $rte-big-border-radius: 0;
211
+ $rte-big-table-row-height : 18px;
212
+ $rte-big-tablecell-height : 16px;
213
+ $rte-big-tablecell-width : 16px;
214
+ $rte-toolbar-item-frist-last-child-margin: 0 6px;
215
+ $rte-big-toolbar-item-frist-last-child-margin: 0 6px;
192
216
 
193
217
  @include export-module('richtexteditor-bootstrap') {
194
218
  .e-richtexteditor {
@@ -8,13 +8,14 @@ $rte-big-split-btn-line-height: 40px !default;
8
8
 
9
9
  $rte-list-btn-flex: unset !default;
10
10
  $rte-list-btn-line-height: unset !default;
11
- $skin-name: 'bootstrap4' !default;
12
11
  $rte-border-color: $gray-300 !default;
13
12
  $rte-full-screen-bg: $content-bg !default;
14
13
  $rte-content-bg: $content-bg !default;
15
14
  $rte-content-font-color: $gray-900 !default;
16
15
  $rte-item-color: $gray-900 !default;
17
16
  $rte-icons-color: $gray-900 !default;
17
+ $rte-tlbar-expand-active: $gray-900 !default;
18
+ $rte-hover-icons-color: $gray-900 !default;
18
19
  $rte-big-quick-item-btn-width: 38px !default;
19
20
  $rte-quick-item-btn-width: 32px !default;
20
21
  $rte-big-quick-item-btn-height: 38px !default;
@@ -128,6 +129,7 @@ $rte-table-span-active-bg-color: $content-bg !default;
128
129
  $rte-table-span-active-border-color: $primary !default;
129
130
  $rte-table-select-border-color: $primary !default;
130
131
  $rte-table-popup-bg: $content-bg !default;
132
+ $rte-table-resize-back-color: $content-bg !default;
131
133
  $rte-table-popup-color: $gray-900 !default;
132
134
  $rte-table-popup-box: none !default;
133
135
  $rte-table-border-color: $gray-500 !default;
@@ -184,7 +186,29 @@ $rte-big-file-browser-dlg-max-height: 557px !default;
184
186
  $rte-big-table-dlg-max-height: 302px !default;
185
187
  $rte-big-edit-table-dlg-max-height: 378px !default;
186
188
  $rte-drop-text-width: 300px !default;
189
+ $rte-drop-text-height: 185px !default;
187
190
  $rte-drop-text-mobile-width: 250px !default;
191
+ $rte-tbar-default-bg: $gray-100;
192
+ $rte-droparea-line-height: 10;
193
+ $rte-droparea-browsebtn-height: 36px;
194
+ $rte-droparea-browsebtn-padding: 0 18px;
195
+ $rte-droparea-browsebtn-top: -50px;
196
+ $rte-insert-dialog-font-size: 15px;
197
+ $rte-big-insert-dialog-font-size: 15px;
198
+ $rte-table-popup-tablecell-height: 14px;
199
+ $rte-table-popup-tablecell-width: 14px;
200
+ $rte-table-popup-tablecell-margin: 1px;
201
+ $rte-table-popup-row-height : 16px;
202
+ $rte-border-top-left-radius: 0;
203
+ $rte-border-top-right-radius: 0;
204
+ $rte-border-bottom-right-radius: 0;
205
+ $rte-border-bottom-left-radius: 0;
206
+ $rte-big-border-radius: 0;
207
+ $rte-big-table-row-height : 18px;
208
+ $rte-big-tablecell-height : 16px;
209
+ $rte-big-tablecell-width : 16px;
210
+ $rte-toolbar-item-frist-last-child-margin: 0 6px;
211
+ $rte-big-toolbar-item-frist-last-child-margin: 0 6px;
188
212
 
189
213
  @include export-module('richtexteditor-bootstrap4') {
190
214
  .e-richtexteditor {
@@ -1,5 +1,3 @@
1
- $skin-name: 'bootstrap5' !default;
2
-
3
1
  //Layout Variables Start
4
2
  $rte-border-size: 1px !default;
5
3
  $rte-2px-border-size: 2px !default;
@@ -29,8 +27,8 @@ $rte-big-quick-drop-btn-icon-size: 16px !default;
29
27
  $rte-quick-drop-btn-icon-size: 14px !default;
30
28
  $rte-big-quick-drop-btn-caret-icon-size: 10px !default;
31
29
  $rte-quick-drop-btn-caret-icon-size: 12px !default;
32
- $rte-big-quick-drop-btn-caret-font-size: 12px !default;
33
- $rte-quick-drop-btn-caret-font-size: 10px !default;
30
+ $rte-big-quick-drop-btn-caret-font-size: $text-xs !default;
31
+ $rte-quick-drop-btn-caret-font-size: $text-xxs !default;
34
32
  $rte-big-tb-items-margin-left: 3px !default;
35
33
  $rte-tb-items-margin-left: 7px !default;
36
34
  $rte-big-tb-items-padding-left: 3px !default;
@@ -82,6 +80,22 @@ $rte-big-inline-tmp-color-min-width: 50px;
82
80
  $rte-inline-tmp-color-min-width: 55px;
83
81
  $rte-big-color-list-span-common-padding-left-right: 0;
84
82
  $rte-default-character-count-opacity: 1;
83
+ $rte-droparea-line-height: 10;
84
+ $rte-droparea-browsebtn-height: 36px;
85
+ $rte-droparea-browsebtn-padding: 0 18px;
86
+ $rte-droparea-browsebtn-top: -50px;
87
+ $rte-insert-dialog-font-size: 15px;
88
+ $rte-big-insert-dialog-font-size: 15px;
89
+ $rte-table-popup-tablecell-height: 14px;
90
+ $rte-table-popup-tablecell-width: 14px;
91
+ $rte-table-popup-tablecell-margin: 1px;
92
+ $rte-table-popup-row-height : 16px;
93
+ $rte-big-table-row-height : 18px;
94
+ $rte-big-tablecell-height : 16px;
95
+ $rte-big-tablecell-width : 16px;
96
+ $rte-toolbar-item-frist-last-child-margin: 0 6px;
97
+ $rte-big-toolbar-item-frist-last-child-margin: 0 6px;
98
+ $rte-tlbar-expand-active:$msg-color-alt2;
85
99
 
86
100
  //Layout Variables End
87
101
 
@@ -93,6 +107,7 @@ $rte-full-screen-bg: $content-bg-color !default;
93
107
  $rte-content-font-color: $content-text-color !default;
94
108
  $rte-item-color: $content-text-color !default;
95
109
  $rte-icons-color: $icon-color !default;
110
+ $rte-hover-icons-color: $white !default;
96
111
  $rte-img-popup-border: 1px solid $border-light !default;
97
112
  $rte-img-popup-box-shadow: $shadow !default;
98
113
  $rte-img-popup-color: $border-light !default;
@@ -141,7 +156,7 @@ $rte-drop-text-clr: $content-text-color-alt2 !default;
141
156
  $rte-default-character-count-color: $placeholder-text-color !default;
142
157
  $rte-warning-character-count-color: $warning !default;
143
158
  $rte-error-character-count-color: $danger !default;
144
- $rte-img-border: dashed 2px $primary !default;
159
+ $rte-img-border: solid 2px $primary !default;
145
160
  $rte-font-family: $font-family !default;
146
161
  $rte-content-color: $content-text-color !default;
147
162
  $rte-content-blockquote-border-left-color: solid 2px $content-text-color !default;
@@ -160,12 +175,18 @@ $rte-table-span-active-bg-color: $primary-lighter !default;
160
175
  $rte-table-span-active-border-color: $primary !default;
161
176
  $rte-table-select-border-color: $primary !default;
162
177
  $rte-table-popup-bg: $flyout-bg-color !default;
178
+ $rte-table-resize-back-color: $flyout-bg-color !default;
163
179
  $rte-table-popup-color: $border-light !default;
164
180
  $rte-table-popup-box: $shadow !default;
165
181
  $rte-table-border-color: $border-light !default;
166
182
  $rte-table-alternate-color: $content-bg-color-alt1 !default;
167
183
  $rte-table-header-bg: $content-bg-color-alt1 !default;
168
184
  $rte-toolbar-hor-nav-border-width: 0 0 0 1px !default;
185
+ $rte-border-top-left-radius: 0;
186
+ $rte-border-top-right-radius: 0;
187
+ $rte-border-bottom-right-radius: 0;
188
+ $rte-border-bottom-left-radius: 0;
189
+ $rte-big-border-radius: 0;
169
190
 
170
191
  //Theme Variables End
171
192
 
@@ -193,4 +214,6 @@ $rte-big-edit-table-dlg-max-height: 373px !default;
193
214
  $toolbar-expand-icon-min-height: 40px !default;
194
215
  $rte-align-caret-icon-min-width: 24px !default;
195
216
  $rte-drop-text-width: 300px !default;
217
+ $rte-drop-text-height: 185px !default;
196
218
  $rte-drop-text-mobile-width: 250px !default;
219
+ $rte-tbar-default-bg: $content-bg-color-alt1;