@syncfusion/ej2-richtexteditor 24.2.8 → 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 +34 -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 +955 -495
- package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es5.js +939 -484
- 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 +40 -1
- 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.d.ts +1 -0
- package/src/editor-manager/plugin/ms-word-clean-up.js +87 -58
- 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 +44 -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 +2 -2
- package/src/rich-text-editor/actions/enter-key.js +4 -3
- 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 +18 -31
- 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 +24 -9
- 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
|
|
package/styles/material3.css
CHANGED
|
@@ -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
|
|
|
@@ -0,0 +1,279 @@
|
|
|
1
|
+
//Layout Variables Start
|
|
2
|
+
$skin-name: 'tailwind';
|
|
3
|
+
$rte-border-size: 1px !default;
|
|
4
|
+
$rte-2px-border-size: 2px !default;
|
|
5
|
+
$rte-border-type: solid !default;
|
|
6
|
+
$rte-list-btn-flex: column !default;
|
|
7
|
+
$rte-list-btn-line-height: 30px !default;
|
|
8
|
+
$rte-big-list-btn-line-height: 36px !default;
|
|
9
|
+
$rte-split-btn-line-height: 30px !default;
|
|
10
|
+
$rte-big-split-btn-line-height: 38px !default;
|
|
11
|
+
$rte-big-quick-item-btn-width: 38px !default;
|
|
12
|
+
$rte-quick-item-btn-width: 26px !default;
|
|
13
|
+
$rte-big-quick-item-btn-height: 38px !default;
|
|
14
|
+
$rte-quick-item-btn-height: 30px !default;
|
|
15
|
+
$rte-big-quick-item-padding: 12px !default;
|
|
16
|
+
$rte-quick-item-padding: 3px !default;
|
|
17
|
+
$rte-quick-item-icon-min-width: 24px !default;
|
|
18
|
+
$rte-big-quick-item-line-height: $leading-normal !default;
|
|
19
|
+
$rte-content-padding: 12px !default;
|
|
20
|
+
$rte-toolbar-icon-size: $text-xl !default;
|
|
21
|
+
$rte-toolbar-big-icon-size: $text-xl !default;
|
|
22
|
+
$rte-big-quick-drop-btn-line-height: 33px !default;
|
|
23
|
+
$rte-quick-drop-btn-line-height: 24px !default;
|
|
24
|
+
$rte-big-quick-drop-btn-margin: 4px 0 !default;
|
|
25
|
+
$rte-quick-drop-btn-margin: 4px 0 !default;
|
|
26
|
+
$rte-big-quick-drop-btn-padding: 0 !default;
|
|
27
|
+
$rte-quick-drop-btn-padding: 1px 0 !default;
|
|
28
|
+
$rte-big-quick-drop-btn-icon-size: 16px !default;
|
|
29
|
+
$rte-quick-drop-btn-icon-size: 14px !default;
|
|
30
|
+
$rte-big-quick-drop-btn-caret-icon-size: 10px !default;
|
|
31
|
+
$rte-quick-drop-btn-caret-icon-size: 12px !default;
|
|
32
|
+
$rte-big-quick-drop-btn-caret-font-size: $text-xs !default;
|
|
33
|
+
$rte-quick-drop-btn-caret-font-size: $text-xxs !default;
|
|
34
|
+
$rte-big-tb-items-margin-left: 3px !default;
|
|
35
|
+
$rte-tb-items-margin-left: 7px !default;
|
|
36
|
+
$rte-big-tb-items-padding-left: 3px !default;
|
|
37
|
+
$rte-tb-items-padding-left: 7px !default;
|
|
38
|
+
$rte-active-tb-item-btn-padding: 0 !default;
|
|
39
|
+
$rte-split-btn-bar-size: 0 !default;
|
|
40
|
+
$rte-split-btn-active-color-icon-line-height: 30px !default;
|
|
41
|
+
$rte-big-split-btn-active-color-icon-line-height: 35px !default;
|
|
42
|
+
$rte-format-btn-min-width: 0 !default;
|
|
43
|
+
$rte-font-name-btn-min-width: 0 !default;
|
|
44
|
+
$rte-font-size-btn-min-width: 0 !default;
|
|
45
|
+
$rte-drop-btn-padding-left: 7px !default;
|
|
46
|
+
$dropdown-btn-font-size: $text-sm;
|
|
47
|
+
$dropdown-btn-big-font-size: $text-base;
|
|
48
|
+
$rte-drop-btn-padding-right: 3px !default;
|
|
49
|
+
$rte-drop-btn-action-padding-left: 7px !default;
|
|
50
|
+
$rte-drop-btn-action-padding-right: 3px !default;
|
|
51
|
+
$rte-big-drop-btn-padding-left: 10px !default;
|
|
52
|
+
$rte-big-drop-btn-padding-right: 6px !default;
|
|
53
|
+
$rte-big-drop-btn-action-padding-left: 10px !default;
|
|
54
|
+
$rte-big-drop-btn-action-padding-right: 6px !default;
|
|
55
|
+
$rte-colorpicker-parent-padding: 0 !default;
|
|
56
|
+
$rte-colorpicker-parent-padding-hover: 0 !default;
|
|
57
|
+
$rte-colorpicker-parent-padding-active-hover: 0 !default;
|
|
58
|
+
$rte-dropdown-btn-color-content-height: 30px !default;
|
|
59
|
+
$rte-big-dropdown-btn-color-content-height: 36px !default;
|
|
60
|
+
$rte-font-icon-width: 30px !default;
|
|
61
|
+
$rte-font-arrow-width: 18px !default;
|
|
62
|
+
$rte-font-arrow-touch-width: 20px !default;
|
|
63
|
+
$rte-font-icon-line-height: $leading-none !default;
|
|
64
|
+
$rte-placeholder-line-height: $leading-normal !default;
|
|
65
|
+
$rte-big-active-tb-item-btn-padding: 0 6px !default;
|
|
66
|
+
$rte-table-popup-padding: 18px 18px 8px 22px !default;
|
|
67
|
+
$rte-table-popup-border: 1px solid $border-light !default;
|
|
68
|
+
$rte-insert-dialog-label-padding-top: 12px !default;
|
|
69
|
+
$rte-insert-dialog-label-padding-bottom: 3px !default;
|
|
70
|
+
$rte-big-quick-tbar-item-min-height: 38px !default;
|
|
71
|
+
$rte-big-quick-tbar-item-min-width: 38px !default;
|
|
72
|
+
$rte-big-content-font-size: 16px !default;
|
|
73
|
+
$rte-content-font-size: $text-sm !default;
|
|
74
|
+
$rte-dropdown-caret-icon-size: $text-xs !default;
|
|
75
|
+
$rte-big-dropdown-caret-icon-size: $text-sm !default;
|
|
76
|
+
$rte-inline-dropdown-line-height: 30px !default;
|
|
77
|
+
$rte-big-inline-dropdown-line-height: 36px !default;
|
|
78
|
+
$font-weight: $font-weight-normal !default;
|
|
79
|
+
$rte-table-popup-bdr-radius: 6px !default;
|
|
80
|
+
$rte-resize-handler-width: 15px;
|
|
81
|
+
$rte-resize-handler-height: 15px;
|
|
82
|
+
$rte-resize-handler-position: 0;
|
|
83
|
+
$rte-big-inline-tmp-min-width: 48px;
|
|
84
|
+
$rte-inline-tmp-min-width: 55px;
|
|
85
|
+
$rte-big-inline-tmp-size-min-width: 59px;
|
|
86
|
+
$rte-inline-tmp-size-min-width: 66px;
|
|
87
|
+
$rte-big-inline-tmp-color-min-width: 50px;
|
|
88
|
+
$rte-inline-tmp-color-min-width: 55px;
|
|
89
|
+
$rte-big-color-list-span-common-padding-left-right: 0;
|
|
90
|
+
$rte-placeholder-padding: 12px !default;
|
|
91
|
+
$rte-default-character-count-opacity: 1;
|
|
92
|
+
$rte-droparea-line-height: 10;
|
|
93
|
+
$rte-droparea-browsebtn-height: 36px;
|
|
94
|
+
$rte-droparea-browsebtn-padding: 0 18px;
|
|
95
|
+
$rte-droparea-browsebtn-top: -120px;
|
|
96
|
+
$rte-big-droparea-browsebtn-top: -120px;
|
|
97
|
+
$rte-insert-dialog-font-size: 15px;
|
|
98
|
+
$rte-big-insert-dialog-font-size: 15px;
|
|
99
|
+
$rte-table-popup-tablecell-height: 14px;
|
|
100
|
+
$rte-table-popup-tablecell-width: 14px;
|
|
101
|
+
$rte-table-popup-tablecell-margin: 1px;
|
|
102
|
+
$rte-table-popup-row-height : 16px;
|
|
103
|
+
$rte-big-table-row-height : 18px;
|
|
104
|
+
$rte-big-tablecell-height : 16px;
|
|
105
|
+
$rte-big-tablecell-width : 16px;
|
|
106
|
+
$rte-toolbar-item-frist-last-child-margin: 0;
|
|
107
|
+
$rte-big-toolbar-item-frist-last-child-margin: 0 6px;
|
|
108
|
+
$rte-toolbar-expaned-padding: 0 5px;
|
|
109
|
+
$rte-big-toolbar-expaned-padding: 0 5px;
|
|
110
|
+
$rte-toolbar-expaned-padding-hover: 0 4px;
|
|
111
|
+
$rte-formatlists-dropdown-line-height: 20px;
|
|
112
|
+
$rte-big-formatlists-dropdown-line-height: 30px;
|
|
113
|
+
|
|
114
|
+
//Layout Variables End
|
|
115
|
+
|
|
116
|
+
//Theme Variables Start
|
|
117
|
+
$rte-border-color: $border-light !default;
|
|
118
|
+
$rte-content-bg: $content-bg-color !default;
|
|
119
|
+
$rte-full-screen-bg: $content-bg-color !default;
|
|
120
|
+
$rte-content-font-color: $content-text-color !default;
|
|
121
|
+
$rte-item-color: $content-text-color !default;
|
|
122
|
+
$rte-icons-color: $icon-color !default;
|
|
123
|
+
$rte-tlbar-expand-active: $icon-color !default;
|
|
124
|
+
$rte-hover-icons-color: $icon-color !default;
|
|
125
|
+
$rte-img-popup-border: 1px solid $border-light !default;
|
|
126
|
+
$rte-img-popup-box-shadow: $shadow !default;
|
|
127
|
+
$rte-img-popup-color: $border-light !default;
|
|
128
|
+
$rte-quick-item-active-bg: $secondary-bg-color-pressed !default;
|
|
129
|
+
$rte-quick-item-active-font-color: $icon-color !default;
|
|
130
|
+
$rte-quick-item-border: 0 !default;
|
|
131
|
+
$rte-quick-item-hover-border-color: $secondary-border-color-hover !default;
|
|
132
|
+
$rte-quick-item-active-border-color: $secondary-border-color-pressed !default;
|
|
133
|
+
$rte-quick-drop-btn-border-color: $content-bg-color-alt2 !default;
|
|
134
|
+
$rte-quick-drop-btn-hover-border-color: $content-bg-color-alt2 !default;
|
|
135
|
+
$rte-extended-toolbar-background: $content-bg-color-alt2 !default;
|
|
136
|
+
$rte-quick-pop-border: none !default;
|
|
137
|
+
$rte-quick-tb-border: 1px solid $border-light !default;
|
|
138
|
+
$rte-quick-pop-bg: $content-bg-color-alt2 !default;
|
|
139
|
+
$rte-quick-vr-line-color: $border-light !default;
|
|
140
|
+
$rte-quick-pop-shadow: $shadow-md !default;
|
|
141
|
+
$rte-quick-pop-item-focus-bg: $secondary-bg-color-pressed !default;
|
|
142
|
+
$rte-quick-tb-btn-hover: $secondary-bg-color-pressed !default;
|
|
143
|
+
$rte-tb-item-active-bg: $secondary-bg-color-pressed !default;
|
|
144
|
+
$rte-tb-active-font-color: $icon-color !default;
|
|
145
|
+
$rte-tb-item-active-border: 1px solid $secondary-border-color-pressed !default;
|
|
146
|
+
$rte-expand-tb-border-bottom: $rte-border-size $rte-border-type $border-light !default;
|
|
147
|
+
$rte-color-picker-active-bg: inherit !default;
|
|
148
|
+
$rte-drop-btn-active-bg: $secondary-bg-color-pressed !default;
|
|
149
|
+
$rte-drop-btn-active-color: $icon-color !default;
|
|
150
|
+
$rte-drop-btn-active-border-color: $secondary-border-color-pressed !default;
|
|
151
|
+
$rte-split-btn-active-hover-font-color: $icon-color !default;
|
|
152
|
+
$rte-split-btn-color: $secondary-bg-color-pressed !default;
|
|
153
|
+
$rte-tb-hover-font-color: $icon-color !default;
|
|
154
|
+
$rte-split-btn-active-color: $icon-color !default;
|
|
155
|
+
$rte-split-btn-hover-bg: $content-bg-color-alt1 !default;
|
|
156
|
+
$rte-split-btn-active-bg: $secondary-bg-color-pressed !default;
|
|
157
|
+
$rte-split-btn-span-hover-bg: $content-bg-color-alt3 !default;
|
|
158
|
+
$rte-split-btn-span-focus-bg: $secondary-bg-color-hover !default;
|
|
159
|
+
$rte-split-btn-span-active-bg: $secondary-bg-color-pressed !default;
|
|
160
|
+
$rte-split-btn-bar-bg: $content-bg-color-alt1 !default;
|
|
161
|
+
$rte-split-btn-active-bar-bg: $content-bg-color !default;
|
|
162
|
+
$rte-split-btn-bar-size: 0 !default;
|
|
163
|
+
$rte-split-btn-active-border: 1px solid $secondary-border-color-hover !default;
|
|
164
|
+
$rte-split-btn-active-color-icon-line-height: 30px !default;
|
|
165
|
+
$rte-big-split-btn-active-color-icon-line-height: 38px !default;
|
|
166
|
+
|
|
167
|
+
$rte-link-valid-color: $danger !default;
|
|
168
|
+
$rte-upload-drag-border-clr: $border !default;
|
|
169
|
+
$rte-img-header-clr: $content-text-color-alt1 !default;
|
|
170
|
+
$rte-drop-text-clr: $content-text-color-alt2 !default;
|
|
171
|
+
$rte-default-character-count-color: $placeholder-text-color !default;
|
|
172
|
+
$rte-warning-character-count-color: $warning !default;
|
|
173
|
+
$rte-error-character-count-color: $danger !default;
|
|
174
|
+
$rte-img-border: solid 2px $border-dark !default;
|
|
175
|
+
$rte-font-family: $font-family !default;
|
|
176
|
+
$rte-content-color: $content-text-color !default;
|
|
177
|
+
$rte-content-blockquote-border-left-color: solid 2px $content-text-color !default;
|
|
178
|
+
$rte-dropdown-selection-bgcolor: $secondary-bg-color-pressed !default;
|
|
179
|
+
$rte-ext-tbar-overlay-icons-color: $icon-color-disabled !default;
|
|
180
|
+
$rte-overlay-color: $overlay-bg-color !default;
|
|
181
|
+
$rte-dropdown-selection-color: $content-text-color-selected !default;
|
|
182
|
+
$rte-anchor-color: $info !default;
|
|
183
|
+
$rte-ext-tbar-overlay-dropdown-color: $content-bg-color-alt4 !default;
|
|
184
|
+
$rte-img-resize-back-color: $primary !default;
|
|
185
|
+
$rte-img-resize-color: $primary-text-color !default;
|
|
186
|
+
$rte-table-header-color: $content-text-color !default;
|
|
187
|
+
$rte-table-span-bg-color: $content-bg-color !default;
|
|
188
|
+
$rte-table-span-border: 1px solid $border !default;
|
|
189
|
+
$rte-table-span-active-bg-color: $primary-lighter !default;
|
|
190
|
+
$rte-table-span-active-border-color: $primary !default;
|
|
191
|
+
$rte-table-select-border-color: $primary !default;
|
|
192
|
+
$rte-table-popup-bg: $content-bg-color !default;
|
|
193
|
+
$rte-table-resize-back-color: $content-bg-color !default;
|
|
194
|
+
$rte-table-popup-color: $border-light !default;
|
|
195
|
+
$rte-table-popup-box: $shadow-md !default;
|
|
196
|
+
$rte-table-border-color: $border-light !default;
|
|
197
|
+
$rte-table-alternate-color: $content-bg-color-alt3 !default;
|
|
198
|
+
$rte-table-header-bg: $content-bg-color-alt2 !default;
|
|
199
|
+
$rte-toolbar-hor-nav-border-width: 0 0 0 1px !default;
|
|
200
|
+
$rte-border-top-left-radius: 0;
|
|
201
|
+
$rte-border-top-right-radius: 0;
|
|
202
|
+
$rte-border-bottom-right-radius: 0;
|
|
203
|
+
$rte-border-bottom-left-radius: 0;
|
|
204
|
+
$rte-big-border-radius: 0;
|
|
205
|
+
$rte-extended-toolbar-items-padding: 0;
|
|
206
|
+
$rte-expand-tbar-hover-bg: $content-bg-color-alt3 !default;
|
|
207
|
+
|
|
208
|
+
//Theme Variables End
|
|
209
|
+
|
|
210
|
+
$rte-tb-hover-bg-color: $content-bg-color-alt1 !default;
|
|
211
|
+
|
|
212
|
+
$rte-img-dlg-max-height: 363px !default;
|
|
213
|
+
$rte-img-alt-dlg-max-height: 363px !default;
|
|
214
|
+
$rte-img-link-dlg-max-height: 173px !default;
|
|
215
|
+
$rte-img-size-dlg-max-height: 236px !default;
|
|
216
|
+
$rte-link-dlg-max-height: 331px !default;
|
|
217
|
+
$rte-file-browser-dlg-max-height: 557px !default;
|
|
218
|
+
$rte-table-dlg-max-height: 232px !default;
|
|
219
|
+
$rte-edit-table-dlg-max-height: 340px !default;
|
|
220
|
+
$rte-quick-toolbar-item-margin: 0 6px !default;
|
|
221
|
+
$rte-big-quick-toolbar-item-margin: 0 6px !default;
|
|
222
|
+
$rte-big-quick-toolbar-items-margin : 0 6px !default;
|
|
223
|
+
$rte-big-quick-toolbar-item-btn-padding: 0 !default;
|
|
224
|
+
$rte-big-img-dlg-max-height: 397px !default;
|
|
225
|
+
$rte-big-img-alt-dlg-max-height: 397px !default;
|
|
226
|
+
$rte-big-img-link-dlg-max-height: 211px !default;
|
|
227
|
+
$rte-big-img-size-dlg-max-height: 293px !default;
|
|
228
|
+
$rte-big-link-dlg-max-height: 378px !default;
|
|
229
|
+
$rte-big-file-browser-dlg-max-height: 557px !default;
|
|
230
|
+
$rte-big-table-dlg-max-height: 283px !default;
|
|
231
|
+
$rte-big-edit-table-dlg-max-height: 388px !default;
|
|
232
|
+
$rte-drop-text-width: 300px !default;
|
|
233
|
+
$rte-drop-text-height: 128px !default;
|
|
234
|
+
$rte-big-drop-text-height: 140px !default;
|
|
235
|
+
$rte-drop-text-mobile-width: 250px !default;
|
|
236
|
+
$rte-tbar-default-bg: $content-bg-color-alt2;
|
|
237
|
+
$rte-big-insert-dialog-label-padding-top: 12px;
|
|
238
|
+
$rte-tbar-icon-size: 20px;
|
|
239
|
+
$rte-dropdown-btn-color-content-padding: 1px !default;
|
|
240
|
+
$rte-big-dropdown-btn-color-content-padding: 1px !default;
|
|
241
|
+
$rte-tb-expended-min-height: 40px !default;
|
|
242
|
+
$rte-big-tb-expended-min-height: 48px !default;
|
|
243
|
+
$rte-tb-expended-padding-left: 1px !default;
|
|
244
|
+
$rte-tb-expended-hover-padding-left: 1px !default;
|
|
245
|
+
$rte-toolbar-expaned-minwidth: 18px !default;
|
|
246
|
+
|
|
247
|
+
$rte-emoji-pop-background: $flyout-bg-color;
|
|
248
|
+
$rte-emoji-pop-box-shadow: $shadow-md;
|
|
249
|
+
$rte-emoji-pop-border-radius: 4px;
|
|
250
|
+
$rte-emoji-pop-border:1px solid $border-light;
|
|
251
|
+
$rte-emoji-tbar-btn-bg: transparent;
|
|
252
|
+
$rte-emoji-tbar-btn-select-bg : $secondary-border-color-hover;
|
|
253
|
+
$rte-emoji-tbar-btn-hover: $secondary-border-color-hover;
|
|
254
|
+
$rte-emoji-btn-height: 249px;
|
|
255
|
+
$rte-emoji-grp-btn-line-height: 1px;
|
|
256
|
+
$rte-emoji-headname-font-weight: 400;
|
|
257
|
+
$rte-emoji-headname-color:$content-text-color-alt2;
|
|
258
|
+
$rte-big-emoji-btn-height: 254px;
|
|
259
|
+
$rte-background-color-icon-fontsize: 20px;
|
|
260
|
+
$rte-big-background-color-icon-fontsize: 20px;
|
|
261
|
+
|
|
262
|
+
$rte-format-painter-cursor: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAzMiAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUgMi41QzQuNDQ3NzIgMi41IDQgMi45NDc3MiA0IDMuNUM0IDQuMDUyMjggNC40NDc3MiA0LjUgNSA0LjVINi42OTcyMkw3LjUgNS4wMzUxOFYxNi45NjQ4TDYuNjk3MjIgMTcuNUg1QzQuNDQ3NzIgMTcuNSA0IDE3Ljk0NzcgNCAxOC41QzQgMTkuMDUyMyA0LjQ0NzcyIDE5LjUgNSAxOS41SDYuNjk3MjJDNy4wOTIwNyAxOS41IDcuNDc4MDkgMTkuMzgzMSA3LjgwNjYyIDE5LjE2NDFMOC41IDE4LjcwMTlMOS4xOTMzOCAxOS4xNjQxQzkuNTIxOTEgMTkuMzgzMSA5LjkwNzkzIDE5LjUgMTAuMzAyOCAxOS41SDEyQzEyLjU1MjMgMTkuNSAxMyAxOS4wNTIzIDEzIDE4LjVDMTMgMTcuOTQ3NyAxMi41NTIzIDE3LjUgMTIgMTcuNUwxMC4zMDI4IDE3LjVMOS41IDE2Ljk2NDhWNS4wMzUxOEwxMC4zMDI4IDQuNUgxMkMxMi41NTIzIDQuNSAxMyA0LjA1MjI4IDEzIDMuNUMxMyAyLjk0NzcyIDEyLjU1MjMgMi41IDEyIDIuNUgxMC4zMDI4QzkuOTA3OTMgMi41IDkuNTIxOTEgMi42MTY4OCA5LjE5MzM4IDIuODM1OUw4LjUgMy4yOTgxNUw3LjgwNjYyIDIuODM1OUM3LjQ3ODA5IDIuNjE2ODggNy4wOTIwNyAyLjUgNi42OTcyMiAyLjVINVoiIGZpbGw9ImJsYWNrIiBzdHJva2U9IndoaXRlIiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KPHBhdGggZD0iTTIzLjUgNFY4LjVIMjVDMjUuODI4NCA4LjUgMjYuNSA5LjE3MTU3IDI2LjUgMTBWMTEuNVYxNy41SDIzLjVIMjAuNUgxNi41QzE3LjUgMTUgMTcuNSAxMS41IDE3LjUgMTEuNVYxMEMxNy41IDkuMTcxNTcgMTguMTcxNiA4LjUgMTkgOC41SDIwLjVWNEMyMC41IDMuMTcxNTcgMjEuMTcxNiAyLjUgMjIgMi41QzIyLjgyODQgMi41IDIzLjUgMy4xNzE1NyAyMy41IDRaIiBmaWxsPSJibGFjayIvPgo8cGF0aCBkPSJNMjMuNSA4LjVWNEMyMy41IDMuMTcxNTcgMjIuODI4NCAyLjUgMjIgMi41VjIuNUMyMS4xNzE2IDIuNSAyMC41IDMuMTcxNTcgMjAuNSA0VjguNU0yMy41IDguNUgyNUMyNS44Mjg0IDguNSAyNi41IDkuMTcxNTcgMjYuNSAxMFYxMS41TTIzLjUgOC41SDIwLjVNMjAuNSA4LjVIMTlDMTguMTcxNiA4LjUgMTcuNSA5LjE3MTU3IDE3LjUgMTBWMTEuNU0yNi41IDExLjVWMTcuNUgyMy41TTI2LjUgMTEuNUgxNy41TTE3LjUgMTEuNUMxNy41IDExLjUgMTcuNSAxNSAxNi41IDE3LjVIMjAuNU0yMy41IDE3LjVWMTQuNU0yMy41IDE3LjVIMjAuNU0yMC41IDE3LjVWMTUuNSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=') 8 1, auto;
|
|
263
|
+
|
|
264
|
+
/* stylelint-disable */
|
|
265
|
+
.e-rte-quick-popup {
|
|
266
|
+
border-radius: 6px !important;
|
|
267
|
+
.e-rte-quick-toolbar {
|
|
268
|
+
border-radius: 6px !important;
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.e-richtexteditor .e-toolbar .e-tbar-btn {
|
|
273
|
+
border: 1px solid $transparent !important;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.e-richtexteditor .e-toolbar .e-tbar-btn:hover {
|
|
277
|
+
background: $rte-tb-hover-bg-color;
|
|
278
|
+
border: 1px solid $rte-quick-item-hover-border-color !important;
|
|
279
|
+
}
|
|
@@ -231,6 +231,7 @@ $rte-big-toolbar-item-frist-last-child-margin: 0 6px;
|
|
|
231
231
|
$dropdown-btn-font-size: inherit !default;
|
|
232
232
|
$rte-toolbar-expaned-padding: 2px 3.5px;
|
|
233
233
|
$rte-toolbar-expaned-padding-hover: 0 2.5px;
|
|
234
|
+
$rte-big-toolbar-expaned-padding: 0 6px;
|
|
234
235
|
$rte-extended-toolbar-items-padding: 0;
|
|
235
236
|
$rte-expand-tbar-hover-bg: transparent !default;
|
|
236
237
|
$rte-big-insert-dialog-label-padding-top: 12px;
|