@syncfusion/ej2-vue-documenteditor 19.2.60 → 19.3.45
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 +134 -90
- package/dist/ej2-vue-documenteditor.umd.min.js +1 -1
- package/dist/es6/ej2-vue-documenteditor.es2015.js +4 -2
- package/dist/es6/ej2-vue-documenteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-documenteditor.es5.js +4 -2
- package/dist/es6/ej2-vue-documenteditor.es5.js.map +1 -1
- package/dist/global/ej2-vue-documenteditor.min.js +2 -2
- package/package.json +8 -8
- package/src/document-editor/documenteditor.component.js +2 -1
- package/src/document-editor-container/documenteditorcontainer.component.js +2 -1
- package/styles/bootstrap-dark.css +284 -302
- package/styles/bootstrap.css +30 -110
- package/styles/bootstrap4.css +56 -139
- package/styles/bootstrap5-dark.css +5866 -0
- package/styles/bootstrap5-dark.scss +2 -0
- package/styles/bootstrap5.css +5866 -0
- package/styles/bootstrap5.scss +2 -0
- package/styles/document-editor/bootstrap-dark.css +53 -142
- package/styles/document-editor/bootstrap.css +10 -99
- package/styles/document-editor/bootstrap4.css +36 -125
- package/styles/document-editor/bootstrap5-dark.css +3699 -0
- package/styles/document-editor/bootstrap5-dark.scss +1 -0
- package/styles/document-editor/bootstrap5.css +3699 -0
- package/styles/document-editor/bootstrap5.scss +1 -0
- package/styles/document-editor/fabric-dark.css +31 -120
- package/styles/document-editor/fabric.css +10 -99
- package/styles/document-editor/highcontrast.css +15 -104
- package/styles/document-editor/material-dark.css +76 -168
- package/styles/document-editor/material.css +10 -99
- package/styles/document-editor/tailwind-dark.css +63 -61
- package/styles/document-editor/tailwind.css +47 -44
- package/styles/document-editor-container/bootstrap-dark.css +231 -160
- package/styles/document-editor-container/bootstrap.css +20 -11
- package/styles/document-editor-container/bootstrap4.css +20 -14
- package/styles/document-editor-container/bootstrap5-dark.css +2166 -0
- package/styles/document-editor-container/bootstrap5-dark.scss +1 -0
- package/styles/document-editor-container/bootstrap5.css +2166 -0
- package/styles/document-editor-container/bootstrap5.scss +1 -0
- package/styles/document-editor-container/fabric-dark.css +214 -138
- package/styles/document-editor-container/fabric.css +67 -13
- package/styles/document-editor-container/highcontrast-light.css +87 -13
- package/styles/document-editor-container/highcontrast.css +66 -13
- package/styles/document-editor-container/material-dark.css +232 -170
- package/styles/document-editor-container/material.css +67 -15
- package/styles/document-editor-container/tailwind-dark.css +132 -45
- package/styles/document-editor-container/tailwind.css +127 -40
- package/styles/fabric-dark.css +245 -258
- package/styles/fabric.css +77 -112
- package/styles/highcontrast-light.css +87 -13
- package/styles/highcontrast.css +81 -117
- package/styles/material-dark.css +308 -338
- package/styles/material.css +77 -114
- package/styles/tailwind-dark.css +195 -106
- package/styles/tailwind.css +174 -84
|
@@ -467,13 +467,18 @@
|
|
|
467
467
|
font-size: 14px;
|
|
468
468
|
}
|
|
469
469
|
|
|
470
|
+
.e-de-statusbar-pageweb .e-de-printlayout:hover,
|
|
471
|
+
.e-de-statusbar-pageweb .e-de-weblayout:hover {
|
|
472
|
+
font-size: 14px;
|
|
473
|
+
}
|
|
474
|
+
|
|
470
475
|
.e-bigger .e-btn.e-de-statusbar-pageweb {
|
|
471
476
|
padding: 0;
|
|
472
477
|
}
|
|
473
478
|
|
|
474
479
|
.e-bigger .e-de-statusbar-pageweb .e-de-printlayout,
|
|
475
480
|
.e-bigger .e-de-statusbar-pageweb .e-de-weblayout {
|
|
476
|
-
font-size:
|
|
481
|
+
font-size: 16px;
|
|
477
482
|
}
|
|
478
483
|
|
|
479
484
|
.e-de-linespacing {
|
|
@@ -490,8 +495,6 @@
|
|
|
490
495
|
|
|
491
496
|
.e-de-pagenumber-text {
|
|
492
497
|
border: none !important;
|
|
493
|
-
height: 22px !important;
|
|
494
|
-
margin-top: -2px !important;
|
|
495
498
|
}
|
|
496
499
|
|
|
497
500
|
.e-de-pagenumber-input {
|
|
@@ -499,8 +502,7 @@
|
|
|
499
502
|
border: 1px solid #eee;
|
|
500
503
|
border-radius: 2px;
|
|
501
504
|
color: #000;
|
|
502
|
-
|
|
503
|
-
padding: 2px;
|
|
505
|
+
padding: 0px;
|
|
504
506
|
text-align: center;
|
|
505
507
|
width: 22px;
|
|
506
508
|
}
|
|
@@ -523,6 +525,7 @@
|
|
|
523
525
|
|
|
524
526
|
.e-de-ctn-title {
|
|
525
527
|
background-color: #3f51b5;
|
|
528
|
+
border-bottom: none !important;
|
|
526
529
|
color: #fff;
|
|
527
530
|
}
|
|
528
531
|
|
|
@@ -746,10 +749,6 @@
|
|
|
746
749
|
width: 100%;
|
|
747
750
|
}
|
|
748
751
|
|
|
749
|
-
.de-split-button > div:first-child {
|
|
750
|
-
margin-right: 0;
|
|
751
|
-
}
|
|
752
|
-
|
|
753
752
|
.e-de-ctnr-properties-pane-btn {
|
|
754
753
|
width: 75px;
|
|
755
754
|
}
|
|
@@ -1120,6 +1119,52 @@
|
|
|
1120
1119
|
box-shadow: none !important;
|
|
1121
1120
|
}
|
|
1122
1121
|
|
|
1122
|
+
.e-de-ctnr-group-btn-top > button:first-child {
|
|
1123
|
+
border-radius: 0;
|
|
1124
|
+
border-top-left-radius: 4px;
|
|
1125
|
+
}
|
|
1126
|
+
|
|
1127
|
+
.e-de-ctnr-group-btn-top.e-de-rtl > button:first-child {
|
|
1128
|
+
border-top-left-radius: 0;
|
|
1129
|
+
border-top-right-radius: 4px;
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1132
|
+
.e-de-ctnr-group-btn-top > button:last-child {
|
|
1133
|
+
border-radius: 0;
|
|
1134
|
+
border-top-right-radius: 4px;
|
|
1135
|
+
}
|
|
1136
|
+
|
|
1137
|
+
.e-de-ctnr-group-btn-top.e-de-rtl > button:last-child {
|
|
1138
|
+
border-top-left-radius: 4px;
|
|
1139
|
+
border-top-right-radius: 0;
|
|
1140
|
+
}
|
|
1141
|
+
|
|
1142
|
+
.e-de-ctnr-group-btn-middle > button {
|
|
1143
|
+
border-radius: 0;
|
|
1144
|
+
border-top: 0;
|
|
1145
|
+
border-bottom: 0;
|
|
1146
|
+
}
|
|
1147
|
+
|
|
1148
|
+
.e-de-ctnr-group-btn-bottom > button:first-child {
|
|
1149
|
+
border-radius: 0;
|
|
1150
|
+
border-bottom-left-radius: 4px;
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1153
|
+
.e-de-ctnr-group-btn-bottom.e-de-rtl > button:first-child {
|
|
1154
|
+
border-bottom-left-radius: 0;
|
|
1155
|
+
border-bottom-right-radius: 4px;
|
|
1156
|
+
}
|
|
1157
|
+
|
|
1158
|
+
.e-de-ctnr-group-btn-bottom > button:last-child {
|
|
1159
|
+
border-radius: 0;
|
|
1160
|
+
border-bottom-right-radius: 4px;
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1163
|
+
.e-de-ctnr-group-btn-bottom.e-de-rtl > button:last-child {
|
|
1164
|
+
border-bottom-right-radius: 0;
|
|
1165
|
+
border-bottom-left-radius: 4px;
|
|
1166
|
+
}
|
|
1167
|
+
|
|
1123
1168
|
.e-de-toc-template1 {
|
|
1124
1169
|
background: #fafafa;
|
|
1125
1170
|
border: 1px solid #eee;
|
|
@@ -1198,6 +1243,10 @@
|
|
|
1198
1243
|
width: 100px;
|
|
1199
1244
|
}
|
|
1200
1245
|
|
|
1246
|
+
.e-de-ctnr-pg-no span {
|
|
1247
|
+
border: 1px solid transparent;
|
|
1248
|
+
}
|
|
1249
|
+
|
|
1201
1250
|
.e-de-ctnr-pg-no-spellout {
|
|
1202
1251
|
color: #000;
|
|
1203
1252
|
display: -ms-inline-flexbox;
|
|
@@ -1208,6 +1257,10 @@
|
|
|
1208
1257
|
width: calc(100% - 140px);
|
|
1209
1258
|
}
|
|
1210
1259
|
|
|
1260
|
+
.e-de-ctnr-pg-no-spellout span {
|
|
1261
|
+
border: 1px solid transparent;
|
|
1262
|
+
}
|
|
1263
|
+
|
|
1211
1264
|
.e-bigger .e-de-ctnr-pg-no-spellout {
|
|
1212
1265
|
color: #000;
|
|
1213
1266
|
display: -ms-inline-flexbox;
|
|
@@ -1496,8 +1549,8 @@
|
|
|
1496
1549
|
margin-bottom: 16px;
|
|
1497
1550
|
}
|
|
1498
1551
|
|
|
1499
|
-
.e-bigger .e-de-ctnr-segment > div:first-child,
|
|
1500
|
-
.e-bigger .e-de-ctnr-segment > button:first-child {
|
|
1552
|
+
.e-bigger .e-de-ctnr-segment > div:first-child:not(.e-rtl),
|
|
1553
|
+
.e-bigger .e-de-ctnr-segment > button:first-child:not(.e-rtl) {
|
|
1501
1554
|
margin-right: 12px;
|
|
1502
1555
|
}
|
|
1503
1556
|
|
|
@@ -1633,7 +1686,6 @@
|
|
|
1633
1686
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
|
|
1634
1687
|
display: table;
|
|
1635
1688
|
font-size: 13px;
|
|
1636
|
-
font-size: 12px;
|
|
1637
1689
|
margin: 0 6px;
|
|
1638
1690
|
padding: 0;
|
|
1639
1691
|
white-space: normal;
|
|
@@ -1711,9 +1763,8 @@
|
|
|
1711
1763
|
.e-bigger .e-de-ctnr-hglt-color {
|
|
1712
1764
|
font-size: 12px;
|
|
1713
1765
|
font-weight: 400;
|
|
1714
|
-
height:
|
|
1715
|
-
width:
|
|
1716
|
-
border-radius: 4px;
|
|
1766
|
+
height: 22px !important;
|
|
1767
|
+
width: 22px !important;
|
|
1717
1768
|
}
|
|
1718
1769
|
|
|
1719
1770
|
.e-bigger .e-de-ctnr-list {
|
|
@@ -1827,6 +1878,7 @@
|
|
|
1827
1878
|
.e-de-ctn .e-de-bzr-button {
|
|
1828
1879
|
font-size: 12px;
|
|
1829
1880
|
font-weight: 400;
|
|
1881
|
+
background: #fafafa;
|
|
1830
1882
|
}
|
|
1831
1883
|
|
|
1832
1884
|
.e-de-ctn .e-de-bzr-button:active {
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
1
2
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
2
3
|
.e-de-ctnr-close::before {
|
|
3
4
|
color: #d1d5db;
|
|
@@ -527,7 +528,7 @@
|
|
|
527
528
|
}
|
|
528
529
|
|
|
529
530
|
.e-hglt-no-color:hover {
|
|
530
|
-
background-color: #
|
|
531
|
+
background-color: #374151;
|
|
531
532
|
cursor: pointer;
|
|
532
533
|
}
|
|
533
534
|
|
|
@@ -549,8 +550,6 @@
|
|
|
549
550
|
border: 0;
|
|
550
551
|
box-shadow: none;
|
|
551
552
|
float: right;
|
|
552
|
-
height: 33px;
|
|
553
|
-
width: 33px;
|
|
554
553
|
}
|
|
555
554
|
|
|
556
555
|
.e-de-statusbar-pageweb:hover {
|
|
@@ -559,16 +558,17 @@
|
|
|
559
558
|
|
|
560
559
|
.e-de-statusbar-pageweb .e-de-printlayout,
|
|
561
560
|
.e-de-statusbar-pageweb .e-de-weblayout {
|
|
562
|
-
font-size:
|
|
561
|
+
font-size: 18px;
|
|
563
562
|
}
|
|
564
563
|
|
|
565
|
-
.e-
|
|
566
|
-
|
|
564
|
+
.e-de-statusbar-pageweb .e-de-printlayout:hover,
|
|
565
|
+
.e-de-statusbar-pageweb .e-de-weblayout:hover {
|
|
566
|
+
font-size: 18px;
|
|
567
567
|
}
|
|
568
568
|
|
|
569
569
|
.e-bigger .e-de-statusbar-pageweb .e-de-printlayout,
|
|
570
570
|
.e-bigger .e-de-statusbar-pageweb .e-de-weblayout {
|
|
571
|
-
font-size:
|
|
571
|
+
font-size: 18px;
|
|
572
572
|
}
|
|
573
573
|
|
|
574
574
|
.e-de-linespacing {
|
|
@@ -585,8 +585,6 @@
|
|
|
585
585
|
|
|
586
586
|
.e-de-pagenumber-text {
|
|
587
587
|
border: none !important;
|
|
588
|
-
height: 22px !important;
|
|
589
|
-
margin-top: -3px !important;
|
|
590
588
|
}
|
|
591
589
|
|
|
592
590
|
.e-de-pagenumber-input {
|
|
@@ -594,12 +592,17 @@
|
|
|
594
592
|
border: 1px solid #4b5563;
|
|
595
593
|
border-radius: 2px;
|
|
596
594
|
color: #9ca3af;
|
|
597
|
-
|
|
598
|
-
|
|
595
|
+
font-family: inherit;
|
|
596
|
+
font-size: 14px;
|
|
597
|
+
padding: 0px;
|
|
599
598
|
text-align: center;
|
|
600
599
|
width: 22px;
|
|
601
600
|
}
|
|
602
601
|
|
|
602
|
+
.e-bigger .e-de-pagenumber-input {
|
|
603
|
+
font-size: 16px;
|
|
604
|
+
}
|
|
605
|
+
|
|
603
606
|
.e-btn-pageweb-toggle {
|
|
604
607
|
background-color: #4b5563;
|
|
605
608
|
box-shadow: none;
|
|
@@ -622,7 +625,32 @@
|
|
|
622
625
|
|
|
623
626
|
.e-de-ctn-title {
|
|
624
627
|
background-color: #22d3ee;
|
|
628
|
+
border-bottom: none !important;
|
|
625
629
|
color: #000;
|
|
630
|
+
font-size: 14px !important;
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
.e-de-ctn-title button {
|
|
634
|
+
font-size: 14px !important;
|
|
635
|
+
height: 36px !important;
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
.e-de-ctn-title button .e-btn-icon {
|
|
639
|
+
font-size: 16px !important;
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
.e-bigger .e-de-ctn-title {
|
|
643
|
+
font-size: 16px !important;
|
|
644
|
+
height: 40px !important;
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
.e-bigger .e-de-ctn-title button {
|
|
648
|
+
font-size: 16px !important;
|
|
649
|
+
height: auto !important;
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
.e-bigger .e-de-ctn-title button .e-btn-icon {
|
|
653
|
+
font-size: 18px !important;
|
|
626
654
|
}
|
|
627
655
|
|
|
628
656
|
.e-de-tool-ctnr-properties-pane {
|
|
@@ -671,7 +699,7 @@
|
|
|
671
699
|
.e-de-ctnr-toolbar {
|
|
672
700
|
display: -ms-flexbox;
|
|
673
701
|
display: flex;
|
|
674
|
-
height:
|
|
702
|
+
height: 85px;
|
|
675
703
|
width: 100%;
|
|
676
704
|
}
|
|
677
705
|
|
|
@@ -696,11 +724,11 @@
|
|
|
696
724
|
}
|
|
697
725
|
|
|
698
726
|
.e-de-ctnr-segment {
|
|
699
|
-
margin-bottom:
|
|
727
|
+
margin-bottom: 12px;
|
|
700
728
|
}
|
|
701
729
|
|
|
702
730
|
.e-de-insert-del-cell > div:last-child {
|
|
703
|
-
margin-left:
|
|
731
|
+
margin-left: 10px !important;
|
|
704
732
|
}
|
|
705
733
|
|
|
706
734
|
.e-bigger .e-de-ctnr-prop-label,
|
|
@@ -718,11 +746,20 @@
|
|
|
718
746
|
}
|
|
719
747
|
|
|
720
748
|
.e-bigger .e-de-ctnr-group-btn .e-btn .e-btn-icon {
|
|
721
|
-
margin-left: -
|
|
749
|
+
margin-left: -5px;
|
|
722
750
|
}
|
|
723
751
|
|
|
724
|
-
.e-de-ctnr-group-btn .e-btn .e-btn-icon {
|
|
725
|
-
|
|
752
|
+
.e-bigger .e-de-ctnr-group-btn .e-btn .e-btn-icon:not(.e-caret) {
|
|
753
|
+
font-size: 18px;
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
.e-bigger .e-de-pane-rtl .e-de-ctnr-group-btn .e-btn .e-btn-icon {
|
|
757
|
+
margin-left: 0px;
|
|
758
|
+
margin-right: -5px;
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
.e-de-ctnr-group-btn .e-btn .e-btn-icon:not(.e-caret) {
|
|
762
|
+
font-size: 16px;
|
|
726
763
|
}
|
|
727
764
|
|
|
728
765
|
.e-de-property-div-padding .e-de-cellmargin-text {
|
|
@@ -735,29 +772,29 @@
|
|
|
735
772
|
|
|
736
773
|
.e-de-font-clr-picker .e-colorpicker-wrapper:first-child,
|
|
737
774
|
.e-de-font-clr-picker > .e-split-btn-wrapper {
|
|
738
|
-
margin-right:
|
|
775
|
+
margin-right: 10px;
|
|
739
776
|
}
|
|
740
777
|
|
|
741
778
|
.e-de-font-clr-picker.e-rtl .e-colorpicker-wrapper:first-child,
|
|
742
779
|
.e-de-font-clr-picker.e-rtl > .e-split-btn-wrapper {
|
|
743
|
-
margin-left:
|
|
780
|
+
margin-left: 10px;
|
|
744
781
|
margin-right: 0;
|
|
745
782
|
}
|
|
746
783
|
|
|
747
784
|
.e-de-ctnr-segment > div:first-child:not(.e-rtl),
|
|
748
785
|
.e-de-ctnr-segment > button:first-child:not(.e-rtl) {
|
|
749
|
-
margin-right:
|
|
786
|
+
margin-right: 10px;
|
|
750
787
|
}
|
|
751
788
|
|
|
752
789
|
.e-de-ctnr-segment.e-de-ctnr-segment-rtl > div:first-child,
|
|
753
790
|
.e-de-ctnr-segment.e-de-ctnr-segment-rtl > button:first-child {
|
|
754
|
-
margin-left:
|
|
791
|
+
margin-left: 10px;
|
|
755
792
|
margin-right: 0;
|
|
756
793
|
}
|
|
757
794
|
|
|
758
795
|
.e-de-tlbr-wrapper {
|
|
759
796
|
background-color: #374151;
|
|
760
|
-
height:
|
|
797
|
+
height: 85px;
|
|
761
798
|
width: calc(100% - 75px);
|
|
762
799
|
}
|
|
763
800
|
|
|
@@ -767,8 +804,8 @@
|
|
|
767
804
|
font-size: 14px;
|
|
768
805
|
font-weight: 500;
|
|
769
806
|
letter-spacing: 0.05px;
|
|
770
|
-
margin-bottom: 12px;
|
|
771
807
|
line-height: 1.5;
|
|
808
|
+
margin-bottom: 12px;
|
|
772
809
|
opacity: 0.87;
|
|
773
810
|
}
|
|
774
811
|
|
|
@@ -826,7 +863,7 @@
|
|
|
826
863
|
}
|
|
827
864
|
|
|
828
865
|
.e-de-toolbar.e-toolbar .e-toolbar-items {
|
|
829
|
-
height:
|
|
866
|
+
height: 85px;
|
|
830
867
|
}
|
|
831
868
|
|
|
832
869
|
.e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
|
|
@@ -886,10 +923,6 @@
|
|
|
886
923
|
width: 100%;
|
|
887
924
|
}
|
|
888
925
|
|
|
889
|
-
.de-split-button > div:first-child {
|
|
890
|
-
margin-right: 8px;
|
|
891
|
-
}
|
|
892
|
-
|
|
893
926
|
.e-de-ctnr-properties-pane-btn {
|
|
894
927
|
width: 75px;
|
|
895
928
|
}
|
|
@@ -925,12 +958,12 @@
|
|
|
925
958
|
|
|
926
959
|
.e-de-showhide-btn {
|
|
927
960
|
border: 0;
|
|
928
|
-
height:
|
|
961
|
+
height: 85px;
|
|
929
962
|
}
|
|
930
963
|
|
|
931
964
|
.e-de-showhide-btn-rtl {
|
|
932
965
|
border: 0;
|
|
933
|
-
height:
|
|
966
|
+
height: 85px;
|
|
934
967
|
}
|
|
935
968
|
|
|
936
969
|
.e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
|
|
@@ -1082,8 +1115,9 @@
|
|
|
1082
1115
|
.e-de-ctnr-hglt-color {
|
|
1083
1116
|
font-size: 12px;
|
|
1084
1117
|
font-weight: 400;
|
|
1085
|
-
height:
|
|
1086
|
-
width:
|
|
1118
|
+
height: 20px !important;
|
|
1119
|
+
width: 20px !important;
|
|
1120
|
+
border-radius: 4px;
|
|
1087
1121
|
}
|
|
1088
1122
|
|
|
1089
1123
|
.e-de-font-clr-picker > div div button,
|
|
@@ -1253,6 +1287,52 @@
|
|
|
1253
1287
|
box-shadow: none !important;
|
|
1254
1288
|
}
|
|
1255
1289
|
|
|
1290
|
+
.e-de-ctnr-group-btn-top > button:first-child {
|
|
1291
|
+
border-radius: 0;
|
|
1292
|
+
border-top-left-radius: 4px;
|
|
1293
|
+
}
|
|
1294
|
+
|
|
1295
|
+
.e-de-ctnr-group-btn-top.e-de-rtl > button:first-child {
|
|
1296
|
+
border-top-left-radius: 0;
|
|
1297
|
+
border-top-right-radius: 4px;
|
|
1298
|
+
}
|
|
1299
|
+
|
|
1300
|
+
.e-de-ctnr-group-btn-top > button:last-child {
|
|
1301
|
+
border-radius: 0;
|
|
1302
|
+
border-top-right-radius: 4px;
|
|
1303
|
+
}
|
|
1304
|
+
|
|
1305
|
+
.e-de-ctnr-group-btn-top.e-de-rtl > button:last-child {
|
|
1306
|
+
border-top-left-radius: 4px;
|
|
1307
|
+
border-top-right-radius: 0;
|
|
1308
|
+
}
|
|
1309
|
+
|
|
1310
|
+
.e-de-ctnr-group-btn-middle > button {
|
|
1311
|
+
border-radius: 0;
|
|
1312
|
+
border-top: 0;
|
|
1313
|
+
border-bottom: 0;
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1316
|
+
.e-de-ctnr-group-btn-bottom > button:first-child {
|
|
1317
|
+
border-radius: 0;
|
|
1318
|
+
border-bottom-left-radius: 4px;
|
|
1319
|
+
}
|
|
1320
|
+
|
|
1321
|
+
.e-de-ctnr-group-btn-bottom.e-de-rtl > button:first-child {
|
|
1322
|
+
border-bottom-left-radius: 0;
|
|
1323
|
+
border-bottom-right-radius: 4px;
|
|
1324
|
+
}
|
|
1325
|
+
|
|
1326
|
+
.e-de-ctnr-group-btn-bottom > button:last-child {
|
|
1327
|
+
border-radius: 0;
|
|
1328
|
+
border-bottom-right-radius: 4px;
|
|
1329
|
+
}
|
|
1330
|
+
|
|
1331
|
+
.e-de-ctnr-group-btn-bottom.e-de-rtl > button:last-child {
|
|
1332
|
+
border-bottom-right-radius: 0;
|
|
1333
|
+
border-bottom-left-radius: 4px;
|
|
1334
|
+
}
|
|
1335
|
+
|
|
1256
1336
|
.e-de-toc-template1 {
|
|
1257
1337
|
background: #fff;
|
|
1258
1338
|
border: 1px solid #4b5563;
|
|
@@ -1318,7 +1398,7 @@
|
|
|
1318
1398
|
background-color: #374151;
|
|
1319
1399
|
display: -ms-flexbox;
|
|
1320
1400
|
display: flex;
|
|
1321
|
-
padding-top:
|
|
1401
|
+
padding-top: 0;
|
|
1322
1402
|
width: 100%;
|
|
1323
1403
|
}
|
|
1324
1404
|
|
|
@@ -1326,30 +1406,38 @@
|
|
|
1326
1406
|
color: #9ca3af;
|
|
1327
1407
|
display: -ms-inline-flexbox;
|
|
1328
1408
|
display: inline-flex;
|
|
1329
|
-
font-size:
|
|
1409
|
+
font-size: 14px;
|
|
1330
1410
|
height: 100%;
|
|
1331
1411
|
padding-top: 8px;
|
|
1332
1412
|
width: 110px;
|
|
1333
1413
|
}
|
|
1334
1414
|
|
|
1415
|
+
.e-de-ctnr-pg-no span {
|
|
1416
|
+
border: 1px solid transparent;
|
|
1417
|
+
}
|
|
1418
|
+
|
|
1335
1419
|
.e-de-ctnr-pg-no-spellout {
|
|
1336
1420
|
color: #9ca3af;
|
|
1337
1421
|
display: -ms-inline-flexbox;
|
|
1338
1422
|
display: inline-flex;
|
|
1339
|
-
font-size:
|
|
1423
|
+
font-size: 14px;
|
|
1340
1424
|
height: 100%;
|
|
1341
1425
|
padding-top: 8px;
|
|
1342
|
-
width: calc(100% -
|
|
1426
|
+
width: calc(100% - 170px);
|
|
1427
|
+
}
|
|
1428
|
+
|
|
1429
|
+
.e-de-ctnr-pg-no-spellout span {
|
|
1430
|
+
border: 1px solid transparent;
|
|
1343
1431
|
}
|
|
1344
1432
|
|
|
1345
1433
|
.e-bigger .e-de-ctnr-pg-no-spellout {
|
|
1346
1434
|
color: #9ca3af;
|
|
1347
1435
|
display: -ms-inline-flexbox;
|
|
1348
1436
|
display: inline-flex;
|
|
1349
|
-
font-size:
|
|
1437
|
+
font-size: 16px;
|
|
1350
1438
|
height: 100%;
|
|
1351
|
-
padding-top:
|
|
1352
|
-
width: calc(100% -
|
|
1439
|
+
padding-top: 7px;
|
|
1440
|
+
width: calc(100% - 205px);
|
|
1353
1441
|
}
|
|
1354
1442
|
|
|
1355
1443
|
.e-de-statusbar-zoom-spell {
|
|
@@ -1503,7 +1591,7 @@
|
|
|
1503
1591
|
}
|
|
1504
1592
|
|
|
1505
1593
|
.e-bigger .de-split-button > div:first-child {
|
|
1506
|
-
margin-right:
|
|
1594
|
+
margin-right: 0;
|
|
1507
1595
|
}
|
|
1508
1596
|
|
|
1509
1597
|
.e-bigger .e-de-border-clr-picker .e-split-btn-wrapper > button:first-child {
|
|
@@ -1646,8 +1734,8 @@
|
|
|
1646
1734
|
margin-right: 0;
|
|
1647
1735
|
}
|
|
1648
1736
|
|
|
1649
|
-
.e-bigger .e-de-ctnr-segment > div:first-child,
|
|
1650
|
-
.e-bigger .e-de-ctnr-segment > button:first-child {
|
|
1737
|
+
.e-bigger .e-de-ctnr-segment > div:first-child:not(.e-rtl),
|
|
1738
|
+
.e-bigger .e-de-ctnr-segment > button:first-child:not(.e-rtl) {
|
|
1651
1739
|
margin-right: 16px;
|
|
1652
1740
|
}
|
|
1653
1741
|
|
|
@@ -1850,8 +1938,8 @@
|
|
|
1850
1938
|
.e-bigger .e-de-ctnr-hglt-color {
|
|
1851
1939
|
font-size: 12px;
|
|
1852
1940
|
font-weight: 400;
|
|
1853
|
-
height:
|
|
1854
|
-
width:
|
|
1941
|
+
height: 24px !important;
|
|
1942
|
+
width: 24px !important;
|
|
1855
1943
|
border-radius: 4px;
|
|
1856
1944
|
}
|
|
1857
1945
|
|
|
@@ -1968,7 +2056,6 @@
|
|
|
1968
2056
|
background: #4b5563;
|
|
1969
2057
|
border: none;
|
|
1970
2058
|
border-radius: 4px;
|
|
1971
|
-
color: #fff;
|
|
1972
2059
|
}
|
|
1973
2060
|
|
|
1974
2061
|
.e-de-ctn .e-de-ctnr-toolbar .e-de-bzr-button .e-btn-icon {
|