@syncfusion/ej2-richtexteditor 24.2.9 → 25.1.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -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 +908 -485
- package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es5.js +892 -474
- 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 +13 -13
- package/src/common/config.d.ts +7 -0
- package/src/common/config.js +11 -0
- package/src/common/interface.d.ts +12 -0
- package/src/common/types.d.ts +6 -0
- package/src/editor-manager/plugin/dom-node.d.ts +5 -1
- package/src/editor-manager/plugin/dom-node.js +161 -12
- package/src/editor-manager/plugin/formats.js +1 -1
- package/src/editor-manager/plugin/image.js +12 -16
- package/src/editor-manager/plugin/inserthtml.d.ts +1 -0
- package/src/editor-manager/plugin/inserthtml.js +31 -0
- package/src/editor-manager/plugin/link.js +1 -1
- package/src/editor-manager/plugin/lists.js +24 -2
- package/src/editor-manager/plugin/ms-word-clean-up.js +65 -57
- package/src/editor-manager/plugin/selection-commands.js +52 -3
- package/src/editor-manager/plugin/table.js +18 -3
- package/src/editor-manager/plugin/toolbar-status.d.ts +2 -2
- package/src/editor-manager/plugin/toolbar-status.js +17 -9
- package/src/rich-text-editor/actions/base-quick-toolbar.d.ts +3 -3
- package/src/rich-text-editor/actions/base-quick-toolbar.js +41 -10
- package/src/rich-text-editor/actions/base-toolbar.js +24 -30
- package/src/rich-text-editor/actions/dropdown-buttons.js +4 -4
- package/src/rich-text-editor/actions/emoji-picker.js +1 -1
- package/src/rich-text-editor/actions/enter-key.js +2 -1
- package/src/rich-text-editor/actions/full-screen.js +2 -2
- package/src/rich-text-editor/actions/html-editor.d.ts +0 -2
- package/src/rich-text-editor/actions/html-editor.js +8 -26
- package/src/rich-text-editor/actions/markdown-editor.js +3 -1
- package/src/rich-text-editor/actions/paste-clean-up.d.ts +1 -0
- package/src/rich-text-editor/actions/paste-clean-up.js +23 -0
- package/src/rich-text-editor/actions/quick-toolbar.d.ts +7 -0
- package/src/rich-text-editor/actions/quick-toolbar.js +23 -8
- package/src/rich-text-editor/actions/resize.js +2 -1
- package/src/rich-text-editor/actions/toolbar.d.ts +0 -2
- package/src/rich-text-editor/actions/toolbar.js +13 -85
- package/src/rich-text-editor/base/classes.d.ts +0 -5
- package/src/rich-text-editor/base/classes.js +0 -5
- 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/interface.d.ts +36 -2
- package/src/rich-text-editor/base/rich-text-editor-model.d.ts +2 -2
- package/src/rich-text-editor/base/rich-text-editor.d.ts +4 -3
- package/src/rich-text-editor/base/rich-text-editor.js +81 -58
- package/src/rich-text-editor/base/util.js +8 -2
- package/src/rich-text-editor/models/default-locale.js +15 -12
- 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/iframe-content-renderer.js +2 -1
- package/src/rich-text-editor/renderer/image-module.d.ts +8 -1
- package/src/rich-text-editor/renderer/image-module.js +148 -155
- package/src/rich-text-editor/renderer/table-module.d.ts +2 -0
- package/src/rich-text-editor/renderer/table-module.js +71 -8
- package/src/rich-text-editor/renderer/toolbar-renderer.d.ts +3 -0
- package/src/rich-text-editor/renderer/toolbar-renderer.js +61 -2
- package/src/rich-text-editor/renderer/video-module.js +7 -4
- package/src/rich-text-editor/renderer/view-source.js +7 -4
- package/styles/bootstrap-dark.css +57 -17
- package/styles/bootstrap.css +58 -18
- package/styles/bootstrap4.css +58 -18
- package/styles/bootstrap5-dark.css +64 -17
- package/styles/bootstrap5.css +64 -17
- package/styles/fabric-dark.css +57 -17
- package/styles/fabric.css +58 -18
- package/styles/fluent-dark.css +57 -17
- package/styles/fluent.css +57 -17
- package/styles/highcontrast-light.css +57 -17
- package/styles/highcontrast.css +58 -18
- package/styles/material-dark.css +57 -17
- package/styles/material.css +57 -17
- package/styles/material3-dark.css +59 -19
- package/styles/material3.css +59 -19
- package/styles/rich-text-editor/_bds-definition.scss +279 -0
- package/styles/rich-text-editor/_bootstrap-dark-definition.scss +1 -0
- package/styles/rich-text-editor/_bootstrap-definition.scss +1 -1
- package/styles/rich-text-editor/_bootstrap4-definition.scss +3 -2
- package/styles/rich-text-editor/_bootstrap5-definition.scss +1 -0
- package/styles/rich-text-editor/_fabric-dark-definition.scss +1 -0
- package/styles/rich-text-editor/_fabric-definition.scss +2 -1
- package/styles/rich-text-editor/_fluent-definition.scss +1 -0
- package/styles/rich-text-editor/_fusionnew-definition.scss +1 -0
- package/styles/rich-text-editor/_highcontrast-definition.scss +2 -1
- package/styles/rich-text-editor/_highcontrast-light-definition.scss +1 -0
- package/styles/rich-text-editor/_layout.scss +47 -13
- package/styles/rich-text-editor/_material-dark-definition.scss +1 -0
- package/styles/rich-text-editor/_material-definition.scss +1 -0
- package/styles/rich-text-editor/_material3-definition.scss +1 -0
- package/styles/rich-text-editor/_tailwind-definition.scss +4 -3
- package/styles/rich-text-editor/_theme.scss +18 -5
- package/styles/rich-text-editor/bootstrap-dark.css +57 -17
- package/styles/rich-text-editor/bootstrap.css +58 -18
- package/styles/rich-text-editor/bootstrap4.css +58 -18
- package/styles/rich-text-editor/bootstrap5-dark.css +64 -17
- package/styles/rich-text-editor/bootstrap5.css +64 -17
- package/styles/rich-text-editor/fabric-dark.css +57 -17
- package/styles/rich-text-editor/fabric.css +58 -18
- package/styles/rich-text-editor/fluent-dark.css +57 -17
- package/styles/rich-text-editor/fluent.css +57 -17
- package/styles/rich-text-editor/highcontrast-light.css +57 -17
- package/styles/rich-text-editor/highcontrast.css +58 -18
- package/styles/rich-text-editor/icons/_bds.scss +351 -0
- package/styles/rich-text-editor/icons/_bootstrap-dark.scss +7 -4
- package/styles/rich-text-editor/icons/_bootstrap.scss +7 -4
- package/styles/rich-text-editor/icons/_bootstrap4.scss +7 -4
- package/styles/rich-text-editor/icons/_bootstrap5.scss +7 -4
- package/styles/rich-text-editor/icons/_fabric-dark.scss +7 -4
- package/styles/rich-text-editor/icons/_fabric.scss +7 -4
- package/styles/rich-text-editor/icons/_fluent.scss +7 -4
- package/styles/rich-text-editor/icons/_highcontrast-light.scss +7 -4
- package/styles/rich-text-editor/icons/_highcontrast.scss +7 -4
- package/styles/rich-text-editor/icons/_material-dark.scss +7 -4
- package/styles/rich-text-editor/icons/_material.scss +7 -4
- package/styles/rich-text-editor/icons/_material3.scss +7 -4
- package/styles/rich-text-editor/icons/_tailwind.scss +7 -4
- package/styles/rich-text-editor/material-dark.css +57 -17
- package/styles/rich-text-editor/material.css +57 -17
- package/styles/rich-text-editor/material3-dark.css +59 -19
- package/styles/rich-text-editor/material3.css +59 -19
- package/styles/rich-text-editor/tailwind-dark.css +61 -21
- package/styles/rich-text-editor/tailwind.css +61 -21
- package/styles/tailwind-dark.css +61 -21
- package/styles/tailwind.css +61 -21
|
@@ -184,12 +184,14 @@
|
|
|
184
184
|
content: "\e895";
|
|
185
185
|
}
|
|
186
186
|
.e-rte-toolbar .e-replace::before,
|
|
187
|
+
.e-rte-dropdown-popup .e-replace::before {
|
|
188
|
+
content: "\e710";
|
|
189
|
+
}
|
|
187
190
|
.e-rte-toolbar .e-audio-replace::before,
|
|
188
191
|
.e-rte-toolbar .e-video-replace::before,
|
|
189
|
-
.e-rte-dropdown-popup .e-replace::before,
|
|
190
192
|
.e-rte-dropdown-popup .e-audio-replace::before,
|
|
191
193
|
.e-rte-dropdown-popup .e-video-replace::before {
|
|
192
|
-
content: "\
|
|
194
|
+
content: "\e772";
|
|
193
195
|
}
|
|
194
196
|
.e-rte-toolbar .e-align::before,
|
|
195
197
|
.e-rte-dropdown-popup .e-align::before {
|
|
@@ -279,11 +281,11 @@
|
|
|
279
281
|
}
|
|
280
282
|
.e-rte-toolbar .e-table-header::before,
|
|
281
283
|
.e-rte-dropdown-popup .e-table-header::before {
|
|
282
|
-
content: "\
|
|
284
|
+
content: "\e8f4";
|
|
283
285
|
}
|
|
284
286
|
.e-rte-toolbar .e-table-remove::before,
|
|
285
287
|
.e-rte-dropdown-popup .e-table-remove::before {
|
|
286
|
-
content: "\
|
|
288
|
+
content: "\e811";
|
|
287
289
|
}
|
|
288
290
|
.e-rte-toolbar .e-table-rows::before,
|
|
289
291
|
.e-rte-dropdown-popup .e-table-rows::before {
|
|
@@ -585,6 +587,14 @@
|
|
|
585
587
|
.e-richtexteditor.e-bigger .e-dialog .e-vid-uploadwrap.e-droparea .e-browsebtn {
|
|
586
588
|
top: -120px;
|
|
587
589
|
}
|
|
590
|
+
.e-bigger .e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control,
|
|
591
|
+
.e-richtexteditor.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control {
|
|
592
|
+
padding: 0 10px;
|
|
593
|
+
}
|
|
594
|
+
.e-bigger .e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover,
|
|
595
|
+
.e-richtexteditor.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover {
|
|
596
|
+
padding: 0 10px;
|
|
597
|
+
}
|
|
588
598
|
|
|
589
599
|
.e-richtexteditor {
|
|
590
600
|
color: rgba(var(--color-sf-on-surface));
|
|
@@ -827,15 +837,6 @@
|
|
|
827
837
|
display: block;
|
|
828
838
|
z-index: 101;
|
|
829
839
|
}
|
|
830
|
-
.e-richtexteditor .e-rte-toolbar.e-rte-tb-float,
|
|
831
|
-
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar.e-rte-tb-float {
|
|
832
|
-
position: fixed;
|
|
833
|
-
top: 0;
|
|
834
|
-
}
|
|
835
|
-
.e-richtexteditor .e-rte-toolbar.e-rte-tb-float.e-rte-tb-abs-float,
|
|
836
|
-
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar.e-rte-tb-float.e-rte-tb-abs-float {
|
|
837
|
-
position: absolute;
|
|
838
|
-
}
|
|
839
840
|
.e-richtexteditor .rte-placeholder {
|
|
840
841
|
color: rgba(var(--color-sf-on-surface));
|
|
841
842
|
line-height: 1.5;
|
|
@@ -861,6 +862,8 @@
|
|
|
861
862
|
}
|
|
862
863
|
.e-richtexteditor .e-rte-content .e-content,
|
|
863
864
|
.e-richtexteditor .e-source-content .e-content {
|
|
865
|
+
width: 100%;
|
|
866
|
+
float: left;
|
|
864
867
|
background: unset;
|
|
865
868
|
box-sizing: border-box;
|
|
866
869
|
height: 100%;
|
|
@@ -881,6 +884,12 @@
|
|
|
881
884
|
.e-richtexteditor .e-source-content .e-content li {
|
|
882
885
|
margin-bottom: 10px;
|
|
883
886
|
}
|
|
887
|
+
.e-richtexteditor .e-rte-content .e-content li ol,
|
|
888
|
+
.e-richtexteditor .e-rte-content .e-content li ul,
|
|
889
|
+
.e-richtexteditor .e-source-content .e-content li ol,
|
|
890
|
+
.e-richtexteditor .e-source-content .e-content li ul {
|
|
891
|
+
margin-block-start: 10px;
|
|
892
|
+
}
|
|
884
893
|
.e-richtexteditor .e-rte-content .e-content h1,
|
|
885
894
|
.e-richtexteditor .e-source-content .e-content h1 {
|
|
886
895
|
font-size: 2.17em;
|
|
@@ -987,6 +996,7 @@
|
|
|
987
996
|
position: absolute;
|
|
988
997
|
right: 0;
|
|
989
998
|
z-index: 100;
|
|
999
|
+
pointer-events: none;
|
|
990
1000
|
}
|
|
991
1001
|
.e-richtexteditor .e-rte-character-count.e-warning {
|
|
992
1002
|
color: rgba(var(--color-sf-warning));
|
|
@@ -1301,13 +1311,11 @@
|
|
|
1301
1311
|
}
|
|
1302
1312
|
|
|
1303
1313
|
.e-rte-img-caption .e-rte-image.e-imgright {
|
|
1304
|
-
float: none;
|
|
1305
1314
|
margin-left: auto;
|
|
1306
1315
|
margin-right: 0;
|
|
1307
1316
|
}
|
|
1308
1317
|
|
|
1309
1318
|
.e-rte-img-caption .e-rte-image.e-imgleft {
|
|
1310
|
-
float: none;
|
|
1311
1319
|
margin: 0;
|
|
1312
1320
|
}
|
|
1313
1321
|
|
|
@@ -1326,6 +1334,7 @@
|
|
|
1326
1334
|
height: 20px;
|
|
1327
1335
|
min-width: 20px;
|
|
1328
1336
|
padding: 2px 5px;
|
|
1337
|
+
box-sizing: border-box;
|
|
1329
1338
|
}
|
|
1330
1339
|
|
|
1331
1340
|
.e-rte-table.e-dashed-border td,
|
|
@@ -1346,13 +1355,20 @@
|
|
|
1346
1355
|
}
|
|
1347
1356
|
|
|
1348
1357
|
.e-rte-img-caption.e-imgleft .e-img-inner {
|
|
1358
|
+
float: left;
|
|
1349
1359
|
text-align: left;
|
|
1350
1360
|
}
|
|
1351
1361
|
|
|
1352
1362
|
.e-rte-img-caption.e-imgright .e-img-inner {
|
|
1363
|
+
float: right;
|
|
1353
1364
|
text-align: right;
|
|
1354
1365
|
}
|
|
1355
1366
|
|
|
1367
|
+
.e-rte-img-caption.e-imgleft .e-img-wrap,
|
|
1368
|
+
.e-rte-img-caption.e-imgright .e-img-wrap {
|
|
1369
|
+
display: contents;
|
|
1370
|
+
}
|
|
1371
|
+
|
|
1356
1372
|
.e-rte-img-caption .e-img-wrap {
|
|
1357
1373
|
display: inline-block;
|
|
1358
1374
|
margin: auto;
|
|
@@ -1607,7 +1623,7 @@
|
|
|
1607
1623
|
.e-rte-elements .e-rte-content .e-content table td.e-cell-select,
|
|
1608
1624
|
.e-rte-elements .e-rte-content .e-content table th.e-cell-select {
|
|
1609
1625
|
border: 1px double rgba(var(--color-sf-primary));
|
|
1610
|
-
height:
|
|
1626
|
+
height: inherit;
|
|
1611
1627
|
}
|
|
1612
1628
|
.e-richtexteditor span.e-table-box,
|
|
1613
1629
|
.e-rte-elements span.e-table-box {
|
|
@@ -2583,7 +2599,7 @@
|
|
|
2583
2599
|
opacity: 0.87;
|
|
2584
2600
|
}
|
|
2585
2601
|
|
|
2586
|
-
.e-
|
|
2602
|
+
.e-richtexteditor .e-rte-table-popup .e-insert-table-btn {
|
|
2587
2603
|
font-weight: 400;
|
|
2588
2604
|
border: 1px solid rgba(var(--color-sf-outline));
|
|
2589
2605
|
border-radius: 20px;
|
|
@@ -2701,6 +2717,27 @@
|
|
|
2701
2717
|
visibility: hidden;
|
|
2702
2718
|
}
|
|
2703
2719
|
|
|
2720
|
+
.e-richtexteditor .e-toolbar-wrapper.e-rte-tb-float,
|
|
2721
|
+
.e-richtexteditor .e-toolbar-container.e-rte-tb-float {
|
|
2722
|
+
position: sticky;
|
|
2723
|
+
top: 0;
|
|
2724
|
+
overflow: visible;
|
|
2725
|
+
}
|
|
2726
|
+
.e-richtexteditor .e-toolbar-wrapper,
|
|
2727
|
+
.e-richtexteditor .e-toolbar-container {
|
|
2728
|
+
height: auto;
|
|
2729
|
+
z-index: 10;
|
|
2730
|
+
}
|
|
2731
|
+
.e-richtexteditor .e-toolbar .e-toolbar-pop.e-toolbar-extended {
|
|
2732
|
+
position: relative;
|
|
2733
|
+
width: 100%;
|
|
2734
|
+
top: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
2735
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
2736
|
+
}
|
|
2737
|
+
.e-richtexteditor .e-toolbar .e-toolbar-pop.e-toolbar-extended.e-popup-open {
|
|
2738
|
+
display: block;
|
|
2739
|
+
}
|
|
2740
|
+
|
|
2704
2741
|
/*! tab layout */
|
|
2705
2742
|
.e-richtexteditor .e-rte-toolbar {
|
|
2706
2743
|
border: 1px solid rgba(var(--color-sf-outline-variant));
|
|
@@ -2817,6 +2854,9 @@
|
|
|
2817
2854
|
.e-richtexteditor .e-toolbar-wrapper .e-rte-toolbar:not(.e-rte-tb-float) {
|
|
2818
2855
|
border-bottom: 1px solid rgba(var(--color-sf-outline-variant));
|
|
2819
2856
|
}
|
|
2857
|
+
.e-richtexteditor .e-toolbar-wrapper.e-rte-tb-float .e-rte-toolbar {
|
|
2858
|
+
border-top: 1px solid rgba(var(--color-sf-outline-variant));
|
|
2859
|
+
}
|
|
2820
2860
|
.e-richtexteditor .e-toolbar-wrapper + .e-rte-toolbar:not(.e-rte-tb-float) {
|
|
2821
2861
|
border: 0;
|
|
2822
2862
|
}
|
|
@@ -3137,7 +3177,7 @@ span.e-rte-videoboxmark {
|
|
|
3137
3177
|
}
|
|
3138
3178
|
|
|
3139
3179
|
.e-dropdown-popup ul .e-item.e-active {
|
|
3140
|
-
background
|
|
3180
|
+
background: linear-gradient(0deg, rgba(var(--color-sf-on-surface), 0.12), rgba(var(--color-sf-on-surface), 0.12)), rgba(var(--color-sf-surface));
|
|
3141
3181
|
color: rgba(var(--color-sf-on-surface));
|
|
3142
3182
|
}
|
|
3143
3183
|
|
|
@@ -3288,7 +3328,7 @@ span.e-table-box.e-rbox-select {
|
|
|
3288
3328
|
border-top-right-radius: 8px;
|
|
3289
3329
|
}
|
|
3290
3330
|
|
|
3291
|
-
.e-
|
|
3331
|
+
.e-richtexteditor .e-rte-table-popup .e-insert-table-btn {
|
|
3292
3332
|
color: rgba(var(--color-sf-on-surface));
|
|
3293
3333
|
}
|
|
3294
3334
|
|
|
@@ -240,12 +240,14 @@
|
|
|
240
240
|
content: "\e895";
|
|
241
241
|
}
|
|
242
242
|
.e-rte-toolbar .e-replace::before,
|
|
243
|
+
.e-rte-dropdown-popup .e-replace::before {
|
|
244
|
+
content: "\e710";
|
|
245
|
+
}
|
|
243
246
|
.e-rte-toolbar .e-audio-replace::before,
|
|
244
247
|
.e-rte-toolbar .e-video-replace::before,
|
|
245
|
-
.e-rte-dropdown-popup .e-replace::before,
|
|
246
248
|
.e-rte-dropdown-popup .e-audio-replace::before,
|
|
247
249
|
.e-rte-dropdown-popup .e-video-replace::before {
|
|
248
|
-
content: "\
|
|
250
|
+
content: "\e772";
|
|
249
251
|
}
|
|
250
252
|
.e-rte-toolbar .e-align::before,
|
|
251
253
|
.e-rte-dropdown-popup .e-align::before {
|
|
@@ -335,11 +337,11 @@
|
|
|
335
337
|
}
|
|
336
338
|
.e-rte-toolbar .e-table-header::before,
|
|
337
339
|
.e-rte-dropdown-popup .e-table-header::before {
|
|
338
|
-
content: "\
|
|
340
|
+
content: "\e8f4";
|
|
339
341
|
}
|
|
340
342
|
.e-rte-toolbar .e-table-remove::before,
|
|
341
343
|
.e-rte-dropdown-popup .e-table-remove::before {
|
|
342
|
-
content: "\
|
|
344
|
+
content: "\e811";
|
|
343
345
|
}
|
|
344
346
|
.e-rte-toolbar .e-table-rows::before,
|
|
345
347
|
.e-rte-dropdown-popup .e-table-rows::before {
|
|
@@ -641,6 +643,14 @@
|
|
|
641
643
|
.e-richtexteditor.e-bigger .e-dialog .e-vid-uploadwrap.e-droparea .e-browsebtn {
|
|
642
644
|
top: -120px;
|
|
643
645
|
}
|
|
646
|
+
.e-bigger .e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control,
|
|
647
|
+
.e-richtexteditor.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control {
|
|
648
|
+
padding: 0 10px;
|
|
649
|
+
}
|
|
650
|
+
.e-bigger .e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover,
|
|
651
|
+
.e-richtexteditor.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover {
|
|
652
|
+
padding: 0 10px;
|
|
653
|
+
}
|
|
644
654
|
|
|
645
655
|
.e-richtexteditor {
|
|
646
656
|
color: rgba(var(--color-sf-on-surface));
|
|
@@ -883,15 +893,6 @@
|
|
|
883
893
|
display: block;
|
|
884
894
|
z-index: 101;
|
|
885
895
|
}
|
|
886
|
-
.e-richtexteditor .e-rte-toolbar.e-rte-tb-float,
|
|
887
|
-
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar.e-rte-tb-float {
|
|
888
|
-
position: fixed;
|
|
889
|
-
top: 0;
|
|
890
|
-
}
|
|
891
|
-
.e-richtexteditor .e-rte-toolbar.e-rte-tb-float.e-rte-tb-abs-float,
|
|
892
|
-
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar.e-rte-tb-float.e-rte-tb-abs-float {
|
|
893
|
-
position: absolute;
|
|
894
|
-
}
|
|
895
896
|
.e-richtexteditor .rte-placeholder {
|
|
896
897
|
color: rgba(var(--color-sf-on-surface));
|
|
897
898
|
line-height: 1.5;
|
|
@@ -917,6 +918,8 @@
|
|
|
917
918
|
}
|
|
918
919
|
.e-richtexteditor .e-rte-content .e-content,
|
|
919
920
|
.e-richtexteditor .e-source-content .e-content {
|
|
921
|
+
width: 100%;
|
|
922
|
+
float: left;
|
|
920
923
|
background: unset;
|
|
921
924
|
box-sizing: border-box;
|
|
922
925
|
height: 100%;
|
|
@@ -937,6 +940,12 @@
|
|
|
937
940
|
.e-richtexteditor .e-source-content .e-content li {
|
|
938
941
|
margin-bottom: 10px;
|
|
939
942
|
}
|
|
943
|
+
.e-richtexteditor .e-rte-content .e-content li ol,
|
|
944
|
+
.e-richtexteditor .e-rte-content .e-content li ul,
|
|
945
|
+
.e-richtexteditor .e-source-content .e-content li ol,
|
|
946
|
+
.e-richtexteditor .e-source-content .e-content li ul {
|
|
947
|
+
margin-block-start: 10px;
|
|
948
|
+
}
|
|
940
949
|
.e-richtexteditor .e-rte-content .e-content h1,
|
|
941
950
|
.e-richtexteditor .e-source-content .e-content h1 {
|
|
942
951
|
font-size: 2.17em;
|
|
@@ -1043,6 +1052,7 @@
|
|
|
1043
1052
|
position: absolute;
|
|
1044
1053
|
right: 0;
|
|
1045
1054
|
z-index: 100;
|
|
1055
|
+
pointer-events: none;
|
|
1046
1056
|
}
|
|
1047
1057
|
.e-richtexteditor .e-rte-character-count.e-warning {
|
|
1048
1058
|
color: rgba(var(--color-sf-warning));
|
|
@@ -1357,13 +1367,11 @@
|
|
|
1357
1367
|
}
|
|
1358
1368
|
|
|
1359
1369
|
.e-rte-img-caption .e-rte-image.e-imgright {
|
|
1360
|
-
float: none;
|
|
1361
1370
|
margin-left: auto;
|
|
1362
1371
|
margin-right: 0;
|
|
1363
1372
|
}
|
|
1364
1373
|
|
|
1365
1374
|
.e-rte-img-caption .e-rte-image.e-imgleft {
|
|
1366
|
-
float: none;
|
|
1367
1375
|
margin: 0;
|
|
1368
1376
|
}
|
|
1369
1377
|
|
|
@@ -1382,6 +1390,7 @@
|
|
|
1382
1390
|
height: 20px;
|
|
1383
1391
|
min-width: 20px;
|
|
1384
1392
|
padding: 2px 5px;
|
|
1393
|
+
box-sizing: border-box;
|
|
1385
1394
|
}
|
|
1386
1395
|
|
|
1387
1396
|
.e-rte-table.e-dashed-border td,
|
|
@@ -1402,13 +1411,20 @@
|
|
|
1402
1411
|
}
|
|
1403
1412
|
|
|
1404
1413
|
.e-rte-img-caption.e-imgleft .e-img-inner {
|
|
1414
|
+
float: left;
|
|
1405
1415
|
text-align: left;
|
|
1406
1416
|
}
|
|
1407
1417
|
|
|
1408
1418
|
.e-rte-img-caption.e-imgright .e-img-inner {
|
|
1419
|
+
float: right;
|
|
1409
1420
|
text-align: right;
|
|
1410
1421
|
}
|
|
1411
1422
|
|
|
1423
|
+
.e-rte-img-caption.e-imgleft .e-img-wrap,
|
|
1424
|
+
.e-rte-img-caption.e-imgright .e-img-wrap {
|
|
1425
|
+
display: contents;
|
|
1426
|
+
}
|
|
1427
|
+
|
|
1412
1428
|
.e-rte-img-caption .e-img-wrap {
|
|
1413
1429
|
display: inline-block;
|
|
1414
1430
|
margin: auto;
|
|
@@ -1663,7 +1679,7 @@
|
|
|
1663
1679
|
.e-rte-elements .e-rte-content .e-content table td.e-cell-select,
|
|
1664
1680
|
.e-rte-elements .e-rte-content .e-content table th.e-cell-select {
|
|
1665
1681
|
border: 1px double rgba(var(--color-sf-primary));
|
|
1666
|
-
height:
|
|
1682
|
+
height: inherit;
|
|
1667
1683
|
}
|
|
1668
1684
|
.e-richtexteditor span.e-table-box,
|
|
1669
1685
|
.e-rte-elements span.e-table-box {
|
|
@@ -2639,7 +2655,7 @@
|
|
|
2639
2655
|
opacity: 0.87;
|
|
2640
2656
|
}
|
|
2641
2657
|
|
|
2642
|
-
.e-
|
|
2658
|
+
.e-richtexteditor .e-rte-table-popup .e-insert-table-btn {
|
|
2643
2659
|
font-weight: 400;
|
|
2644
2660
|
border: 1px solid rgba(var(--color-sf-outline));
|
|
2645
2661
|
border-radius: 20px;
|
|
@@ -2757,6 +2773,27 @@
|
|
|
2757
2773
|
visibility: hidden;
|
|
2758
2774
|
}
|
|
2759
2775
|
|
|
2776
|
+
.e-richtexteditor .e-toolbar-wrapper.e-rte-tb-float,
|
|
2777
|
+
.e-richtexteditor .e-toolbar-container.e-rte-tb-float {
|
|
2778
|
+
position: sticky;
|
|
2779
|
+
top: 0;
|
|
2780
|
+
overflow: visible;
|
|
2781
|
+
}
|
|
2782
|
+
.e-richtexteditor .e-toolbar-wrapper,
|
|
2783
|
+
.e-richtexteditor .e-toolbar-container {
|
|
2784
|
+
height: auto;
|
|
2785
|
+
z-index: 10;
|
|
2786
|
+
}
|
|
2787
|
+
.e-richtexteditor .e-toolbar .e-toolbar-pop.e-toolbar-extended {
|
|
2788
|
+
position: relative;
|
|
2789
|
+
width: 100%;
|
|
2790
|
+
top: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
2791
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
2792
|
+
}
|
|
2793
|
+
.e-richtexteditor .e-toolbar .e-toolbar-pop.e-toolbar-extended.e-popup-open {
|
|
2794
|
+
display: block;
|
|
2795
|
+
}
|
|
2796
|
+
|
|
2760
2797
|
/*! tab layout */
|
|
2761
2798
|
.e-richtexteditor .e-rte-toolbar {
|
|
2762
2799
|
border: 1px solid rgba(var(--color-sf-outline-variant));
|
|
@@ -2873,6 +2910,9 @@
|
|
|
2873
2910
|
.e-richtexteditor .e-toolbar-wrapper .e-rte-toolbar:not(.e-rte-tb-float) {
|
|
2874
2911
|
border-bottom: 1px solid rgba(var(--color-sf-outline-variant));
|
|
2875
2912
|
}
|
|
2913
|
+
.e-richtexteditor .e-toolbar-wrapper.e-rte-tb-float .e-rte-toolbar {
|
|
2914
|
+
border-top: 1px solid rgba(var(--color-sf-outline-variant));
|
|
2915
|
+
}
|
|
2876
2916
|
.e-richtexteditor .e-toolbar-wrapper + .e-rte-toolbar:not(.e-rte-tb-float) {
|
|
2877
2917
|
border: 0;
|
|
2878
2918
|
}
|
|
@@ -3193,7 +3233,7 @@ span.e-rte-videoboxmark {
|
|
|
3193
3233
|
}
|
|
3194
3234
|
|
|
3195
3235
|
.e-dropdown-popup ul .e-item.e-active {
|
|
3196
|
-
background
|
|
3236
|
+
background: linear-gradient(0deg, rgba(var(--color-sf-on-surface), 0.12), rgba(var(--color-sf-on-surface), 0.12)), rgba(var(--color-sf-surface));
|
|
3197
3237
|
color: rgba(var(--color-sf-on-surface));
|
|
3198
3238
|
}
|
|
3199
3239
|
|
|
@@ -3344,7 +3384,7 @@ span.e-table-box.e-rbox-select {
|
|
|
3344
3384
|
border-top-right-radius: 8px;
|
|
3345
3385
|
}
|
|
3346
3386
|
|
|
3347
|
-
.e-
|
|
3387
|
+
.e-richtexteditor .e-rte-table-popup .e-insert-table-btn {
|
|
3348
3388
|
color: rgba(var(--color-sf-on-surface));
|
|
3349
3389
|
}
|
|
3350
3390
|
|
|
@@ -129,12 +129,14 @@
|
|
|
129
129
|
content: "\e895";
|
|
130
130
|
}
|
|
131
131
|
.e-rte-toolbar .e-replace::before,
|
|
132
|
+
.e-rte-dropdown-popup .e-replace::before {
|
|
133
|
+
content: "\e710";
|
|
134
|
+
}
|
|
132
135
|
.e-rte-toolbar .e-audio-replace::before,
|
|
133
136
|
.e-rte-toolbar .e-video-replace::before,
|
|
134
|
-
.e-rte-dropdown-popup .e-replace::before,
|
|
135
137
|
.e-rte-dropdown-popup .e-audio-replace::before,
|
|
136
138
|
.e-rte-dropdown-popup .e-video-replace::before {
|
|
137
|
-
content: "\
|
|
139
|
+
content: "\e772";
|
|
138
140
|
}
|
|
139
141
|
.e-rte-toolbar .e-align::before,
|
|
140
142
|
.e-rte-dropdown-popup .e-align::before {
|
|
@@ -224,11 +226,11 @@
|
|
|
224
226
|
}
|
|
225
227
|
.e-rte-toolbar .e-table-header::before,
|
|
226
228
|
.e-rte-dropdown-popup .e-table-header::before {
|
|
227
|
-
content: "\
|
|
229
|
+
content: "\e8f4";
|
|
228
230
|
}
|
|
229
231
|
.e-rte-toolbar .e-table-remove::before,
|
|
230
232
|
.e-rte-dropdown-popup .e-table-remove::before {
|
|
231
|
-
content: "\
|
|
233
|
+
content: "\e811";
|
|
232
234
|
}
|
|
233
235
|
.e-rte-toolbar .e-table-rows::before,
|
|
234
236
|
.e-rte-dropdown-popup .e-table-rows::before {
|
|
@@ -455,7 +457,7 @@
|
|
|
455
457
|
.e-richtexteditor.e-bigger .e-rte-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn.e-btn,
|
|
456
458
|
.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,
|
|
457
459
|
.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 {
|
|
458
|
-
padding: 0
|
|
460
|
+
padding: 0 8px;
|
|
459
461
|
}
|
|
460
462
|
.e-bigger .e-richtexteditor .e-rte-toolbar .e-toolbar-items .e-dropdown-btn .e-rte-color-content,
|
|
461
463
|
.e-bigger .e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-dropdown-btn .e-rte-color-content,
|
|
@@ -534,6 +536,14 @@
|
|
|
534
536
|
.e-richtexteditor.e-bigger .e-dialog .e-vid-uploadwrap.e-droparea .e-browsebtn {
|
|
535
537
|
top: -120px;
|
|
536
538
|
}
|
|
539
|
+
.e-bigger .e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control,
|
|
540
|
+
.e-richtexteditor.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control {
|
|
541
|
+
padding: 0 8px;
|
|
542
|
+
}
|
|
543
|
+
.e-bigger .e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover,
|
|
544
|
+
.e-richtexteditor.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover {
|
|
545
|
+
padding: 0 8px;
|
|
546
|
+
}
|
|
537
547
|
|
|
538
548
|
.e-richtexteditor {
|
|
539
549
|
color: #fff;
|
|
@@ -776,15 +786,6 @@
|
|
|
776
786
|
display: block;
|
|
777
787
|
z-index: 101;
|
|
778
788
|
}
|
|
779
|
-
.e-richtexteditor .e-rte-toolbar.e-rte-tb-float,
|
|
780
|
-
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar.e-rte-tb-float {
|
|
781
|
-
position: fixed;
|
|
782
|
-
top: 0;
|
|
783
|
-
}
|
|
784
|
-
.e-richtexteditor .e-rte-toolbar.e-rte-tb-float.e-rte-tb-abs-float,
|
|
785
|
-
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar.e-rte-tb-float.e-rte-tb-abs-float {
|
|
786
|
-
position: absolute;
|
|
787
|
-
}
|
|
788
789
|
.e-richtexteditor .rte-placeholder {
|
|
789
790
|
color: #fff;
|
|
790
791
|
line-height: 1.5;
|
|
@@ -810,6 +811,8 @@
|
|
|
810
811
|
}
|
|
811
812
|
.e-richtexteditor .e-rte-content .e-content,
|
|
812
813
|
.e-richtexteditor .e-source-content .e-content {
|
|
814
|
+
width: 100%;
|
|
815
|
+
float: left;
|
|
813
816
|
background: unset;
|
|
814
817
|
box-sizing: border-box;
|
|
815
818
|
height: 100%;
|
|
@@ -830,6 +833,12 @@
|
|
|
830
833
|
.e-richtexteditor .e-source-content .e-content li {
|
|
831
834
|
margin-bottom: 10px;
|
|
832
835
|
}
|
|
836
|
+
.e-richtexteditor .e-rte-content .e-content li ol,
|
|
837
|
+
.e-richtexteditor .e-rte-content .e-content li ul,
|
|
838
|
+
.e-richtexteditor .e-source-content .e-content li ol,
|
|
839
|
+
.e-richtexteditor .e-source-content .e-content li ul {
|
|
840
|
+
margin-block-start: 10px;
|
|
841
|
+
}
|
|
833
842
|
.e-richtexteditor .e-rte-content .e-content h1,
|
|
834
843
|
.e-richtexteditor .e-source-content .e-content h1 {
|
|
835
844
|
font-size: 2.17em;
|
|
@@ -936,6 +945,7 @@
|
|
|
936
945
|
position: absolute;
|
|
937
946
|
right: 0;
|
|
938
947
|
z-index: 100;
|
|
948
|
+
pointer-events: none;
|
|
939
949
|
}
|
|
940
950
|
.e-richtexteditor .e-rte-character-count.e-warning {
|
|
941
951
|
color: #f97316;
|
|
@@ -1258,13 +1268,11 @@
|
|
|
1258
1268
|
}
|
|
1259
1269
|
|
|
1260
1270
|
.e-rte-img-caption .e-rte-image.e-imgright {
|
|
1261
|
-
float: none;
|
|
1262
1271
|
margin-left: auto;
|
|
1263
1272
|
margin-right: 0;
|
|
1264
1273
|
}
|
|
1265
1274
|
|
|
1266
1275
|
.e-rte-img-caption .e-rte-image.e-imgleft {
|
|
1267
|
-
float: none;
|
|
1268
1276
|
margin: 0;
|
|
1269
1277
|
}
|
|
1270
1278
|
|
|
@@ -1283,6 +1291,7 @@
|
|
|
1283
1291
|
height: 20px;
|
|
1284
1292
|
min-width: 20px;
|
|
1285
1293
|
padding: 2px 5px;
|
|
1294
|
+
box-sizing: border-box;
|
|
1286
1295
|
}
|
|
1287
1296
|
|
|
1288
1297
|
.e-rte-table.e-dashed-border td,
|
|
@@ -1303,13 +1312,20 @@
|
|
|
1303
1312
|
}
|
|
1304
1313
|
|
|
1305
1314
|
.e-rte-img-caption.e-imgleft .e-img-inner {
|
|
1315
|
+
float: left;
|
|
1306
1316
|
text-align: left;
|
|
1307
1317
|
}
|
|
1308
1318
|
|
|
1309
1319
|
.e-rte-img-caption.e-imgright .e-img-inner {
|
|
1320
|
+
float: right;
|
|
1310
1321
|
text-align: right;
|
|
1311
1322
|
}
|
|
1312
1323
|
|
|
1324
|
+
.e-rte-img-caption.e-imgleft .e-img-wrap,
|
|
1325
|
+
.e-rte-img-caption.e-imgright .e-img-wrap {
|
|
1326
|
+
display: contents;
|
|
1327
|
+
}
|
|
1328
|
+
|
|
1313
1329
|
.e-rte-img-caption .e-img-wrap {
|
|
1314
1330
|
display: inline-block;
|
|
1315
1331
|
margin: auto;
|
|
@@ -1564,7 +1580,7 @@
|
|
|
1564
1580
|
.e-rte-elements .e-rte-content .e-content table td.e-cell-select,
|
|
1565
1581
|
.e-rte-elements .e-rte-content .e-content table th.e-cell-select {
|
|
1566
1582
|
border: 1px double #22d3ee;
|
|
1567
|
-
height:
|
|
1583
|
+
height: inherit;
|
|
1568
1584
|
}
|
|
1569
1585
|
.e-richtexteditor span.e-table-box,
|
|
1570
1586
|
.e-rte-elements span.e-table-box {
|
|
@@ -2646,6 +2662,27 @@
|
|
|
2646
2662
|
visibility: hidden;
|
|
2647
2663
|
}
|
|
2648
2664
|
|
|
2665
|
+
.e-richtexteditor .e-toolbar-wrapper.e-rte-tb-float,
|
|
2666
|
+
.e-richtexteditor .e-toolbar-container.e-rte-tb-float {
|
|
2667
|
+
position: sticky;
|
|
2668
|
+
top: 0;
|
|
2669
|
+
overflow: visible;
|
|
2670
|
+
}
|
|
2671
|
+
.e-richtexteditor .e-toolbar-wrapper,
|
|
2672
|
+
.e-richtexteditor .e-toolbar-container {
|
|
2673
|
+
height: auto;
|
|
2674
|
+
z-index: 10;
|
|
2675
|
+
}
|
|
2676
|
+
.e-richtexteditor .e-toolbar .e-toolbar-pop.e-toolbar-extended {
|
|
2677
|
+
position: relative;
|
|
2678
|
+
width: 100%;
|
|
2679
|
+
top: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
2680
|
+
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
2681
|
+
}
|
|
2682
|
+
.e-richtexteditor .e-toolbar .e-toolbar-pop.e-toolbar-extended.e-popup-open {
|
|
2683
|
+
display: block;
|
|
2684
|
+
}
|
|
2685
|
+
|
|
2649
2686
|
/*! tab layout */
|
|
2650
2687
|
.e-richtexteditor .e-rte-toolbar {
|
|
2651
2688
|
border: 1px solid #4b5563;
|
|
@@ -2656,7 +2693,7 @@
|
|
|
2656
2693
|
}
|
|
2657
2694
|
.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 {
|
|
2658
2695
|
background: #4b5563;
|
|
2659
|
-
border:
|
|
2696
|
+
border: 1px solid #6b7280;
|
|
2660
2697
|
}
|
|
2661
2698
|
.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 {
|
|
2662
2699
|
color: #d1d5db;
|
|
@@ -2727,7 +2764,7 @@
|
|
|
2727
2764
|
}
|
|
2728
2765
|
.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 {
|
|
2729
2766
|
background: #4b5563;
|
|
2730
|
-
border:
|
|
2767
|
+
border: 0 solid #6b7280;
|
|
2731
2768
|
}
|
|
2732
2769
|
.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 {
|
|
2733
2770
|
background: #1f2937;
|
|
@@ -2765,6 +2802,9 @@
|
|
|
2765
2802
|
.e-richtexteditor .e-toolbar-wrapper .e-rte-toolbar:not(.e-rte-tb-float) {
|
|
2766
2803
|
border-bottom: 1px solid #4b5563;
|
|
2767
2804
|
}
|
|
2805
|
+
.e-richtexteditor .e-toolbar-wrapper.e-rte-tb-float .e-rte-toolbar {
|
|
2806
|
+
border-top: 1px solid #4b5563;
|
|
2807
|
+
}
|
|
2768
2808
|
.e-richtexteditor .e-toolbar-wrapper + .e-rte-toolbar:not(.e-rte-tb-float) {
|
|
2769
2809
|
border: 0;
|
|
2770
2810
|
}
|
|
@@ -2963,7 +3003,7 @@
|
|
|
2963
3003
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn,
|
|
2964
3004
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn:focus {
|
|
2965
3005
|
background: #4b5563;
|
|
2966
|
-
border:
|
|
3006
|
+
border: 1px solid #6b7280;
|
|
2967
3007
|
}
|
|
2968
3008
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn .e-icons,
|
|
2969
3009
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-tbar-btn:focus .e-icons {
|
|
@@ -3088,7 +3128,7 @@ span.e-rte-videoboxmark {
|
|
|
3088
3128
|
}
|
|
3089
3129
|
|
|
3090
3130
|
.e-dropdown-popup ul .e-item.e-active {
|
|
3091
|
-
background
|
|
3131
|
+
background: #4b5563;
|
|
3092
3132
|
color: #fff;
|
|
3093
3133
|
}
|
|
3094
3134
|
|