@syncfusion/ej2-richtexteditor 25.1.35 → 25.1.38
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 +28 -0
- package/dist/ej2-richtexteditor.min.js +2 -2
- package/dist/ej2-richtexteditor.umd.min.js +2 -2
- package/dist/ej2-richtexteditor.umd.min.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es2015.js +71 -50
- package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es5.js +71 -50
- package/dist/es6/ej2-richtexteditor.es5.js.map +1 -1
- package/dist/global/ej2-richtexteditor.min.js +2 -2
- package/dist/global/ej2-richtexteditor.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +10 -10
- package/src/editor-manager/plugin/dom-node.js +2 -1
- package/src/editor-manager/plugin/inserthtml.js +16 -19
- package/src/editor-manager/plugin/lists.js +31 -11
- package/src/editor-manager/plugin/ms-word-clean-up.js +2 -2
- package/src/editor-manager/plugin/selection-commands.js +4 -0
- package/src/rich-text-editor/actions/html-editor.js +0 -3
- package/src/rich-text-editor/actions/quick-toolbar.js +4 -0
- package/src/rich-text-editor/base/rich-text-editor.js +2 -4
- package/src/rich-text-editor/renderer/toolbar-renderer.js +10 -10
- package/styles/bootstrap-dark.css +14 -7
- package/styles/bootstrap.css +7 -3
- package/styles/bootstrap4.css +4 -0
- package/styles/bootstrap5-dark.css +4 -0
- package/styles/bootstrap5.css +4 -0
- package/styles/fabric-dark.css +4 -0
- package/styles/fabric.css +4 -0
- package/styles/fluent-dark.css +21 -5
- package/styles/fluent.css +21 -5
- package/styles/highcontrast-light.css +4 -0
- package/styles/highcontrast.css +4 -0
- package/styles/material-dark.css +5 -1
- package/styles/material.css +5 -1
- package/styles/material3-dark.css +4 -0
- package/styles/material3.css +4 -0
- package/styles/rich-text-editor/_bootstrap-dark-definition.scss +4 -4
- package/styles/rich-text-editor/_bootstrap-definition.scss +2 -2
- package/styles/rich-text-editor/_fluent-definition.scss +5 -5
- package/styles/rich-text-editor/_layout.scss +7 -7
- package/styles/rich-text-editor/_tailwind-definition.scss +5 -5
- package/styles/rich-text-editor/_theme.scss +21 -0
- package/styles/rich-text-editor/bootstrap-dark.css +14 -7
- package/styles/rich-text-editor/bootstrap.css +7 -3
- package/styles/rich-text-editor/bootstrap4.css +4 -0
- package/styles/rich-text-editor/bootstrap5-dark.css +4 -0
- package/styles/rich-text-editor/bootstrap5.css +4 -0
- package/styles/rich-text-editor/fabric-dark.css +4 -0
- package/styles/rich-text-editor/fabric.css +4 -0
- package/styles/rich-text-editor/fluent-dark.css +21 -5
- package/styles/rich-text-editor/fluent.css +21 -5
- package/styles/rich-text-editor/highcontrast-light.css +4 -0
- package/styles/rich-text-editor/highcontrast.css +4 -0
- package/styles/rich-text-editor/material-dark.css +5 -1
- package/styles/rich-text-editor/material.css +5 -1
- package/styles/rich-text-editor/material3-dark.css +4 -0
- package/styles/rich-text-editor/material3.css +4 -0
- package/styles/rich-text-editor/tailwind-dark.css +13 -13
- package/styles/rich-text-editor/tailwind.css +13 -13
- package/styles/tailwind-dark.css +13 -13
- package/styles/tailwind.css +13 -13
package/styles/fluent.css
CHANGED
|
@@ -453,7 +453,7 @@
|
|
|
453
453
|
.e-richtexteditor.e-bigger .e-rte-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn.e-btn,
|
|
454
454
|
.e-richtexteditor.e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn.e-btn,
|
|
455
455
|
.e-richtexteditor.e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn.e-btn {
|
|
456
|
-
padding: 0
|
|
456
|
+
padding: 0 8px;
|
|
457
457
|
border-radius: 0;
|
|
458
458
|
}
|
|
459
459
|
.e-bigger .e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-dropdown-btn .e-rte-color-content,
|
|
@@ -747,7 +747,7 @@
|
|
|
747
747
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn.e-btn,
|
|
748
748
|
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn.e-btn,
|
|
749
749
|
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn.e-btn {
|
|
750
|
-
padding: 0;
|
|
750
|
+
padding: 0 4px;
|
|
751
751
|
border-radius: 0;
|
|
752
752
|
}
|
|
753
753
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-dropdown-btn .e-rte-color-content,
|
|
@@ -2702,6 +2702,10 @@
|
|
|
2702
2702
|
display: block;
|
|
2703
2703
|
}
|
|
2704
2704
|
|
|
2705
|
+
.e-rte-picker-init {
|
|
2706
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
2707
|
+
}
|
|
2708
|
+
|
|
2705
2709
|
/*! tab layout */
|
|
2706
2710
|
.e-richtexteditor .e-rte-toolbar {
|
|
2707
2711
|
border: 1px solid #edebe9;
|
|
@@ -2712,7 +2716,7 @@
|
|
|
2712
2716
|
}
|
|
2713
2717
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-item.e-active .e-tbar-btn, .e-richtexteditor .e-rte-toolbar .e-toolbar-item.e-active .e-tbar-btn:focus {
|
|
2714
2718
|
background: #d2d0ce;
|
|
2715
|
-
border:
|
|
2719
|
+
border: 1px solid transparent;
|
|
2716
2720
|
}
|
|
2717
2721
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-item.e-active .e-tbar-btn .e-icons, .e-richtexteditor .e-rte-toolbar .e-toolbar-item.e-active .e-tbar-btn:focus .e-icons {
|
|
2718
2722
|
color: #605e5c;
|
|
@@ -2780,7 +2784,7 @@
|
|
|
2780
2784
|
}
|
|
2781
2785
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-item .e-rte-backgroundcolor-dropdown.e-active, .e-richtexteditor .e-rte-toolbar .e-toolbar-item .e-rte-fontcolor-dropdown.e-active, .e-richtexteditor .e-rte-toolbar .e-toolbar-item .e-rte-numberformatlist-dropdown.e-active, .e-richtexteditor .e-rte-toolbar .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-active {
|
|
2782
2786
|
background: #d2d0ce;
|
|
2783
|
-
border:
|
|
2787
|
+
border: 1px solid transparent;
|
|
2784
2788
|
}
|
|
2785
2789
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-item .e-rte-backgroundcolor-dropdown.e-active .e-rte-color-content::after, .e-richtexteditor .e-rte-toolbar .e-toolbar-item .e-rte-fontcolor-dropdown.e-active .e-rte-color-content::after, .e-richtexteditor .e-rte-toolbar .e-toolbar-item .e-rte-numberformatlist-dropdown.e-active .e-rte-color-content::after, .e-richtexteditor .e-rte-toolbar .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-active .e-rte-color-content::after {
|
|
2786
2790
|
background: #fff;
|
|
@@ -2969,6 +2973,18 @@
|
|
|
2969
2973
|
.e-richtexteditor .e-video-url-wrap textarea {
|
|
2970
2974
|
height: 80px;
|
|
2971
2975
|
}
|
|
2976
|
+
.e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn {
|
|
2977
|
+
border: 1px solid transparent;
|
|
2978
|
+
}
|
|
2979
|
+
.e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover {
|
|
2980
|
+
border: 1px solid transparent;
|
|
2981
|
+
}
|
|
2982
|
+
.e-richtexteditor .e-toolbar .e-toolbar-item .e-tbar-btn {
|
|
2983
|
+
border: 1px solid transparent;
|
|
2984
|
+
}
|
|
2985
|
+
.e-richtexteditor .e-toolbar .e-toolbar-item .e-tbar-btn:hover {
|
|
2986
|
+
border: 1px solid transparent;
|
|
2987
|
+
}
|
|
2972
2988
|
|
|
2973
2989
|
.e-rte-quick-popup {
|
|
2974
2990
|
border: none;
|
|
@@ -3022,7 +3038,7 @@
|
|
|
3022
3038
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn,
|
|
3023
3039
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn:focus {
|
|
3024
3040
|
background: #d2d0ce;
|
|
3025
|
-
border:
|
|
3041
|
+
border: 1px solid transparent;
|
|
3026
3042
|
}
|
|
3027
3043
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn .e-icons,
|
|
3028
3044
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn:focus .e-icons {
|
|
@@ -2654,6 +2654,10 @@
|
|
|
2654
2654
|
display: block;
|
|
2655
2655
|
}
|
|
2656
2656
|
|
|
2657
|
+
.e-rte-picker-init {
|
|
2658
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
2659
|
+
}
|
|
2660
|
+
|
|
2657
2661
|
/*! tab layout */
|
|
2658
2662
|
.e-richtexteditor .e-rte-toolbar {
|
|
2659
2663
|
border: 1px solid #000;
|
package/styles/highcontrast.css
CHANGED
|
@@ -2654,6 +2654,10 @@
|
|
|
2654
2654
|
display: block;
|
|
2655
2655
|
}
|
|
2656
2656
|
|
|
2657
|
+
.e-rte-picker-init {
|
|
2658
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
2659
|
+
}
|
|
2660
|
+
|
|
2657
2661
|
/*! tab layout */
|
|
2658
2662
|
.e-richtexteditor .e-rte-toolbar {
|
|
2659
2663
|
border: 1px solid #fff;
|
package/styles/material-dark.css
CHANGED
|
@@ -1614,7 +1614,7 @@
|
|
|
1614
1614
|
.e-rte-elements .e-rte-emojipicker-popup.e-popup.e-popup-open .e-toolbar .e-toolbar-item .e-tbar-btn {
|
|
1615
1615
|
padding: 7px 3px;
|
|
1616
1616
|
border-radius: 4px;
|
|
1617
|
-
padding:
|
|
1617
|
+
padding: 0 6px;
|
|
1618
1618
|
}
|
|
1619
1619
|
.e-richtexteditor .e-rte-emojipicker-popup.e-popup.e-popup-open .e-toolbar .e-toolbar-item .e-tbar-btn .e-tbar-btn-text,
|
|
1620
1620
|
.e-rte-elements .e-rte-emojipicker-popup.e-popup.e-popup-open .e-toolbar .e-toolbar-item .e-tbar-btn .e-tbar-btn-text {
|
|
@@ -2660,6 +2660,10 @@
|
|
|
2660
2660
|
display: block;
|
|
2661
2661
|
}
|
|
2662
2662
|
|
|
2663
|
+
.e-rte-picker-init {
|
|
2664
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
2665
|
+
}
|
|
2666
|
+
|
|
2663
2667
|
/*! tab layout */
|
|
2664
2668
|
.e-richtexteditor .e-rte-toolbar {
|
|
2665
2669
|
border: 1px solid #616161;
|
package/styles/material.css
CHANGED
|
@@ -1614,7 +1614,7 @@
|
|
|
1614
1614
|
.e-rte-elements .e-rte-emojipicker-popup.e-popup.e-popup-open .e-toolbar .e-toolbar-item .e-tbar-btn {
|
|
1615
1615
|
padding: 7px 3px;
|
|
1616
1616
|
border-radius: 4px;
|
|
1617
|
-
padding:
|
|
1617
|
+
padding: 0 6px;
|
|
1618
1618
|
}
|
|
1619
1619
|
.e-richtexteditor .e-rte-emojipicker-popup.e-popup.e-popup-open .e-toolbar .e-toolbar-item .e-tbar-btn .e-tbar-btn-text,
|
|
1620
1620
|
.e-rte-elements .e-rte-emojipicker-popup.e-popup.e-popup-open .e-toolbar .e-toolbar-item .e-tbar-btn .e-tbar-btn-text {
|
|
@@ -2660,6 +2660,10 @@
|
|
|
2660
2660
|
display: block;
|
|
2661
2661
|
}
|
|
2662
2662
|
|
|
2663
|
+
.e-rte-picker-init {
|
|
2664
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
2665
|
+
}
|
|
2666
|
+
|
|
2663
2667
|
/*! tab layout */
|
|
2664
2668
|
.e-richtexteditor .e-rte-toolbar {
|
|
2665
2669
|
border: 1px solid rgba(0, 0, 0, 0.12);
|
|
@@ -2738,6 +2738,10 @@
|
|
|
2738
2738
|
display: block;
|
|
2739
2739
|
}
|
|
2740
2740
|
|
|
2741
|
+
.e-rte-picker-init {
|
|
2742
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
2743
|
+
}
|
|
2744
|
+
|
|
2741
2745
|
/*! tab layout */
|
|
2742
2746
|
.e-richtexteditor .e-rte-toolbar {
|
|
2743
2747
|
border: 1px solid rgba(var(--color-sf-outline-variant));
|
package/styles/material3.css
CHANGED
|
@@ -2794,6 +2794,10 @@
|
|
|
2794
2794
|
display: block;
|
|
2795
2795
|
}
|
|
2796
2796
|
|
|
2797
|
+
.e-rte-picker-init {
|
|
2798
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
2799
|
+
}
|
|
2800
|
+
|
|
2797
2801
|
/*! tab layout */
|
|
2798
2802
|
.e-richtexteditor .e-rte-toolbar {
|
|
2799
2803
|
border: 1px solid rgba(var(--color-sf-outline-variant));
|
|
@@ -124,7 +124,7 @@ $rte-colorpicker-parent-padding-hover: 1px !default;
|
|
|
124
124
|
$rte-colorpicker-parent-padding-active-hover: 1px !default;
|
|
125
125
|
$rte-overlay-color: #383838 !default;
|
|
126
126
|
$rte-dropdown-btn-color-content-height: 30px !default;
|
|
127
|
-
$rte-big-dropdown-btn-color-content-height:
|
|
127
|
+
$rte-big-dropdown-btn-color-content-height: 35px !default;
|
|
128
128
|
$rte-font-icon-width: 30px !default;
|
|
129
129
|
$rte-font-arrow-width: 18px !default;
|
|
130
130
|
$rte-font-arrow-touch-width: 20px !default;
|
|
@@ -229,9 +229,9 @@ $rte-big-tablecell-width : 16px;
|
|
|
229
229
|
$rte-toolbar-item-frist-last-child-margin: 0;
|
|
230
230
|
$rte-big-toolbar-item-frist-last-child-margin: 0 6px;
|
|
231
231
|
$dropdown-btn-font-size: inherit !default;
|
|
232
|
-
$rte-toolbar-expaned-padding:
|
|
232
|
+
$rte-toolbar-expaned-padding: 0 2.5px;
|
|
233
233
|
$rte-toolbar-expaned-padding-hover: 0 2.5px;
|
|
234
|
-
$rte-big-toolbar-expaned-padding: 0
|
|
234
|
+
$rte-big-toolbar-expaned-padding: 0 7px;
|
|
235
235
|
$rte-extended-toolbar-items-padding: 0;
|
|
236
236
|
$rte-expand-tbar-hover-bg: transparent !default;
|
|
237
237
|
$rte-big-insert-dialog-label-padding-top: 12px;
|
|
@@ -240,7 +240,7 @@ $rte-background-color-icon-fontsize: 14px;
|
|
|
240
240
|
$rte-big-background-color-icon-fontsize: 18px;
|
|
241
241
|
$rte-dropdown-btn-color-content-padding: 1px !default;
|
|
242
242
|
$rte-big-dropdown-btn-color-content-padding: 1px !default;
|
|
243
|
-
$rte-tb-expended-min-height:
|
|
243
|
+
$rte-tb-expended-min-height: 40px !default;
|
|
244
244
|
$rte-big-tb-expended-min-height: 49px !default;
|
|
245
245
|
$rte-tb-expended-padding-left: 1px !default;
|
|
246
246
|
$rte-tb-expended-hover-padding-left: 1px !default;
|
|
@@ -228,7 +228,7 @@ $rte-big-tablecell-height : 16px;
|
|
|
228
228
|
$rte-big-tablecell-width : 16px;
|
|
229
229
|
$rte-toolbar-item-frist-last-child-margin: 0;
|
|
230
230
|
$rte-big-toolbar-item-frist-last-child-margin: 0 6px;
|
|
231
|
-
$rte-toolbar-expaned-padding:
|
|
231
|
+
$rte-toolbar-expaned-padding: 1px 2.5px;
|
|
232
232
|
$dropdown-btn-font-size: inherit !default;
|
|
233
233
|
$rte-toolbar-expaned-padding-hover: 1px 2.5px;
|
|
234
234
|
$rte-big-toolbar-expaned-padding: 0 7px;
|
|
@@ -240,7 +240,7 @@ $rte-background-color-icon-fontsize: 14px;
|
|
|
240
240
|
$rte-big-background-color-icon-fontsize: 18px;
|
|
241
241
|
$rte-dropdown-btn-color-content-padding: 1px !default;
|
|
242
242
|
$rte-big-dropdown-btn-color-content-padding: 1px !default;
|
|
243
|
-
$rte-tb-expended-min-height:
|
|
243
|
+
$rte-tb-expended-min-height: 40px !default;
|
|
244
244
|
$rte-big-tb-expended-min-height: 49px !default;
|
|
245
245
|
$rte-tb-expended-padding-left: 1px !default;
|
|
246
246
|
$rte-tb-expended-hover-padding-left: 1px !default;
|
|
@@ -36,7 +36,7 @@ $rte-big-tb-items-margin-left: 8px !default;
|
|
|
36
36
|
$rte-tb-items-margin-left: 8px !default;
|
|
37
37
|
$rte-big-tb-items-padding-left: 8px !default;
|
|
38
38
|
$rte-tb-items-padding-left: 8px !default;
|
|
39
|
-
$rte-active-tb-item-btn-padding: 0 !default;
|
|
39
|
+
$rte-active-tb-item-btn-padding: 0 4px !default;
|
|
40
40
|
$rte-split-btn-bar-size: 0 !default;
|
|
41
41
|
$rte-split-btn-active-color-icon-line-height: 30px !default;
|
|
42
42
|
$rte-big-split-btn-active-color-icon-line-height: 37px !default;
|
|
@@ -65,7 +65,7 @@ $rte-font-arrow-width: 12px !default;
|
|
|
65
65
|
$rte-font-arrow-touch-width: 20px !default;
|
|
66
66
|
$rte-font-icon-line-height: $leading-none !default;
|
|
67
67
|
$rte-placeholder-line-height: $leading-normal !default;
|
|
68
|
-
$rte-big-active-tb-item-btn-padding: 0
|
|
68
|
+
$rte-big-active-tb-item-btn-padding: 0 8px !default;
|
|
69
69
|
$rte-table-popup-padding: 10px !default;
|
|
70
70
|
$rte-table-popup-border: 0 solid $gray30 !default;
|
|
71
71
|
$rte-insert-dialog-label-padding-top: 12px !default;
|
|
@@ -116,7 +116,7 @@ $rte-big-formatlists-dropdown-line-height: 30px;
|
|
|
116
116
|
//Layout Variables End
|
|
117
117
|
|
|
118
118
|
//Theme Variables Start
|
|
119
|
-
$rte-split-btn-active-border:
|
|
119
|
+
$rte-split-btn-active-border: 1px solid $transparent !default;
|
|
120
120
|
$rte-border-color: $border-light !default;
|
|
121
121
|
$rte-content-bg: $content-bg-color !default;
|
|
122
122
|
$rte-full-screen-bg: $content-bg-color !default;
|
|
@@ -145,7 +145,7 @@ $rte-quick-pop-item-focus-bg: $content-bg-color-alt4 !default;
|
|
|
145
145
|
$rte-quick-tb-btn-hover: $content-bg-color-alt4 !default;
|
|
146
146
|
$rte-tb-item-active-bg: $content-bg-color-alt5 !default;
|
|
147
147
|
$rte-tb-active-font-color: $icon-color !default;
|
|
148
|
-
$rte-tb-item-active-border:
|
|
148
|
+
$rte-tb-item-active-border: 1px solid $transparent !default;
|
|
149
149
|
$rte-expand-tb-border-bottom: $rte-border-size $rte-border-type $border-light !default;
|
|
150
150
|
$rte-color-picker-active-bg: inherit !default;
|
|
151
151
|
$rte-drop-btn-active-bg: $content-bg-color-alt5 !default;
|
|
@@ -162,7 +162,7 @@ $rte-split-btn-span-active-bg: $content-bg-color-alt3 !default;
|
|
|
162
162
|
$rte-split-btn-bar-bg: $content-bg-color !default;
|
|
163
163
|
$rte-split-btn-active-bar-bg: $content-bg-color !default;
|
|
164
164
|
$rte-split-btn-bar-size: 0 !default;
|
|
165
|
-
$rte-split-btn-active-border:
|
|
165
|
+
$rte-split-btn-active-border: 1px solid $transparent !default;
|
|
166
166
|
$rte-split-btn-active-color-icon-line-height: 40px !default;
|
|
167
167
|
$rte-big-split-btn-active-color-icon-line-height: 48px !default;
|
|
168
168
|
|
|
@@ -1284,12 +1284,12 @@
|
|
|
1284
1284
|
@if $skin-name =='bootstrap' or $skin-name =='botstrap-dark' {
|
|
1285
1285
|
&:hover,
|
|
1286
1286
|
&:focus{
|
|
1287
|
-
padding:
|
|
1287
|
+
padding: 7px 3px;
|
|
1288
1288
|
}
|
|
1289
1289
|
}
|
|
1290
1290
|
|
|
1291
1291
|
@if $skin-name =='material' or $skin-name =='material-dark' {
|
|
1292
|
-
padding:
|
|
1292
|
+
padding: 0 6px;
|
|
1293
1293
|
}
|
|
1294
1294
|
|
|
1295
1295
|
.e-tbar-btn-text {
|
|
@@ -1684,7 +1684,7 @@
|
|
|
1684
1684
|
.e-rte-numberformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
|
|
1685
1685
|
.e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control {
|
|
1686
1686
|
@if $skin-name == 'tailwind' {
|
|
1687
|
-
padding:
|
|
1687
|
+
padding: 0;
|
|
1688
1688
|
}
|
|
1689
1689
|
}
|
|
1690
1690
|
}
|
|
@@ -2130,10 +2130,6 @@
|
|
|
2130
2130
|
box-shadow: $rte-table-popup-box;
|
|
2131
2131
|
}
|
|
2132
2132
|
|
|
2133
|
-
.e-rte-elements.e-rte-quick-popup .e-toolbar .e-toolbar-items.e-toolbar-multirow:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
|
2134
|
-
margin-left: 6px;
|
|
2135
|
-
}
|
|
2136
|
-
|
|
2137
2133
|
.e-rte-elements.e-rte-quick-popup .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
2138
2134
|
min-width: 24px;
|
|
2139
2135
|
}
|
|
@@ -2255,4 +2251,8 @@
|
|
|
2255
2251
|
display: block;
|
|
2256
2252
|
}
|
|
2257
2253
|
}
|
|
2254
|
+
// Used to hide the Color picker during the rendering at the initial stage. Removed the class in the created event.
|
|
2255
|
+
.e-rte-picker-init {
|
|
2256
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
2257
|
+
}
|
|
2258
2258
|
}
|
|
@@ -12,7 +12,7 @@ $rte-quick-item-btn-width: 26px !default;
|
|
|
12
12
|
$rte-big-quick-item-btn-height: 38px !default;
|
|
13
13
|
$rte-quick-item-btn-height: 30px !default;
|
|
14
14
|
$rte-big-quick-item-padding: 12px !default;
|
|
15
|
-
$rte-quick-item-padding: 3px !default;
|
|
15
|
+
$rte-quick-item-padding: 0 3px !default;
|
|
16
16
|
$rte-quick-item-icon-min-width: 24px !default;
|
|
17
17
|
$rte-big-quick-item-line-height: $leading-normal !default;
|
|
18
18
|
$rte-content-padding: 12px !default;
|
|
@@ -51,8 +51,8 @@ $rte-big-drop-btn-padding-left: 10px !default;
|
|
|
51
51
|
$rte-big-drop-btn-padding-right: 6px !default;
|
|
52
52
|
$rte-big-drop-btn-action-padding-left: 10px !default;
|
|
53
53
|
$rte-big-drop-btn-action-padding-right: 6px !default;
|
|
54
|
-
$rte-colorpicker-parent-padding:
|
|
55
|
-
$rte-colorpicker-parent-padding-hover:
|
|
54
|
+
$rte-colorpicker-parent-padding: 0 !default;
|
|
55
|
+
$rte-colorpicker-parent-padding-hover: 0 !default;
|
|
56
56
|
$rte-colorpicker-parent-padding-active-hover: 0 !default;
|
|
57
57
|
$rte-dropdown-btn-color-content-height: 30px !default;
|
|
58
58
|
$rte-big-dropdown-btn-color-content-height: 38px !default;
|
|
@@ -85,7 +85,7 @@ $rte-big-inline-tmp-size-min-width: 59px;
|
|
|
85
85
|
$rte-inline-tmp-size-min-width: 66px;
|
|
86
86
|
$rte-big-inline-tmp-color-min-width: 50px;
|
|
87
87
|
$rte-inline-tmp-color-min-width: 55px;
|
|
88
|
-
$rte-big-color-list-span-common-padding-left-right:
|
|
88
|
+
$rte-big-color-list-span-common-padding-left-right: 0;
|
|
89
89
|
$rte-placeholder-padding: 12px !default;
|
|
90
90
|
$rte-default-character-count-opacity: 1;
|
|
91
91
|
$rte-droparea-line-height: 10;
|
|
@@ -159,7 +159,7 @@ $rte-split-btn-span-active-bg: $secondary-bg-color-pressed !default;
|
|
|
159
159
|
$rte-split-btn-bar-bg: $content-bg-color-alt1 !default;
|
|
160
160
|
$rte-split-btn-active-bar-bg: $content-bg-color !default;
|
|
161
161
|
$rte-split-btn-bar-size: 0 !default;
|
|
162
|
-
$rte-split-btn-active-border:
|
|
162
|
+
$rte-split-btn-active-border: 1px solid $secondary-border-color-hover !default;
|
|
163
163
|
$rte-split-btn-active-color-icon-line-height: 30px !default;
|
|
164
164
|
$rte-big-split-btn-active-color-icon-line-height: 38px !default;
|
|
165
165
|
|
|
@@ -381,6 +381,27 @@
|
|
|
381
381
|
.e-video-url-wrap textarea {
|
|
382
382
|
height: 80px;
|
|
383
383
|
}
|
|
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
|
+
}
|
|
384
405
|
}
|
|
385
406
|
|
|
386
407
|
.e-rte-quick-popup {
|
|
@@ -475,7 +475,7 @@
|
|
|
475
475
|
.e-richtexteditor.e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-dropdown-btn .e-rte-color-content,
|
|
476
476
|
.e-richtexteditor.e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-dropdown-btn .e-rte-color-content {
|
|
477
477
|
padding-top: 1px;
|
|
478
|
-
height:
|
|
478
|
+
height: 35px;
|
|
479
479
|
}
|
|
480
480
|
.e-bigger .e-richtexteditor.e-rte-full-screen iframe,
|
|
481
481
|
.e-richtexteditor.e-bigger.e-rte-full-screen iframe {
|
|
@@ -545,11 +545,11 @@
|
|
|
545
545
|
}
|
|
546
546
|
.e-bigger .e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control,
|
|
547
547
|
.e-richtexteditor.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control {
|
|
548
|
-
padding: 0
|
|
548
|
+
padding: 0 7px;
|
|
549
549
|
}
|
|
550
550
|
.e-bigger .e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover,
|
|
551
551
|
.e-richtexteditor.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover {
|
|
552
|
-
padding: 0
|
|
552
|
+
padding: 0 7px;
|
|
553
553
|
}
|
|
554
554
|
|
|
555
555
|
.e-richtexteditor {
|
|
@@ -629,7 +629,7 @@
|
|
|
629
629
|
}
|
|
630
630
|
.e-richtexteditor .e-rte-toolbar .e-hor-nav.e-expended-nav {
|
|
631
631
|
height: auto;
|
|
632
|
-
min-height:
|
|
632
|
+
min-height: 40px;
|
|
633
633
|
padding-left: 1px;
|
|
634
634
|
}
|
|
635
635
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-multirow {
|
|
@@ -1383,7 +1383,7 @@
|
|
|
1383
1383
|
.e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control,
|
|
1384
1384
|
.e-rte-elements .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn,
|
|
1385
1385
|
.e-rte-elements .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control {
|
|
1386
|
-
padding:
|
|
1386
|
+
padding: 0 2.5px;
|
|
1387
1387
|
}
|
|
1388
1388
|
.e-richtexteditor .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon,
|
|
1389
1389
|
.e-rte-elements .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
|
|
@@ -1794,11 +1794,11 @@
|
|
|
1794
1794
|
}
|
|
1795
1795
|
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-rte-color-content,
|
|
1796
1796
|
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-caret {
|
|
1797
|
-
height:
|
|
1797
|
+
height: 35px;
|
|
1798
1798
|
}
|
|
1799
1799
|
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-rte-color-content:hover,
|
|
1800
1800
|
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-caret:hover {
|
|
1801
|
-
height:
|
|
1801
|
+
height: 35px;
|
|
1802
1802
|
}
|
|
1803
1803
|
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items:not(.e-tbar-pos) {
|
|
1804
1804
|
margin: 0 6px;
|
|
@@ -2673,6 +2673,10 @@
|
|
|
2673
2673
|
display: block;
|
|
2674
2674
|
}
|
|
2675
2675
|
|
|
2676
|
+
.e-rte-picker-init {
|
|
2677
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
2678
|
+
}
|
|
2679
|
+
|
|
2676
2680
|
/*! tab layout */
|
|
2677
2681
|
.e-richtexteditor .e-rte-toolbar {
|
|
2678
2682
|
border: 1px solid #505050;
|
|
@@ -2940,6 +2944,9 @@
|
|
|
2940
2944
|
.e-richtexteditor .e-video-url-wrap textarea {
|
|
2941
2945
|
height: 80px;
|
|
2942
2946
|
}
|
|
2947
|
+
.e-richtexteditor .e-toolbar-extended .e-toolbar-item:not(.e-active) .e-tbar-btn {
|
|
2948
|
+
border: 1px solid transparent;
|
|
2949
|
+
}
|
|
2943
2950
|
|
|
2944
2951
|
.e-rte-quick-popup {
|
|
2945
2952
|
border: 0;
|
|
@@ -770,7 +770,7 @@
|
|
|
770
770
|
}
|
|
771
771
|
.e-richtexteditor .e-rte-toolbar .e-hor-nav.e-expended-nav {
|
|
772
772
|
height: auto;
|
|
773
|
-
min-height:
|
|
773
|
+
min-height: 40px;
|
|
774
774
|
padding-left: 1px;
|
|
775
775
|
}
|
|
776
776
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-multirow {
|
|
@@ -1524,7 +1524,7 @@
|
|
|
1524
1524
|
.e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control,
|
|
1525
1525
|
.e-rte-elements .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn,
|
|
1526
1526
|
.e-rte-elements .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control {
|
|
1527
|
-
padding:
|
|
1527
|
+
padding: 1px 2.5px;
|
|
1528
1528
|
}
|
|
1529
1529
|
.e-richtexteditor .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon,
|
|
1530
1530
|
.e-rte-elements .e-toolbar .e-toolbar-pop .e-toolbar-item.e-tbtn-align .e-btn.e-control .e-icons.e-btn-icon {
|
|
@@ -1770,7 +1770,7 @@
|
|
|
1770
1770
|
.e-richtexteditor .e-rte-emojipicker-popup.e-popup.e-popup-open .e-toolbar .e-toolbar-item .e-tbar-btn:hover, .e-richtexteditor .e-rte-emojipicker-popup.e-popup.e-popup-open .e-toolbar .e-toolbar-item .e-tbar-btn:focus,
|
|
1771
1771
|
.e-rte-elements .e-rte-emojipicker-popup.e-popup.e-popup-open .e-toolbar .e-toolbar-item .e-tbar-btn:hover,
|
|
1772
1772
|
.e-rte-elements .e-rte-emojipicker-popup.e-popup.e-popup-open .e-toolbar .e-toolbar-item .e-tbar-btn:focus {
|
|
1773
|
-
padding:
|
|
1773
|
+
padding: 7px 3px;
|
|
1774
1774
|
}
|
|
1775
1775
|
.e-richtexteditor .e-rte-emojipicker-popup.e-popup.e-popup-open .e-toolbar .e-toolbar-item .e-tbar-btn .e-tbar-btn-text,
|
|
1776
1776
|
.e-rte-elements .e-rte-emojipicker-popup.e-popup.e-popup-open .e-toolbar .e-toolbar-item .e-tbar-btn .e-tbar-btn-text {
|
|
@@ -2819,6 +2819,10 @@
|
|
|
2819
2819
|
display: block;
|
|
2820
2820
|
}
|
|
2821
2821
|
|
|
2822
|
+
.e-rte-picker-init {
|
|
2823
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
2824
|
+
}
|
|
2825
|
+
|
|
2822
2826
|
/*! tab layout */
|
|
2823
2827
|
.e-richtexteditor .e-rte-toolbar {
|
|
2824
2828
|
border: 1px solid #ddd;
|
|
@@ -2901,6 +2901,10 @@
|
|
|
2901
2901
|
display: block;
|
|
2902
2902
|
}
|
|
2903
2903
|
|
|
2904
|
+
.e-rte-picker-init {
|
|
2905
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
2906
|
+
}
|
|
2907
|
+
|
|
2904
2908
|
/*! tab layout */
|
|
2905
2909
|
.e-richtexteditor .e-rte-toolbar {
|
|
2906
2910
|
border: 1px solid #dee2e6;
|
|
@@ -2717,6 +2717,10 @@
|
|
|
2717
2717
|
display: block;
|
|
2718
2718
|
}
|
|
2719
2719
|
|
|
2720
|
+
.e-rte-picker-init {
|
|
2721
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
2722
|
+
}
|
|
2723
|
+
|
|
2720
2724
|
/*! tab layout */
|
|
2721
2725
|
.e-richtexteditor .e-rte-toolbar {
|
|
2722
2726
|
border: 1px solid #444c54;
|
|
@@ -2717,6 +2717,10 @@
|
|
|
2717
2717
|
display: block;
|
|
2718
2718
|
}
|
|
2719
2719
|
|
|
2720
|
+
.e-rte-picker-init {
|
|
2721
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
2722
|
+
}
|
|
2723
|
+
|
|
2720
2724
|
/*! tab layout */
|
|
2721
2725
|
.e-richtexteditor .e-rte-toolbar {
|
|
2722
2726
|
border: 1px solid #dee2e6;
|
|
@@ -2654,6 +2654,10 @@
|
|
|
2654
2654
|
display: block;
|
|
2655
2655
|
}
|
|
2656
2656
|
|
|
2657
|
+
.e-rte-picker-init {
|
|
2658
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
2659
|
+
}
|
|
2660
|
+
|
|
2657
2661
|
/*! tab layout */
|
|
2658
2662
|
.e-richtexteditor .e-rte-toolbar {
|
|
2659
2663
|
border: 1px solid #414040;
|
|
@@ -2654,6 +2654,10 @@
|
|
|
2654
2654
|
display: block;
|
|
2655
2655
|
}
|
|
2656
2656
|
|
|
2657
|
+
.e-rte-picker-init {
|
|
2658
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
2659
|
+
}
|
|
2660
|
+
|
|
2657
2661
|
/*! tab layout */
|
|
2658
2662
|
.e-richtexteditor .e-rte-toolbar {
|
|
2659
2663
|
border: 1px solid #dadada;
|
|
@@ -453,7 +453,7 @@
|
|
|
453
453
|
.e-richtexteditor.e-bigger .e-rte-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn.e-btn,
|
|
454
454
|
.e-richtexteditor.e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn.e-btn,
|
|
455
455
|
.e-richtexteditor.e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn.e-btn {
|
|
456
|
-
padding: 0
|
|
456
|
+
padding: 0 8px;
|
|
457
457
|
border-radius: 0;
|
|
458
458
|
}
|
|
459
459
|
.e-bigger .e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-dropdown-btn .e-rte-color-content,
|
|
@@ -747,7 +747,7 @@
|
|
|
747
747
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn.e-btn,
|
|
748
748
|
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn.e-btn,
|
|
749
749
|
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn.e-btn {
|
|
750
|
-
padding: 0;
|
|
750
|
+
padding: 0 4px;
|
|
751
751
|
border-radius: 0;
|
|
752
752
|
}
|
|
753
753
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-dropdown-btn .e-rte-color-content,
|
|
@@ -2702,6 +2702,10 @@
|
|
|
2702
2702
|
display: block;
|
|
2703
2703
|
}
|
|
2704
2704
|
|
|
2705
|
+
.e-rte-picker-init {
|
|
2706
|
+
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
2707
|
+
}
|
|
2708
|
+
|
|
2705
2709
|
/*! tab layout */
|
|
2706
2710
|
.e-richtexteditor .e-rte-toolbar {
|
|
2707
2711
|
border: 1px solid #292827;
|
|
@@ -2712,7 +2716,7 @@
|
|
|
2712
2716
|
}
|
|
2713
2717
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-item.e-active .e-tbar-btn, .e-richtexteditor .e-rte-toolbar .e-toolbar-item.e-active .e-tbar-btn:focus {
|
|
2714
2718
|
background: #3b3a39;
|
|
2715
|
-
border:
|
|
2719
|
+
border: 1px solid transparent;
|
|
2716
2720
|
}
|
|
2717
2721
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-item.e-active .e-tbar-btn .e-icons, .e-richtexteditor .e-rte-toolbar .e-toolbar-item.e-active .e-tbar-btn:focus .e-icons {
|
|
2718
2722
|
color: #a19f9d;
|
|
@@ -2780,7 +2784,7 @@
|
|
|
2780
2784
|
}
|
|
2781
2785
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-item .e-rte-backgroundcolor-dropdown.e-active, .e-richtexteditor .e-rte-toolbar .e-toolbar-item .e-rte-fontcolor-dropdown.e-active, .e-richtexteditor .e-rte-toolbar .e-toolbar-item .e-rte-numberformatlist-dropdown.e-active, .e-richtexteditor .e-rte-toolbar .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-active {
|
|
2782
2786
|
background: #3b3a39;
|
|
2783
|
-
border:
|
|
2787
|
+
border: 1px solid transparent;
|
|
2784
2788
|
}
|
|
2785
2789
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-item .e-rte-backgroundcolor-dropdown.e-active .e-rte-color-content::after, .e-richtexteditor .e-rte-toolbar .e-toolbar-item .e-rte-fontcolor-dropdown.e-active .e-rte-color-content::after, .e-richtexteditor .e-rte-toolbar .e-toolbar-item .e-rte-numberformatlist-dropdown.e-active .e-rte-color-content::after, .e-richtexteditor .e-rte-toolbar .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-active .e-rte-color-content::after {
|
|
2786
2790
|
background: #1b1a19;
|
|
@@ -2969,6 +2973,18 @@
|
|
|
2969
2973
|
.e-richtexteditor .e-video-url-wrap textarea {
|
|
2970
2974
|
height: 80px;
|
|
2971
2975
|
}
|
|
2976
|
+
.e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn {
|
|
2977
|
+
border: 1px solid transparent;
|
|
2978
|
+
}
|
|
2979
|
+
.e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover {
|
|
2980
|
+
border: 1px solid transparent;
|
|
2981
|
+
}
|
|
2982
|
+
.e-richtexteditor .e-toolbar .e-toolbar-item .e-tbar-btn {
|
|
2983
|
+
border: 1px solid transparent;
|
|
2984
|
+
}
|
|
2985
|
+
.e-richtexteditor .e-toolbar .e-toolbar-item .e-tbar-btn:hover {
|
|
2986
|
+
border: 1px solid transparent;
|
|
2987
|
+
}
|
|
2972
2988
|
|
|
2973
2989
|
.e-rte-quick-popup {
|
|
2974
2990
|
border: none;
|
|
@@ -3022,7 +3038,7 @@
|
|
|
3022
3038
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn,
|
|
3023
3039
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn:focus {
|
|
3024
3040
|
background: #3b3a39;
|
|
3025
|
-
border:
|
|
3041
|
+
border: 1px solid transparent;
|
|
3026
3042
|
}
|
|
3027
3043
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn .e-icons,
|
|
3028
3044
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn:focus .e-icons {
|