@syncfusion/ej2-richtexteditor 24.2.7 → 24.2.9
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 +341 -157
- package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es5.js +342 -156
- 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 +8 -8
- package/src/editor-manager/plugin/dom-node.js +3 -1
- package/src/editor-manager/plugin/format-painter-actions.d.ts +1 -0
- package/src/editor-manager/plugin/format-painter-actions.js +18 -0
- package/src/editor-manager/plugin/inserthtml.js +9 -1
- package/src/editor-manager/plugin/lists.js +79 -70
- package/src/editor-manager/plugin/ms-word-clean-up.d.ts +1 -0
- package/src/editor-manager/plugin/ms-word-clean-up.js +22 -1
- package/src/rich-text-editor/actions/base-quick-toolbar.js +5 -2
- package/src/rich-text-editor/actions/color-picker.d.ts +1 -0
- package/src/rich-text-editor/actions/color-picker.js +10 -0
- package/src/rich-text-editor/actions/emoji-picker.js +1 -1
- package/src/rich-text-editor/actions/enter-key.js +2 -2
- package/src/rich-text-editor/actions/html-editor.js +10 -5
- package/src/rich-text-editor/actions/quick-toolbar.js +1 -1
- package/src/rich-text-editor/actions/toolbar.js +3 -0
- package/src/rich-text-editor/base/constant.d.ts +5 -0
- package/src/rich-text-editor/base/constant.js +5 -0
- package/src/rich-text-editor/base/rich-text-editor.js +21 -5
- package/src/rich-text-editor/models/default-locale.js +1 -1
- package/src/rich-text-editor/renderer/dialog-renderer.js +5 -1
- package/src/rich-text-editor/renderer/iframe-content-renderer.js +1 -1
- package/src/rich-text-editor/renderer/image-module.js +28 -7
- package/src/rich-text-editor/renderer/table-module.d.ts +3 -1
- package/src/rich-text-editor/renderer/table-module.js +111 -50
- package/src/rich-text-editor/renderer/toolbar-renderer.js +13 -13
- package/styles/bootstrap-dark.css +32 -13
- package/styles/bootstrap.css +36 -20
- package/styles/bootstrap4.css +18 -3
- package/styles/bootstrap5-dark.css +22 -9
- package/styles/bootstrap5.css +22 -9
- package/styles/fabric-dark.css +18 -3
- package/styles/fabric.css +18 -3
- package/styles/fluent-dark.css +24 -3
- package/styles/fluent.css +24 -3
- package/styles/highcontrast-light.css +18 -3
- package/styles/highcontrast.css +21 -3
- package/styles/material-dark.css +22 -3
- package/styles/material.css +22 -3
- package/styles/material3-dark.css +19 -4
- package/styles/material3.css +19 -4
- package/styles/rich-text-editor/_bootstrap-dark-definition.scss +8 -8
- package/styles/rich-text-editor/_bootstrap-definition.scss +14 -14
- package/styles/rich-text-editor/_layout.scss +11 -0
- package/styles/rich-text-editor/_material3-definition.scss +1 -1
- package/styles/rich-text-editor/_theme.scss +47 -13
- package/styles/rich-text-editor/bootstrap-dark.css +32 -13
- package/styles/rich-text-editor/bootstrap.css +36 -20
- package/styles/rich-text-editor/bootstrap4.css +18 -3
- package/styles/rich-text-editor/bootstrap5-dark.css +22 -9
- package/styles/rich-text-editor/bootstrap5.css +22 -9
- package/styles/rich-text-editor/fabric-dark.css +18 -3
- package/styles/rich-text-editor/fabric.css +18 -3
- package/styles/rich-text-editor/fluent-dark.css +24 -3
- package/styles/rich-text-editor/fluent.css +24 -3
- package/styles/rich-text-editor/highcontrast-light.css +18 -3
- package/styles/rich-text-editor/highcontrast.css +21 -3
- package/styles/rich-text-editor/material-dark.css +22 -3
- package/styles/rich-text-editor/material.css +22 -3
- package/styles/rich-text-editor/material3-dark.css +19 -4
- package/styles/rich-text-editor/material3.css +19 -4
- package/styles/rich-text-editor/tailwind-dark.css +30 -3
- package/styles/rich-text-editor/tailwind.css +30 -3
- package/styles/tailwind-dark.css +30 -3
- package/styles/tailwind.css +30 -3
- package/.github/PULL_REQUEST_TEMPLATE/Bug.md +0 -41
- package/.github/PULL_REQUEST_TEMPLATE/Feature.md +0 -27
package/styles/material.css
CHANGED
|
@@ -1770,6 +1770,14 @@
|
|
|
1770
1770
|
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar {
|
|
1771
1771
|
min-height: 48px;
|
|
1772
1772
|
}
|
|
1773
|
+
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-rte-color-content,
|
|
1774
|
+
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-caret {
|
|
1775
|
+
height: 36px;
|
|
1776
|
+
}
|
|
1777
|
+
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-rte-color-content:hover,
|
|
1778
|
+
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-caret:hover {
|
|
1779
|
+
height: 36px;
|
|
1780
|
+
}
|
|
1773
1781
|
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items:not(.e-tbar-pos) {
|
|
1774
1782
|
margin: 0 6px;
|
|
1775
1783
|
min-height: 48px;
|
|
@@ -2710,9 +2718,6 @@
|
|
|
2710
2718
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover .e-icons {
|
|
2711
2719
|
color: #000;
|
|
2712
2720
|
}
|
|
2713
|
-
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:focus .e-icons {
|
|
2714
|
-
color: #000;
|
|
2715
|
-
}
|
|
2716
2721
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn .e-icons {
|
|
2717
2722
|
color: #000;
|
|
2718
2723
|
}
|
|
@@ -2895,6 +2900,16 @@
|
|
|
2895
2900
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items {
|
|
2896
2901
|
background: #fff;
|
|
2897
2902
|
}
|
|
2903
|
+
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-rte-color-content {
|
|
2904
|
+
padding-top: 1px;
|
|
2905
|
+
height: 24px;
|
|
2906
|
+
}
|
|
2907
|
+
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-rte-color-content:hover {
|
|
2908
|
+
background: rgba(0, 0, 0, 0.12);
|
|
2909
|
+
}
|
|
2910
|
+
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-caret:hover {
|
|
2911
|
+
background: rgba(0, 0, 0, 0.12);
|
|
2912
|
+
}
|
|
2898
2913
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-separator {
|
|
2899
2914
|
border: 0.5px solid rgba(0, 0, 0, 0.05);
|
|
2900
2915
|
}
|
|
@@ -2942,6 +2957,10 @@
|
|
|
2942
2957
|
border-color: #fff;
|
|
2943
2958
|
}
|
|
2944
2959
|
|
|
2960
|
+
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-rte-color-content {
|
|
2961
|
+
padding-top: 8px;
|
|
2962
|
+
}
|
|
2963
|
+
|
|
2945
2964
|
.e-dialog .e-img-uploadwrap .e-droptext,
|
|
2946
2965
|
.e-dialog .e-aud-uploadwrap .e-droptext,
|
|
2947
2966
|
.e-dialog .e-vid-uploadwrap .e-droptext,
|
|
@@ -1820,6 +1820,14 @@
|
|
|
1820
1820
|
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar {
|
|
1821
1821
|
min-height: 48px;
|
|
1822
1822
|
}
|
|
1823
|
+
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-rte-color-content,
|
|
1824
|
+
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-caret {
|
|
1825
|
+
height: 40px;
|
|
1826
|
+
}
|
|
1827
|
+
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-rte-color-content:hover,
|
|
1828
|
+
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-caret:hover {
|
|
1829
|
+
height: 40px;
|
|
1830
|
+
}
|
|
1823
1831
|
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items:not(.e-tbar-pos) {
|
|
1824
1832
|
margin: 0 8px;
|
|
1825
1833
|
min-height: 48px;
|
|
@@ -2788,9 +2796,6 @@
|
|
|
2788
2796
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover .e-icons {
|
|
2789
2797
|
color: rgba(var(--color-sf-on-surface-variant));
|
|
2790
2798
|
}
|
|
2791
|
-
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:focus .e-icons {
|
|
2792
|
-
color: rgba(var(--color-sf-on-surface-variant));
|
|
2793
|
-
}
|
|
2794
2799
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn .e-icons {
|
|
2795
2800
|
color: rgba(var(--color-sf-on-surface-variant));
|
|
2796
2801
|
}
|
|
@@ -2842,7 +2847,7 @@
|
|
|
2842
2847
|
.e-richtexteditor .e-rte-content .e-content .e-video-focus:not(.e-resize),
|
|
2843
2848
|
.e-richtexteditor .e-source-content .e-content .e-img-focus:not(.e-resize),
|
|
2844
2849
|
.e-richtexteditor .e-source-content .e-content .e-video-focus:not(.e-resize) {
|
|
2845
|
-
border:
|
|
2850
|
+
border: solid 2px rgba(var(--color-sf-primary));
|
|
2846
2851
|
}
|
|
2847
2852
|
.e-richtexteditor .e-rte-content .e-content a,
|
|
2848
2853
|
.e-richtexteditor .e-source-content .e-content a {
|
|
@@ -2977,6 +2982,16 @@
|
|
|
2977
2982
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items {
|
|
2978
2983
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
|
|
2979
2984
|
}
|
|
2985
|
+
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-rte-color-content {
|
|
2986
|
+
padding-top: 5.5px;
|
|
2987
|
+
height: 30px;
|
|
2988
|
+
}
|
|
2989
|
+
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-rte-color-content:hover {
|
|
2990
|
+
background: rgba(var(--color-sf-on-surface), 0.05);
|
|
2991
|
+
}
|
|
2992
|
+
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-caret:hover {
|
|
2993
|
+
background: rgba(var(--color-sf-on-surface), 0.05);
|
|
2994
|
+
}
|
|
2980
2995
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-separator {
|
|
2981
2996
|
border: 0.5px solid transparent;
|
|
2982
2997
|
}
|
package/styles/material3.css
CHANGED
|
@@ -1876,6 +1876,14 @@
|
|
|
1876
1876
|
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar {
|
|
1877
1877
|
min-height: 48px;
|
|
1878
1878
|
}
|
|
1879
|
+
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-rte-color-content,
|
|
1880
|
+
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-caret {
|
|
1881
|
+
height: 40px;
|
|
1882
|
+
}
|
|
1883
|
+
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-rte-color-content:hover,
|
|
1884
|
+
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-caret:hover {
|
|
1885
|
+
height: 40px;
|
|
1886
|
+
}
|
|
1879
1887
|
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items:not(.e-tbar-pos) {
|
|
1880
1888
|
margin: 0 8px;
|
|
1881
1889
|
min-height: 48px;
|
|
@@ -2844,9 +2852,6 @@
|
|
|
2844
2852
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover .e-icons {
|
|
2845
2853
|
color: rgba(var(--color-sf-on-surface-variant));
|
|
2846
2854
|
}
|
|
2847
|
-
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:focus .e-icons {
|
|
2848
|
-
color: rgba(var(--color-sf-on-surface-variant));
|
|
2849
|
-
}
|
|
2850
2855
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn .e-icons {
|
|
2851
2856
|
color: rgba(var(--color-sf-on-surface-variant));
|
|
2852
2857
|
}
|
|
@@ -2898,7 +2903,7 @@
|
|
|
2898
2903
|
.e-richtexteditor .e-rte-content .e-content .e-video-focus:not(.e-resize),
|
|
2899
2904
|
.e-richtexteditor .e-source-content .e-content .e-img-focus:not(.e-resize),
|
|
2900
2905
|
.e-richtexteditor .e-source-content .e-content .e-video-focus:not(.e-resize) {
|
|
2901
|
-
border:
|
|
2906
|
+
border: solid 2px rgba(var(--color-sf-primary));
|
|
2902
2907
|
}
|
|
2903
2908
|
.e-richtexteditor .e-rte-content .e-content a,
|
|
2904
2909
|
.e-richtexteditor .e-source-content .e-content a {
|
|
@@ -3033,6 +3038,16 @@
|
|
|
3033
3038
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items {
|
|
3034
3039
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
|
|
3035
3040
|
}
|
|
3041
|
+
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-rte-color-content {
|
|
3042
|
+
padding-top: 5.5px;
|
|
3043
|
+
height: 30px;
|
|
3044
|
+
}
|
|
3045
|
+
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-rte-color-content:hover {
|
|
3046
|
+
background: rgba(var(--color-sf-on-surface), 0.05);
|
|
3047
|
+
}
|
|
3048
|
+
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-caret:hover {
|
|
3049
|
+
background: rgba(var(--color-sf-on-surface), 0.05);
|
|
3050
|
+
}
|
|
3036
3051
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-separator {
|
|
3037
3052
|
border: 0.5px solid transparent;
|
|
3038
3053
|
}
|
|
@@ -63,8 +63,8 @@ $rte-big-tb-items-margin-left: 3px !default;
|
|
|
63
63
|
$rte-tb-items-margin-left: 6px !default;
|
|
64
64
|
$rte-big-tb-items-padding-left: 3px !default;
|
|
65
65
|
$rte-tb-items-padding-left: 6px !default;
|
|
66
|
-
$rte-big-active-tb-item-btn-padding: 0
|
|
67
|
-
$rte-active-tb-item-btn-padding: 0
|
|
66
|
+
$rte-big-active-tb-item-btn-padding: 0 7px !default;
|
|
67
|
+
$rte-active-tb-item-btn-padding: 0 2.5px !default;
|
|
68
68
|
$rte-tb-item-active-bg: rgba($grey-base, .12) !default;
|
|
69
69
|
$rte-tb-active-font-color: $grey-dark-font !default;
|
|
70
70
|
$rte-tb-item-active-border: $rte-border-size $rte-border-type $grey-8c !default;
|
|
@@ -112,15 +112,15 @@ $rte-font-name-btn-min-width: 67px !default;
|
|
|
112
112
|
$rte-font-size-btn-min-width: 36px !default;
|
|
113
113
|
$rte-drop-btn-padding-left: 9px !default;
|
|
114
114
|
$rte-drop-btn-padding-right: 3.5px !default;
|
|
115
|
-
$rte-drop-btn-action-padding-left:
|
|
116
|
-
$rte-drop-btn-action-padding-right:
|
|
115
|
+
$rte-drop-btn-action-padding-left: 9px !default;
|
|
116
|
+
$rte-drop-btn-action-padding-right: 3.5px !default;
|
|
117
117
|
$rte-big-drop-btn-padding-left: 12px !default;
|
|
118
118
|
$rte-big-drop-btn-padding-right: 7px !default;
|
|
119
|
-
$rte-big-drop-btn-action-padding-left:
|
|
120
|
-
$rte-big-drop-btn-action-padding-right:
|
|
119
|
+
$rte-big-drop-btn-action-padding-left: 12px !default;
|
|
120
|
+
$rte-big-drop-btn-action-padding-right: 7px !default;
|
|
121
121
|
$rte-ext-tbar-overlay-icons-color: $grey-dark-font !default;
|
|
122
122
|
$rte-colorpicker-parent-padding: 1px !default;
|
|
123
|
-
$rte-colorpicker-parent-padding-hover:
|
|
123
|
+
$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;
|
|
@@ -177,7 +177,7 @@ $rte-resize-handler-width: 15px;
|
|
|
177
177
|
$rte-resize-handler-height: 15px;
|
|
178
178
|
$rte-resize-handler-position: 0;
|
|
179
179
|
|
|
180
|
-
$rte-big-color-list-span-common-padding-left-right:
|
|
180
|
+
$rte-big-color-list-span-common-padding-left-right: 1px;
|
|
181
181
|
$rte-default-character-count-opacity: .54;
|
|
182
182
|
$rte-placeholder-padding: 16px !default;
|
|
183
183
|
|
|
@@ -27,7 +27,7 @@ $rte-big-quick-item-line-height: normal !default;
|
|
|
27
27
|
$rte-quick-item-line-height: 20px !default;
|
|
28
28
|
$rte-quick-item-active-bg: rgba($grey-base, .12) !default;
|
|
29
29
|
$rte-quick-item-active-font-color: $base-font !default;
|
|
30
|
-
$rte-quick-item-border:
|
|
30
|
+
$rte-quick-item-border: 0 solid transparent !default;
|
|
31
31
|
$rte-quick-item-hover-border-color: $grey-8c !default;
|
|
32
32
|
$rte-quick-item-active-border-color: $grey-8c !default;
|
|
33
33
|
$rte-content-padding: 16px !default;
|
|
@@ -65,11 +65,11 @@ $rte-big-tb-items-margin-left: 3px !default;
|
|
|
65
65
|
$rte-tb-items-margin-left: 6px !default;
|
|
66
66
|
$rte-big-tb-items-padding-left: 3px !default;
|
|
67
67
|
$rte-tb-items-padding-left: 6px !default;
|
|
68
|
-
$rte-big-active-tb-item-btn-padding: 0
|
|
69
|
-
$rte-active-tb-item-btn-padding: 0
|
|
68
|
+
$rte-big-active-tb-item-btn-padding: 0 7px !default;
|
|
69
|
+
$rte-active-tb-item-btn-padding: 0 2.5px !default;
|
|
70
70
|
$rte-tb-item-active-bg: rgba($grey-base, .12) !default;
|
|
71
71
|
$rte-tb-active-font-color: $base-font !default;
|
|
72
|
-
$rte-tb-item-active-border:
|
|
72
|
+
$rte-tb-item-active-border: 0 !default;
|
|
73
73
|
$rte-expand-tb-border-bottom: $rte-border-size $rte-border-type rgb(250, 250, 250) !default;
|
|
74
74
|
$rte-color-picker-active-bg: inherit !default;
|
|
75
75
|
$rte-drop-btn-active-bg: $grey-e6 !default;
|
|
@@ -87,7 +87,7 @@ $rte-split-btn-span-active-bg: $grey-e6 !default;
|
|
|
87
87
|
$rte-split-btn-bar-bg: $grey-ad !default;
|
|
88
88
|
$rte-split-btn-active-bar-bg: $grey-ad !default;
|
|
89
89
|
$rte-split-btn-bar-size: 0 !default;
|
|
90
|
-
$rte-split-btn-active-border:
|
|
90
|
+
$rte-split-btn-active-border: 0 solid $grey-ad !default;
|
|
91
91
|
$rte-split-btn-active-color-icon-line-height: 30px !default;
|
|
92
92
|
$rte-big-split-btn-active-color-icon-line-height: 34px !default;
|
|
93
93
|
$rte-formatlists-dropdown-line-height: 20px;
|
|
@@ -114,15 +114,15 @@ $rte-font-name-btn-min-width: 67px !default;
|
|
|
114
114
|
$rte-font-size-btn-min-width: 36px !default;
|
|
115
115
|
$rte-drop-btn-padding-left: 9px !default;
|
|
116
116
|
$rte-drop-btn-padding-right: 3.5px !default;
|
|
117
|
-
$rte-drop-btn-action-padding-left:
|
|
118
|
-
$rte-drop-btn-action-padding-right:
|
|
117
|
+
$rte-drop-btn-action-padding-left: 9px !default;
|
|
118
|
+
$rte-drop-btn-action-padding-right: 3.5px !default;
|
|
119
119
|
$rte-big-drop-btn-padding-left: 12px !default;
|
|
120
120
|
$rte-big-drop-btn-padding-right: 7px !default;
|
|
121
|
-
$rte-big-drop-btn-action-padding-left:
|
|
122
|
-
$rte-big-drop-btn-action-padding-right:
|
|
121
|
+
$rte-big-drop-btn-action-padding-left: 12px !default;
|
|
122
|
+
$rte-big-drop-btn-action-padding-right: 7px !default;
|
|
123
123
|
$rte-ext-tbar-overlay-icons-color: $base-font !default;
|
|
124
124
|
$rte-colorpicker-parent-padding: 1px !default;
|
|
125
|
-
$rte-colorpicker-parent-padding-hover:
|
|
125
|
+
$rte-colorpicker-parent-padding-hover: 1px !default;
|
|
126
126
|
$rte-colorpicker-parent-padding-active-hover: 1px !default;
|
|
127
127
|
$rte-overlay-color: #383838 !default;
|
|
128
128
|
$rte-dropdown-btn-color-content-height: 30px !default;
|
|
@@ -178,7 +178,7 @@ $rte-resize-handler-height: 15px;
|
|
|
178
178
|
$rte-resize-handler-position: 0;
|
|
179
179
|
$rte-default-character-count-opacity: .54;
|
|
180
180
|
|
|
181
|
-
$rte-big-color-list-span-common-padding-left-right:
|
|
181
|
+
$rte-big-color-list-span-common-padding-left-right: 1px;
|
|
182
182
|
$rte-placeholder-padding: 16px !default;
|
|
183
183
|
|
|
184
184
|
$rte-img-dlg-max-height: 426px !default;
|
|
@@ -267,9 +267,9 @@ $rte-format-painter-cursor: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiI
|
|
|
267
267
|
&.e-extended-toolbar .e-toolbar-items .e-toolbar-item {
|
|
268
268
|
& .e-rte-dropdown-btn.e-active.e-tbar-btn {
|
|
269
269
|
background: $rte-dropdown-active-bg;
|
|
270
|
-
border:
|
|
271
|
-
padding-left:
|
|
272
|
-
padding-right:
|
|
270
|
+
border: 0;
|
|
271
|
+
padding-left: 9px;
|
|
272
|
+
padding-right: 3.5px;
|
|
273
273
|
}
|
|
274
274
|
}
|
|
275
275
|
}
|
|
@@ -1483,6 +1483,17 @@
|
|
|
1483
1483
|
.e-rte-quick-toolbar {
|
|
1484
1484
|
min-height: 48px;
|
|
1485
1485
|
|
|
1486
|
+
.e-toolbar-items .e-rte-backgroundcolor-dropdown {
|
|
1487
|
+
.e-rte-color-content,
|
|
1488
|
+
.e-caret {
|
|
1489
|
+
height: $rte-big-dropdown-btn-color-content-height;
|
|
1490
|
+
|
|
1491
|
+
&:hover {
|
|
1492
|
+
height: $rte-big-dropdown-btn-color-content-height;
|
|
1493
|
+
}
|
|
1494
|
+
}
|
|
1495
|
+
}
|
|
1496
|
+
|
|
1486
1497
|
.e-toolbar-items:not(.e-tbar-pos) {
|
|
1487
1498
|
margin: $rte-big-quick-toolbar-items-margin;
|
|
1488
1499
|
min-height: 48px;
|
|
@@ -174,7 +174,7 @@ $rte-drop-text-clr: rgba($on-secondary-container) !default;
|
|
|
174
174
|
$rte-default-character-count-color: rgba($placeholder-text-color) !default;
|
|
175
175
|
$rte-warning-character-count-color: rgba($warning) !default;
|
|
176
176
|
$rte-error-character-count-color: rgba($danger) !default;
|
|
177
|
-
$rte-img-border:
|
|
177
|
+
$rte-img-border: solid 2px rgba($primary) !default;
|
|
178
178
|
$rte-font-family: $font-family !default;
|
|
179
179
|
$rte-content-color: rgba($content-text-color) !default;
|
|
180
180
|
$rte-content-blockquote-border-left-color: solid 2px rgba($content-text-color) !default;
|
|
@@ -16,12 +16,6 @@
|
|
|
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
|
-
|
|
25
19
|
&.e-active .e-tbar-btn,
|
|
26
20
|
&.e-active .e-tbar-btn:focus {
|
|
27
21
|
background: $rte-tb-item-active-bg;
|
|
@@ -45,10 +39,6 @@
|
|
|
45
39
|
.e-tbar-btn:hover .e-icons {
|
|
46
40
|
color: $rte-tb-hover-font-color;
|
|
47
41
|
}
|
|
48
|
-
|
|
49
|
-
.e-tbar-btn:focus .e-icons {
|
|
50
|
-
color: $primary-text-focus;
|
|
51
|
-
}
|
|
52
42
|
}
|
|
53
43
|
|
|
54
44
|
.e-dropdown-btn.e-active {
|
|
@@ -160,9 +150,6 @@
|
|
|
160
150
|
.e-toolbar-item .e-tbar-btn:hover .e-icons {
|
|
161
151
|
color: $rte-hover-icons-color;
|
|
162
152
|
}
|
|
163
|
-
.e-toolbar-item .e-tbar-btn:focus .e-icons {
|
|
164
|
-
color: $rte-hover-icons-color;
|
|
165
|
-
}
|
|
166
153
|
.e-toolbar-item.e-active .e-tbar-btn .e-icons {
|
|
167
154
|
color: $rte-tb-active-font-color;
|
|
168
155
|
}
|
|
@@ -403,6 +390,38 @@
|
|
|
403
390
|
.e-toolbar-items {
|
|
404
391
|
background: $rte-quick-pop-bg;
|
|
405
392
|
|
|
393
|
+
.e-rte-backgroundcolor-dropdown {
|
|
394
|
+
.e-rte-color-content{
|
|
395
|
+
padding-top: $rte-dropdown-btn-color-content-padding;
|
|
396
|
+
@if $skin-name =='bootstrap' or $skin-name =='bootstrap-dark'{
|
|
397
|
+
padding-top: 5px;
|
|
398
|
+
}
|
|
399
|
+
height: $rte-dropdown-btn-color-content-height;
|
|
400
|
+
@if $skin-name == 'FluentUI' {
|
|
401
|
+
display: flex;
|
|
402
|
+
align-items: center;
|
|
403
|
+
justify-content: center;
|
|
404
|
+
}
|
|
405
|
+
&:hover {
|
|
406
|
+
background: $rte-split-btn-span-hover-bg;
|
|
407
|
+
}
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
.e-caret {
|
|
411
|
+
&:hover {
|
|
412
|
+
background: $rte-split-btn-span-hover-bg;
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
&.e-tbar-btn:hover {
|
|
416
|
+
@if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' or $skin-name == 'highcontrast' {
|
|
417
|
+
background: $rte-split-btn-hover-bg;
|
|
418
|
+
}
|
|
419
|
+
@if $skin-name =='bootstrap-dark'{
|
|
420
|
+
background: $rte-tbar-default-bg;
|
|
421
|
+
}
|
|
422
|
+
}
|
|
423
|
+
}
|
|
424
|
+
|
|
406
425
|
.e-separator {
|
|
407
426
|
border: .5px solid $rte-quick-vr-line-color;
|
|
408
427
|
}
|
|
@@ -483,6 +502,14 @@
|
|
|
483
502
|
}
|
|
484
503
|
}
|
|
485
504
|
|
|
505
|
+
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown {
|
|
506
|
+
.e-rte-color-content {
|
|
507
|
+
@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' {
|
|
508
|
+
padding-top: 8px;
|
|
509
|
+
}
|
|
510
|
+
}
|
|
511
|
+
}
|
|
512
|
+
|
|
486
513
|
.e-dialog .e-img-uploadwrap .e-droptext,
|
|
487
514
|
.e-dialog .e-aud-uploadwrap .e-droptext,
|
|
488
515
|
.e-dialog .e-vid-uploadwrap .e-droptext,
|
|
@@ -773,6 +800,13 @@
|
|
|
773
800
|
color: $rte-icons-color;
|
|
774
801
|
}
|
|
775
802
|
|
|
803
|
+
.e-bigger .e-richtexteditor,
|
|
804
|
+
.e-richtexteditor {
|
|
805
|
+
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-overlay .e-tbar-btn .e-icons {
|
|
806
|
+
color: $icon-color-disabled;
|
|
807
|
+
}
|
|
808
|
+
}
|
|
809
|
+
|
|
776
810
|
.e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover {
|
|
777
811
|
border-radius: 4px;
|
|
778
812
|
}
|
|
@@ -451,8 +451,8 @@
|
|
|
451
451
|
.e-richtexteditor.e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-rte-dropdown-btn.e-dropdown-btn:hover,
|
|
452
452
|
.e-richtexteditor.e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-rte-dropdown-btn.e-dropdown-btn:focus,
|
|
453
453
|
.e-richtexteditor.e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-rte-dropdown-btn.e-dropdown-btn:active {
|
|
454
|
-
padding-left:
|
|
455
|
-
padding-right:
|
|
454
|
+
padding-left: 12px;
|
|
455
|
+
padding-right: 7px;
|
|
456
456
|
}
|
|
457
457
|
.e-bigger .e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn.e-btn,
|
|
458
458
|
.e-bigger .e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn.e-btn,
|
|
@@ -462,7 +462,7 @@
|
|
|
462
462
|
.e-richtexteditor.e-bigger .e-rte-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn.e-btn,
|
|
463
463
|
.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,
|
|
464
464
|
.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 {
|
|
465
|
-
padding: 0
|
|
465
|
+
padding: 0 7px;
|
|
466
466
|
}
|
|
467
467
|
.e-bigger .e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-dropdown-btn .e-rte-color-content,
|
|
468
468
|
.e-bigger .e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-dropdown-btn .e-rte-color-content,
|
|
@@ -698,8 +698,8 @@
|
|
|
698
698
|
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-dropdown-btn:hover,
|
|
699
699
|
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-dropdown-btn:focus,
|
|
700
700
|
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-dropdown-btn:active {
|
|
701
|
-
padding-left:
|
|
702
|
-
padding-right:
|
|
701
|
+
padding-left: 9px;
|
|
702
|
+
padding-right: 3.5px;
|
|
703
703
|
}
|
|
704
704
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-font-color .e-selected-color.e-icons::before,
|
|
705
705
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-font-color .e-selected-color.e-icons::before,
|
|
@@ -744,7 +744,7 @@
|
|
|
744
744
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn.e-btn,
|
|
745
745
|
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn.e-btn,
|
|
746
746
|
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn.e-btn {
|
|
747
|
-
padding: 0
|
|
747
|
+
padding: 0 2.5px;
|
|
748
748
|
}
|
|
749
749
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-dropdown-btn .e-rte-color-content,
|
|
750
750
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-dropdown-btn .e-rte-color-content,
|
|
@@ -1776,6 +1776,14 @@
|
|
|
1776
1776
|
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar {
|
|
1777
1777
|
min-height: 48px;
|
|
1778
1778
|
}
|
|
1779
|
+
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-rte-color-content,
|
|
1780
|
+
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-caret {
|
|
1781
|
+
height: 30px;
|
|
1782
|
+
}
|
|
1783
|
+
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-rte-color-content:hover,
|
|
1784
|
+
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-caret:hover {
|
|
1785
|
+
height: 30px;
|
|
1786
|
+
}
|
|
1779
1787
|
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items:not(.e-tbar-pos) {
|
|
1780
1788
|
margin: 0 6px;
|
|
1781
1789
|
min-height: 48px;
|
|
@@ -1977,8 +1985,8 @@
|
|
|
1977
1985
|
.e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control:active,
|
|
1978
1986
|
.e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control.e-active,
|
|
1979
1987
|
.e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control.e-active:hover {
|
|
1980
|
-
padding-left:
|
|
1981
|
-
padding-right:
|
|
1988
|
+
padding-left: 1px;
|
|
1989
|
+
padding-right: 1px;
|
|
1982
1990
|
}
|
|
1983
1991
|
.e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control .e-rte-color-content,
|
|
1984
1992
|
.e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control .e-rte-list-primary-content,
|
|
@@ -2233,8 +2241,8 @@
|
|
|
2233
2241
|
.e-bigger .e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control:hover,
|
|
2234
2242
|
.e-bigger .e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control:focus,
|
|
2235
2243
|
.e-bigger .e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control:active {
|
|
2236
|
-
padding-left:
|
|
2237
|
-
padding-right:
|
|
2244
|
+
padding-left: 1px;
|
|
2245
|
+
padding-right: 1px;
|
|
2238
2246
|
}
|
|
2239
2247
|
.e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control .e-rte-list-primary-content .e-order-list, .e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control.e-active .e-rte-list-primary-content .e-order-list,
|
|
2240
2248
|
.e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control .e-rte-list-primary-content .e-unorder-list, .e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control.e-active .e-rte-list-primary-content .e-unorder-list,
|
|
@@ -2723,9 +2731,6 @@
|
|
|
2723
2731
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover .e-icons {
|
|
2724
2732
|
color: #f0f0f0;
|
|
2725
2733
|
}
|
|
2726
|
-
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:focus .e-icons {
|
|
2727
|
-
color: #f0f0f0;
|
|
2728
|
-
}
|
|
2729
2734
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn .e-icons {
|
|
2730
2735
|
color: #f0f0f0;
|
|
2731
2736
|
}
|
|
@@ -2908,6 +2913,20 @@
|
|
|
2908
2913
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items {
|
|
2909
2914
|
background: #313131;
|
|
2910
2915
|
}
|
|
2916
|
+
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-rte-color-content {
|
|
2917
|
+
padding-top: 1px;
|
|
2918
|
+
padding-top: 5px;
|
|
2919
|
+
height: 30px;
|
|
2920
|
+
}
|
|
2921
|
+
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-rte-color-content:hover {
|
|
2922
|
+
background: #313131;
|
|
2923
|
+
}
|
|
2924
|
+
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-caret:hover {
|
|
2925
|
+
background: #313131;
|
|
2926
|
+
}
|
|
2927
|
+
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown.e-tbar-btn:hover {
|
|
2928
|
+
background: #131313;
|
|
2929
|
+
}
|
|
2911
2930
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-separator {
|
|
2912
2931
|
border: 0.5px solid rgba(26, 26, 26, 0.05);
|
|
2913
2932
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
.e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-dropdown-btn.e-active.e-tbar-btn {
|
|
2
2
|
background: #e6e6e6;
|
|
3
|
-
border:
|
|
4
|
-
padding-left:
|
|
5
|
-
padding-right:
|
|
3
|
+
border: 0;
|
|
4
|
+
padding-left: 9px;
|
|
5
|
+
padding-right: 3.5px;
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
.e-bigger .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-dropdown-btn.e-rte-dropdown-btn.e-active {
|
|
@@ -592,8 +592,8 @@
|
|
|
592
592
|
.e-richtexteditor.e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-rte-dropdown-btn.e-dropdown-btn:hover,
|
|
593
593
|
.e-richtexteditor.e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-rte-dropdown-btn.e-dropdown-btn:focus,
|
|
594
594
|
.e-richtexteditor.e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control.e-rte-dropdown-btn.e-dropdown-btn:active {
|
|
595
|
-
padding-left:
|
|
596
|
-
padding-right:
|
|
595
|
+
padding-left: 12px;
|
|
596
|
+
padding-right: 7px;
|
|
597
597
|
}
|
|
598
598
|
.e-bigger .e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn.e-btn,
|
|
599
599
|
.e-bigger .e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn.e-btn,
|
|
@@ -603,7 +603,7 @@
|
|
|
603
603
|
.e-richtexteditor.e-bigger .e-rte-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn.e-btn,
|
|
604
604
|
.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,
|
|
605
605
|
.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 {
|
|
606
|
-
padding: 0
|
|
606
|
+
padding: 0 7px;
|
|
607
607
|
}
|
|
608
608
|
.e-bigger .e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-dropdown-btn .e-rte-color-content,
|
|
609
609
|
.e-bigger .e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-dropdown-btn .e-rte-color-content,
|
|
@@ -839,8 +839,8 @@
|
|
|
839
839
|
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-dropdown-btn:hover,
|
|
840
840
|
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-dropdown-btn:focus,
|
|
841
841
|
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-dropdown-btn:active {
|
|
842
|
-
padding-left:
|
|
843
|
-
padding-right:
|
|
842
|
+
padding-left: 9px;
|
|
843
|
+
padding-right: 3.5px;
|
|
844
844
|
}
|
|
845
845
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-toolbar-item .e-rte-font-color .e-selected-color.e-icons::before,
|
|
846
846
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-font-color .e-selected-color.e-icons::before,
|
|
@@ -885,7 +885,7 @@
|
|
|
885
885
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn.e-btn,
|
|
886
886
|
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn.e-btn,
|
|
887
887
|
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn.e-btn {
|
|
888
|
-
padding: 0
|
|
888
|
+
padding: 0 2.5px;
|
|
889
889
|
}
|
|
890
890
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-dropdown-btn .e-rte-color-content,
|
|
891
891
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-dropdown-btn .e-rte-color-content,
|
|
@@ -1922,6 +1922,14 @@
|
|
|
1922
1922
|
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar {
|
|
1923
1923
|
min-height: 48px;
|
|
1924
1924
|
}
|
|
1925
|
+
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-rte-color-content,
|
|
1926
|
+
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-caret {
|
|
1927
|
+
height: 33px;
|
|
1928
|
+
}
|
|
1929
|
+
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-rte-color-content:hover,
|
|
1930
|
+
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-caret:hover {
|
|
1931
|
+
height: 33px;
|
|
1932
|
+
}
|
|
1925
1933
|
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items:not(.e-tbar-pos) {
|
|
1926
1934
|
margin: 0 6px;
|
|
1927
1935
|
min-height: 48px;
|
|
@@ -2123,8 +2131,8 @@
|
|
|
2123
2131
|
.e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control:active,
|
|
2124
2132
|
.e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control.e-active,
|
|
2125
2133
|
.e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control.e-active:hover {
|
|
2126
|
-
padding-left:
|
|
2127
|
-
padding-right:
|
|
2134
|
+
padding-left: 1px;
|
|
2135
|
+
padding-right: 1px;
|
|
2128
2136
|
}
|
|
2129
2137
|
.e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control .e-rte-color-content,
|
|
2130
2138
|
.e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control .e-rte-list-primary-content,
|
|
@@ -2379,8 +2387,8 @@
|
|
|
2379
2387
|
.e-bigger .e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control:hover,
|
|
2380
2388
|
.e-bigger .e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control:focus,
|
|
2381
2389
|
.e-bigger .e-rte-toolbar.e-toolbar .e-toolbar-extended .e-toolbar-item .e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control:active {
|
|
2382
|
-
padding-left:
|
|
2383
|
-
padding-right:
|
|
2390
|
+
padding-left: 1px;
|
|
2391
|
+
padding-right: 1px;
|
|
2384
2392
|
}
|
|
2385
2393
|
.e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control .e-rte-list-primary-content .e-order-list, .e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control.e-active .e-rte-list-primary-content .e-order-list,
|
|
2386
2394
|
.e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control .e-rte-list-primary-content .e-unorder-list, .e-bigger .e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-rte-fontcolor-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control.e-active .e-rte-list-primary-content .e-unorder-list,
|
|
@@ -2784,7 +2792,7 @@
|
|
|
2784
2792
|
}
|
|
2785
2793
|
.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 {
|
|
2786
2794
|
background: rgba(0, 0, 0, 0.12);
|
|
2787
|
-
border:
|
|
2795
|
+
border: 0;
|
|
2788
2796
|
}
|
|
2789
2797
|
.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 {
|
|
2790
2798
|
color: #000;
|
|
@@ -2852,7 +2860,7 @@
|
|
|
2852
2860
|
}
|
|
2853
2861
|
.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 {
|
|
2854
2862
|
background: #e6e6e6;
|
|
2855
|
-
border:
|
|
2863
|
+
border: 0 solid #adadad;
|
|
2856
2864
|
}
|
|
2857
2865
|
.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 {
|
|
2858
2866
|
background: #adadad;
|
|
@@ -2869,9 +2877,6 @@
|
|
|
2869
2877
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover .e-icons {
|
|
2870
2878
|
color: #000;
|
|
2871
2879
|
}
|
|
2872
|
-
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:focus .e-icons {
|
|
2873
|
-
color: #000;
|
|
2874
|
-
}
|
|
2875
2880
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn .e-icons {
|
|
2876
2881
|
color: #000;
|
|
2877
2882
|
}
|
|
@@ -3054,12 +3059,23 @@
|
|
|
3054
3059
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items {
|
|
3055
3060
|
background: #fff;
|
|
3056
3061
|
}
|
|
3062
|
+
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-rte-color-content {
|
|
3063
|
+
padding-top: 1px;
|
|
3064
|
+
padding-top: 5px;
|
|
3065
|
+
height: 30px;
|
|
3066
|
+
}
|
|
3067
|
+
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-rte-color-content:hover {
|
|
3068
|
+
background: rgba(0, 0, 0, 0.12);
|
|
3069
|
+
}
|
|
3070
|
+
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-caret:hover {
|
|
3071
|
+
background: rgba(0, 0, 0, 0.12);
|
|
3072
|
+
}
|
|
3057
3073
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-separator {
|
|
3058
3074
|
border: 0.5px solid rgba(0, 0, 0, 0.05);
|
|
3059
3075
|
}
|
|
3060
3076
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-tbar-btn {
|
|
3061
3077
|
background: #fff;
|
|
3062
|
-
border:
|
|
3078
|
+
border: 0 solid transparent;
|
|
3063
3079
|
}
|
|
3064
3080
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-tbar-btn:hover {
|
|
3065
3081
|
background: rgba(0, 0, 0, 0.12);
|
|
@@ -3078,7 +3094,7 @@
|
|
|
3078
3094
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn,
|
|
3079
3095
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn:focus {
|
|
3080
3096
|
background: rgba(0, 0, 0, 0.12);
|
|
3081
|
-
border:
|
|
3097
|
+
border: 0;
|
|
3082
3098
|
}
|
|
3083
3099
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn .e-icons,
|
|
3084
3100
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn:focus .e-icons {
|