@syncfusion/ej2-angular-documenteditor 21.2.10 → 22.1.34
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/README.md +45 -137
- package/esm2020/src/document-editor/documenteditor-all.module.mjs +4 -7
- package/esm2020/src/document-editor/documenteditor.component.mjs +4 -11
- package/esm2020/src/document-editor-container/documenteditorcontainer.component.mjs +4 -4
- package/esm2020/src/index.mjs +2 -2
- package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs +10 -20
- package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs.map +1 -1
- package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs +10 -20
- package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs.map +1 -1
- package/license +10 -0
- package/package.json +18 -8
- package/schematics/utils/lib-details.ts +2 -2
- package/src/document-editor/documenteditor-all.module.d.ts +0 -1
- package/src/document-editor/documenteditor.component.d.ts +1 -2
- package/src/document-editor-container/documenteditorcontainer.component.d.ts +1 -2
- package/src/index.d.ts +1 -1
- package/styles/bootstrap-dark.css +102 -37
- package/styles/bootstrap.css +106 -37
- package/styles/bootstrap4.css +110 -37
- package/styles/bootstrap5-dark.css +102 -37
- package/styles/bootstrap5.css +102 -37
- package/styles/document-editor/_material3-dark-definition.scss +1 -0
- package/styles/document-editor/_material3-definition.scss +560 -0
- package/styles/document-editor/_theme.scss +68 -3
- package/styles/document-editor/bootstrap-dark.css +6 -0
- package/styles/document-editor/bootstrap.css +10 -0
- package/styles/document-editor/bootstrap4.css +14 -0
- package/styles/document-editor/bootstrap5-dark.css +6 -0
- package/styles/document-editor/bootstrap5.css +6 -0
- package/styles/document-editor/fabric-dark.css +6 -0
- package/styles/document-editor/fabric.css +10 -0
- package/styles/document-editor/fluent-dark.css +6 -0
- package/styles/document-editor/fluent.css +6 -0
- package/styles/document-editor/highcontrast.css +6 -0
- package/styles/document-editor/icons/_material3-dark.scss +1 -0
- package/styles/document-editor/icons/_material3.scss +6 -6
- package/styles/document-editor/material-dark.css +6 -0
- package/styles/document-editor/material.css +6 -0
- package/styles/document-editor/material3-dark.css +3971 -0
- package/styles/document-editor/material3-dark.scss +5 -0
- package/styles/document-editor/material3.css +4027 -0
- package/styles/document-editor/material3.scss +5 -0
- package/styles/document-editor/tailwind-dark.css +6 -0
- package/styles/document-editor/tailwind.css +6 -0
- package/styles/document-editor-container/_bootstrap-dark-definition.scss +1 -0
- package/styles/document-editor-container/_bootstrap-definition.scss +1 -0
- package/styles/document-editor-container/_bootstrap4-definition.scss +1 -0
- package/styles/document-editor-container/_bootstrap5-definition.scss +1 -0
- package/styles/document-editor-container/_fabric-dark-definition.scss +1 -0
- package/styles/document-editor-container/_fabric-definition.scss +1 -0
- package/styles/document-editor-container/_fluent-definition.scss +1 -0
- package/styles/document-editor-container/_fusionnew-definition.scss +1 -0
- package/styles/document-editor-container/_highcontrast-definition.scss +1 -0
- package/styles/document-editor-container/_highcontrast-light-definition.scss +1 -0
- package/styles/document-editor-container/_material-dark-definition.scss +2 -1
- package/styles/document-editor-container/_material-definition.scss +1 -0
- package/styles/document-editor-container/_material3-dark-definition.scss +1 -0
- package/styles/document-editor-container/_material3-definition.scss +163 -0
- package/styles/document-editor-container/_tailwind-definition.scss +1 -0
- package/styles/document-editor-container/_theme.scss +271 -52
- package/styles/document-editor-container/bootstrap-dark.css +96 -37
- package/styles/document-editor-container/bootstrap.css +96 -37
- package/styles/document-editor-container/bootstrap4.css +96 -37
- package/styles/document-editor-container/bootstrap5-dark.css +96 -37
- package/styles/document-editor-container/bootstrap5.css +96 -37
- package/styles/document-editor-container/fabric-dark.css +96 -37
- package/styles/document-editor-container/fabric.css +96 -37
- package/styles/document-editor-container/fluent-dark.css +96 -37
- package/styles/document-editor-container/fluent.css +96 -37
- package/styles/document-editor-container/highcontrast-light.css +96 -37
- package/styles/document-editor-container/highcontrast.css +96 -37
- package/styles/document-editor-container/icons/_bootstrap-dark.scss +15 -0
- package/styles/document-editor-container/icons/_bootstrap.scss +15 -0
- package/styles/document-editor-container/icons/_bootstrap4.scss +15 -0
- package/styles/document-editor-container/icons/_bootstrap5.scss +15 -0
- package/styles/document-editor-container/icons/_fabric-dark.scss +15 -0
- package/styles/document-editor-container/icons/_fabric.scss +15 -0
- package/styles/document-editor-container/icons/_fluent.scss +15 -0
- package/styles/document-editor-container/icons/_fusionnew.scss +15 -0
- package/styles/document-editor-container/icons/_highcontrast-light.scss +15 -0
- package/styles/document-editor-container/icons/_highcontrast.scss +15 -0
- package/styles/document-editor-container/icons/_material-dark.scss +15 -0
- package/styles/document-editor-container/icons/_material.scss +15 -0
- package/styles/document-editor-container/icons/_material3-dark.scss +1 -0
- package/styles/document-editor-container/icons/_material3.scss +29 -15
- package/styles/document-editor-container/icons/_tailwind-dark.scss +15 -0
- package/styles/document-editor-container/icons/_tailwind.scss +15 -0
- package/styles/document-editor-container/material-dark.css +101 -42
- package/styles/document-editor-container/material.css +97 -37
- package/styles/document-editor-container/material3-dark.css +2178 -0
- package/styles/document-editor-container/material3-dark.scss +6 -0
- package/styles/document-editor-container/material3.css +2234 -0
- package/styles/document-editor-container/material3.scss +6 -0
- package/styles/document-editor-container/tailwind-dark.css +95 -36
- package/styles/document-editor-container/tailwind.css +95 -36
- package/styles/fabric-dark.css +102 -37
- package/styles/fabric.css +106 -37
- package/styles/fluent-dark.css +102 -37
- package/styles/fluent.css +102 -37
- package/styles/highcontrast-light.css +96 -37
- package/styles/highcontrast.css +102 -37
- package/styles/material-dark.css +107 -42
- package/styles/material.css +103 -37
- package/styles/material3-dark.css +6094 -0
- package/styles/material3-dark.scss +4 -0
- package/styles/material3.css +6150 -0
- package/styles/material3.scss +4 -0
- package/styles/tailwind-dark.css +101 -36
- package/styles/tailwind.css +101 -36
- package/schematics/collection.json +0 -15
- package/schematics/generators/documenteditorcontainer-default/index.d.ts +0 -3
- package/schematics/generators/documenteditorcontainer-default/index.js +0 -8
- package/schematics/generators/documenteditorcontainer-default/sample-details.d.ts +0 -5
- package/schematics/generators/documenteditorcontainer-default/sample-details.js +0 -7
- package/schematics/generators/documenteditorcontainer-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -3
- package/schematics/generators/documenteditorcontainer-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -8
- package/schematics/generators/documenteditorcontainer-default/schema.d.ts +0 -3
- package/schematics/generators/documenteditorcontainer-default/schema.js +0 -2
- package/schematics/generators/documenteditorcontainer-default/schema.json +0 -125
- package/schematics/ng-add/index.d.ts +0 -3
- package/schematics/ng-add/index.js +0 -9
- package/schematics/ng-add/schema.d.ts +0 -13
- package/schematics/ng-add/schema.js +0 -2
- package/schematics/ng-add/schema.json +0 -34
- package/schematics/tsconfig.json +0 -25
- package/schematics/utils/lib-details.d.ts +0 -4
- package/schematics/utils/lib-details.js +0 -6
|
@@ -399,6 +399,21 @@
|
|
|
399
399
|
font-family: "e-icons";
|
|
400
400
|
}
|
|
401
401
|
|
|
402
|
+
.e-de-e-paragraph-style-mark::before {
|
|
403
|
+
content: "\e353";
|
|
404
|
+
font-family: "e-icons";
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
.e-de-e-character-style-mark::before {
|
|
408
|
+
content: "\e980";
|
|
409
|
+
font-family: "e-icons";
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
.e-de-e-linked-style-mark::before {
|
|
413
|
+
content: "\e981";
|
|
414
|
+
font-family: "e-icons";
|
|
415
|
+
}
|
|
416
|
+
|
|
402
417
|
.e-de-ctnr-columns::before {
|
|
403
418
|
content: "\e968";
|
|
404
419
|
font-family: "e-icons";
|
|
@@ -531,6 +546,46 @@
|
|
|
531
546
|
height: 100%;
|
|
532
547
|
}
|
|
533
548
|
|
|
549
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
|
|
550
|
+
box-shadow: none;
|
|
551
|
+
height: 32px;
|
|
552
|
+
}
|
|
553
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
|
|
554
|
+
box-shadow: none;
|
|
555
|
+
}
|
|
556
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
|
|
557
|
+
box-shadow: none;
|
|
558
|
+
}
|
|
559
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
560
|
+
box-shadow: none;
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
.e-de-ctnr-group-btn-middle button {
|
|
564
|
+
border-radius: 0px;
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
.de-tbl-fill-clr .e-dropdown-btn.e-btn {
|
|
568
|
+
box-shadow: none;
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button,
|
|
572
|
+
.e-de-ctn .e-de-status-bar button {
|
|
573
|
+
box-shadow: none;
|
|
574
|
+
height: 32px;
|
|
575
|
+
}
|
|
576
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:focus,
|
|
577
|
+
.e-de-ctn .e-de-status-bar button:focus {
|
|
578
|
+
box-shadow: none;
|
|
579
|
+
}
|
|
580
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:active,
|
|
581
|
+
.e-de-ctn .e-de-status-bar button:active {
|
|
582
|
+
box-shadow: none;
|
|
583
|
+
}
|
|
584
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:hover,
|
|
585
|
+
.e-de-ctn .e-de-status-bar button:hover {
|
|
586
|
+
box-shadow: none;
|
|
587
|
+
}
|
|
588
|
+
|
|
534
589
|
.e-de-statusbar-pageweb {
|
|
535
590
|
background: #000;
|
|
536
591
|
border: 0;
|
|
@@ -568,7 +623,10 @@
|
|
|
568
623
|
}
|
|
569
624
|
|
|
570
625
|
.e-de-listview-icon {
|
|
626
|
+
height: auto;
|
|
627
|
+
width: auto;
|
|
571
628
|
line-height: 22px;
|
|
629
|
+
margin-right: 12px;
|
|
572
630
|
}
|
|
573
631
|
|
|
574
632
|
.e-de-linespacing {
|
|
@@ -639,14 +697,22 @@
|
|
|
639
697
|
.e-de-statusbar-separator {
|
|
640
698
|
border-left: 1px solid #dadada;
|
|
641
699
|
height: 16px;
|
|
642
|
-
margin-left:
|
|
700
|
+
margin-left: 7.5px;
|
|
701
|
+
margin-right: 7.5px;
|
|
702
|
+
margin-top: 10px;
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
.e-bigger .e-de-statusbar-separator {
|
|
706
|
+
border-left: 1px solid #dadada;
|
|
707
|
+
height: 16px;
|
|
708
|
+
margin-left: 7.5px;
|
|
709
|
+
margin-right: 7.5px;
|
|
643
710
|
margin-top: 10px;
|
|
644
711
|
}
|
|
645
712
|
|
|
646
713
|
.e-de-statusbar-spellcheck {
|
|
647
714
|
border-radius: 2px;
|
|
648
715
|
font-weight: 400;
|
|
649
|
-
margin-left: 7.5px;
|
|
650
716
|
}
|
|
651
717
|
|
|
652
718
|
.e-de-ctn {
|
|
@@ -659,7 +725,6 @@
|
|
|
659
725
|
|
|
660
726
|
.e-bigger .e-de-statusbar-spellcheck {
|
|
661
727
|
border-radius: 2px;
|
|
662
|
-
margin-left: 7.5px;
|
|
663
728
|
}
|
|
664
729
|
|
|
665
730
|
.e-de-ctnr-toolbar {
|
|
@@ -909,6 +974,7 @@
|
|
|
909
974
|
}
|
|
910
975
|
|
|
911
976
|
.e-de-review-pane {
|
|
977
|
+
background: #000;
|
|
912
978
|
border-left: 1px solid #e1e1e1;
|
|
913
979
|
height: 100%;
|
|
914
980
|
min-height: 200px;
|
|
@@ -926,34 +992,6 @@
|
|
|
926
992
|
width: 272px;
|
|
927
993
|
}
|
|
928
994
|
|
|
929
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
|
|
930
|
-
box-shadow: none;
|
|
931
|
-
height: 32px;
|
|
932
|
-
}
|
|
933
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
|
|
934
|
-
box-shadow: none;
|
|
935
|
-
}
|
|
936
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
|
|
937
|
-
box-shadow: none;
|
|
938
|
-
}
|
|
939
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
940
|
-
box-shadow: none;
|
|
941
|
-
}
|
|
942
|
-
|
|
943
|
-
.e-de-ctnr-group-btn button {
|
|
944
|
-
box-shadow: none;
|
|
945
|
-
height: 32px;
|
|
946
|
-
}
|
|
947
|
-
.e-de-ctnr-group-btn button:focus {
|
|
948
|
-
box-shadow: none;
|
|
949
|
-
}
|
|
950
|
-
.e-de-ctnr-group-btn button:active {
|
|
951
|
-
box-shadow: none;
|
|
952
|
-
}
|
|
953
|
-
.e-de-ctnr-group-btn button:hover {
|
|
954
|
-
box-shadow: none;
|
|
955
|
-
}
|
|
956
|
-
|
|
957
995
|
.e-de-property-div-padding {
|
|
958
996
|
border-bottom: 0.5px solid #e0e0e0;
|
|
959
997
|
padding: 12.5px;
|
|
@@ -1077,7 +1115,7 @@
|
|
|
1077
1115
|
}
|
|
1078
1116
|
|
|
1079
1117
|
.e-de-list-header-presetmenu .e-de-list-line {
|
|
1080
|
-
border-bottom: 1px solid #ccc;
|
|
1118
|
+
border-bottom: 1px solid #ccc !important;
|
|
1081
1119
|
margin-left: 5px;
|
|
1082
1120
|
width: 100%;
|
|
1083
1121
|
}
|
|
@@ -1146,10 +1184,10 @@
|
|
|
1146
1184
|
}
|
|
1147
1185
|
|
|
1148
1186
|
.e-de-list-container {
|
|
1149
|
-
background: #000;
|
|
1150
1187
|
border: 1px solid #ccc;
|
|
1151
1188
|
border-radius: 2px;
|
|
1152
1189
|
box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
|
|
1190
|
+
background: #000;
|
|
1153
1191
|
box-sizing: border-box;
|
|
1154
1192
|
display: inline-block;
|
|
1155
1193
|
line-height: normal;
|
|
@@ -1431,7 +1469,7 @@
|
|
|
1431
1469
|
}
|
|
1432
1470
|
|
|
1433
1471
|
.e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
|
|
1434
|
-
height:
|
|
1472
|
+
height: 36px !important;
|
|
1435
1473
|
}
|
|
1436
1474
|
|
|
1437
1475
|
.e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
|
|
@@ -1458,7 +1496,10 @@
|
|
|
1458
1496
|
margin-left: 12px;
|
|
1459
1497
|
}
|
|
1460
1498
|
.e-rtl .e-de-listview-icon {
|
|
1499
|
+
height: auto;
|
|
1500
|
+
width: auto;
|
|
1461
1501
|
line-height: 22px;
|
|
1502
|
+
margin-left: 12px;
|
|
1462
1503
|
}
|
|
1463
1504
|
|
|
1464
1505
|
.e-bigger .de-split-button > div:first-child {
|
|
@@ -1569,7 +1610,6 @@
|
|
|
1569
1610
|
height: 82px;
|
|
1570
1611
|
}
|
|
1571
1612
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
|
|
1572
|
-
height: 25px;
|
|
1573
1613
|
margin: 0 7.5px;
|
|
1574
1614
|
}
|
|
1575
1615
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
|
|
@@ -1671,6 +1711,19 @@
|
|
|
1671
1711
|
.e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
1672
1712
|
box-shadow: none;
|
|
1673
1713
|
}
|
|
1714
|
+
.e-bigger .e-de-status-bar button {
|
|
1715
|
+
height: 38px;
|
|
1716
|
+
box-shadow: none;
|
|
1717
|
+
}
|
|
1718
|
+
.e-bigger .e-de-status-bar button:focus {
|
|
1719
|
+
box-shadow: none;
|
|
1720
|
+
}
|
|
1721
|
+
.e-bigger .e-de-status-bar button:active {
|
|
1722
|
+
box-shadow: none;
|
|
1723
|
+
}
|
|
1724
|
+
.e-bigger .e-de-status-bar button:hover {
|
|
1725
|
+
box-shadow: none;
|
|
1726
|
+
}
|
|
1674
1727
|
.e-bigger .e-de-ctnr-group-btn button {
|
|
1675
1728
|
box-shadow: none;
|
|
1676
1729
|
height: 38px;
|
|
@@ -1784,18 +1837,18 @@
|
|
|
1784
1837
|
margin-left: 10px;
|
|
1785
1838
|
}
|
|
1786
1839
|
.e-bigger .e-de-status-bar {
|
|
1787
|
-
background
|
|
1840
|
+
background: #000;
|
|
1788
1841
|
display: -ms-flexbox;
|
|
1789
1842
|
display: flex;
|
|
1790
1843
|
padding-top: 1.5px;
|
|
1791
1844
|
width: 100%;
|
|
1792
1845
|
}
|
|
1793
1846
|
.e-bigger .e-de-statusbar-zoom {
|
|
1794
|
-
background-color: #000;
|
|
1795
1847
|
border: 0;
|
|
1796
1848
|
color: #fff;
|
|
1797
1849
|
float: right;
|
|
1798
1850
|
height: 34px;
|
|
1851
|
+
background-color: #000;
|
|
1799
1852
|
}
|
|
1800
1853
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
|
|
1801
1854
|
line-height: 25px;
|
|
@@ -1811,7 +1864,10 @@
|
|
|
1811
1864
|
margin-right: 16px;
|
|
1812
1865
|
}
|
|
1813
1866
|
.e-bigger .e-de-listview-icon {
|
|
1867
|
+
height: auto;
|
|
1868
|
+
width: auto;
|
|
1814
1869
|
line-height: 22px;
|
|
1870
|
+
margin-right: 16px;
|
|
1815
1871
|
}
|
|
1816
1872
|
.e-bigger .e-rtl .e-listview .e-list-icon {
|
|
1817
1873
|
height: 24px;
|
|
@@ -1819,7 +1875,10 @@
|
|
|
1819
1875
|
margin-left: 16px;
|
|
1820
1876
|
}
|
|
1821
1877
|
.e-bigger .e-rtl .e-de-listview-icon {
|
|
1878
|
+
height: auto;
|
|
1879
|
+
width: auto;
|
|
1822
1880
|
line-height: 22px;
|
|
1881
|
+
margin-left: 16px;
|
|
1823
1882
|
}
|
|
1824
1883
|
|
|
1825
1884
|
.e-de-ctn .e-de-bzr-button {
|
|
@@ -400,6 +400,21 @@
|
|
|
400
400
|
font-family: 'e-icons';
|
|
401
401
|
}
|
|
402
402
|
|
|
403
|
+
.e-de-e-paragraph-style-mark::before{
|
|
404
|
+
content: '\e353';
|
|
405
|
+
font-family: 'e-icons';
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.e-de-e-character-style-mark::before{
|
|
409
|
+
content: '\e98e';
|
|
410
|
+
font-family: 'e-icons';
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
.e-de-e-linked-style-mark::before{
|
|
414
|
+
content: '\e992';
|
|
415
|
+
font-family: 'e-icons';
|
|
416
|
+
}
|
|
417
|
+
|
|
403
418
|
.e-de-ctnr-columns::before {
|
|
404
419
|
content: '\e955';
|
|
405
420
|
font-family: 'e-icons';
|
|
@@ -400,6 +400,21 @@
|
|
|
400
400
|
font-family: 'e-icons';
|
|
401
401
|
}
|
|
402
402
|
|
|
403
|
+
.e-de-e-paragraph-style-mark::before{
|
|
404
|
+
content: '\e353';
|
|
405
|
+
font-family: 'e-icons';
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.e-de-e-character-style-mark::before{
|
|
409
|
+
content: '\e98e';
|
|
410
|
+
font-family: 'e-icons';
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
.e-de-e-linked-style-mark::before{
|
|
414
|
+
content: '\e992';
|
|
415
|
+
font-family: 'e-icons';
|
|
416
|
+
}
|
|
417
|
+
|
|
403
418
|
.e-de-ctnr-columns::before {
|
|
404
419
|
content: '\e955';
|
|
405
420
|
font-family: 'e-icons';
|
|
@@ -399,6 +399,21 @@
|
|
|
399
399
|
content: '\e720';
|
|
400
400
|
font-family: 'e-icons';
|
|
401
401
|
}
|
|
402
|
+
|
|
403
|
+
.e-de-e-paragraph-style-mark::before{
|
|
404
|
+
content: '\e720';
|
|
405
|
+
font-family: 'e-icons';
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.e-de-e-character-style-mark::before{
|
|
409
|
+
content: '\e97b';
|
|
410
|
+
font-family: 'e-icons';
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
.e-de-e-linked-style-mark::before{
|
|
414
|
+
content: '\e97c';
|
|
415
|
+
font-family: 'e-icons';
|
|
416
|
+
}
|
|
402
417
|
|
|
403
418
|
.e-de-ctnr-columns::before {
|
|
404
419
|
content: '\e955';
|
|
@@ -425,6 +425,21 @@
|
|
|
425
425
|
content: '\e844';
|
|
426
426
|
font-family: 'e-icons';
|
|
427
427
|
}
|
|
428
|
+
|
|
429
|
+
.e-de-e-paragraph-style-mark::before{
|
|
430
|
+
content: '\e844';
|
|
431
|
+
font-family: 'e-icons';
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
.e-de-e-character-style-mark::before{
|
|
435
|
+
content: '\e8bf';
|
|
436
|
+
font-family: 'e-icons';
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
.e-de-e-linked-style-mark::before{
|
|
440
|
+
content: '\e8c0';
|
|
441
|
+
font-family: 'e-icons';
|
|
442
|
+
}
|
|
428
443
|
|
|
429
444
|
.e-de-ctnr-columns::before {
|
|
430
445
|
content: '\e8b4';
|
|
@@ -399,6 +399,21 @@
|
|
|
399
399
|
content: '\e353';
|
|
400
400
|
font-family: 'e-icons';
|
|
401
401
|
}
|
|
402
|
+
|
|
403
|
+
.e-de-e-paragraph-style-mark::before{
|
|
404
|
+
content: '\e353';
|
|
405
|
+
font-family: 'e-icons';
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.e-de-e-character-style-mark::before{
|
|
409
|
+
content: '\e982';
|
|
410
|
+
font-family: 'e-icons';
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
.e-de-e-linked-style-mark::before{
|
|
414
|
+
content: '\e983';
|
|
415
|
+
font-family: 'e-icons';
|
|
416
|
+
}
|
|
402
417
|
|
|
403
418
|
.e-de-ctnr-columns::before {
|
|
404
419
|
content: '\e972';
|
|
@@ -399,6 +399,21 @@
|
|
|
399
399
|
content: '\e353';
|
|
400
400
|
font-family: 'e-icons';
|
|
401
401
|
}
|
|
402
|
+
|
|
403
|
+
.e-de-e-paragraph-style-mark::before{
|
|
404
|
+
content: '\e353';
|
|
405
|
+
font-family: 'e-icons';
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.e-de-e-character-style-mark::before{
|
|
409
|
+
content: '\e982';
|
|
410
|
+
font-family: 'e-icons';
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
.e-de-e-linked-style-mark::before{
|
|
414
|
+
content: '\e983';
|
|
415
|
+
font-family: 'e-icons';
|
|
416
|
+
}
|
|
402
417
|
|
|
403
418
|
.e-de-ctnr-columns::before {
|
|
404
419
|
content: '\e972';
|
|
@@ -425,6 +425,21 @@
|
|
|
425
425
|
content: '\e844';
|
|
426
426
|
font-family: 'e-icons';
|
|
427
427
|
}
|
|
428
|
+
|
|
429
|
+
.e-de-e-paragraph-style-mark::before{
|
|
430
|
+
content: '\e844';
|
|
431
|
+
font-family: 'e-icons';
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
.e-de-e-character-style-mark::before{
|
|
435
|
+
content: '\e8bf';
|
|
436
|
+
font-family: 'e-icons';
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
.e-de-e-linked-style-mark::before{
|
|
440
|
+
content: '\e8c0';
|
|
441
|
+
font-family: 'e-icons';
|
|
442
|
+
}
|
|
428
443
|
|
|
429
444
|
.e-de-ctnr-columns::before {
|
|
430
445
|
content: '\e8b4';
|
|
@@ -425,6 +425,21 @@
|
|
|
425
425
|
content: '\e844';
|
|
426
426
|
font-family: 'e-icons';
|
|
427
427
|
}
|
|
428
|
+
|
|
429
|
+
.e-de-e-paragraph-style-mark::before{
|
|
430
|
+
content: '\e844';
|
|
431
|
+
font-family: 'e-icons';
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
.e-de-e-character-style-mark::before{
|
|
435
|
+
content: '\e8bf';
|
|
436
|
+
font-family: 'e-icons';
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
.e-de-e-linked-style-mark::before{
|
|
440
|
+
content: '\e8c0';
|
|
441
|
+
font-family: 'e-icons';
|
|
442
|
+
}
|
|
428
443
|
|
|
429
444
|
.e-de-ctnr-columns::before {
|
|
430
445
|
content: '\e89d';
|
|
@@ -399,6 +399,21 @@
|
|
|
399
399
|
content: '\e353';
|
|
400
400
|
font-family: 'e-icons';
|
|
401
401
|
}
|
|
402
|
+
|
|
403
|
+
.e-de-e-paragraph-style-mark::before{
|
|
404
|
+
content: '\e353';
|
|
405
|
+
font-family: 'e-icons';
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.e-de-e-character-style-mark::before{
|
|
409
|
+
content: '\e980';
|
|
410
|
+
font-family: 'e-icons';
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
.e-de-e-linked-style-mark::before{
|
|
414
|
+
content: '\e981';
|
|
415
|
+
font-family: 'e-icons';
|
|
416
|
+
}
|
|
402
417
|
|
|
403
418
|
.e-de-ctnr-columns::before {
|
|
404
419
|
content: '\e968';
|
|
@@ -399,6 +399,21 @@
|
|
|
399
399
|
content: '\e353';
|
|
400
400
|
font-family: 'e-icons';
|
|
401
401
|
}
|
|
402
|
+
|
|
403
|
+
.e-de-e-paragraph-style-mark::before{
|
|
404
|
+
content: '\e353';
|
|
405
|
+
font-family: 'e-icons';
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.e-de-e-character-style-mark::before{
|
|
409
|
+
content: '\e980';
|
|
410
|
+
font-family: 'e-icons';
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
.e-de-e-linked-style-mark::before{
|
|
414
|
+
content: '\e981';
|
|
415
|
+
font-family: 'e-icons';
|
|
416
|
+
}
|
|
402
417
|
|
|
403
418
|
.e-de-ctnr-columns::before {
|
|
404
419
|
content: '\e968';
|
|
@@ -401,6 +401,21 @@
|
|
|
401
401
|
content: '\e353';
|
|
402
402
|
font-family: 'e-icons';
|
|
403
403
|
}
|
|
404
|
+
|
|
405
|
+
.e-de-e-paragraph-style-mark::before{
|
|
406
|
+
content: '\e353';
|
|
407
|
+
font-family: 'e-icons';
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
.e-de-e-character-style-mark::before{
|
|
411
|
+
content: '\e97d';
|
|
412
|
+
font-family: 'e-icons';
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
.e-de-e-linked-style-mark::before{
|
|
416
|
+
content: '\e97e';
|
|
417
|
+
font-family: 'e-icons';
|
|
418
|
+
}
|
|
404
419
|
|
|
405
420
|
.e-de-ctnr-columns::before {
|
|
406
421
|
content: '\e955';
|
|
@@ -401,6 +401,21 @@
|
|
|
401
401
|
content: '\e353';
|
|
402
402
|
font-family: 'e-icons';
|
|
403
403
|
}
|
|
404
|
+
|
|
405
|
+
.e-de-e-paragraph-style-mark::before{
|
|
406
|
+
content: '\e353';
|
|
407
|
+
font-family: 'e-icons';
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
.e-de-e-character-style-mark::before{
|
|
411
|
+
content: '\e97d';
|
|
412
|
+
font-family: 'e-icons';
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
.e-de-e-linked-style-mark::before{
|
|
416
|
+
content: '\e97e';
|
|
417
|
+
font-family: 'e-icons';
|
|
418
|
+
}
|
|
404
419
|
|
|
405
420
|
.e-de-ctnr-columns::before {
|
|
406
421
|
content: '\e955';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './material3.scss';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@include export-module('document-editor-container-material3-icons') {
|
|
2
2
|
.e-de-ctnr-close::before {
|
|
3
|
-
color: $icon-color;
|
|
3
|
+
color: rgba($icon-color);
|
|
4
4
|
content: '\e7e7';
|
|
5
5
|
font-size: 16px;
|
|
6
6
|
}
|
|
@@ -157,7 +157,7 @@
|
|
|
157
157
|
}
|
|
158
158
|
|
|
159
159
|
.e-de-ctnr-borders::before {
|
|
160
|
-
content: '\
|
|
160
|
+
content: '\e893';
|
|
161
161
|
}
|
|
162
162
|
|
|
163
163
|
.e-de-ctnr-decreaseindent::before {
|
|
@@ -166,7 +166,6 @@
|
|
|
166
166
|
|
|
167
167
|
.e-de-ctnr-showhide::before {
|
|
168
168
|
content: '\e71a';
|
|
169
|
-
font-size: 16px;
|
|
170
169
|
}
|
|
171
170
|
|
|
172
171
|
.e-de-ctnr-print::before {
|
|
@@ -422,22 +421,37 @@
|
|
|
422
421
|
}
|
|
423
422
|
|
|
424
423
|
.e-de-e-paragraph-mark::before{
|
|
425
|
-
content: '\
|
|
424
|
+
content: '\e844';
|
|
425
|
+
font-family: 'e-icons';
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
.e-de-e-paragraph-style-mark::before{
|
|
429
|
+
content: '\e844';
|
|
430
|
+
font-family: 'e-icons';
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
.e-de-e-character-style-mark::before{
|
|
434
|
+
content: '\e8bf';
|
|
435
|
+
font-family: 'e-icons';
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
.e-de-e-linked-style-mark::before{
|
|
439
|
+
content: '\e8c0';
|
|
426
440
|
font-family: 'e-icons';
|
|
427
441
|
}
|
|
428
442
|
|
|
429
443
|
.e-de-ctnr-columns::before {
|
|
430
|
-
content: '\
|
|
444
|
+
content: '\e8b4';
|
|
431
445
|
font-family: 'e-icons';
|
|
432
446
|
}
|
|
433
447
|
|
|
434
448
|
.e-de-ctnr-page-size::before {
|
|
435
|
-
content: '\
|
|
449
|
+
content: '\e89a';
|
|
436
450
|
font-family: 'e-icons';
|
|
437
451
|
}
|
|
438
452
|
|
|
439
453
|
.e-de-ctnr-page-break-column::before {
|
|
440
|
-
content: '\
|
|
454
|
+
content: '\e8b4';
|
|
441
455
|
font-family: 'e-icons';
|
|
442
456
|
}
|
|
443
457
|
|
|
@@ -447,46 +461,46 @@
|
|
|
447
461
|
}
|
|
448
462
|
|
|
449
463
|
.e-de-ctnr-section-break-continuous::before {
|
|
450
|
-
content: '\
|
|
464
|
+
content: '\e8b5';
|
|
451
465
|
font-family: 'e-icons';
|
|
452
466
|
}
|
|
453
467
|
|
|
454
468
|
.e-de-ctnr-section-break-even-page::before {
|
|
455
|
-
content: '\
|
|
469
|
+
content: '\e8b2';
|
|
456
470
|
font-family: 'e-icons';
|
|
457
471
|
}
|
|
458
472
|
|
|
459
473
|
.e-de-ctnr-section-break-odd-page::before {
|
|
460
|
-
content: '\
|
|
474
|
+
content: '\e8b3';
|
|
461
475
|
font-family: 'e-icons';
|
|
462
476
|
}
|
|
463
477
|
|
|
464
478
|
.e-de-ctnr-columns-one::before {
|
|
465
|
-
content: '\
|
|
479
|
+
content: '\e8b9';
|
|
466
480
|
font-family: 'e-icons';
|
|
467
481
|
font-size: $de-column-presets-font-size;
|
|
468
482
|
}
|
|
469
483
|
|
|
470
484
|
.e-de-ctnr-columns-two::before {
|
|
471
|
-
content: '\
|
|
485
|
+
content: '\e8ba';
|
|
472
486
|
font-family: 'e-icons';
|
|
473
487
|
font-size: $de-column-presets-font-size;
|
|
474
488
|
}
|
|
475
489
|
|
|
476
490
|
.e-de-ctnr-columns-three::before {
|
|
477
|
-
content: '\
|
|
491
|
+
content: '\e8bb';
|
|
478
492
|
font-family: 'e-icons';
|
|
479
493
|
font-size: $de-column-presets-font-size;
|
|
480
494
|
}
|
|
481
495
|
|
|
482
496
|
.e-de-ctnr-columns-right::before {
|
|
483
|
-
content: '\
|
|
497
|
+
content: '\e8b7';
|
|
484
498
|
font-family: 'e-icons';
|
|
485
499
|
font-size: $de-column-presets-font-size;
|
|
486
500
|
}
|
|
487
501
|
|
|
488
502
|
.e-de-ctnr-columns-left::before {
|
|
489
|
-
content: '\
|
|
503
|
+
content: '\e8b8';
|
|
490
504
|
font-family: 'e-icons';
|
|
491
505
|
font-size: $de-column-presets-font-size;
|
|
492
506
|
}
|
|
@@ -425,6 +425,21 @@
|
|
|
425
425
|
content: '\e844';
|
|
426
426
|
font-family: 'e-icons';
|
|
427
427
|
}
|
|
428
|
+
|
|
429
|
+
.e-de-e-paragraph-style-mark::before{
|
|
430
|
+
content: '\e844';
|
|
431
|
+
font-family: 'e-icons';
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
.e-de-e-character-style-mark::before{
|
|
435
|
+
content: '\e8bf';
|
|
436
|
+
font-family: 'e-icons';
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
.e-de-e-linked-style-mark::before{
|
|
440
|
+
content: '\e8c0';
|
|
441
|
+
font-family: 'e-icons';
|
|
442
|
+
}
|
|
428
443
|
|
|
429
444
|
.e-de-ctnr-columns::before {
|
|
430
445
|
content: '\e89d';
|
|
@@ -425,6 +425,21 @@
|
|
|
425
425
|
content: '\e844';
|
|
426
426
|
font-family: 'e-icons';
|
|
427
427
|
}
|
|
428
|
+
|
|
429
|
+
.e-de-e-paragraph-style-mark::before{
|
|
430
|
+
content: '\e844';
|
|
431
|
+
font-family: 'e-icons';
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
.e-de-e-character-style-mark::before{
|
|
435
|
+
content: '\e8bf';
|
|
436
|
+
font-family: 'e-icons';
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
.e-de-e-linked-style-mark::before{
|
|
440
|
+
content: '\e8c0';
|
|
441
|
+
font-family: 'e-icons';
|
|
442
|
+
}
|
|
428
443
|
|
|
429
444
|
.e-de-ctnr-columns::before {
|
|
430
445
|
content: '\e89d';
|