@syncfusion/ej2-richtexteditor 20.4.53 → 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 (133) hide show
  1. package/CHANGELOG.md +14 -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
@@ -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;
@@ -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: 41px !default;
9
9
  $rte-big-split-btn-line-height: 50px !default;
10
- $skin-name: 'fabric' !default;
11
10
  $rte-border-color: $neutral-light !default;
12
11
  $rte-full-screen-bg: $neutral-white !default;
13
12
  $rte-content-bg: $neutral-white !default;
14
13
  $rte-content-font-color: $neutral-light-font !default;
15
14
  $rte-item-color: $neutral-light-font !default;
16
15
  $rte-icons-color: $neutral-light-font !default;
16
+ $rte-tlbar-expand-active: $neutral-light-font !default;
17
+ $rte-hover-icons-color: $neutral-light-font !default;
17
18
 
18
19
  $rte-big-quick-item-btn-width: 39px !default;
19
20
  $rte-quick-item-btn-width: 27px !default;
@@ -137,6 +138,7 @@ $rte-table-span-active-bg-color: $theme-darker !default;
137
138
  $rte-table-span-active-border-color: $theme-tertiary !default;
138
139
  $rte-table-select-border-color: $theme-primary !default;
139
140
  $rte-table-popup-bg: $neutral-lighter-alt !default;
141
+ $rte-table-resize-back-color: $neutral-lighter-alt !default;
140
142
  $rte-table-popup-color: $neutral-light-font !default;
141
143
  $rte-table-popup-box: 0 2px 5px 0 rgba($shadow, .26) !default;
142
144
  $rte-table-border-color: $neutral-tertiary !default;
@@ -187,6 +189,28 @@ $rte-big-file-browser-dlg-max-height: 557px !default;
187
189
  $rte-big-table-dlg-max-height: 335px !default;
188
190
  $rte-big-edit-table-dlg-max-height: 427px !default;
189
191
  $rte-drop-text-width: 300px !default;
192
+ $rte-drop-text-height: 185px !default;
190
193
  $rte-drop-text-mobile-width: 250px !default;
194
+ $rte-tbar-default-bg: $neutral-lighter;
195
+ $rte-droparea-line-height: 10;
196
+ $rte-droparea-browsebtn-height: 36px;
197
+ $rte-droparea-browsebtn-padding: 0 18px;
198
+ $rte-droparea-browsebtn-top: -50px;
199
+ $rte-insert-dialog-font-size: 15px;
200
+ $rte-big-insert-dialog-font-size: 15px;
201
+ $rte-table-popup-tablecell-height: 14px;
202
+ $rte-table-popup-tablecell-width: 14px;
203
+ $rte-table-popup-tablecell-margin: 1px;
204
+ $rte-table-popup-row-height : 16px;
205
+ $rte-border-top-left-radius: 0;
206
+ $rte-border-top-right-radius: 0;
207
+ $rte-border-bottom-right-radius: 0;
208
+ $rte-border-bottom-left-radius: 0;
209
+ $rte-big-border-radius: 0;
210
+ $rte-big-table-row-height : 18px;
211
+ $rte-big-tablecell-height : 16px;
212
+ $rte-big-tablecell-width : 16px;
213
+ $rte-toolbar-item-frist-last-child-margin: 0 6px;
214
+ $rte-big-toolbar-item-frist-last-child-margin: 0 6px;
191
215
 
192
216
  //enddefault
@@ -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: 41px !default;
8
8
  $rte-big-split-btn-line-height: 50px !default;
9
- $skin-name: 'fabric' !default;
10
9
  $rte-border-color: $neutral-quintenaryalt !default;
11
10
  $rte-full-screen-bg: $neutral-white !default;
12
11
  $rte-content-bg: $neutral-white !default;
13
12
  $rte-content-font-color: #333 !default;
14
13
  $rte-item-color: $neutral-light-fontalt !default;
15
14
  $rte-icons-color: $neutral-light-fontalt !default;
15
+ $rte-tlbar-expand-active: $neutral-light-fontalt !default;
16
+ $rte-hover-icons-color: $neutral-light-fontalt !default;
16
17
  $rte-content-padding: 16px !default;
17
18
  $rte-table-popup-padding: 10px !default;
18
19
 
