@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
|
@@ -425,6 +425,21 @@
|
|
|
425
425
|
font-family: "e-icons";
|
|
426
426
|
}
|
|
427
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";
|
|
440
|
+
font-family: "e-icons";
|
|
441
|
+
}
|
|
442
|
+
|
|
428
443
|
.e-de-ctnr-columns::before {
|
|
429
444
|
content: "\e8b4";
|
|
430
445
|
font-family: "e-icons";
|
|
@@ -567,6 +582,46 @@
|
|
|
567
582
|
height: 100%;
|
|
568
583
|
}
|
|
569
584
|
|
|
585
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
|
|
586
|
+
box-shadow: none;
|
|
587
|
+
height: 32px;
|
|
588
|
+
}
|
|
589
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
|
|
590
|
+
box-shadow: none;
|
|
591
|
+
}
|
|
592
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
|
|
593
|
+
box-shadow: none;
|
|
594
|
+
}
|
|
595
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
596
|
+
box-shadow: none;
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
.e-de-ctnr-group-btn-middle button {
|
|
600
|
+
border-radius: 0px;
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
.de-tbl-fill-clr .e-dropdown-btn.e-btn {
|
|
604
|
+
box-shadow: none;
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button,
|
|
608
|
+
.e-de-ctn .e-de-status-bar button {
|
|
609
|
+
box-shadow: none;
|
|
610
|
+
height: 32px;
|
|
611
|
+
}
|
|
612
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:focus,
|
|
613
|
+
.e-de-ctn .e-de-status-bar button:focus {
|
|
614
|
+
box-shadow: none;
|
|
615
|
+
}
|
|
616
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:active,
|
|
617
|
+
.e-de-ctn .e-de-status-bar button:active {
|
|
618
|
+
box-shadow: none;
|
|
619
|
+
}
|
|
620
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:hover,
|
|
621
|
+
.e-de-ctn .e-de-status-bar button:hover {
|
|
622
|
+
box-shadow: none;
|
|
623
|
+
}
|
|
624
|
+
|
|
570
625
|
.e-de-statusbar-pageweb {
|
|
571
626
|
background: #faf9f8;
|
|
572
627
|
border: 0;
|
|
@@ -599,7 +654,10 @@
|
|
|
599
654
|
}
|
|
600
655
|
|
|
601
656
|
.e-de-listview-icon {
|
|
657
|
+
height: auto;
|
|
658
|
+
width: auto;
|
|
602
659
|
line-height: 22px;
|
|
660
|
+
margin-right: 16px;
|
|
603
661
|
}
|
|
604
662
|
|
|
605
663
|
.e-de-linespacing {
|
|
@@ -698,14 +756,22 @@
|
|
|
698
756
|
.e-de-statusbar-separator {
|
|
699
757
|
border-left: 1px solid #edebe9;
|
|
700
758
|
height: 16px;
|
|
701
|
-
margin-left:
|
|
759
|
+
margin-left: 7.5px;
|
|
760
|
+
margin-right: 7.5px;
|
|
761
|
+
margin-top: 6px;
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
.e-bigger .e-de-statusbar-separator {
|
|
765
|
+
border-left: 1px solid #edebe9;
|
|
766
|
+
height: 16px;
|
|
767
|
+
margin-left: 7.5px;
|
|
768
|
+
margin-right: 7.5px;
|
|
702
769
|
margin-top: 6px;
|
|
703
770
|
}
|
|
704
771
|
|
|
705
772
|
.e-de-statusbar-spellcheck {
|
|
706
773
|
border-radius: 2px;
|
|
707
774
|
font-weight: 400;
|
|
708
|
-
margin-left: 7.5px;
|
|
709
775
|
}
|
|
710
776
|
|
|
711
777
|
.e-de-ctn {
|
|
@@ -718,7 +784,6 @@
|
|
|
718
784
|
|
|
719
785
|
.e-bigger .e-de-statusbar-spellcheck {
|
|
720
786
|
border-radius: 2px;
|
|
721
|
-
margin-left: 7.5px;
|
|
722
787
|
}
|
|
723
788
|
|
|
724
789
|
.e-de-ctnr-toolbar {
|
|
@@ -1017,6 +1082,7 @@
|
|
|
1017
1082
|
}
|
|
1018
1083
|
|
|
1019
1084
|
.e-de-review-pane {
|
|
1085
|
+
background: #faf9f8;
|
|
1020
1086
|
border-left: 1px solid #edebe9;
|
|
1021
1087
|
height: 100%;
|
|
1022
1088
|
min-height: 200px;
|
|
@@ -1037,34 +1103,6 @@
|
|
|
1037
1103
|
width: 345px;
|
|
1038
1104
|
}
|
|
1039
1105
|
|
|
1040
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
|
|
1041
|
-
box-shadow: none;
|
|
1042
|
-
height: 32px;
|
|
1043
|
-
}
|
|
1044
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
|
|
1045
|
-
box-shadow: none;
|
|
1046
|
-
}
|
|
1047
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
|
|
1048
|
-
box-shadow: none;
|
|
1049
|
-
}
|
|
1050
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
1051
|
-
box-shadow: none;
|
|
1052
|
-
}
|
|
1053
|
-
|
|
1054
|
-
.e-de-ctnr-group-btn button {
|
|
1055
|
-
box-shadow: none;
|
|
1056
|
-
height: 32px;
|
|
1057
|
-
}
|
|
1058
|
-
.e-de-ctnr-group-btn button:focus {
|
|
1059
|
-
box-shadow: none;
|
|
1060
|
-
}
|
|
1061
|
-
.e-de-ctnr-group-btn button:active {
|
|
1062
|
-
box-shadow: none;
|
|
1063
|
-
}
|
|
1064
|
-
.e-de-ctnr-group-btn button:hover {
|
|
1065
|
-
box-shadow: none;
|
|
1066
|
-
}
|
|
1067
|
-
|
|
1068
1106
|
.e-de-property-div-padding {
|
|
1069
1107
|
border-bottom: 0.5px solid #edebe9;
|
|
1070
1108
|
padding: 16px;
|
|
@@ -1196,7 +1234,7 @@
|
|
|
1196
1234
|
}
|
|
1197
1235
|
|
|
1198
1236
|
.e-de-list-header-presetmenu .e-de-list-line {
|
|
1199
|
-
border-bottom: 1px solid #605e5c;
|
|
1237
|
+
border-bottom: 1px solid #605e5c !important;
|
|
1200
1238
|
margin-left: 5px;
|
|
1201
1239
|
width: 100%;
|
|
1202
1240
|
}
|
|
@@ -1265,10 +1303,10 @@
|
|
|
1265
1303
|
}
|
|
1266
1304
|
|
|
1267
1305
|
.e-de-list-container {
|
|
1268
|
-
background: #faf9f8;
|
|
1269
1306
|
border: 1px solid #ccc;
|
|
1270
1307
|
border-radius: 2px;
|
|
1271
1308
|
box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
|
|
1309
|
+
background: #faf9f8;
|
|
1272
1310
|
box-sizing: border-box;
|
|
1273
1311
|
display: inline-block;
|
|
1274
1312
|
line-height: normal;
|
|
@@ -1541,7 +1579,7 @@
|
|
|
1541
1579
|
}
|
|
1542
1580
|
|
|
1543
1581
|
.e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
|
|
1544
|
-
height:
|
|
1582
|
+
height: 36px !important;
|
|
1545
1583
|
}
|
|
1546
1584
|
|
|
1547
1585
|
.e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
|
|
@@ -1568,7 +1606,10 @@
|
|
|
1568
1606
|
margin-left: 16px;
|
|
1569
1607
|
}
|
|
1570
1608
|
.e-rtl .e-de-listview-icon {
|
|
1609
|
+
height: auto;
|
|
1610
|
+
width: auto;
|
|
1571
1611
|
line-height: 22px;
|
|
1612
|
+
margin-left: 16px;
|
|
1572
1613
|
}
|
|
1573
1614
|
|
|
1574
1615
|
.e-bigger .de-split-button > div:first-child {
|
|
@@ -1679,7 +1720,6 @@
|
|
|
1679
1720
|
height: 81px;
|
|
1680
1721
|
}
|
|
1681
1722
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
|
|
1682
|
-
height: 25px;
|
|
1683
1723
|
margin: 0 14px;
|
|
1684
1724
|
}
|
|
1685
1725
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
|
|
@@ -1781,6 +1821,19 @@
|
|
|
1781
1821
|
.e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
1782
1822
|
box-shadow: none;
|
|
1783
1823
|
}
|
|
1824
|
+
.e-bigger .e-de-status-bar button {
|
|
1825
|
+
height: 38px;
|
|
1826
|
+
box-shadow: none;
|
|
1827
|
+
}
|
|
1828
|
+
.e-bigger .e-de-status-bar button:focus {
|
|
1829
|
+
box-shadow: none;
|
|
1830
|
+
}
|
|
1831
|
+
.e-bigger .e-de-status-bar button:active {
|
|
1832
|
+
box-shadow: none;
|
|
1833
|
+
}
|
|
1834
|
+
.e-bigger .e-de-status-bar button:hover {
|
|
1835
|
+
box-shadow: none;
|
|
1836
|
+
}
|
|
1784
1837
|
.e-bigger .e-de-ctnr-group-btn button {
|
|
1785
1838
|
box-shadow: none;
|
|
1786
1839
|
height: 38px;
|
|
@@ -1894,18 +1947,18 @@
|
|
|
1894
1947
|
margin-left: 10px;
|
|
1895
1948
|
}
|
|
1896
1949
|
.e-bigger .e-de-status-bar {
|
|
1897
|
-
background
|
|
1950
|
+
background: #faf9f8;
|
|
1898
1951
|
display: -ms-flexbox;
|
|
1899
1952
|
display: flex;
|
|
1900
1953
|
padding-top: 5px;
|
|
1901
1954
|
width: 100%;
|
|
1902
1955
|
}
|
|
1903
1956
|
.e-bigger .e-de-statusbar-zoom {
|
|
1904
|
-
background-color: #faf9f8;
|
|
1905
1957
|
border: 0;
|
|
1906
1958
|
color: #3b3a39;
|
|
1907
1959
|
float: right;
|
|
1908
1960
|
height: 34px;
|
|
1961
|
+
background-color: #faf9f8;
|
|
1909
1962
|
}
|
|
1910
1963
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
|
|
1911
1964
|
line-height: 25px;
|
|
@@ -1921,7 +1974,10 @@
|
|
|
1921
1974
|
margin-right: 20px;
|
|
1922
1975
|
}
|
|
1923
1976
|
.e-bigger .e-de-listview-icon {
|
|
1977
|
+
height: auto;
|
|
1978
|
+
width: auto;
|
|
1924
1979
|
line-height: 22px;
|
|
1980
|
+
margin-right: 20px;
|
|
1925
1981
|
}
|
|
1926
1982
|
.e-bigger .e-rtl .e-listview .e-list-icon {
|
|
1927
1983
|
height: 24px;
|
|
@@ -1929,7 +1985,10 @@
|
|
|
1929
1985
|
margin-left: 20px;
|
|
1930
1986
|
}
|
|
1931
1987
|
.e-bigger .e-rtl .e-de-listview-icon {
|
|
1988
|
+
height: auto;
|
|
1989
|
+
width: auto;
|
|
1932
1990
|
line-height: 22px;
|
|
1991
|
+
margin-left: 20px;
|
|
1933
1992
|
}
|
|
1934
1993
|
|
|
1935
1994
|
.e-de-ctn .e-de-bzr-button {
|
|
@@ -2437,6 +2437,21 @@ label[for=container_wholeWord] {
|
|
|
2437
2437
|
font-family: "e-icons";
|
|
2438
2438
|
}
|
|
2439
2439
|
|
|
2440
|
+
.e-de-e-paragraph-style-mark::before {
|
|
2441
|
+
content: "\e353";
|
|
2442
|
+
font-family: "e-icons";
|
|
2443
|
+
}
|
|
2444
|
+
|
|
2445
|
+
.e-de-e-character-style-mark::before {
|
|
2446
|
+
content: "\e980";
|
|
2447
|
+
font-family: "e-icons";
|
|
2448
|
+
}
|
|
2449
|
+
|
|
2450
|
+
.e-de-e-linked-style-mark::before {
|
|
2451
|
+
content: "\e981";
|
|
2452
|
+
font-family: "e-icons";
|
|
2453
|
+
}
|
|
2454
|
+
|
|
2440
2455
|
.e-de-ctnr-columns::before {
|
|
2441
2456
|
content: "\e968";
|
|
2442
2457
|
font-family: "e-icons";
|
|
@@ -2569,6 +2584,46 @@ label[for=container_wholeWord] {
|
|
|
2569
2584
|
height: 100%;
|
|
2570
2585
|
}
|
|
2571
2586
|
|
|
2587
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
|
|
2588
|
+
box-shadow: none;
|
|
2589
|
+
height: 32px;
|
|
2590
|
+
}
|
|
2591
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
|
|
2592
|
+
box-shadow: none;
|
|
2593
|
+
}
|
|
2594
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
|
|
2595
|
+
box-shadow: none;
|
|
2596
|
+
}
|
|
2597
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
2598
|
+
box-shadow: none;
|
|
2599
|
+
}
|
|
2600
|
+
|
|
2601
|
+
.e-de-ctnr-group-btn-middle button {
|
|
2602
|
+
border-radius: 0px;
|
|
2603
|
+
}
|
|
2604
|
+
|
|
2605
|
+
.de-tbl-fill-clr .e-dropdown-btn.e-btn {
|
|
2606
|
+
box-shadow: none;
|
|
2607
|
+
}
|
|
2608
|
+
|
|
2609
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button,
|
|
2610
|
+
.e-de-ctn .e-de-status-bar button {
|
|
2611
|
+
box-shadow: none;
|
|
2612
|
+
height: 32px;
|
|
2613
|
+
}
|
|
2614
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:focus,
|
|
2615
|
+
.e-de-ctn .e-de-status-bar button:focus {
|
|
2616
|
+
box-shadow: none;
|
|
2617
|
+
}
|
|
2618
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:active,
|
|
2619
|
+
.e-de-ctn .e-de-status-bar button:active {
|
|
2620
|
+
box-shadow: none;
|
|
2621
|
+
}
|
|
2622
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:hover,
|
|
2623
|
+
.e-de-ctn .e-de-status-bar button:hover {
|
|
2624
|
+
box-shadow: none;
|
|
2625
|
+
}
|
|
2626
|
+
|
|
2572
2627
|
.e-de-statusbar-pageweb {
|
|
2573
2628
|
background: #fff;
|
|
2574
2629
|
border: 0;
|
|
@@ -2606,7 +2661,10 @@ label[for=container_wholeWord] {
|
|
|
2606
2661
|
}
|
|
2607
2662
|
|
|
2608
2663
|
.e-de-listview-icon {
|
|
2664
|
+
height: auto;
|
|
2665
|
+
width: auto;
|
|
2609
2666
|
line-height: 22px;
|
|
2667
|
+
margin-right: 12px;
|
|
2610
2668
|
}
|
|
2611
2669
|
|
|
2612
2670
|
.e-de-linespacing {
|
|
@@ -2677,14 +2735,22 @@ label[for=container_wholeWord] {
|
|
|
2677
2735
|
.e-de-statusbar-separator {
|
|
2678
2736
|
border-left: 1px solid #dadada;
|
|
2679
2737
|
height: 16px;
|
|
2680
|
-
margin-left:
|
|
2738
|
+
margin-left: 7.5px;
|
|
2739
|
+
margin-right: 7.5px;
|
|
2740
|
+
margin-top: 10px;
|
|
2741
|
+
}
|
|
2742
|
+
|
|
2743
|
+
.e-bigger .e-de-statusbar-separator {
|
|
2744
|
+
border-left: 1px solid #dadada;
|
|
2745
|
+
height: 16px;
|
|
2746
|
+
margin-left: 7.5px;
|
|
2747
|
+
margin-right: 7.5px;
|
|
2681
2748
|
margin-top: 10px;
|
|
2682
2749
|
}
|
|
2683
2750
|
|
|
2684
2751
|
.e-de-statusbar-spellcheck {
|
|
2685
2752
|
border-radius: 2px;
|
|
2686
2753
|
font-weight: 400;
|
|
2687
|
-
margin-left: 7.5px;
|
|
2688
2754
|
}
|
|
2689
2755
|
|
|
2690
2756
|
.e-de-ctn {
|
|
@@ -2697,7 +2763,6 @@ label[for=container_wholeWord] {
|
|
|
2697
2763
|
|
|
2698
2764
|
.e-bigger .e-de-statusbar-spellcheck {
|
|
2699
2765
|
border-radius: 2px;
|
|
2700
|
-
margin-left: 7.5px;
|
|
2701
2766
|
}
|
|
2702
2767
|
|
|
2703
2768
|
.e-de-ctnr-toolbar {
|
|
@@ -2947,6 +3012,7 @@ label[for=container_wholeWord] {
|
|
|
2947
3012
|
}
|
|
2948
3013
|
|
|
2949
3014
|
.e-de-review-pane {
|
|
3015
|
+
background: #fff;
|
|
2950
3016
|
border-left: 1px solid #e1e1e1;
|
|
2951
3017
|
height: 100%;
|
|
2952
3018
|
min-height: 200px;
|
|
@@ -2964,34 +3030,6 @@ label[for=container_wholeWord] {
|
|
|
2964
3030
|
width: 272px;
|
|
2965
3031
|
}
|
|
2966
3032
|
|
|
2967
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
|
|
2968
|
-
box-shadow: none;
|
|
2969
|
-
height: 32px;
|
|
2970
|
-
}
|
|
2971
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
|
|
2972
|
-
box-shadow: none;
|
|
2973
|
-
}
|
|
2974
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
|
|
2975
|
-
box-shadow: none;
|
|
2976
|
-
}
|
|
2977
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
2978
|
-
box-shadow: none;
|
|
2979
|
-
}
|
|
2980
|
-
|
|
2981
|
-
.e-de-ctnr-group-btn button {
|
|
2982
|
-
box-shadow: none;
|
|
2983
|
-
height: 32px;
|
|
2984
|
-
}
|
|
2985
|
-
.e-de-ctnr-group-btn button:focus {
|
|
2986
|
-
box-shadow: none;
|
|
2987
|
-
}
|
|
2988
|
-
.e-de-ctnr-group-btn button:active {
|
|
2989
|
-
box-shadow: none;
|
|
2990
|
-
}
|
|
2991
|
-
.e-de-ctnr-group-btn button:hover {
|
|
2992
|
-
box-shadow: none;
|
|
2993
|
-
}
|
|
2994
|
-
|
|
2995
3033
|
.e-de-property-div-padding {
|
|
2996
3034
|
border-bottom: 0.5px solid #e0e0e0;
|
|
2997
3035
|
padding: 12.5px;
|
|
@@ -3115,7 +3153,7 @@ label[for=container_wholeWord] {
|
|
|
3115
3153
|
}
|
|
3116
3154
|
|
|
3117
3155
|
.e-de-list-header-presetmenu .e-de-list-line {
|
|
3118
|
-
border-bottom: 1px solid #ccc;
|
|
3156
|
+
border-bottom: 1px solid #ccc !important;
|
|
3119
3157
|
margin-left: 5px;
|
|
3120
3158
|
width: 100%;
|
|
3121
3159
|
}
|
|
@@ -3184,10 +3222,10 @@ label[for=container_wholeWord] {
|
|
|
3184
3222
|
}
|
|
3185
3223
|
|
|
3186
3224
|
.e-de-list-container {
|
|
3187
|
-
background: #fff;
|
|
3188
3225
|
border: 1px solid #ccc;
|
|
3189
3226
|
border-radius: 2px;
|
|
3190
3227
|
box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
|
|
3228
|
+
background: #fff;
|
|
3191
3229
|
box-sizing: border-box;
|
|
3192
3230
|
display: inline-block;
|
|
3193
3231
|
line-height: normal;
|
|
@@ -3460,7 +3498,7 @@ label[for=container_wholeWord] {
|
|
|
3460
3498
|
}
|
|
3461
3499
|
|
|
3462
3500
|
.e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
|
|
3463
|
-
height:
|
|
3501
|
+
height: 36px !important;
|
|
3464
3502
|
}
|
|
3465
3503
|
|
|
3466
3504
|
.e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
|
|
@@ -3487,7 +3525,10 @@ label[for=container_wholeWord] {
|
|
|
3487
3525
|
margin-left: 12px;
|
|
3488
3526
|
}
|
|
3489
3527
|
.e-rtl .e-de-listview-icon {
|
|
3528
|
+
height: auto;
|
|
3529
|
+
width: auto;
|
|
3490
3530
|
line-height: 22px;
|
|
3531
|
+
margin-left: 12px;
|
|
3491
3532
|
}
|
|
3492
3533
|
|
|
3493
3534
|
.e-bigger .de-split-button > div:first-child {
|
|
@@ -3598,7 +3639,6 @@ label[for=container_wholeWord] {
|
|
|
3598
3639
|
height: 82px;
|
|
3599
3640
|
}
|
|
3600
3641
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
|
|
3601
|
-
height: 25px;
|
|
3602
3642
|
margin: 0 7.5px;
|
|
3603
3643
|
}
|
|
3604
3644
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
|
|
@@ -3700,6 +3740,19 @@ label[for=container_wholeWord] {
|
|
|
3700
3740
|
.e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
3701
3741
|
box-shadow: none;
|
|
3702
3742
|
}
|
|
3743
|
+
.e-bigger .e-de-status-bar button {
|
|
3744
|
+
height: 38px;
|
|
3745
|
+
box-shadow: none;
|
|
3746
|
+
}
|
|
3747
|
+
.e-bigger .e-de-status-bar button:focus {
|
|
3748
|
+
box-shadow: none;
|
|
3749
|
+
}
|
|
3750
|
+
.e-bigger .e-de-status-bar button:active {
|
|
3751
|
+
box-shadow: none;
|
|
3752
|
+
}
|
|
3753
|
+
.e-bigger .e-de-status-bar button:hover {
|
|
3754
|
+
box-shadow: none;
|
|
3755
|
+
}
|
|
3703
3756
|
.e-bigger .e-de-ctnr-group-btn button {
|
|
3704
3757
|
box-shadow: none;
|
|
3705
3758
|
height: 38px;
|
|
@@ -3813,18 +3866,18 @@ label[for=container_wholeWord] {
|
|
|
3813
3866
|
margin-left: 10px;
|
|
3814
3867
|
}
|
|
3815
3868
|
.e-bigger .e-de-status-bar {
|
|
3816
|
-
background
|
|
3869
|
+
background: #fff;
|
|
3817
3870
|
display: -ms-flexbox;
|
|
3818
3871
|
display: flex;
|
|
3819
3872
|
padding-top: 1.5px;
|
|
3820
3873
|
width: 100%;
|
|
3821
3874
|
}
|
|
3822
3875
|
.e-bigger .e-de-statusbar-zoom {
|
|
3823
|
-
background-color: #fff;
|
|
3824
3876
|
border: 0;
|
|
3825
3877
|
color: #000;
|
|
3826
3878
|
float: right;
|
|
3827
3879
|
height: 34px;
|
|
3880
|
+
background-color: #fff;
|
|
3828
3881
|
}
|
|
3829
3882
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
|
|
3830
3883
|
line-height: 25px;
|
|
@@ -3840,7 +3893,10 @@ label[for=container_wholeWord] {
|
|
|
3840
3893
|
margin-right: 16px;
|
|
3841
3894
|
}
|
|
3842
3895
|
.e-bigger .e-de-listview-icon {
|
|
3896
|
+
height: auto;
|
|
3897
|
+
width: auto;
|
|
3843
3898
|
line-height: 22px;
|
|
3899
|
+
margin-right: 16px;
|
|
3844
3900
|
}
|
|
3845
3901
|
.e-bigger .e-rtl .e-listview .e-list-icon {
|
|
3846
3902
|
height: 24px;
|
|
@@ -3848,7 +3904,10 @@ label[for=container_wholeWord] {
|
|
|
3848
3904
|
margin-left: 16px;
|
|
3849
3905
|
}
|
|
3850
3906
|
.e-bigger .e-rtl .e-de-listview-icon {
|
|
3907
|
+
height: auto;
|
|
3908
|
+
width: auto;
|
|
3851
3909
|
line-height: 22px;
|
|
3910
|
+
margin-left: 16px;
|
|
3852
3911
|
}
|
|
3853
3912
|
|
|
3854
3913
|
.e-de-ctn .e-de-bzr-button {
|