@syncfusion/ej2-richtexteditor 24.1.41-569421 → 24.1.41-581025
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.
- package/CHANGELOG.md +0 -176
- package/dist/ej2-richtexteditor.umd.min.js +1 -1
- package/dist/ej2-richtexteditor.umd.min.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es2015.js +7822 -9502
- package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es5.js +5674 -7355
- package/dist/es6/ej2-richtexteditor.es5.js.map +1 -1
- package/package.json +12 -12
- package/src/common/config.d.ts +0 -7
- package/src/common/config.js +0 -11
- package/src/common/constant.d.ts +0 -6
- package/src/common/constant.js +0 -6
- package/src/common/interface.d.ts +0 -12
- package/src/common/types.d.ts +0 -6
- package/src/common/util.d.ts +0 -6
- package/src/common/util.js +20 -61
- package/src/editor-manager/base/constant.d.ts +0 -6
- package/src/editor-manager/base/constant.js +0 -6
- package/src/editor-manager/base/editor-manager.d.ts +0 -5
- package/src/editor-manager/base/editor-manager.js +0 -59
- package/src/editor-manager/base/interface.d.ts +0 -8
- package/src/editor-manager/plugin/dom-node.d.ts +1 -5
- package/src/editor-manager/plugin/dom-node.js +15 -169
- package/src/editor-manager/plugin/format-painter-actions.d.ts +0 -1
- package/src/editor-manager/plugin/format-painter-actions.js +1 -19
- package/src/editor-manager/plugin/formats.d.ts +0 -1
- package/src/editor-manager/plugin/formats.js +3 -38
- package/src/editor-manager/plugin/image.js +16 -12
- package/src/editor-manager/plugin/indents.js +1 -1
- package/src/editor-manager/plugin/inserthtml.d.ts +0 -1
- package/src/editor-manager/plugin/inserthtml.js +18 -78
- package/src/editor-manager/plugin/link.js +3 -8
- package/src/editor-manager/plugin/lists.js +70 -159
- package/src/editor-manager/plugin/ms-word-clean-up.d.ts +0 -3
- package/src/editor-manager/plugin/ms-word-clean-up.js +85 -212
- package/src/editor-manager/plugin/nodecutter.js +2 -5
- package/src/editor-manager/plugin/selection-commands.d.ts +0 -2
- package/src/editor-manager/plugin/selection-commands.js +4 -209
- package/src/editor-manager/plugin/table.d.ts +1 -4
- package/src/editor-manager/plugin/table.js +49 -95
- package/src/editor-manager/plugin/toolbar-status.d.ts +2 -2
- package/src/editor-manager/plugin/toolbar-status.js +10 -20
- package/src/editor-manager/plugin/undo.d.ts +0 -1
- package/src/editor-manager/plugin/undo.js +1 -21
- package/src/rich-text-editor/actions/base-quick-toolbar.d.ts +3 -4
- package/src/rich-text-editor/actions/base-quick-toolbar.js +10 -43
- package/src/rich-text-editor/actions/base-toolbar.js +34 -33
- package/src/rich-text-editor/actions/color-picker.d.ts +0 -1
- package/src/rich-text-editor/actions/color-picker.js +0 -10
- package/src/rich-text-editor/actions/count.js +1 -1
- package/src/rich-text-editor/actions/dropdown-buttons.d.ts +0 -1
- package/src/rich-text-editor/actions/dropdown-buttons.js +4 -8
- package/src/rich-text-editor/actions/emoji-picker.js +4 -4
- package/src/rich-text-editor/actions/enter-key.js +4 -8
- package/src/rich-text-editor/actions/format-painter.js +1 -4
- package/src/rich-text-editor/actions/full-screen.js +2 -3
- package/src/rich-text-editor/actions/html-editor.d.ts +2 -2
- package/src/rich-text-editor/actions/html-editor.js +42 -123
- package/src/rich-text-editor/actions/keyboard.js +1 -3
- package/src/rich-text-editor/actions/markdown-editor.js +1 -3
- package/src/rich-text-editor/actions/paste-clean-up.d.ts +0 -3
- package/src/rich-text-editor/actions/paste-clean-up.js +14 -85
- package/src/rich-text-editor/actions/quick-toolbar.d.ts +0 -8
- package/src/rich-text-editor/actions/quick-toolbar.js +9 -37
- package/src/rich-text-editor/actions/resize.js +1 -2
- package/src/rich-text-editor/actions/toolbar-action.js +1 -1
- package/src/rich-text-editor/actions/toolbar.d.ts +3 -2
- package/src/rich-text-editor/actions/toolbar.js +87 -18
- package/src/rich-text-editor/base/classes.d.ts +5 -0
- package/src/rich-text-editor/base/classes.js +5 -0
- package/src/rich-text-editor/base/constant.d.ts +0 -40
- package/src/rich-text-editor/base/constant.js +0 -209
- package/src/rich-text-editor/base/interface.d.ts +3 -37
- package/src/rich-text-editor/base/rich-text-editor-model.d.ts +3 -3
- package/src/rich-text-editor/base/rich-text-editor.d.ts +4 -7
- package/src/rich-text-editor/base/rich-text-editor.js +132 -156
- package/src/rich-text-editor/base/util.js +2 -11
- package/src/rich-text-editor/formatter/formatter.js +4 -16
- package/src/rich-text-editor/models/default-locale.js +26 -30
- package/src/rich-text-editor/models/items.js +2 -2
- package/src/rich-text-editor/models/toolbar-settings-model.d.ts +1 -1
- package/src/rich-text-editor/models/toolbar-settings.d.ts +1 -1
- package/src/rich-text-editor/models/toolbar-settings.js +1 -1
- package/src/rich-text-editor/renderer/audio-module.d.ts +0 -1
- package/src/rich-text-editor/renderer/audio-module.js +4 -22
- package/src/rich-text-editor/renderer/dialog-renderer.d.ts +0 -2
- package/src/rich-text-editor/renderer/dialog-renderer.js +1 -12
- package/src/rich-text-editor/renderer/iframe-content-renderer.js +1 -2
- package/src/rich-text-editor/renderer/image-module.d.ts +1 -9
- package/src/rich-text-editor/renderer/image-module.js +168 -203
- package/src/rich-text-editor/renderer/link-module.js +1 -10
- package/src/rich-text-editor/renderer/table-module.d.ts +1 -8
- package/src/rich-text-editor/renderer/table-module.js +139 -301
- package/src/rich-text-editor/renderer/toolbar-renderer.d.ts +0 -3
- package/src/rich-text-editor/renderer/toolbar-renderer.js +9 -94
- package/src/rich-text-editor/renderer/video-module.d.ts +0 -3
- package/src/rich-text-editor/renderer/video-module.js +41 -82
- package/src/rich-text-editor/renderer/view-source.d.ts +0 -1
- package/src/rich-text-editor/renderer/view-source.js +4 -12
- package/src/selection/selection.js +0 -3
- package/styles/bootstrap-dark.css +53 -161
- package/styles/bootstrap.css +61 -162
- package/styles/bootstrap4.css +46 -146
- package/styles/bootstrap5-dark.css +46 -151
- package/styles/bootstrap5.css +46 -151
- package/styles/fabric-dark.css +40 -140
- package/styles/fabric.css +41 -141
- package/styles/fluent-dark.css +47 -165
- package/styles/fluent.css +47 -165
- package/styles/highcontrast-light.css +40 -140
- package/styles/highcontrast.css +41 -144
- package/styles/material-dark.css +41 -145
- package/styles/material.css +41 -145
- package/styles/material3-dark.css +50 -156
- package/styles/material3.css +50 -156
- package/styles/rich-text-editor/_bootstrap-dark-definition.scss +13 -17
- package/styles/rich-text-editor/_bootstrap-definition.scss +19 -22
- package/styles/rich-text-editor/_bootstrap4-definition.scss +7 -11
- package/styles/rich-text-editor/_bootstrap5-definition.scss +3 -7
- package/styles/rich-text-editor/_fabric-dark-definition.scss +2 -6
- package/styles/rich-text-editor/_fabric-definition.scss +3 -7
- package/styles/rich-text-editor/_fluent-definition.scss +9 -13
- package/styles/rich-text-editor/_fusionnew-definition.scss +3 -7
- package/styles/rich-text-editor/_highcontrast-definition.scss +3 -7
- package/styles/rich-text-editor/_highcontrast-light-definition.scss +2 -6
- package/styles/rich-text-editor/_layout.scss +31 -133
- package/styles/rich-text-editor/_material-dark-definition.scss +2 -6
- package/styles/rich-text-editor/_material-definition.scss +2 -6
- package/styles/rich-text-editor/_material3-definition.scss +12 -16
- package/styles/rich-text-editor/_tailwind-definition.scss +19 -23
- package/styles/rich-text-editor/_theme.scss +23 -112
- package/styles/rich-text-editor/bootstrap-dark.css +53 -161
- package/styles/rich-text-editor/bootstrap.css +61 -162
- package/styles/rich-text-editor/bootstrap4.css +46 -146
- package/styles/rich-text-editor/bootstrap5-dark.css +46 -151
- package/styles/rich-text-editor/bootstrap5.css +46 -151
- package/styles/rich-text-editor/fabric-dark.css +40 -140
- package/styles/rich-text-editor/fabric.css +41 -141
- package/styles/rich-text-editor/fluent-dark.css +47 -165
- package/styles/rich-text-editor/fluent.css +47 -165
- package/styles/rich-text-editor/highcontrast-light.css +40 -140
- package/styles/rich-text-editor/highcontrast.css +41 -144
- package/styles/rich-text-editor/icons/_bootstrap-dark.scss +2 -2
- package/styles/rich-text-editor/icons/_bootstrap.scss +2 -2
- package/styles/rich-text-editor/icons/_bootstrap4.scss +2 -2
- package/styles/rich-text-editor/icons/_bootstrap5.scss +2 -2
- package/styles/rich-text-editor/icons/_fabric-dark.scss +2 -2
- package/styles/rich-text-editor/icons/_fabric.scss +2 -2
- package/styles/rich-text-editor/icons/_fluent.scss +2 -2
- package/styles/rich-text-editor/icons/_highcontrast-light.scss +2 -2
- package/styles/rich-text-editor/icons/_highcontrast.scss +2 -2
- package/styles/rich-text-editor/icons/_material-dark.scss +2 -2
- package/styles/rich-text-editor/icons/_material.scss +2 -2
- package/styles/rich-text-editor/icons/_material3.scss +2 -2
- package/styles/rich-text-editor/icons/_tailwind.scss +2 -2
- package/styles/rich-text-editor/material-dark.css +41 -145
- package/styles/rich-text-editor/material.css +41 -145
- package/styles/rich-text-editor/material3-dark.css +50 -156
- package/styles/rich-text-editor/material3.css +50 -156
- package/styles/rich-text-editor/tailwind-dark.css +63 -191
- package/styles/rich-text-editor/tailwind.css +63 -191
- package/styles/tailwind-dark.css +63 -191
- package/styles/tailwind.css +63 -191
- package/.eslintrc.json +0 -260
- package/src/global.d.ts +0 -1
- package/styles/rich-text-editor/_bds-definition.scss +0 -279
- package/styles/rich-text-editor/icons/_bds.scss +0 -348
|
@@ -16,6 +16,12 @@
|
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
+
@if $skin-name == 'bootstrap5' {
|
|
20
|
+
.e-tbar-btn:focus .e-icons {
|
|
21
|
+
color: $rte-quick-item-active-font-color;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
19
25
|
&.e-active .e-tbar-btn,
|
|
20
26
|
&.e-active .e-tbar-btn:focus {
|
|
21
27
|
background: $rte-tb-item-active-bg;
|
|
@@ -39,6 +45,10 @@
|
|
|
39
45
|
.e-tbar-btn:hover .e-icons {
|
|
40
46
|
color: $rte-tb-hover-font-color;
|
|
41
47
|
}
|
|
48
|
+
|
|
49
|
+
.e-tbar-btn:focus .e-icons {
|
|
50
|
+
color: $primary-text-focus;
|
|
51
|
+
}
|
|
42
52
|
}
|
|
43
53
|
|
|
44
54
|
.e-dropdown-btn.e-active {
|
|
@@ -150,6 +160,9 @@
|
|
|
150
160
|
.e-toolbar-item .e-tbar-btn:hover .e-icons {
|
|
151
161
|
color: $rte-hover-icons-color;
|
|
152
162
|
}
|
|
163
|
+
.e-toolbar-item .e-tbar-btn:focus .e-icons {
|
|
164
|
+
color: $rte-hover-icons-color;
|
|
165
|
+
}
|
|
153
166
|
.e-toolbar-item.e-active .e-tbar-btn .e-icons {
|
|
154
167
|
color: $rte-tb-active-font-color;
|
|
155
168
|
}
|
|
@@ -187,11 +200,6 @@
|
|
|
187
200
|
.e-toolbar-wrapper .e-rte-toolbar:not(.e-rte-tb-float) {
|
|
188
201
|
border-bottom: 1px solid $rte-border-color;
|
|
189
202
|
}
|
|
190
|
-
|
|
191
|
-
.e-toolbar-wrapper.e-rte-tb-float .e-rte-toolbar {
|
|
192
|
-
border-top: 1px solid $rte-border-color;
|
|
193
|
-
}
|
|
194
|
-
|
|
195
203
|
.e-toolbar-wrapper + .e-rte-toolbar:not(.e-rte-tb-float) {
|
|
196
204
|
border: 0;
|
|
197
205
|
}
|
|
@@ -352,19 +360,15 @@
|
|
|
352
360
|
.e-clickelem::after,
|
|
353
361
|
.e-video-clickelem::after {
|
|
354
362
|
background: transparent;
|
|
363
|
+
bottom: 0;
|
|
355
364
|
content: '';
|
|
356
365
|
cursor: default;
|
|
357
366
|
display: block;
|
|
367
|
+
left: 0;
|
|
358
368
|
position: absolute;
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
.e-video-clickelem::before {
|
|
363
|
-
background: transparent;
|
|
364
|
-
content: '';
|
|
365
|
-
cursor: default;
|
|
366
|
-
display: block;
|
|
367
|
-
position: absolute;
|
|
369
|
+
right: 0;
|
|
370
|
+
top: 0;
|
|
371
|
+
z-index: 1;
|
|
368
372
|
}
|
|
369
373
|
|
|
370
374
|
.e-videoheader,
|
|
@@ -381,26 +385,6 @@
|
|
|
381
385
|
.e-video-url-wrap textarea {
|
|
382
386
|
height: 80px;
|
|
383
387
|
}
|
|
384
|
-
|
|
385
|
-
@if $skin-name == 'FluentUI' {
|
|
386
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn{
|
|
387
|
-
border: 1px solid transparent;
|
|
388
|
-
&:hover{
|
|
389
|
-
border: 1px solid transparent;
|
|
390
|
-
}
|
|
391
|
-
}
|
|
392
|
-
.e-toolbar .e-toolbar-item .e-tbar-btn{
|
|
393
|
-
border: 1px solid transparent;
|
|
394
|
-
&:hover{
|
|
395
|
-
border: 1px solid transparent;
|
|
396
|
-
}
|
|
397
|
-
}
|
|
398
|
-
}
|
|
399
|
-
}
|
|
400
|
-
@if $skin-name == 'bootstrap-dark' {
|
|
401
|
-
.e-toolbar-extended .e-toolbar-item:not(.e-active) .e-tbar-btn{
|
|
402
|
-
border: 1px solid transparent;
|
|
403
|
-
}
|
|
404
388
|
}
|
|
405
389
|
|
|
406
390
|
.e-rte-quick-popup {
|
|
@@ -415,38 +399,6 @@
|
|
|
415
399
|
.e-toolbar-items {
|
|
416
400
|
background: $rte-quick-pop-bg;
|
|
417
401
|
|
|
418
|
-
.e-rte-backgroundcolor-dropdown {
|
|
419
|
-
.e-rte-color-content{
|
|
420
|
-
padding-top: $rte-dropdown-btn-color-content-padding;
|
|
421
|
-
@if $skin-name =='bootstrap' or $skin-name =='bootstrap-dark'{
|
|
422
|
-
padding-top: 5px;
|
|
423
|
-
}
|
|
424
|
-
height: $rte-dropdown-btn-color-content-height;
|
|
425
|
-
@if $skin-name == 'FluentUI' {
|
|
426
|
-
display: flex;
|
|
427
|
-
align-items: center;
|
|
428
|
-
justify-content: center;
|
|
429
|
-
}
|
|
430
|
-
&:hover {
|
|
431
|
-
background: $rte-split-btn-span-hover-bg;
|
|
432
|
-
}
|
|
433
|
-
}
|
|
434
|
-
|
|
435
|
-
.e-caret {
|
|
436
|
-
&:hover {
|
|
437
|
-
background: $rte-split-btn-span-hover-bg;
|
|
438
|
-
}
|
|
439
|
-
}
|
|
440
|
-
&.e-tbar-btn:hover {
|
|
441
|
-
@if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' or $skin-name == 'highcontrast' {
|
|
442
|
-
background: $rte-split-btn-hover-bg;
|
|
443
|
-
}
|
|
444
|
-
@if $skin-name =='bootstrap-dark'{
|
|
445
|
-
background: $rte-tbar-default-bg;
|
|
446
|
-
}
|
|
447
|
-
}
|
|
448
|
-
}
|
|
449
|
-
|
|
450
402
|
.e-separator {
|
|
451
403
|
border: .5px solid $rte-quick-vr-line-color;
|
|
452
404
|
}
|
|
@@ -527,14 +479,6 @@
|
|
|
527
479
|
}
|
|
528
480
|
}
|
|
529
481
|
|
|
530
|
-
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown {
|
|
531
|
-
.e-rte-color-content {
|
|
532
|
-
@if $skin-name =='tailwind' or $skin-name =='tailwind-dark' or $skin-name =='bootstrap5' or $skin-name =='bootstrap5-dark' or $skin-name =='material' or $skin-name =='material-dark' {
|
|
533
|
-
padding-top: 8px;
|
|
534
|
-
}
|
|
535
|
-
}
|
|
536
|
-
}
|
|
537
|
-
|
|
538
482
|
.e-dialog .e-img-uploadwrap .e-droptext,
|
|
539
483
|
.e-dialog .e-aud-uploadwrap .e-droptext,
|
|
540
484
|
.e-dialog .e-vid-uploadwrap .e-droptext,
|
|
@@ -552,17 +496,9 @@
|
|
|
552
496
|
}
|
|
553
497
|
|
|
554
498
|
.e-dialog .e-vid-uploadwrap .e-droptext {
|
|
555
|
-
height:
|
|
499
|
+
height: 108px;
|
|
556
500
|
}
|
|
557
|
-
|
|
558
|
-
.e-bigger .e-richtexteditor {
|
|
559
|
-
.e-dialog .e-img-uploadwrap .e-droptext,
|
|
560
|
-
.e-dialog .e-aud-uploadwrap .e-droptext,
|
|
561
|
-
.e-dialog .e-vid-uploadwrap .e-droptext {
|
|
562
|
-
height: $rte-big-drop-text-height;
|
|
563
|
-
}
|
|
564
|
-
}
|
|
565
|
-
|
|
501
|
+
|
|
566
502
|
.e-dialog.e-device.e-dlg-modal .e-img-uploadwrap .e-droptext,
|
|
567
503
|
.e-dialog.e-device.e-dlg-modal .e-vid-uploadwrap .e-droptext,
|
|
568
504
|
.e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap .e-droptext {
|
|
@@ -639,7 +575,7 @@
|
|
|
639
575
|
.e-dropdown-popup {
|
|
640
576
|
& ul {
|
|
641
577
|
& .e-item.e-active {
|
|
642
|
-
background: $rte-dropdown-selection-bgcolor;
|
|
578
|
+
background-color: $rte-dropdown-selection-bgcolor;
|
|
643
579
|
color: $rte-dropdown-selection-color;
|
|
644
580
|
}
|
|
645
581
|
}
|
|
@@ -736,11 +672,6 @@
|
|
|
736
672
|
& .e-tbar-btn:hover .e-icons {
|
|
737
673
|
color: $rte-quick-item-active-font-color;
|
|
738
674
|
}
|
|
739
|
-
@if $skin-name == 'bootstrap5' {
|
|
740
|
-
& .e-tbar-btn:hover {
|
|
741
|
-
color: $rte-quick-item-active-font-color;
|
|
742
|
-
}
|
|
743
|
-
}
|
|
744
675
|
}
|
|
745
676
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-active .e-icons {
|
|
746
677
|
color: $rte-tlbar-expand-active;
|
|
@@ -830,19 +761,13 @@
|
|
|
830
761
|
color: $rte-icons-color;
|
|
831
762
|
}
|
|
832
763
|
|
|
833
|
-
.e-bigger .e-richtexteditor,
|
|
834
|
-
.e-richtexteditor {
|
|
835
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-overlay .e-tbar-btn .e-icons {
|
|
836
|
-
color: $icon-color-disabled;
|
|
837
|
-
}
|
|
838
|
-
}
|
|
839
|
-
|
|
840
764
|
.e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover {
|
|
841
765
|
border-radius: 4px;
|
|
842
766
|
}
|
|
843
767
|
|
|
844
768
|
.e-richtexteditor .e-toolbar .e-tbar-btn {
|
|
845
|
-
border: 1px solid $transparent;
|
|
769
|
+
border-bottom: 1px solid $transparent;
|
|
770
|
+
border-top: 1px solid $transparent;
|
|
846
771
|
}
|
|
847
772
|
|
|
848
773
|
.e-richtexteditor .e-toolbar .e-tbar-btn:hover {
|
|
@@ -854,14 +779,6 @@
|
|
|
854
779
|
background: $rte-tb-hover-bg-color;
|
|
855
780
|
border: 1px solid $rte-quick-item-hover-border-color;
|
|
856
781
|
}
|
|
857
|
-
|
|
858
|
-
.e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn{
|
|
859
|
-
border: 1px solid $transparent;
|
|
860
|
-
}
|
|
861
|
-
|
|
862
|
-
.e-richtexteditor .e-toolbar .e-toolbar-item .e-tbar-btn:focus {
|
|
863
|
-
border: 1px solid $transparent;
|
|
864
|
-
}
|
|
865
782
|
}
|
|
866
783
|
|
|
867
784
|
@if $skin-name == 'bootstrap5' {
|
|
@@ -873,9 +790,6 @@
|
|
|
873
790
|
.e-richtexteditor .e-toolbar .e-insert-table-btn.e-btn:hover .e-icons {
|
|
874
791
|
color: $rte-tb-hover-font-color;
|
|
875
792
|
}
|
|
876
|
-
.e-rte-dropdown-popup .e-active.e-item .e-menu-icon {
|
|
877
|
-
color: $white;
|
|
878
|
-
}
|
|
879
793
|
}
|
|
880
794
|
|
|
881
795
|
@if $skin-name == 'Material3' {
|
|
@@ -904,9 +818,6 @@
|
|
|
904
818
|
.e-bigger .e-rtl .e-rte-toolbar .e-toolbar-items {
|
|
905
819
|
border-top-right-radius: $rte-border-top-right-radius;
|
|
906
820
|
}
|
|
907
|
-
.e-rte-toolbar .e-rte-table-popup .e-insert-table-btn{
|
|
908
|
-
color: $rte-content-color;
|
|
909
|
-
}
|
|
910
821
|
}
|
|
911
822
|
// Blazor styles start
|
|
912
823
|
.e-richtexteditor.e-rte-tb-expand .e-rte-content-border {
|