@syncfusion/ej2-richtexteditor 24.1.41-569421 → 24.1.41-581025
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +0 -176
- package/dist/ej2-richtexteditor.umd.min.js +1 -1
- package/dist/ej2-richtexteditor.umd.min.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es2015.js +7822 -9502
- package/dist/es6/ej2-richtexteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-richtexteditor.es5.js +5674 -7355
- package/dist/es6/ej2-richtexteditor.es5.js.map +1 -1
- package/package.json +12 -12
- package/src/common/config.d.ts +0 -7
- package/src/common/config.js +0 -11
- package/src/common/constant.d.ts +0 -6
- package/src/common/constant.js +0 -6
- package/src/common/interface.d.ts +0 -12
- package/src/common/types.d.ts +0 -6
- package/src/common/util.d.ts +0 -6
- package/src/common/util.js +20 -61
- package/src/editor-manager/base/constant.d.ts +0 -6
- package/src/editor-manager/base/constant.js +0 -6
- package/src/editor-manager/base/editor-manager.d.ts +0 -5
- package/src/editor-manager/base/editor-manager.js +0 -59
- package/src/editor-manager/base/interface.d.ts +0 -8
- package/src/editor-manager/plugin/dom-node.d.ts +1 -5
- package/src/editor-manager/plugin/dom-node.js +15 -169
- package/src/editor-manager/plugin/format-painter-actions.d.ts +0 -1
- package/src/editor-manager/plugin/format-painter-actions.js +1 -19
- package/src/editor-manager/plugin/formats.d.ts +0 -1
- package/src/editor-manager/plugin/formats.js +3 -38
- package/src/editor-manager/plugin/image.js +16 -12
- package/src/editor-manager/plugin/indents.js +1 -1
- package/src/editor-manager/plugin/inserthtml.d.ts +0 -1
- package/src/editor-manager/plugin/inserthtml.js +18 -78
- package/src/editor-manager/plugin/link.js +3 -8
- package/src/editor-manager/plugin/lists.js +70 -159
- package/src/editor-manager/plugin/ms-word-clean-up.d.ts +0 -3
- package/src/editor-manager/plugin/ms-word-clean-up.js +85 -212
- package/src/editor-manager/plugin/nodecutter.js +2 -5
- package/src/editor-manager/plugin/selection-commands.d.ts +0 -2
- package/src/editor-manager/plugin/selection-commands.js +4 -209
- package/src/editor-manager/plugin/table.d.ts +1 -4
- package/src/editor-manager/plugin/table.js +49 -95
- package/src/editor-manager/plugin/toolbar-status.d.ts +2 -2
- package/src/editor-manager/plugin/toolbar-status.js +10 -20
- package/src/editor-manager/plugin/undo.d.ts +0 -1
- package/src/editor-manager/plugin/undo.js +1 -21
- package/src/rich-text-editor/actions/base-quick-toolbar.d.ts +3 -4
- package/src/rich-text-editor/actions/base-quick-toolbar.js +10 -43
- package/src/rich-text-editor/actions/base-toolbar.js +34 -33
- package/src/rich-text-editor/actions/color-picker.d.ts +0 -1
- package/src/rich-text-editor/actions/color-picker.js +0 -10
- package/src/rich-text-editor/actions/count.js +1 -1
- package/src/rich-text-editor/actions/dropdown-buttons.d.ts +0 -1
- package/src/rich-text-editor/actions/dropdown-buttons.js +4 -8
- package/src/rich-text-editor/actions/emoji-picker.js +4 -4
- package/src/rich-text-editor/actions/enter-key.js +4 -8
- package/src/rich-text-editor/actions/format-painter.js +1 -4
- package/src/rich-text-editor/actions/full-screen.js +2 -3
- package/src/rich-text-editor/actions/html-editor.d.ts +2 -2
- package/src/rich-text-editor/actions/html-editor.js +42 -123
- package/src/rich-text-editor/actions/keyboard.js +1 -3
- package/src/rich-text-editor/actions/markdown-editor.js +1 -3
- package/src/rich-text-editor/actions/paste-clean-up.d.ts +0 -3
- package/src/rich-text-editor/actions/paste-clean-up.js +14 -85
- package/src/rich-text-editor/actions/quick-toolbar.d.ts +0 -8
- package/src/rich-text-editor/actions/quick-toolbar.js +9 -37
- package/src/rich-text-editor/actions/resize.js +1 -2
- package/src/rich-text-editor/actions/toolbar-action.js +1 -1
- package/src/rich-text-editor/actions/toolbar.d.ts +3 -2
- package/src/rich-text-editor/actions/toolbar.js +87 -18
- package/src/rich-text-editor/base/classes.d.ts +5 -0
- package/src/rich-text-editor/base/classes.js +5 -0
- package/src/rich-text-editor/base/constant.d.ts +0 -40
- package/src/rich-text-editor/base/constant.js +0 -209
- package/src/rich-text-editor/base/interface.d.ts +3 -37
- package/src/rich-text-editor/base/rich-text-editor-model.d.ts +3 -3
- package/src/rich-text-editor/base/rich-text-editor.d.ts +4 -7
- package/src/rich-text-editor/base/rich-text-editor.js +132 -156
- package/src/rich-text-editor/base/util.js +2 -11
- package/src/rich-text-editor/formatter/formatter.js +4 -16
- package/src/rich-text-editor/models/default-locale.js +26 -30
- package/src/rich-text-editor/models/items.js +2 -2
- package/src/rich-text-editor/models/toolbar-settings-model.d.ts +1 -1
- package/src/rich-text-editor/models/toolbar-settings.d.ts +1 -1
- package/src/rich-text-editor/models/toolbar-settings.js +1 -1
- package/src/rich-text-editor/renderer/audio-module.d.ts +0 -1
- package/src/rich-text-editor/renderer/audio-module.js +4 -22
- package/src/rich-text-editor/renderer/dialog-renderer.d.ts +0 -2
- package/src/rich-text-editor/renderer/dialog-renderer.js +1 -12
- package/src/rich-text-editor/renderer/iframe-content-renderer.js +1 -2
- package/src/rich-text-editor/renderer/image-module.d.ts +1 -9
- package/src/rich-text-editor/renderer/image-module.js +168 -203
- package/src/rich-text-editor/renderer/link-module.js +1 -10
- package/src/rich-text-editor/renderer/table-module.d.ts +1 -8
- package/src/rich-text-editor/renderer/table-module.js +139 -301
- package/src/rich-text-editor/renderer/toolbar-renderer.d.ts +0 -3
- package/src/rich-text-editor/renderer/toolbar-renderer.js +9 -94
- package/src/rich-text-editor/renderer/video-module.d.ts +0 -3
- package/src/rich-text-editor/renderer/video-module.js +41 -82
- package/src/rich-text-editor/renderer/view-source.d.ts +0 -1
- package/src/rich-text-editor/renderer/view-source.js +4 -12
- package/src/selection/selection.js +0 -3
- package/styles/bootstrap-dark.css +53 -161
- package/styles/bootstrap.css +61 -162
- package/styles/bootstrap4.css +46 -146
- package/styles/bootstrap5-dark.css +46 -151
- package/styles/bootstrap5.css +46 -151
- package/styles/fabric-dark.css +40 -140
- package/styles/fabric.css +41 -141
- package/styles/fluent-dark.css +47 -165
- package/styles/fluent.css +47 -165
- package/styles/highcontrast-light.css +40 -140
- package/styles/highcontrast.css +41 -144
- package/styles/material-dark.css +41 -145
- package/styles/material.css +41 -145
- package/styles/material3-dark.css +50 -156
- package/styles/material3.css +50 -156
- package/styles/rich-text-editor/_bootstrap-dark-definition.scss +13 -17
- package/styles/rich-text-editor/_bootstrap-definition.scss +19 -22
- package/styles/rich-text-editor/_bootstrap4-definition.scss +7 -11
- package/styles/rich-text-editor/_bootstrap5-definition.scss +3 -7
- package/styles/rich-text-editor/_fabric-dark-definition.scss +2 -6
- package/styles/rich-text-editor/_fabric-definition.scss +3 -7
- package/styles/rich-text-editor/_fluent-definition.scss +9 -13
- package/styles/rich-text-editor/_fusionnew-definition.scss +3 -7
- package/styles/rich-text-editor/_highcontrast-definition.scss +3 -7
- package/styles/rich-text-editor/_highcontrast-light-definition.scss +2 -6
- package/styles/rich-text-editor/_layout.scss +31 -133
- package/styles/rich-text-editor/_material-dark-definition.scss +2 -6
- package/styles/rich-text-editor/_material-definition.scss +2 -6
- package/styles/rich-text-editor/_material3-definition.scss +12 -16
- package/styles/rich-text-editor/_tailwind-definition.scss +19 -23
- package/styles/rich-text-editor/_theme.scss +23 -112
- package/styles/rich-text-editor/bootstrap-dark.css +53 -161
- package/styles/rich-text-editor/bootstrap.css +61 -162
- package/styles/rich-text-editor/bootstrap4.css +46 -146
- package/styles/rich-text-editor/bootstrap5-dark.css +46 -151
- package/styles/rich-text-editor/bootstrap5.css +46 -151
- package/styles/rich-text-editor/fabric-dark.css +40 -140
- package/styles/rich-text-editor/fabric.css +41 -141
- package/styles/rich-text-editor/fluent-dark.css +47 -165
- package/styles/rich-text-editor/fluent.css +47 -165
- package/styles/rich-text-editor/highcontrast-light.css +40 -140
- package/styles/rich-text-editor/highcontrast.css +41 -144
- package/styles/rich-text-editor/icons/_bootstrap-dark.scss +2 -2
- package/styles/rich-text-editor/icons/_bootstrap.scss +2 -2
- package/styles/rich-text-editor/icons/_bootstrap4.scss +2 -2
- package/styles/rich-text-editor/icons/_bootstrap5.scss +2 -2
- package/styles/rich-text-editor/icons/_fabric-dark.scss +2 -2
- package/styles/rich-text-editor/icons/_fabric.scss +2 -2
- package/styles/rich-text-editor/icons/_fluent.scss +2 -2
- package/styles/rich-text-editor/icons/_highcontrast-light.scss +2 -2
- package/styles/rich-text-editor/icons/_highcontrast.scss +2 -2
- package/styles/rich-text-editor/icons/_material-dark.scss +2 -2
- package/styles/rich-text-editor/icons/_material.scss +2 -2
- package/styles/rich-text-editor/icons/_material3.scss +2 -2
- package/styles/rich-text-editor/icons/_tailwind.scss +2 -2
- package/styles/rich-text-editor/material-dark.css +41 -145
- package/styles/rich-text-editor/material.css +41 -145
- package/styles/rich-text-editor/material3-dark.css +50 -156
- package/styles/rich-text-editor/material3.css +50 -156
- package/styles/rich-text-editor/tailwind-dark.css +63 -191
- package/styles/rich-text-editor/tailwind.css +63 -191
- package/styles/tailwind-dark.css +63 -191
- package/styles/tailwind.css +63 -191
- package/.eslintrc.json +0 -260
- package/src/global.d.ts +0 -1
- package/styles/rich-text-editor/_bds-definition.scss +0 -279
- package/styles/rich-text-editor/icons/_bds.scss +0 -348
package/styles/material3.css
CHANGED
|
@@ -335,11 +335,11 @@
|
|
|
335
335
|
}
|
|
336
336
|
.e-rte-toolbar .e-table-header::before,
|
|
337
337
|
.e-rte-dropdown-popup .e-table-header::before {
|
|
338
|
-
content: "\
|
|
338
|
+
content: "\e7e9";
|
|
339
339
|
}
|
|
340
340
|
.e-rte-toolbar .e-table-remove::before,
|
|
341
341
|
.e-rte-dropdown-popup .e-table-remove::before {
|
|
342
|
-
content: "\
|
|
342
|
+
content: "\e820";
|
|
343
343
|
}
|
|
344
344
|
.e-rte-toolbar .e-table-rows::before,
|
|
345
345
|
.e-rte-dropdown-popup .e-table-rows::before {
|
|
@@ -629,26 +629,6 @@
|
|
|
629
629
|
.e-richtexteditor.e-bigger .e-dialog.e-rte-dialog-minheight {
|
|
630
630
|
min-height: 324px;
|
|
631
631
|
}
|
|
632
|
-
.e-bigger .e-richtexteditor .e-rte-content .e-content,
|
|
633
|
-
.e-richtexteditor.e-bigger .e-rte-content .e-content {
|
|
634
|
-
font-size: 16px;
|
|
635
|
-
}
|
|
636
|
-
.e-bigger .e-richtexteditor .e-dialog .e-img-uploadwrap.e-droparea .e-browsebtn,
|
|
637
|
-
.e-bigger .e-richtexteditor .e-dialog .e-aud-uploadwrap.e-droparea .e-browsebtn,
|
|
638
|
-
.e-bigger .e-richtexteditor .e-dialog .e-vid-uploadwrap.e-droparea .e-browsebtn,
|
|
639
|
-
.e-richtexteditor.e-bigger .e-dialog .e-img-uploadwrap.e-droparea .e-browsebtn,
|
|
640
|
-
.e-richtexteditor.e-bigger .e-dialog .e-aud-uploadwrap.e-droparea .e-browsebtn,
|
|
641
|
-
.e-richtexteditor.e-bigger .e-dialog .e-vid-uploadwrap.e-droparea .e-browsebtn {
|
|
642
|
-
top: -120px;
|
|
643
|
-
}
|
|
644
|
-
.e-bigger .e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control,
|
|
645
|
-
.e-richtexteditor.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control {
|
|
646
|
-
padding: 0 10px;
|
|
647
|
-
}
|
|
648
|
-
.e-bigger .e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover,
|
|
649
|
-
.e-richtexteditor.e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover {
|
|
650
|
-
padding: 0 10px;
|
|
651
|
-
}
|
|
652
632
|
|
|
653
633
|
.e-richtexteditor {
|
|
654
634
|
color: rgba(var(--color-sf-on-surface));
|
|
@@ -891,6 +871,15 @@
|
|
|
891
871
|
display: block;
|
|
892
872
|
z-index: 101;
|
|
893
873
|
}
|
|
874
|
+
.e-richtexteditor .e-rte-toolbar.e-rte-tb-float,
|
|
875
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar.e-rte-tb-float {
|
|
876
|
+
position: fixed;
|
|
877
|
+
top: 0;
|
|
878
|
+
}
|
|
879
|
+
.e-richtexteditor .e-rte-toolbar.e-rte-tb-float.e-rte-tb-abs-float,
|
|
880
|
+
.e-richtexteditor .e-rte-toolbar.e-toolbar.e-extended-toolbar.e-rte-tb-float.e-rte-tb-abs-float {
|
|
881
|
+
position: absolute;
|
|
882
|
+
}
|
|
894
883
|
.e-richtexteditor .rte-placeholder {
|
|
895
884
|
color: rgba(var(--color-sf-on-surface));
|
|
896
885
|
line-height: 1.5;
|
|
@@ -916,8 +905,6 @@
|
|
|
916
905
|
}
|
|
917
906
|
.e-richtexteditor .e-rte-content .e-content,
|
|
918
907
|
.e-richtexteditor .e-source-content .e-content {
|
|
919
|
-
width: 100%;
|
|
920
|
-
float: left;
|
|
921
908
|
background: unset;
|
|
922
909
|
box-sizing: border-box;
|
|
923
910
|
height: 100%;
|
|
@@ -927,7 +914,12 @@
|
|
|
927
914
|
position: relative;
|
|
928
915
|
text-align: inherit;
|
|
929
916
|
z-index: 2;
|
|
930
|
-
|
|
917
|
+
}
|
|
918
|
+
@media screen and (min-width: 992px) {
|
|
919
|
+
.e-richtexteditor .e-rte-content .e-content,
|
|
920
|
+
.e-richtexteditor .e-source-content .e-content {
|
|
921
|
+
font-size: 14px;
|
|
922
|
+
}
|
|
931
923
|
}
|
|
932
924
|
.e-richtexteditor .e-rte-content .e-content p,
|
|
933
925
|
.e-richtexteditor .e-source-content .e-content p {
|
|
@@ -1044,7 +1036,6 @@
|
|
|
1044
1036
|
position: absolute;
|
|
1045
1037
|
right: 0;
|
|
1046
1038
|
z-index: 100;
|
|
1047
|
-
pointer-events: none;
|
|
1048
1039
|
}
|
|
1049
1040
|
.e-richtexteditor .e-rte-character-count.e-warning {
|
|
1050
1041
|
color: rgba(var(--color-sf-warning));
|
|
@@ -1105,34 +1096,6 @@
|
|
|
1105
1096
|
.e-richtexteditor .e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item .e-tbar-btn {
|
|
1106
1097
|
font-size: 18px;
|
|
1107
1098
|
}
|
|
1108
|
-
.e-richtexteditor .e-clickelem::after,
|
|
1109
|
-
.e-richtexteditor .e-video-clickelem::after {
|
|
1110
|
-
left: 0;
|
|
1111
|
-
right: 0;
|
|
1112
|
-
z-index: 1;
|
|
1113
|
-
}
|
|
1114
|
-
.e-richtexteditor .e-clickelem::before,
|
|
1115
|
-
.e-richtexteditor .e-video-clickelem::before {
|
|
1116
|
-
left: 0;
|
|
1117
|
-
right: 0;
|
|
1118
|
-
z-index: 1;
|
|
1119
|
-
}
|
|
1120
|
-
.e-richtexteditor .e-clickelem::before {
|
|
1121
|
-
bottom: 70%;
|
|
1122
|
-
top: 0;
|
|
1123
|
-
}
|
|
1124
|
-
.e-richtexteditor .e-clickelem::after {
|
|
1125
|
-
bottom: 0;
|
|
1126
|
-
top: 70%;
|
|
1127
|
-
}
|
|
1128
|
-
.e-richtexteditor .e-video-clickelem::before {
|
|
1129
|
-
bottom: 85%;
|
|
1130
|
-
top: 0;
|
|
1131
|
-
}
|
|
1132
|
-
.e-richtexteditor .e-video-clickelem::after {
|
|
1133
|
-
bottom: 0;
|
|
1134
|
-
top: 90%;
|
|
1135
|
-
}
|
|
1136
1099
|
|
|
1137
1100
|
.e-rte-linkcontent .e-rte-label {
|
|
1138
1101
|
padding-top: 20px;
|
|
@@ -1282,8 +1245,6 @@
|
|
|
1282
1245
|
.e-rte-image.e-imginline,
|
|
1283
1246
|
.e-rte-audio.e-audio-inline,
|
|
1284
1247
|
.e-rte-video.e-video-inline {
|
|
1285
|
-
margin-left: 5px;
|
|
1286
|
-
margin-right: 5px;
|
|
1287
1248
|
display: inline-block;
|
|
1288
1249
|
float: none;
|
|
1289
1250
|
max-width: calc(100% - 10px);
|
|
@@ -1341,34 +1302,36 @@
|
|
|
1341
1302
|
}
|
|
1342
1303
|
|
|
1343
1304
|
.e-rte-img-caption.e-imgcenter {
|
|
1344
|
-
display:
|
|
1305
|
+
display: block;
|
|
1345
1306
|
margin-left: auto;
|
|
1346
1307
|
margin-right: auto;
|
|
1347
1308
|
}
|
|
1348
1309
|
|
|
1349
1310
|
.e-rte-img-caption.e-imgright {
|
|
1350
|
-
display:
|
|
1311
|
+
display: block;
|
|
1351
1312
|
margin-left: auto;
|
|
1352
1313
|
margin-right: 0;
|
|
1353
1314
|
}
|
|
1354
1315
|
|
|
1355
1316
|
.e-rte-img-caption.e-imgleft {
|
|
1356
|
-
display:
|
|
1317
|
+
display: block;
|
|
1357
1318
|
margin-left: 0;
|
|
1358
1319
|
margin-right: auto;
|
|
1359
1320
|
}
|
|
1360
1321
|
|
|
1361
1322
|
.e-rte-img-caption .e-rte-image.e-imgright {
|
|
1323
|
+
float: none;
|
|
1362
1324
|
margin-left: auto;
|
|
1363
1325
|
margin-right: 0;
|
|
1364
1326
|
}
|
|
1365
1327
|
|
|
1366
1328
|
.e-rte-img-caption .e-rte-image.e-imgleft {
|
|
1329
|
+
float: none;
|
|
1367
1330
|
margin: 0;
|
|
1368
1331
|
}
|
|
1369
1332
|
|
|
1370
1333
|
.e-img-caption.e-rte-img-caption.e-imgbreak {
|
|
1371
|
-
display:
|
|
1334
|
+
display: block;
|
|
1372
1335
|
}
|
|
1373
1336
|
|
|
1374
1337
|
.e-rte-table {
|
|
@@ -1382,7 +1345,7 @@
|
|
|
1382
1345
|
height: 20px;
|
|
1383
1346
|
min-width: 20px;
|
|
1384
1347
|
padding: 2px 5px;
|
|
1385
|
-
|
|
1348
|
+
vertical-align: middle;
|
|
1386
1349
|
}
|
|
1387
1350
|
|
|
1388
1351
|
.e-rte-table.e-dashed-border td,
|
|
@@ -1403,20 +1366,13 @@
|
|
|
1403
1366
|
}
|
|
1404
1367
|
|
|
1405
1368
|
.e-rte-img-caption.e-imgleft .e-img-inner {
|
|
1406
|
-
float: left;
|
|
1407
1369
|
text-align: left;
|
|
1408
1370
|
}
|
|
1409
1371
|
|
|
1410
1372
|
.e-rte-img-caption.e-imgright .e-img-inner {
|
|
1411
|
-
float: right;
|
|
1412
1373
|
text-align: right;
|
|
1413
1374
|
}
|
|
1414
1375
|
|
|
1415
|
-
.e-rte-img-caption.e-imgleft .e-img-wrap,
|
|
1416
|
-
.e-rte-img-caption.e-imgright .e-img-wrap {
|
|
1417
|
-
display: contents;
|
|
1418
|
-
}
|
|
1419
|
-
|
|
1420
1376
|
.e-rte-img-caption .e-img-wrap {
|
|
1421
1377
|
display: inline-block;
|
|
1422
1378
|
margin: auto;
|
|
@@ -1432,14 +1388,6 @@
|
|
|
1432
1388
|
padding-top: 0;
|
|
1433
1389
|
}
|
|
1434
1390
|
|
|
1435
|
-
.e-rte-video-dialog .e-rte-label {
|
|
1436
|
-
padding-top: 20px;
|
|
1437
|
-
}
|
|
1438
|
-
|
|
1439
|
-
.e-rte-video-dialog .e-rte-label:first-child {
|
|
1440
|
-
padding-top: 0;
|
|
1441
|
-
}
|
|
1442
|
-
|
|
1443
1391
|
.e-rte-table-resize.e-row-resize,
|
|
1444
1392
|
.e-rte-table-resize.e-column-resize {
|
|
1445
1393
|
background-color: transparent;
|
|
@@ -1561,13 +1509,13 @@
|
|
|
1561
1509
|
margin: 0 auto;
|
|
1562
1510
|
padding: 6px 16px;
|
|
1563
1511
|
position: relative;
|
|
1564
|
-
top: -
|
|
1512
|
+
top: -50px;
|
|
1565
1513
|
}
|
|
1566
1514
|
.e-richtexteditor .e-dialog .e-vid-uploadwrap.e-droparea .e-browsebtn,
|
|
1567
1515
|
.e-richtexteditor .e-rte-video-dialog.e-dialog.e-device.e-dlg-modal .e-vid-uploadwrap.e-droparea .e-browsebtn,
|
|
1568
1516
|
.e-rte-elements .e-dialog .e-vid-uploadwrap.e-droparea .e-browsebtn,
|
|
1569
1517
|
.e-rte-elements .e-rte-video-dialog.e-dialog.e-device.e-dlg-modal .e-vid-uploadwrap.e-droparea .e-browsebtn {
|
|
1570
|
-
top: -
|
|
1518
|
+
top: -130px;
|
|
1571
1519
|
}
|
|
1572
1520
|
.e-richtexteditor .e-dialog.e-device.e-dlg-modal .e-img-uploadwrap.e-droparea .e-browsebtn,
|
|
1573
1521
|
.e-richtexteditor .e-dialog.e-device.e-dlg-modal .e-aud-uploadwrap.e-droparea .e-browsebtn,
|
|
@@ -1644,15 +1592,15 @@
|
|
|
1644
1592
|
.e-rte-elements .e-rte-table-popup.e-popup-open .e-rte-tablecell {
|
|
1645
1593
|
border: 1px solid rgba(var(--color-sf-outline-variant));
|
|
1646
1594
|
display: inline-block;
|
|
1647
|
-
height:
|
|
1648
|
-
margin:
|
|
1595
|
+
height: 20px;
|
|
1596
|
+
margin: 2px;
|
|
1649
1597
|
overflow: hidden;
|
|
1650
1598
|
vertical-align: top;
|
|
1651
|
-
width:
|
|
1599
|
+
width: 20px;
|
|
1652
1600
|
}
|
|
1653
1601
|
.e-richtexteditor .e-rte-table-popup.e-popup-open .e-rte-table-row,
|
|
1654
1602
|
.e-rte-elements .e-rte-table-popup.e-popup-open .e-rte-table-row {
|
|
1655
|
-
height:
|
|
1603
|
+
height: 24px;
|
|
1656
1604
|
}
|
|
1657
1605
|
.e-richtexteditor .e-rte-table-popup.e-popup-open .e-insert-table-btn,
|
|
1658
1606
|
.e-rte-elements .e-rte-table-popup.e-popup-open .e-insert-table-btn {
|
|
@@ -1671,7 +1619,7 @@
|
|
|
1671
1619
|
.e-rte-elements .e-rte-content .e-content table td.e-cell-select,
|
|
1672
1620
|
.e-rte-elements .e-rte-content .e-content table th.e-cell-select {
|
|
1673
1621
|
border: 1px double rgba(var(--color-sf-primary));
|
|
1674
|
-
height:
|
|
1622
|
+
height: 24.67px;
|
|
1675
1623
|
}
|
|
1676
1624
|
.e-richtexteditor span.e-table-box,
|
|
1677
1625
|
.e-rte-elements span.e-table-box {
|
|
@@ -1721,7 +1669,7 @@
|
|
|
1721
1669
|
.e-richtexteditor .e-rte-emojipicker-popup.e-popup.e-popup-open .e-toolbar .e-toolbar-item .e-tbar-btn .e-tbar-btn-text,
|
|
1722
1670
|
.e-rte-elements .e-rte-emojipicker-popup.e-popup.e-popup-open .e-toolbar .e-toolbar-item .e-tbar-btn .e-tbar-btn-text {
|
|
1723
1671
|
font-size: 24px;
|
|
1724
|
-
padding:
|
|
1672
|
+
padding: 1px;
|
|
1725
1673
|
}
|
|
1726
1674
|
.e-richtexteditor .e-rte-emojipicker-popup.e-popup.e-popup-open .e-input-group.e-control-wrapper,
|
|
1727
1675
|
.e-rte-elements .e-rte-emojipicker-popup.e-popup.e-popup-open .e-input-group.e-control-wrapper {
|
|
@@ -1884,14 +1832,6 @@
|
|
|
1884
1832
|
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar {
|
|
1885
1833
|
min-height: 48px;
|
|
1886
1834
|
}
|
|
1887
|
-
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-rte-color-content,
|
|
1888
|
-
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-caret {
|
|
1889
|
-
height: 40px;
|
|
1890
|
-
}
|
|
1891
|
-
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-rte-color-content:hover,
|
|
1892
|
-
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-caret:hover {
|
|
1893
|
-
height: 40px;
|
|
1894
|
-
}
|
|
1895
1835
|
.e-bigger .e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items:not(.e-tbar-pos) {
|
|
1896
1836
|
margin: 0 8px;
|
|
1897
1837
|
min-height: 48px;
|
|
@@ -2492,12 +2432,12 @@
|
|
|
2492
2432
|
}
|
|
2493
2433
|
|
|
2494
2434
|
.e-bigger .e-rte-table-popup.e-popup-open .e-rte-tablecell {
|
|
2495
|
-
height:
|
|
2496
|
-
width:
|
|
2435
|
+
height: 24px;
|
|
2436
|
+
width: 24px;
|
|
2497
2437
|
}
|
|
2498
2438
|
|
|
2499
2439
|
.e-bigger .e-rte-table-popup.e-popup-open .e-rte-table-row {
|
|
2500
|
-
height:
|
|
2440
|
+
height: 28px;
|
|
2501
2441
|
}
|
|
2502
2442
|
|
|
2503
2443
|
.e-table-rhelper {
|
|
@@ -2648,9 +2588,7 @@
|
|
|
2648
2588
|
}
|
|
2649
2589
|
|
|
2650
2590
|
.e-rte-toolbar .e-rte-table-popup .e-insert-table-btn {
|
|
2651
|
-
|
|
2652
|
-
border: 1px solid rgba(var(--color-sf-outline));
|
|
2653
|
-
border-radius: 20px;
|
|
2591
|
+
border-color: var(--color-sf-outline);
|
|
2654
2592
|
}
|
|
2655
2593
|
|
|
2656
2594
|
.e-dialog .e-dlg-header-content + .e-dlg-content {
|
|
@@ -2753,7 +2691,7 @@
|
|
|
2753
2691
|
margin: 0 auto;
|
|
2754
2692
|
padding: 6px 16px;
|
|
2755
2693
|
position: relative;
|
|
2756
|
-
top: -
|
|
2694
|
+
top: -50px;
|
|
2757
2695
|
}
|
|
2758
2696
|
.e-rte-elements.e-dialog .e-vid-uploadwrap.e-droparea .e-browsebtn,
|
|
2759
2697
|
.e-rte-elements.e-dialog .e-rte-video-dialog.e-dialog.e-device.e-dlg-modal .e-vid-uploadwrap.e-droparea .e-browsebtn {
|
|
@@ -2765,27 +2703,6 @@
|
|
|
2765
2703
|
visibility: hidden;
|
|
2766
2704
|
}
|
|
2767
2705
|
|
|
2768
|
-
.e-richtexteditor .e-toolbar-wrapper.e-rte-tb-float,
|
|
2769
|
-
.e-richtexteditor .e-toolbar-container.e-rte-tb-float {
|
|
2770
|
-
position: sticky;
|
|
2771
|
-
top: 0;
|
|
2772
|
-
overflow: visible;
|
|
2773
|
-
}
|
|
2774
|
-
.e-richtexteditor .e-toolbar-wrapper,
|
|
2775
|
-
.e-richtexteditor .e-toolbar-container {
|
|
2776
|
-
height: auto;
|
|
2777
|
-
z-index: 10;
|
|
2778
|
-
}
|
|
2779
|
-
.e-richtexteditor .e-toolbar .e-toolbar-pop.e-toolbar-extended {
|
|
2780
|
-
position: relative;
|
|
2781
|
-
width: 100%;
|
|
2782
|
-
top: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
2783
|
-
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
2784
|
-
}
|
|
2785
|
-
.e-richtexteditor .e-toolbar .e-toolbar-pop.e-toolbar-extended.e-popup-open {
|
|
2786
|
-
display: block;
|
|
2787
|
-
}
|
|
2788
|
-
|
|
2789
2706
|
/*! tab layout */
|
|
2790
2707
|
.e-richtexteditor .e-rte-toolbar {
|
|
2791
2708
|
border: 1px solid rgba(var(--color-sf-outline-variant));
|
|
@@ -2881,6 +2798,9 @@
|
|
|
2881
2798
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:hover .e-icons {
|
|
2882
2799
|
color: rgba(var(--color-sf-on-surface-variant));
|
|
2883
2800
|
}
|
|
2801
|
+
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:focus .e-icons {
|
|
2802
|
+
color: rgba(var(--color-sf-on-surface-variant));
|
|
2803
|
+
}
|
|
2884
2804
|
.e-richtexteditor .e-rte-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn .e-icons {
|
|
2885
2805
|
color: rgba(var(--color-sf-on-surface-variant));
|
|
2886
2806
|
}
|
|
@@ -2902,9 +2822,6 @@
|
|
|
2902
2822
|
.e-richtexteditor .e-toolbar-wrapper .e-rte-toolbar:not(.e-rte-tb-float) {
|
|
2903
2823
|
border-bottom: 1px solid rgba(var(--color-sf-outline-variant));
|
|
2904
2824
|
}
|
|
2905
|
-
.e-richtexteditor .e-toolbar-wrapper.e-rte-tb-float .e-rte-toolbar {
|
|
2906
|
-
border-top: 1px solid rgba(var(--color-sf-outline-variant));
|
|
2907
|
-
}
|
|
2908
2825
|
.e-richtexteditor .e-toolbar-wrapper + .e-rte-toolbar:not(.e-rte-tb-float) {
|
|
2909
2826
|
border: 0;
|
|
2910
2827
|
}
|
|
@@ -2935,7 +2852,7 @@
|
|
|
2935
2852
|
.e-richtexteditor .e-rte-content .e-content .e-video-focus:not(.e-resize),
|
|
2936
2853
|
.e-richtexteditor .e-source-content .e-content .e-img-focus:not(.e-resize),
|
|
2937
2854
|
.e-richtexteditor .e-source-content .e-content .e-video-focus:not(.e-resize) {
|
|
2938
|
-
border:
|
|
2855
|
+
border: dashed 2px rgba(var(--color-sf-primary));
|
|
2939
2856
|
}
|
|
2940
2857
|
.e-richtexteditor .e-rte-content .e-content a,
|
|
2941
2858
|
.e-richtexteditor .e-source-content .e-content a {
|
|
@@ -3032,18 +2949,15 @@
|
|
|
3032
2949
|
.e-richtexteditor .e-clickelem::after,
|
|
3033
2950
|
.e-richtexteditor .e-video-clickelem::after {
|
|
3034
2951
|
background: transparent;
|
|
2952
|
+
bottom: 0;
|
|
3035
2953
|
content: "";
|
|
3036
2954
|
cursor: default;
|
|
3037
2955
|
display: block;
|
|
2956
|
+
left: 0;
|
|
3038
2957
|
position: absolute;
|
|
3039
|
-
|
|
3040
|
-
|
|
3041
|
-
|
|
3042
|
-
background: transparent;
|
|
3043
|
-
content: "";
|
|
3044
|
-
cursor: default;
|
|
3045
|
-
display: block;
|
|
3046
|
-
position: absolute;
|
|
2958
|
+
right: 0;
|
|
2959
|
+
top: 0;
|
|
2960
|
+
z-index: 1;
|
|
3047
2961
|
}
|
|
3048
2962
|
.e-richtexteditor .e-videoheader,
|
|
3049
2963
|
.e-richtexteditor .e-embed-videoheader,
|
|
@@ -3070,16 +2984,6 @@
|
|
|
3070
2984
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items {
|
|
3071
2985
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
|
|
3072
2986
|
}
|
|
3073
|
-
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-rte-color-content {
|
|
3074
|
-
padding-top: 5.5px;
|
|
3075
|
-
height: 30px;
|
|
3076
|
-
}
|
|
3077
|
-
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-rte-color-content:hover {
|
|
3078
|
-
background: rgba(var(--color-sf-on-surface), 0.05);
|
|
3079
|
-
}
|
|
3080
|
-
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-rte-backgroundcolor-dropdown .e-caret:hover {
|
|
3081
|
-
background: rgba(var(--color-sf-on-surface), 0.05);
|
|
3082
|
-
}
|
|
3083
2987
|
.e-rte-quick-popup .e-rte-quick-toolbar .e-toolbar-items .e-separator {
|
|
3084
2988
|
border: 0.5px solid transparent;
|
|
3085
2989
|
}
|
|
@@ -3137,20 +3041,14 @@
|
|
|
3137
3041
|
display: block;
|
|
3138
3042
|
font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
|
|
3139
3043
|
font-size: 14px;
|
|
3140
|
-
height:
|
|
3044
|
+
height: 185px;
|
|
3141
3045
|
margin: 0 auto;
|
|
3142
3046
|
text-align: center;
|
|
3143
3047
|
width: auto;
|
|
3144
3048
|
}
|
|
3145
3049
|
|
|
3146
3050
|
.e-dialog .e-vid-uploadwrap .e-droptext {
|
|
3147
|
-
height:
|
|
3148
|
-
}
|
|
3149
|
-
|
|
3150
|
-
.e-bigger .e-richtexteditor .e-dialog .e-img-uploadwrap .e-droptext,
|
|
3151
|
-
.e-bigger .e-richtexteditor .e-dialog .e-aud-uploadwrap .e-droptext,
|
|
3152
|
-
.e-bigger .e-richtexteditor .e-dialog .e-vid-uploadwrap .e-droptext {
|
|
3153
|
-
height: 140px;
|
|
3051
|
+
height: 108px;
|
|
3154
3052
|
}
|
|
3155
3053
|
|
|
3156
3054
|
.e-dialog.e-device.e-dlg-modal .e-img-uploadwrap .e-droptext,
|
|
@@ -3225,7 +3123,7 @@ span.e-rte-videoboxmark {
|
|
|
3225
3123
|
}
|
|
3226
3124
|
|
|
3227
3125
|
.e-dropdown-popup ul .e-item.e-active {
|
|
3228
|
-
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));
|
|
3126
|
+
background-color: linear-gradient(0deg, rgba(var(--color-sf-on-surface), 0.12), rgba(var(--color-sf-on-surface), 0.12)), rgba(var(--color-sf-surface));
|
|
3229
3127
|
color: rgba(var(--color-sf-on-surface));
|
|
3230
3128
|
}
|
|
3231
3129
|
|
|
@@ -3245,7 +3143,7 @@ span.e-rte-videoboxmark {
|
|
|
3245
3143
|
.e-richtexteditor .e-rte-toolbar .e-hor-nav:hover {
|
|
3246
3144
|
border: solid rgba(0, 0, 0, 0.12);
|
|
3247
3145
|
border-width: 0 0 0 1px;
|
|
3248
|
-
padding-left:
|
|
3146
|
+
padding-left: 0;
|
|
3249
3147
|
}
|
|
3250
3148
|
|
|
3251
3149
|
.e-rte-table-popup .e-span-border {
|
|
@@ -3376,10 +3274,6 @@ span.e-table-box.e-rbox-select {
|
|
|
3376
3274
|
border-top-right-radius: 8px;
|
|
3377
3275
|
}
|
|
3378
3276
|
|
|
3379
|
-
.e-rte-toolbar .e-rte-table-popup .e-insert-table-btn {
|
|
3380
|
-
color: rgba(var(--color-sf-on-surface));
|
|
3381
|
-
}
|
|
3382
|
-
|
|
3383
3277
|
.e-richtexteditor.e-rte-tb-expand .e-rte-content-border {
|
|
3384
3278
|
border-bottom: 0;
|
|
3385
3279
|
}
|
|
@@ -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 6px !default;
|
|
67
|
+
$rte-active-tb-item-btn-padding: 0 1.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,19 +112,19 @@ $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: 8px !default;
|
|
116
|
+
$rte-drop-btn-action-padding-right: 2.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: 11px !default;
|
|
120
|
+
$rte-big-drop-btn-action-padding-right: 6px !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: 0 !default;
|
|
124
124
|
$rte-colorpicker-parent-padding-active-hover: 1px !default;
|
|
125
125
|
$rte-overlay-color: #383838 !default;
|
|
126
126
|
$rte-dropdown-btn-color-content-height: 30px !default;
|
|
127
|
-
$rte-big-dropdown-btn-color-content-height:
|
|
127
|
+
$rte-big-dropdown-btn-color-content-height: 30px !default;
|
|
128
128
|
$rte-font-icon-width: 30px !default;
|
|
129
129
|
$rte-font-arrow-width: 18px !default;
|
|
130
130
|
$rte-font-arrow-touch-width: 20px !default;
|
|
@@ -155,7 +155,6 @@ $rte-insert-dialog-label-padding-bottom: 20px !default;
|
|
|
155
155
|
$rte-big-quick-tbar-item-min-height: 36px !default;
|
|
156
156
|
$rte-big-quick-tbar-item-min-width: 36px !default;
|
|
157
157
|
$rte-content-font-size: 14px !default;
|
|
158
|
-
$rte-big-content-font-size: 16px !default;
|
|
159
158
|
$rte-toolbar-icon-size: 16px !default;
|
|
160
159
|
$rte-toolbar-big-icon-size: 18px !default;
|
|
161
160
|
$rte-toolbar-hor-nav-border-width: 0 0 0 1px !default;
|
|
@@ -177,7 +176,7 @@ $rte-resize-handler-width: 15px;
|
|
|
177
176
|
$rte-resize-handler-height: 15px;
|
|
178
177
|
$rte-resize-handler-position: 0;
|
|
179
178
|
|
|
180
|
-
$rte-big-color-list-span-common-padding-left-right:
|
|
179
|
+
$rte-big-color-list-span-common-padding-left-right: 0;
|
|
181
180
|
$rte-default-character-count-opacity: .54;
|
|
182
181
|
$rte-placeholder-padding: 16px !default;
|
|
183
182
|
|
|
@@ -203,15 +202,13 @@ $rte-big-file-browser-dlg-max-height: 557px !default;
|
|
|
203
202
|
$rte-big-table-dlg-max-height: 330px !default;
|
|
204
203
|
$rte-big-edit-table-dlg-max-height: 414px !default;
|
|
205
204
|
$rte-drop-text-width: 300px !default;
|
|
206
|
-
$rte-drop-text-height:
|
|
207
|
-
$rte-big-drop-text-height: 140px !default;
|
|
205
|
+
$rte-drop-text-height: 185px !default;
|
|
208
206
|
$rte-drop-text-mobile-width: 250px !default;
|
|
209
207
|
$rte-tbar-default-bg: $grey-darker;
|
|
210
208
|
$rte-droparea-line-height: 10;
|
|
211
209
|
$rte-droparea-browsebtn-height: 36px;
|
|
212
210
|
$rte-droparea-browsebtn-padding: 0 18px;
|
|
213
|
-
$rte-droparea-browsebtn-top: -
|
|
214
|
-
$rte-big-droparea-browsebtn-top: -120px;
|
|
211
|
+
$rte-droparea-browsebtn-top: -50px;
|
|
215
212
|
$rte-insert-dialog-font-size: 15px;
|
|
216
213
|
$rte-big-insert-dialog-font-size: 15px;
|
|
217
214
|
$rte-table-popup-tablecell-height: 14px;
|
|
@@ -229,9 +226,8 @@ $rte-big-tablecell-width : 16px;
|
|
|
229
226
|
$rte-toolbar-item-frist-last-child-margin: 0;
|
|
230
227
|
$rte-big-toolbar-item-frist-last-child-margin: 0 6px;
|
|
231
228
|
$dropdown-btn-font-size: inherit !default;
|
|
232
|
-
$rte-toolbar-expaned-padding:
|
|
229
|
+
$rte-toolbar-expaned-padding: 2px 3.5px;
|
|
233
230
|
$rte-toolbar-expaned-padding-hover: 0 2.5px;
|
|
234
|
-
$rte-big-toolbar-expaned-padding: 0 7px;
|
|
235
231
|
$rte-extended-toolbar-items-padding: 0;
|
|
236
232
|
$rte-expand-tbar-hover-bg: transparent !default;
|
|
237
233
|
$rte-big-insert-dialog-label-padding-top: 12px;
|
|
@@ -240,7 +236,7 @@ $rte-background-color-icon-fontsize: 14px;
|
|
|
240
236
|
$rte-big-background-color-icon-fontsize: 18px;
|
|
241
237
|
$rte-dropdown-btn-color-content-padding: 1px !default;
|
|
242
238
|
$rte-big-dropdown-btn-color-content-padding: 1px !default;
|
|
243
|
-
$rte-tb-expended-min-height:
|
|
239
|
+
$rte-tb-expended-min-height: 44px !default;
|
|
244
240
|
$rte-big-tb-expended-min-height: 49px !default;
|
|
245
241
|
$rte-tb-expended-padding-left: 1px !default;
|
|
246
242
|
$rte-tb-expended-hover-padding-left: 1px !default;
|
|
@@ -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: $rte-border-size 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 6px !default;
|
|
69
|
+
$rte-active-tb-item-btn-padding: 0 1.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: $rte-border-size $rte-border-type $grey-8c !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: 1px 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: 8px !default;
|
|
118
|
+
$rte-drop-btn-action-padding-right: 2.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: 11px !default;
|
|
122
|
+
$rte-big-drop-btn-action-padding-right: 6px !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: 0 !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;
|
|
@@ -159,7 +159,6 @@ $rte-insert-dialog-label-padding-bottom: 20px !default;
|
|
|
159
159
|
$rte-big-quick-tbar-item-min-height: 36px !default;
|
|
160
160
|
$rte-big-quick-tbar-item-min-width: 36px !default;
|
|
161
161
|
$rte-content-font-size: 14px !default;
|
|
162
|
-
$rte-big-content-font-size: 16px !default;
|
|
163
162
|
$rte-dropdown-caret-icon-size: 12px !default;
|
|
164
163
|
$rte-big-dropdown-caret-icon-size: 12px !default;
|
|
165
164
|
$rte-toolbar-icon-size: 16px !default;
|
|
@@ -178,7 +177,7 @@ $rte-resize-handler-height: 15px;
|
|
|
178
177
|
$rte-resize-handler-position: 0;
|
|
179
178
|
$rte-default-character-count-opacity: .54;
|
|
180
179
|
|
|
181
|
-
$rte-big-color-list-span-common-padding-left-right:
|
|
180
|
+
$rte-big-color-list-span-common-padding-left-right: 0;
|
|
182
181
|
$rte-placeholder-padding: 16px !default;
|
|
183
182
|
|
|
184
183
|
$rte-img-dlg-max-height: 426px !default;
|
|
@@ -203,15 +202,13 @@ $rte-big-file-browser-dlg-max-height: 557px !default;
|
|
|
203
202
|
$rte-big-table-dlg-max-height: 330px !default;
|
|
204
203
|
$rte-big-edit-table-dlg-max-height: 414px !default;
|
|
205
204
|
$rte-drop-text-width: 300px !default;
|
|
206
|
-
$rte-drop-text-height:
|
|
207
|
-
$rte-big-drop-text-height: 140px !default;
|
|
205
|
+
$rte-drop-text-height: 185px !default;
|
|
208
206
|
$rte-drop-text-mobile-width: 250px !default;
|
|
209
207
|
$rte-tbar-default-bg: $grey-f8;
|
|
210
208
|
$rte-droparea-line-height: 10;
|
|
211
209
|
$rte-droparea-browsebtn-height: 36px;
|
|
212
210
|
$rte-droparea-browsebtn-padding: 0 18px;
|
|
213
|
-
$rte-droparea-browsebtn-top: -
|
|
214
|
-
$rte-big-droparea-browsebtn-top: -120px;
|
|
211
|
+
$rte-droparea-browsebtn-top: -50px;
|
|
215
212
|
$rte-insert-dialog-font-size: 15px;
|
|
216
213
|
$rte-big-insert-dialog-font-size: 15px;
|
|
217
214
|
$rte-table-popup-tablecell-height: 14px;
|
|
@@ -228,10 +225,10 @@ $rte-big-tablecell-height : 16px;
|
|
|
228
225
|
$rte-big-tablecell-width : 16px;
|
|
229
226
|
$rte-toolbar-item-frist-last-child-margin: 0;
|
|
230
227
|
$rte-big-toolbar-item-frist-last-child-margin: 0 6px;
|
|
231
|
-
$rte-toolbar-expaned-padding:
|
|
228
|
+
$rte-toolbar-expaned-padding: 2px 3.5px;
|
|
232
229
|
$dropdown-btn-font-size: inherit !default;
|
|
233
230
|
$rte-toolbar-expaned-padding-hover: 1px 2.5px;
|
|
234
|
-
$rte-
|
|
231
|
+
$rte-toolbar-expaned-padding-hover: 0 2.5px;
|
|
235
232
|
$rte-extended-toolbar-items-padding: 0;
|
|
236
233
|
$rte-expand-tbar-hover-bg: $grey-e6 !default;
|
|
237
234
|
$rte-big-insert-dialog-label-padding-top: 12px;
|
|
@@ -240,7 +237,7 @@ $rte-background-color-icon-fontsize: 14px;
|
|
|
240
237
|
$rte-big-background-color-icon-fontsize: 18px;
|
|
241
238
|
$rte-dropdown-btn-color-content-padding: 1px !default;
|
|
242
239
|
$rte-big-dropdown-btn-color-content-padding: 1px !default;
|
|
243
|
-
$rte-tb-expended-min-height:
|
|
240
|
+
$rte-tb-expended-min-height: 44px !default;
|
|
244
241
|
$rte-big-tb-expended-min-height: 49px !default;
|
|
245
242
|
$rte-tb-expended-padding-left: 1px !default;
|
|
246
243
|
$rte-tb-expended-hover-padding-left: 1px !default;
|
|
@@ -267,9 +264,9 @@ $rte-format-painter-cursor: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiI
|
|
|
267
264
|
&.e-extended-toolbar .e-toolbar-items .e-toolbar-item {
|
|
268
265
|
& .e-rte-dropdown-btn.e-active.e-tbar-btn {
|
|
269
266
|
background: $rte-dropdown-active-bg;
|
|
270
|
-
border:
|
|
271
|
-
padding-left:
|
|
272
|
-
padding-right:
|
|
267
|
+
border: $rte-dropdown-active-border;
|
|
268
|
+
padding-left: 8px;
|
|
269
|
+
padding-right: 2.5px;
|
|
273
270
|
}
|
|
274
271
|
}
|
|
275
272
|
}
|