@@ -137,6 +138,7 @@ $rte-table-span-active-bg-color: rgba($theme-primary, .2) !default;
137
138
  $rte-table-span-active-border-color: $theme-primary !default;
138
139
  $rte-table-select-border-color: #0478d7 !default;
139
140
  $rte-table-popup-bg: $neutral-white !default;
141
+ $rte-table-resize-back-color: $neutral-white !default;
140
142
  $rte-table-popup-color: $theme-light-font !default;
141
143
  $rte-table-popup-box: 0 3px 8px 0 rgba($neutral-light-fontalt, .26) !default;
142
144
  $rte-table-border-color: #bdbdbd !default;
@@ -187,4 +189,26 @@ $rte-big-file-browser-dlg-max-height: 557px !default;
187
189
  $rte-big-table-dlg-max-height: 335px !default;
188
190
  $rte-big-edit-table-dlg-max-height: 427px !default;
189
191
  $rte-drop-text-width: 290px !default;
192
+ $rte-drop-text-height: 185px !default;
190
193
  $rte-drop-text-mobile-width: 240px !default;
194
+ $rte-tbar-default-bg: $neutral-white;
195
+ $rte-droparea-line-height: 10;
196
+ $rte-droparea-browsebtn-height: 36px;
197
+ $rte-droparea-browsebtn-padding: 0 18px;
198
+ $rte-droparea-browsebtn-top: -50px;
199
+ $rte-insert-dialog-font-size: 15px;
200
+ $rte-big-insert-dialog-font-size: 15px;
201
+ $rte-table-popup-tablecell-height: 14px;
202
+ $rte-table-popup-tablecell-width: 14px;
203
+ $rte-table-popup-tablecell-margin: 1px;
204
+ $rte-table-popup-row-height : 16px;
205
+ $rte-border-top-left-radius: 0;
206
+ $rte-border-top-right-radius: 0;
207
+ $rte-border-bottom-right-radius: 0;
208
+ $rte-border-bottom-left-radius: 0;
209
+ $rte-big-border-radius: 0;
210
+ $rte-big-table-row-height : 18px;
211
+ $rte-big-tablecell-height : 16px;
212
+ $rte-big-tablecell-width : 16px;
213
+ $rte-toolbar-item-frist-last-child-margin: 0 6px;
214
+ $rte-big-toolbar-item-frist-last-child-margin: 0 6px;
@@ -1,5 +1,3 @@
1
- $skin-name: 'FluentUI' !default;
2
-
3
1
  //Layout Variables Start
4
2
  $rte-border-size: 1px !default;
5
3
  $rte-2px-border-size: 2px !default;
@@ -31,8 +29,8 @@ $rte-big-quick-drop-btn-icon-size: 16px !default;
31
29
  $rte-quick-drop-btn-icon-size: 14px !default;
32
30
  $rte-big-quick-drop-btn-caret-icon-size: 10px !default;
33
31
  $rte-quick-drop-btn-caret-icon-size: 12px !default;
34
- $rte-big-quick-drop-btn-caret-font-size: 12px !default;
35
- $rte-quick-drop-btn-caret-font-size: 10px !default;
32
+ $rte-big-quick-drop-btn-caret-font-size: $text-xs !default;
33
+ $rte-quick-drop-btn-caret-font-size: $text-xxs !default;
36
34
  $rte-big-tb-items-margin-left: 8px !default;
37
35
  $rte-tb-items-margin-left: 8px !default;
38
36
  $rte-big-tb-items-padding-left: 8px !default;
@@ -56,8 +54,8 @@ $rte-big-drop-btn-action-padding-left: 10px !default;
56
54
  $rte-big-drop-btn-action-padding-right: 6px !default;
57
55
  $rte-colorpicker-parent-padding: 7px !default;
58
56
  $rte-colorpicker-parent-padding-hover: 7px !default;
59
- $rte-colorpicker-parent-padding-top: 7px !default;
60
- $rte-colorpicker-parent-padding-hover-top: 7px !default;
57
+ $rte-colorpicker-parent-padding-top: 0 !default;
58
+ $rte-colorpicker-parent-padding-hover-top: 0 !default;
61
59
  $rte-colorpicker-parent-padding-active-hover: 7px !default;
62
60
  $rte-font-icon-width: 30px !default;
