@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
|
@@ -136,20 +136,6 @@
|
|
|
136
136
|
min-height: 350px;
|
|
137
137
|
}
|
|
138
138
|
}
|
|
139
|
-
.e-rte-content .e-content {
|
|
140
|
-
font-size: $rte-big-content-font-size;
|
|
141
|
-
}
|
|
142
|
-
.e-dialog .e-img-uploadwrap.e-droparea .e-browsebtn,
|
|
143
|
-
.e-dialog .e-aud-uploadwrap.e-droparea .e-browsebtn,
|
|
144
|
-
.e-dialog .e-vid-uploadwrap.e-droparea .e-browsebtn {
|
|
145
|
-
top: $rte-big-droparea-browsebtn-top;
|
|
146
|
-
}
|
|
147
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control{
|
|
148
|
-
padding: $rte-big-toolbar-expaned-padding;
|
|
149
|
-
&:hover {
|
|
150
|
-
padding: $rte-big-toolbar-expaned-padding;
|
|
151
|
-
}
|
|
152
|
-
}
|
|
153
139
|
}
|
|
154
140
|
|
|
155
141
|
.e-richtexteditor {
|
|
@@ -409,6 +395,15 @@
|
|
|
409
395
|
z-index: 101;
|
|
410
396
|
}
|
|
411
397
|
}
|
|
398
|
+
|
|
399
|
+
&.e-rte-tb-float {
|
|
400
|
+
position: fixed;
|
|
401
|
+
top: 0;
|
|
402
|
+
|
|
403
|
+
&.e-rte-tb-abs-float {
|
|
404
|
+
position: absolute;
|
|
405
|
+
}
|
|
406
|
+
}
|
|
412
407
|
}
|
|
413
408
|
|
|
414
409
|
.rte-placeholder {
|
|
@@ -438,8 +433,6 @@
|
|
|
438
433
|
width: 100%;
|
|
439
434
|
|
|
440
435
|
.e-content {
|
|
441
|
-
width: 100%;
|
|
442
|
-
float: left;
|
|
443
436
|
background: unset;
|
|
444
437
|
box-sizing: border-box;
|
|
445
438
|
height: 100%;
|
|
@@ -449,7 +442,10 @@
|
|
|
449
442
|
position: relative;
|
|
450
443
|
text-align: inherit;
|
|
451
444
|
z-index: 2;
|
|
452
|
-
|
|
445
|
+
|
|
446
|
+
@media screen and (min-width: 992px) {
|
|
447
|
+
font-size: $rte-content-font-size;
|
|
448
|
+
}
|
|
453
449
|
}
|
|
454
450
|
|
|
455
451
|
.e-content p {
|
|
@@ -561,7 +557,6 @@
|
|
|
561
557
|
position: absolute;
|
|
562
558
|
right: 0;
|
|
563
559
|
z-index: 100;
|
|
564
|
-
pointer-events: none;
|
|
565
560
|
|
|
566
561
|
&.e-warning {
|
|
567
562
|
color: $rte-warning-character-count-color;
|
|
@@ -636,50 +631,8 @@
|
|
|
636
631
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended.e-toolbar-pop .e-toolbar-item .e-tbar-btn{
|
|
637
632
|
font-size: $rte-tbar-icon-size;
|
|
638
633
|
}
|
|
639
|
-
.e-clickelem::after,
|
|
640
|
-
.e-video-clickelem::after {
|
|
641
|
-
left: 0;
|
|
642
|
-
right: 0;
|
|
643
|
-
z-index: 1;
|
|
644
|
-
}
|
|
645
|
-
.e-clickelem::before,
|
|
646
|
-
.e-video-clickelem::before {
|
|
647
|
-
left: 0;
|
|
648
|
-
right: 0;
|
|
649
|
-
z-index: 1;
|
|
650
|
-
}
|
|
651
|
-
.e-clickelem::before {
|
|
652
|
-
bottom: 70%;
|
|
653
|
-
top: 0;
|
|
654
|
-
}
|
|
655
|
-
.e-clickelem::after {
|
|
656
|
-
bottom: 0;
|
|
657
|
-
top: 70%;
|
|
658
|
-
}
|
|
659
|
-
.e-video-clickelem::before {
|
|
660
|
-
bottom: 85%;
|
|
661
|
-
top: 0;
|
|
662
|
-
}
|
|
663
|
-
.e-video-clickelem::after {
|
|
664
|
-
bottom: 0;
|
|
665
|
-
top: 90%;
|
|
666
|
-
}
|
|
667
634
|
}
|
|
668
635
|
|
|
669
|
-
@if $skin-name == 'tailwind' {
|
|
670
|
-
.e-bigger {
|
|
671
|
-
.e-richtexteditor {
|
|
672
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn,
|
|
673
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control {
|
|
674
|
-
padding: 0 8px;
|
|
675
|
-
}
|
|
676
|
-
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover {
|
|
677
|
-
padding: 0 8px;
|
|
678
|
-
}
|
|
679
|
-
}
|
|
680
|
-
}
|
|
681
|
-
}
|
|
682
|
-
|
|
683
636
|
.e-rte-linkcontent .e-rte-label {
|
|
684
637
|
padding-top: $rte-insert-dialog-label-padding-top;
|
|
685
638
|
}
|
|
@@ -872,9 +825,7 @@
|
|
|
872
825
|
|
|
873
826
|
.e-rte-image.e-imginline,
|
|
874
827
|
.e-rte-audio.e-audio-inline,
|
|
875
|
-
.e-rte-video.e-video-inline
|
|
876
|
-
margin-left: 5px;
|
|
877
|
-
margin-right: 5px;
|
|
828
|
+
.e-rte-video.e-video-inline {
|
|
878
829
|
display: inline-block;
|
|
879
830
|
float: none;
|
|
880
831
|
max-width: calc(100% - (2 * 5px));
|
|
@@ -932,34 +883,36 @@
|
|
|
932
883
|
}
|
|
933
884
|
|
|
934
885
|
.e-rte-img-caption.e-imgcenter {
|
|
935
|
-
display:
|
|
886
|
+
display: block;
|
|
936
887
|
margin-left: auto;
|
|
937
888
|
margin-right: auto;
|
|
938
889
|
}
|
|
939
890
|
|
|
940
891
|
.e-rte-img-caption.e-imgright {
|
|
941
|
-
display:
|
|
892
|
+
display: block;
|
|
942
893
|
margin-left: auto;
|
|
943
894
|
margin-right: 0;
|
|
944
895
|
}
|
|
945
896
|
|
|
946
897
|
.e-rte-img-caption.e-imgleft {
|
|
947
|
-
display:
|
|
898
|
+
display: block;
|
|
948
899
|
margin-left: 0;
|
|
949
900
|
margin-right: auto;
|
|
950
901
|
}
|
|
951
902
|
|
|
952
903
|
.e-rte-img-caption .e-rte-image.e-imgright {
|
|
904
|
+
float: none;
|
|
953
905
|
margin-left: auto;
|
|
954
906
|
margin-right: 0;
|
|
955
907
|
}
|
|
956
908
|
|
|
957
909
|
.e-rte-img-caption .e-rte-image.e-imgleft {
|
|
910
|
+
float: none;
|
|
958
911
|
margin: 0;
|
|
959
912
|
}
|
|
960
913
|
|
|
961
914
|
.e-img-caption.e-rte-img-caption.e-imgbreak {
|
|
962
|
-
display:
|
|
915
|
+
display: block;
|
|
963
916
|
}
|
|
964
917
|
|
|
965
918
|
.e-rte-table {
|
|
@@ -973,7 +926,7 @@
|
|
|
973
926
|
height: 20px;
|
|
974
927
|
min-width: 20px;
|
|
975
928
|
padding: 2px 5px;
|
|
976
|
-
|
|
929
|
+
vertical-align: middle;
|
|
977
930
|
}
|
|
978
931
|
|
|
979
932
|
.e-rte-table.e-dashed-border td,
|
|
@@ -994,20 +947,13 @@
|
|
|
994
947
|
}
|
|
995
948
|
|
|
996
949
|
.e-rte-img-caption.e-imgleft .e-img-inner {
|
|
997
|
-
float: left;
|
|
998
950
|
text-align: left;
|
|
999
951
|
}
|
|
1000
952
|
|
|
1001
953
|
.e-rte-img-caption.e-imgright .e-img-inner {
|
|
1002
|
-
float: right;
|
|
1003
954
|
text-align: right;
|
|
1004
955
|
}
|
|
1005
956
|
|
|
1006
|
-
.e-rte-img-caption.e-imgleft .e-img-wrap,
|
|
1007
|
-
.e-rte-img-caption.e-imgright .e-img-wrap {
|
|
1008
|
-
display: contents;
|
|
1009
|
-
}
|
|
1010
|
-
|
|
1011
957
|
.e-rte-img-caption .e-img-wrap {
|
|
1012
958
|
display: inline-block;
|
|
1013
959
|
margin: auto;
|
|
@@ -1023,14 +969,6 @@
|
|
|
1023
969
|
padding-top: 0;
|
|
1024
970
|
}
|
|
1025
971
|
|
|
1026
|
-
.e-rte-video-dialog .e-rte-label {
|
|
1027
|
-
padding-top: $rte-insert-dialog-label-padding-top;
|
|
1028
|
-
}
|
|
1029
|
-
|
|
1030
|
-
.e-rte-video-dialog .e-rte-label:first-child {
|
|
1031
|
-
padding-top: 0;
|
|
1032
|
-
}
|
|
1033
|
-
|
|
1034
972
|
.e-rte-table-resize.e-row-resize,
|
|
1035
973
|
.e-rte-table-resize.e-column-resize {
|
|
1036
974
|
background-color: transparent;
|
|
@@ -1138,7 +1076,7 @@
|
|
|
1138
1076
|
|
|
1139
1077
|
.e-dialog .e-vid-uploadwrap.e-droparea .e-browsebtn,
|
|
1140
1078
|
.e-rte-video-dialog.e-dialog.e-device.e-dlg-modal .e-vid-uploadwrap.e-droparea .e-browsebtn {
|
|
1141
|
-
top:
|
|
1079
|
+
top: -130px;
|
|
1142
1080
|
}
|
|
1143
1081
|
|
|
1144
1082
|
.e-dialog.e-device.e-dlg-modal .e-img-uploadwrap.e-droparea .e-browsebtn,
|
|
@@ -1230,7 +1168,7 @@
|
|
|
1230
1168
|
.e-rte-content .e-content table td.e-cell-select,
|
|
1231
1169
|
.e-rte-content .e-content table th.e-cell-select {
|
|
1232
1170
|
border: 1px double $rte-table-select-border-color;
|
|
1233
|
-
height:
|
|
1171
|
+
height: 24.67px;
|
|
1234
1172
|
}
|
|
1235
1173
|
|
|
1236
1174
|
span.e-table-box {
|
|
@@ -1279,17 +1217,17 @@
|
|
|
1279
1217
|
@if $skin-name =='bootstrap' or $skin-name =='botstrap-dark' {
|
|
1280
1218
|
&:hover,
|
|
1281
1219
|
&:focus{
|
|
1282
|
-
padding:
|
|
1220
|
+
padding: 6px 2px;
|
|
1283
1221
|
}
|
|
1284
1222
|
}
|
|
1285
1223
|
|
|
1286
1224
|
@if $skin-name =='material' or $skin-name =='material-dark' {
|
|
1287
|
-
padding:
|
|
1225
|
+
padding: 3px;
|
|
1288
1226
|
}
|
|
1289
1227
|
|
|
1290
1228
|
.e-tbar-btn-text {
|
|
1291
1229
|
font-size: 24px;
|
|
1292
|
-
padding:
|
|
1230
|
+
padding: 1px;
|
|
1293
1231
|
}
|
|
1294
1232
|
}
|
|
1295
1233
|
|
|
@@ -1489,17 +1427,6 @@
|
|
|
1489
1427
|
.e-rte-quick-toolbar {
|
|
1490
1428
|
min-height: 48px;
|
|
1491
1429
|
|
|
1492
|
-
.e-toolbar-items .e-rte-backgroundcolor-dropdown {
|
|
1493
|
-
.e-rte-color-content,
|
|
1494
|
-
.e-caret {
|
|
1495
|
-
height: $rte-big-dropdown-btn-color-content-height;
|
|
1496
|
-
|
|
1497
|
-
&:hover {
|
|
1498
|
-
height: $rte-big-dropdown-btn-color-content-height;
|
|
1499
|
-
}
|
|
1500
|
-
}
|
|
1501
|
-
}
|
|
1502
|
-
|
|
1503
1430
|
.e-toolbar-items:not(.e-tbar-pos) {
|
|
1504
1431
|
margin: $rte-big-quick-toolbar-items-margin;
|
|
1505
1432
|
min-height: 48px;
|
|
@@ -1675,14 +1602,6 @@
|
|
|
1675
1602
|
}
|
|
1676
1603
|
}
|
|
1677
1604
|
}
|
|
1678
|
-
.e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-active{
|
|
1679
|
-
.e-rte-numberformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control,
|
|
1680
|
-
.e-rte-bulletformatlist-dropdown.e-dropdown-btn.e-tbar-btn.e-btn.e-control {
|
|
1681
|
-
@if $skin-name == 'tailwind' {
|
|
1682
|
-
padding: 1px;
|
|
1683
|
-
}
|
|
1684
|
-
}
|
|
1685
|
-
}
|
|
1686
1605
|
|
|
1687
1606
|
.e-rte-toolbar.e-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item,
|
|
1688
1607
|
.e-rte-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item,
|
|
@@ -2064,9 +1983,7 @@
|
|
|
2064
1983
|
|
|
2065
1984
|
@if $skin-name == 'Material3' {
|
|
2066
1985
|
.e-rte-toolbar .e-rte-table-popup .e-insert-table-btn{
|
|
2067
|
-
|
|
2068
|
-
border: 1px solid rgba($info-outline-border);
|
|
2069
|
-
border-radius: 20px;
|
|
1986
|
+
border-color: $outline;
|
|
2070
1987
|
}
|
|
2071
1988
|
.e-dialog .e-dlg-header-content + .e-dlg-content{
|
|
2072
1989
|
padding-top: 0;
|
|
@@ -2125,6 +2042,10 @@
|
|
|
2125
2042
|
box-shadow: $rte-table-popup-box;
|
|
2126
2043
|
}
|
|
2127
2044
|
|
|
2045
|
+
.e-rte-elements.e-rte-quick-popup .e-toolbar .e-toolbar-items.e-toolbar-multirow:not(.e-tbar-pos) .e-toolbar-item:first-child {
|
|
2046
|
+
margin-left: 6px;
|
|
2047
|
+
}
|
|
2048
|
+
|
|
2128
2049
|
.e-rte-elements.e-rte-quick-popup .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
2129
2050
|
min-width: 24px;
|
|
2130
2051
|
}
|
|
@@ -2223,27 +2144,4 @@
|
|
|
2223
2144
|
visibility: hidden;
|
|
2224
2145
|
}
|
|
2225
2146
|
// Blazor styles end
|
|
2226
|
-
|
|
2227
|
-
.e-richtexteditor {
|
|
2228
|
-
.e-toolbar-wrapper.e-rte-tb-float,
|
|
2229
|
-
.e-toolbar-container.e-rte-tb-float {
|
|
2230
|
-
position: sticky;
|
|
2231
|
-
top: 0;
|
|
2232
|
-
overflow: visible;
|
|
2233
|
-
}
|
|
2234
|
-
.e-toolbar-wrapper,
|
|
2235
|
-
.e-toolbar-container {
|
|
2236
|
-
height: auto;
|
|
2237
|
-
z-index: 10;
|
|
2238
|
-
}
|
|
2239
|
-
.e-toolbar .e-toolbar-pop.e-toolbar-extended {
|
|
2240
|
-
position: relative;
|
|
2241
|
-
width: 100%;
|
|
2242
|
-
top: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
2243
|
-
left: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
2244
|
-
}
|
|
2245
|
-
.e-toolbar .e-toolbar-pop.e-toolbar-extended.e-popup-open {
|
|
2246
|
-
display: block;
|
|
2247
|
-
}
|
|
2248
|
-
}
|
|
2249
2147
|
}
|
|
@@ -163,7 +163,6 @@ $rte-insert-dialog-label-padding-bottom: 20px !default;
|
|
|
163
163
|
$rte-big-quick-tbar-item-min-height: 34px !default;
|
|
164
164
|
$rte-big-quick-tbar-item-min-width: 39px !default;
|
|
165
165
|
$rte-content-font-size: 14px !default;
|
|
166
|
-
$rte-big-content-font-size: 16px !default;
|
|
167
166
|
$rte-dropdown-caret-icon-size: 12px !default;
|
|
168
167
|
$rte-big-dropdown-caret-icon-size: 12px !default;
|
|
169
168
|
|
|
@@ -200,8 +199,7 @@ $rte-big-file-browser-dlg-max-height: 557px !default;
|
|
|
200
199
|
$rte-big-table-dlg-max-height: 312px !default;
|
|
201
200
|
$rte-big-edit-table-dlg-max-height: 385px !default;
|
|
202
201
|
$rte-drop-text-width: 300px !default;
|
|
203
|
-
$rte-drop-text-height:
|
|
204
|
-
$rte-big-drop-text-height: 140px !default;
|
|
202
|
+
$rte-drop-text-height: 185px !default;
|
|
205
203
|
$rte-drop-text-mobile-width: 250px !default;
|
|
206
204
|
|
|
207
205
|
$rte-quick-toolbar-item-margin: 0 6px !default;
|
|
@@ -212,8 +210,7 @@ $rte-tbar-default-bg: $grey-900;
|
|
|
212
210
|
$rte-droparea-line-height: 10;
|
|
213
211
|
$rte-droparea-browsebtn-height: 36px;
|
|
214
212
|
$rte-droparea-browsebtn-padding: 0 18px;
|
|
215
|
-
$rte-droparea-browsebtn-top: -
|
|
216
|
-
$rte-big-droparea-browsebtn-top: -120px;
|
|
213
|
+
$rte-droparea-browsebtn-top: -50px;
|
|
217
214
|
$rte-insert-dialog-font-size: 15px;
|
|
218
215
|
$rte-big-insert-dialog-font-size: 15px;
|
|
219
216
|
$rte-table-popup-tablecell-height: 14px;
|
|
@@ -232,7 +229,6 @@ $rte-toolbar-item-frist-last-child-margin: 0;
|
|
|
232
229
|
$rte-big-toolbar-item-frist-last-child-margin: 0 6px;
|
|
233
230
|
$rte-toolbar-expaned-padding: 0 1.5px;
|
|
234
231
|
$rte-toolbar-expaned-padding-hover: 0 1.5px;
|
|
235
|
-
$rte-big-toolbar-expaned-padding: 0 6px;
|
|
236
232
|
$dropdown-btn-font-size: inherit !default;
|
|
237
233
|
$rte-extended-toolbar-items-padding: 0;
|
|
238
234
|
$rte-expand-tbar-hover-bg: rgba($grey-white, .1) !default;
|
|
@@ -158,7 +158,6 @@ $rte-insert-dialog-label-padding-bottom: 20px !default;
|
|
|
158
158
|
$rte-big-quick-tbar-item-min-height: 34px !default;
|
|
159
159
|
$rte-big-quick-tbar-item-min-width: 39px !default;
|
|
160
160
|
$rte-content-font-size: 14px !default;
|
|
161
|
-
$rte-big-content-font-size: 16px !default;
|
|
162
161
|
$rte-dropdown-caret-icon-size: 12px !default;
|
|
163
162
|
$rte-big-dropdown-caret-icon-size: 12px !default;
|
|
164
163
|
$rte-toolbar-icon-size: 14px !default;
|
|
@@ -204,15 +203,13 @@ $rte-big-file-browser-dlg-max-height: 557px !default;
|
|
|
204
203
|
$rte-big-table-dlg-max-height: 312px !default;
|
|
205
204
|
$rte-big-edit-table-dlg-max-height: 385px !default;
|
|
206
205
|
$rte-drop-text-width: 300px !default;
|
|
207
|
-
$rte-drop-text-height:
|
|
208
|
-
$rte-big-drop-text-height: 140px !default;
|
|
206
|
+
$rte-drop-text-height: 185px !default;
|
|
209
207
|
$rte-drop-text-mobile-width: 250px !default;
|
|
210
208
|
$rte-tbar-default-bg: $grey-50;
|
|
211
209
|
$rte-droparea-line-height: 10;
|
|
212
210
|
$rte-droparea-browsebtn-height: 36px;
|
|
213
211
|
$rte-droparea-browsebtn-padding: 0 18px;
|
|
214
|
-
$rte-droparea-browsebtn-top: -
|
|
215
|
-
$rte-big-droparea-browsebtn-top: -120px;
|
|
212
|
+
$rte-droparea-browsebtn-top: -50px;
|
|
216
213
|
$rte-insert-dialog-font-size: 15px;
|
|
217
214
|
$rte-big-insert-dialog-font-size: 15px;
|
|
218
215
|
$rte-table-popup-tablecell-height: 14px;
|
|
@@ -231,7 +228,6 @@ $rte-toolbar-item-frist-last-child-margin: 0;
|
|
|
231
228
|
$rte-big-toolbar-item-frist-last-child-margin: 0 6px;
|
|
232
229
|
$rte-toolbar-expaned-padding: 0 1.5px;
|
|
233
230
|
$rte-toolbar-expaned-padding-hover: 0 1.5px;
|
|
234
|
-
$rte-big-toolbar-expaned-padding: 0 6px;
|
|
235
231
|
$dropdown-btn-font-size: inherit !default;
|
|
236
232
|
$rte-extended-toolbar-items-padding: 0;
|
|
237
233
|
$rte-expand-tbar-hover-bg: rgba($grey-black, .12) !default;
|
|
@@ -68,8 +68,7 @@ $rte-insert-dialog-label-padding-top: 20px !default;
|
|
|
68
68
|
$rte-insert-dialog-label-padding-bottom: 0 !default;
|
|
69
69
|
$rte-big-quick-tbar-item-min-height: 40px !default;
|
|
70
70
|
$rte-big-quick-tbar-item-min-width: 40px !default;
|
|
71
|
-
$rte-content-font-size:
|
|
72
|
-
$rte-big-content-font-size: 16px !default;
|
|
71
|
+
$rte-content-font-size: $text-sm !default;
|
|
73
72
|
$rte-dropdown-caret-icon-size: $text-xs !default;
|
|
74
73
|
$rte-big-dropdown-caret-icon-size: $text-sm !default;
|
|
75
74
|
$font-weight: $font-weight-normal !default;
|
|
@@ -88,24 +87,22 @@ $rte-default-character-count-opacity: 1;
|
|
|
88
87
|
$rte-droparea-line-height: 10;
|
|
89
88
|
$rte-droparea-browsebtn-height: 32px;
|
|
90
89
|
$rte-droparea-browsebtn-padding: 6px 16px;
|
|
91
|
-
$rte-droparea-browsebtn-top: -
|
|
92
|
-
$rte-big-droparea-browsebtn-top: -120px;
|
|
90
|
+
$rte-droparea-browsebtn-top: -50px;
|
|
93
91
|
$rte-inline-dropdown-line-height: 14px !default;
|
|
94
92
|
$rte-big-inline-dropdown-line-height: 14px !default;
|
|
95
93
|
$rte-insert-dialog-font-size: 10px;
|
|
96
94
|
$rte-big-insert-dialog-font-size: 10px;
|
|
97
|
-
$rte-table-popup-tablecell-height:
|
|
98
|
-
$rte-table-popup-tablecell-width:
|
|
99
|
-
$rte-table-popup-tablecell-margin:
|
|
100
|
-
$rte-table-popup-row-height :
|
|
101
|
-
$rte-big-table-row-height :
|
|
102
|
-
$rte-big-tablecell-height :
|
|
103
|
-
$rte-big-tablecell-width :
|
|
95
|
+
$rte-table-popup-tablecell-height: 20px;
|
|
96
|
+
$rte-table-popup-tablecell-width: 20px;
|
|
97
|
+
$rte-table-popup-tablecell-margin: 2px;
|
|
98
|
+
$rte-table-popup-row-height : 24px;
|
|
99
|
+
$rte-big-table-row-height : 28px;
|
|
100
|
+
$rte-big-tablecell-height : 24px;
|
|
101
|
+
$rte-big-tablecell-width : 24px;
|
|
104
102
|
$rte-toolbar-item-frist-last-child-margin: 0;
|
|
105
103
|
$rte-big-toolbar-item-frist-last-child-margin: 0;
|
|
106
104
|
$rte-toolbar-expaned-padding: 0 7px;
|
|
107
105
|
$rte-toolbar-expaned-padding-hover: 0 7px;
|
|
108
|
-
$rte-big-toolbar-expaned-padding: 0 10px;
|
|
109
106
|
$rte-formatlists-dropdown-line-height: 1;
|
|
110
107
|
$rte-big-formatlists-dropdown-line-height: 1;
|
|
111
108
|
$rte-quick-toolbar-item-margin: 0 8px !default;
|
|
@@ -175,7 +172,7 @@ $rte-drop-text-clr: rgba($on-secondary-container) !default;
|
|
|
175
172
|
$rte-default-character-count-color: rgba($placeholder-text-color) !default;
|
|
176
173
|
$rte-warning-character-count-color: rgba($warning) !default;
|
|
177
174
|
$rte-error-character-count-color: rgba($danger) !default;
|
|
178
|
-
$rte-img-border:
|
|
175
|
+
$rte-img-border: dashed 2px rgba($primary) !default;
|
|
179
176
|
$rte-font-family: $font-family !default;
|
|
180
177
|
$rte-content-color: rgba($content-text-color) !default;
|
|
181
178
|
$rte-content-blockquote-border-left-color: solid 2px rgba($content-text-color) !default;
|
|
@@ -233,8 +230,7 @@ $rte-big-edit-table-dlg-max-height: 373px !default;
|
|
|
233
230
|
$toolbar-expand-icon-min-height: 40px !default;
|
|
234
231
|
$rte-align-caret-icon-min-width: 24px !default;
|
|
235
232
|
$rte-drop-text-width: 280px !default;
|
|
236
|
-
$rte-drop-text-height:
|
|
237
|
-
$rte-big-drop-text-height: 140px !default;
|
|
233
|
+
$rte-drop-text-height: 185px !default;
|
|
238
234
|
$rte-drop-text-mobile-width: 250px !default;
|
|
239
235
|
$rte-tbar-default-bg: $content-bg-color-alt2 !default;
|
|
240
236
|
$rte-extended-toolbar-items-padding: 0;
|
|
@@ -248,7 +244,7 @@ $rte-big-dropdown-btn-color-content-padding: 9.5px !default;
|
|
|
248
244
|
$rte-tb-expended-min-height: 48px !default;
|
|
249
245
|
$rte-big-tb-expended-min-height: 56px !default;
|
|
250
246
|
$rte-tb-expended-padding-left: 1px !default;
|
|
251
|
-
$rte-tb-expended-hover-padding-left:
|
|
247
|
+
$rte-tb-expended-hover-padding-left: 0 !default;
|
|
252
248
|
$rte-toolbar-expaned-minwidth: 18px !default;
|
|
253
249
|
|
|
254
250
|
$rte-emoji-pop-background: $flyout-bg-color;
|
|
@@ -4,7 +4,7 @@ $rte-2px-border-size: 2px !default;
|
|
|
4
4
|
$rte-border-type: solid !default;
|
|
5
5
|
$rte-list-btn-flex: column !default;
|
|
6
6
|
$rte-list-btn-line-height: 30px !default;
|
|
7
|
-
$rte-big-list-btn-line-height:
|
|
7
|
+
$rte-big-list-btn-line-height: 36px !default;
|
|
8
8
|
$rte-split-btn-line-height: 30px !default;
|
|
9
9
|
$rte-big-split-btn-line-height: 38px !default;
|
|
10
10
|
$rte-big-quick-item-btn-width: 38px !default;
|
|
@@ -12,7 +12,7 @@ $rte-quick-item-btn-width: 26px !default;
|
|
|
12
12
|
$rte-big-quick-item-btn-height: 38px !default;
|
|
13
13
|
$rte-quick-item-btn-height: 30px !default;
|
|
14
14
|
$rte-big-quick-item-padding: 12px !default;
|
|
15
|
-
$rte-quick-item-padding:
|
|
15
|
+
$rte-quick-item-padding: 3px !default;
|
|
16
16
|
$rte-quick-item-icon-min-width: 24px !default;
|
|
17
17
|
$rte-big-quick-item-line-height: $leading-normal !default;
|
|
18
18
|
$rte-content-padding: 12px !default;
|
|
@@ -34,7 +34,7 @@ $rte-big-tb-items-margin-left: 3px !default;
|
|
|
34
34
|
$rte-tb-items-margin-left: 7px !default;
|
|
35
35
|
$rte-big-tb-items-padding-left: 3px !default;
|
|
36
36
|
$rte-tb-items-padding-left: 7px !default;
|
|
37
|
-
$rte-active-tb-item-btn-padding: 0
|
|
37
|
+
$rte-active-tb-item-btn-padding: 0 !default;
|
|
38
38
|
$rte-split-btn-bar-size: 0 !default;
|
|
39
39
|
$rte-split-btn-active-color-icon-line-height: 30px !default;
|
|
40
40
|
$rte-big-split-btn-active-color-icon-line-height: 35px !default;
|
|
@@ -45,31 +45,30 @@ $rte-drop-btn-padding-left: 7px !default;
|
|
|
45
45
|
$dropdown-btn-font-size: $text-sm;
|
|
46
46
|
$dropdown-btn-big-font-size: $text-base;
|
|
47
47
|
$rte-drop-btn-padding-right: 2.5px !default;
|
|
48
|
-
$rte-drop-btn-action-padding-left:
|
|
49
|
-
$rte-drop-btn-action-padding-right:
|
|
48
|
+
$rte-drop-btn-action-padding-left: 6px !default;
|
|
49
|
+
$rte-drop-btn-action-padding-right: 1.5px !default;
|
|
50
50
|
$rte-big-drop-btn-padding-left: 10px !default;
|
|
51
51
|
$rte-big-drop-btn-padding-right: 6px !default;
|
|
52
|
-
$rte-big-drop-btn-action-padding-left:
|
|
53
|
-
$rte-big-drop-btn-action-padding-right:
|
|
54
|
-
$rte-colorpicker-parent-padding:
|
|
52
|
+
$rte-big-drop-btn-action-padding-left: 9px !default;
|
|
53
|
+
$rte-big-drop-btn-action-padding-right: 5px !default;
|
|
54
|
+
$rte-colorpicker-parent-padding: .8px !default;
|
|
55
55
|
$rte-colorpicker-parent-padding-hover: 0 !default;
|
|
56
56
|
$rte-colorpicker-parent-padding-active-hover: 0 !default;
|
|
57
57
|
$rte-dropdown-btn-color-content-height: 30px !default;
|
|
58
|
-
$rte-big-dropdown-btn-color-content-height:
|
|
58
|
+
$rte-big-dropdown-btn-color-content-height: 36px !default;
|
|
59
59
|
$rte-font-icon-width: 30px !default;
|
|
60
60
|
$rte-font-arrow-width: 18px !default;
|
|
61
61
|
$rte-font-arrow-touch-width: 20px !default;
|
|
62
62
|
$rte-font-icon-line-height: $leading-none !default;
|
|
63
63
|
$rte-placeholder-line-height: $leading-normal !default;
|
|
64
|
-
$rte-big-active-tb-item-btn-padding: 0
|
|
64
|
+
$rte-big-active-tb-item-btn-padding: 0 6px !default;
|
|
65
65
|
$rte-table-popup-padding: 18px 18px 8px 22px !default;
|
|
66
|
-
$rte-table-popup-border: 1px solid $cool-gray-
|
|
66
|
+
$rte-table-popup-border: 1px solid $cool-gray-600 !default;
|
|
67
67
|
$rte-insert-dialog-label-padding-top: 12px !default;
|
|
68
68
|
$rte-insert-dialog-label-padding-bottom: 3px !default;
|
|
69
69
|
$rte-big-quick-tbar-item-min-height: 38px !default;
|
|
70
70
|
$rte-big-quick-tbar-item-min-width: 38px !default;
|
|
71
|
-
$rte-content-font-size:
|
|
72
|
-
$rte-big-content-font-size: 16px !default;
|
|
71
|
+
$rte-content-font-size: $text-sm !default;
|
|
73
72
|
$rte-dropdown-caret-icon-size: $text-xs !default;
|
|
74
73
|
$rte-big-dropdown-caret-icon-size: $text-sm !default;
|
|
75
74
|
$rte-inline-dropdown-line-height: 30px !default;
|
|
@@ -91,8 +90,7 @@ $rte-default-character-count-opacity: 1;
|
|
|
91
90
|
$rte-droparea-line-height: 10;
|
|
92
91
|
$rte-droparea-browsebtn-height: 36px;
|
|
93
92
|
$rte-droparea-browsebtn-padding: 0 18px;
|
|
94
|
-
$rte-droparea-browsebtn-top: -
|
|
95
|
-
$rte-big-droparea-browsebtn-top: -120px;
|
|
93
|
+
$rte-droparea-browsebtn-top: -50px;
|
|
96
94
|
$rte-insert-dialog-font-size: 15px;
|
|
97
95
|
$rte-big-insert-dialog-font-size: 15px;
|
|
98
96
|
$rte-table-popup-tablecell-height: 14px;
|
|
@@ -104,11 +102,10 @@ $rte-big-tablecell-height : 16px;
|
|
|
104
102
|
$rte-big-tablecell-width : 16px;
|
|
105
103
|
$rte-toolbar-item-frist-last-child-margin: 0;
|
|
106
104
|
$rte-big-toolbar-item-frist-last-child-margin: 0 6px;
|
|
107
|
-
$rte-toolbar-expaned-padding: 0
|
|
108
|
-
$rte-big-toolbar-expaned-padding: 0 8px;
|
|
105
|
+
$rte-toolbar-expaned-padding: 0 5px;
|
|
109
106
|
$rte-toolbar-expaned-padding-hover: 0 4px;
|
|
110
107
|
$rte-formatlists-dropdown-line-height: 20px;
|
|
111
|
-
$rte-big-formatlists-dropdown-line-height:
|
|
108
|
+
$rte-big-formatlists-dropdown-line-height: 30px;
|
|
112
109
|
|
|
113
110
|
//Layout Variables End
|
|
114
111
|
|
|
@@ -126,7 +123,7 @@ $rte-img-popup-box-shadow: $shadow !default;
|
|
|
126
123
|
$rte-img-popup-color: $border-light !default;
|
|
127
124
|
$rte-quick-item-active-bg: $secondary-bg-color-pressed !default;
|
|
128
125
|
$rte-quick-item-active-font-color: $icon-color !default;
|
|
129
|
-
$rte-quick-item-border:
|
|
126
|
+
$rte-quick-item-border: 0 !default;
|
|
130
127
|
$rte-quick-item-hover-border-color: $secondary-border-color-hover !default;
|
|
131
128
|
$rte-quick-item-active-border-color: $secondary-border-color-pressed !default;
|
|
132
129
|
$rte-quick-drop-btn-border-color: $content-bg-color-alt2 !default;
|
|
@@ -202,7 +199,7 @@ $rte-border-bottom-right-radius: 0;
|
|
|
202
199
|
$rte-border-bottom-left-radius: 0;
|
|
203
200
|
$rte-big-border-radius: 0;
|
|
204
201
|
$rte-extended-toolbar-items-padding: 0;
|
|
205
|
-
$rte-expand-tbar-hover-bg: $content-bg-color-
|
|
202
|
+
$rte-expand-tbar-hover-bg: $content-bg-color-alt3 !default;
|
|
206
203
|
|
|
207
204
|
//Theme Variables End
|
|
208
205
|
|
|
@@ -229,14 +226,13 @@ $rte-big-file-browser-dlg-max-height: 557px !default;
|
|
|
229
226
|
$rte-big-table-dlg-max-height: 283px !default;
|
|
230
227
|
$rte-big-edit-table-dlg-max-height: 388px !default;
|
|
231
228
|
$rte-drop-text-width: 300px !default;
|
|
232
|
-
$rte-drop-text-height:
|
|
233
|
-
$rte-big-drop-text-height: 140px !default;
|
|
229
|
+
$rte-drop-text-height: 185px !default;
|
|
234
230
|
$rte-drop-text-mobile-width: 250px !default;
|
|
235
231
|
$rte-tbar-default-bg: $content-bg-color-alt2;
|
|
236
232
|
$rte-big-insert-dialog-label-padding-top: 12px;
|
|
237
233
|
$rte-tbar-icon-size: 20px;
|
|
238
234
|
$rte-dropdown-btn-color-content-padding: 1px !default;
|
|
239
|
-
$rte-big-dropdown-btn-color-content-padding:
|
|
235
|
+
$rte-big-dropdown-btn-color-content-padding: 1px !default;
|
|
240
236
|
$rte-tb-expended-min-height: 40px !default;
|
|
241
237
|
$rte-big-tb-expended-min-height: 48px !default;
|
|
242
238
|
$rte-tb-expended-padding-left: 1px !default;
|