63
61
  $rte-font-arrow-width: 12px !default;
@@ -86,6 +84,21 @@ $rte-big-inline-tmp-color-min-width: 50px;
86
84
  $rte-inline-tmp-color-min-width: 36px;
87
85
  $rte-big-color-list-span-common-padding-left-right: 7px;
88
86
  $rte-default-character-count-opacity: .8;
87
+ $rte-droparea-line-height: 10;
88
+ $rte-droparea-browsebtn-height: 36px;
89
+ $rte-droparea-browsebtn-padding: 0 18px;
90
+ $rte-droparea-browsebtn-top: -50px;
91
+ $rte-insert-dialog-font-size: 15px;
92
+ $rte-big-insert-dialog-font-size: 15px;
93
+ $rte-table-popup-tablecell-height: 14px;
94
+ $rte-table-popup-tablecell-width: 14px;
95
+ $rte-table-popup-tablecell-margin: 1px;
96
+ $rte-table-popup-row-height : 16px;
97
+ $rte-big-table-row-height : 18px;
98
+ $rte-big-tablecell-height : 16px;
99
+ $rte-big-tablecell-width : 16px;
100
+ $rte-toolbar-item-frist-last-child-margin: 0 6px;
101
+ $rte-big-toolbar-item-frist-last-child-margin: 0 6px;
89
102
 
90
103
  //Layout Variables End
91
104
 
@@ -97,6 +110,8 @@ $rte-full-screen-bg: $content-bg-color !default;
97
110
  $rte-content-font-color: $content-text-color !default;
98
111
  $rte-item-color: $icon-color !default;
99
112
  $rte-icons-color: $icon-color !default;
113
+ $rte-tlbar-expand-active: $icon-color !default;
114
+ $rte-hover-icons-color: $icon-color !default;
100
115
  $rte-img-popup-border: 1px solid $border-light !default;
101
116
  $rte-img-popup-box-shadow: $shadow-lg !default;
102
117
  $rte-img-popup-color: $border-light !default;
@@ -145,7 +160,7 @@ $rte-drop-text-clr: $content-text-color-alt2 !default;
145
160
  $rte-default-character-count-color: $placeholder-text-color !default;
146
161
  $rte-warning-character-count-color: $warning !default;
147
162
  $rte-error-character-count-color: $danger !default;
148
- $rte-img-border: dashed 2px $primary !default;
163
+ $rte-img-border: solid 2px $primary !default;
149
164
  $rte-font-family: $font-family !default;
150
165
  $rte-content-color: $content-text-color !default;
151
166
  $rte-content-blockquote-border-left-color: solid 2px $content-text-color !default;
@@ -164,12 +179,18 @@ $rte-table-span-active-bg-color: $primary-lighter !default;
164
179
  $rte-table-span-active-border-color: $primary !default;
165
180
  $rte-table-select-border-color: $primary !default;
166
181
  $rte-table-popup-bg: $flyout-bg-color !default;
182
+ $rte-table-resize-back-color: $flyout-bg-color !default;
167
183
  $rte-table-popup-color: $flyout-border !default;
168
184
  $rte-table-popup-box: $shadow-lg !default;
169
185
  $rte-table-border-color: $border-light !default;
170
186
  $rte-table-alternate-color: $content-bg-color-alt1 !default;
171
187
  $rte-table-header-bg: $content-bg-color-alt1 !default;
172
188
  $rte-toolbar-hor-nav-border-width: 0 0 0 1px !default;
189
+ $rte-border-top-left-radius: 0;
190
+ $rte-border-top-right-radius: 0;
191
+ $rte-border-bottom-right-radius: 0;
192
+ $rte-border-bottom-left-radius: 0;
193
+ $rte-big-border-radius: 0;
173
194
 
174
195
  //Theme Variables End
175
196
 
@@ -196,4 +217,6 @@ $rte-big-file-browser-dlg-max-height: 557px !default;
196
217
  $rte-big-table-dlg-max-height: 306px !default;
197
218
  $rte-big-edit-table-dlg-max-height: 388px !default;
198
219
  $rte-drop-text-width: 292px !default;
220
+ $rte-drop-text-height: 185px !default;
199
221
  $rte-drop-text-mobile-width: 242px !default;
222
+ $rte-tbar-default-bg: $content-bg-color-alt2;