@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
|
@@ -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: "\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
|
+
}
|
|
417
|
+
|
|
403
418
|
.e-de-ctnr-columns::before {
|
|
404
419
|
content: "\e972";
|
|
405
420
|
font-family: "e-icons";
|
|
@@ -532,6 +547,46 @@
|
|
|
532
547
|
height: 100%;
|
|
533
548
|
}
|
|
534
549
|
|
|
550
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
|
|
551
|
+
box-shadow: none;
|
|
552
|
+
height: 32px;
|
|
553
|
+
}
|
|
554
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
|
|
555
|
+
box-shadow: none;
|
|
556
|
+
}
|
|
557
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
|
|
558
|
+
box-shadow: none;
|
|
559
|
+
}
|
|
560
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
561
|
+
box-shadow: none;
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
.e-de-ctnr-group-btn-middle button {
|
|
565
|
+
border-radius: 0px;
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
.de-tbl-fill-clr .e-dropdown-btn.e-btn {
|
|
569
|
+
box-shadow: none;
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button,
|
|
573
|
+
.e-de-ctn .e-de-status-bar button {
|
|
574
|
+
box-shadow: none;
|
|
575
|
+
height: 32px;
|
|
576
|
+
}
|
|
577
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:focus,
|
|
578
|
+
.e-de-ctn .e-de-status-bar button:focus {
|
|
579
|
+
box-shadow: none;
|
|
580
|
+
}
|
|
581
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:active,
|
|
582
|
+
.e-de-ctn .e-de-status-bar button:active {
|
|
583
|
+
box-shadow: none;
|
|
584
|
+
}
|
|
585
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:hover,
|
|
586
|
+
.e-de-ctn .e-de-status-bar button:hover {
|
|
587
|
+
box-shadow: none;
|
|
588
|
+
}
|
|
589
|
+
|
|
535
590
|
.e-de-statusbar-pageweb {
|
|
536
591
|
background: #fff;
|
|
537
592
|
border: 0;
|
|
@@ -569,7 +624,10 @@
|
|
|
569
624
|
}
|
|
570
625
|
|
|
571
626
|
.e-de-listview-icon {
|
|
627
|
+
height: auto;
|
|
628
|
+
width: auto;
|
|
572
629
|
line-height: 22px;
|
|
630
|
+
margin-right: 12px;
|
|
573
631
|
}
|
|
574
632
|
|
|
575
633
|
.e-de-linespacing {
|
|
@@ -640,14 +698,22 @@
|
|
|
640
698
|
.e-de-statusbar-separator {
|
|
641
699
|
border-left: 1px solid #dadada;
|
|
642
700
|
height: 16px;
|
|
643
|
-
margin-left:
|
|
701
|
+
margin-left: 7.5px;
|
|
702
|
+
margin-right: 7.5px;
|
|
703
|
+
margin-top: 10px;
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
.e-bigger .e-de-statusbar-separator {
|
|
707
|
+
border-left: 1px solid #dadada;
|
|
708
|
+
height: 16px;
|
|
709
|
+
margin-left: 7.5px;
|
|
710
|
+
margin-right: 7.5px;
|
|
644
711
|
margin-top: 10px;
|
|
645
712
|
}
|
|
646
713
|
|
|
647
714
|
.e-de-statusbar-spellcheck {
|
|
648
715
|
border-radius: 2px;
|
|
649
716
|
font-weight: 400;
|
|
650
|
-
margin-left: 7.5px;
|
|
651
717
|
}
|
|
652
718
|
|
|
653
719
|
.e-de-ctn {
|
|
@@ -660,7 +726,6 @@
|
|
|
660
726
|
|
|
661
727
|
.e-bigger .e-de-statusbar-spellcheck {
|
|
662
728
|
border-radius: 2px;
|
|
663
|
-
margin-left: 7.5px;
|
|
664
729
|
}
|
|
665
730
|
|
|
666
731
|
.e-de-ctnr-toolbar {
|
|
@@ -912,6 +977,7 @@
|
|
|
912
977
|
}
|
|
913
978
|
|
|
914
979
|
.e-de-review-pane {
|
|
980
|
+
background: #fff;
|
|
915
981
|
border-left: 1px solid #eaeaea;
|
|
916
982
|
height: 100%;
|
|
917
983
|
min-height: 200px;
|
|
@@ -929,34 +995,6 @@
|
|
|
929
995
|
width: 272px;
|
|
930
996
|
}
|
|
931
997
|
|
|
932
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
|
|
933
|
-
box-shadow: none;
|
|
934
|
-
height: 32px;
|
|
935
|
-
}
|
|
936
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
|
|
937
|
-
box-shadow: none;
|
|
938
|
-
}
|
|
939
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
|
|
940
|
-
box-shadow: none;
|
|
941
|
-
}
|
|
942
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
943
|
-
box-shadow: none;
|
|
944
|
-
}
|
|
945
|
-
|
|
946
|
-
.e-de-ctnr-group-btn button {
|
|
947
|
-
box-shadow: none;
|
|
948
|
-
height: 32px;
|
|
949
|
-
}
|
|
950
|
-
.e-de-ctnr-group-btn button:focus {
|
|
951
|
-
box-shadow: none;
|
|
952
|
-
}
|
|
953
|
-
.e-de-ctnr-group-btn button:active {
|
|
954
|
-
box-shadow: none;
|
|
955
|
-
}
|
|
956
|
-
.e-de-ctnr-group-btn button:hover {
|
|
957
|
-
box-shadow: none;
|
|
958
|
-
}
|
|
959
|
-
|
|
960
998
|
.e-de-property-div-padding {
|
|
961
999
|
border-bottom: 0.5px solid #e0e0e0;
|
|
962
1000
|
padding: 12.5px;
|
|
@@ -1080,7 +1118,7 @@
|
|
|
1080
1118
|
}
|
|
1081
1119
|
|
|
1082
1120
|
.e-de-list-header-presetmenu .e-de-list-line {
|
|
1083
|
-
border-bottom: 1px solid #ccc;
|
|
1121
|
+
border-bottom: 1px solid #ccc !important;
|
|
1084
1122
|
margin-left: 5px;
|
|
1085
1123
|
width: 100%;
|
|
1086
1124
|
}
|
|
@@ -1149,10 +1187,10 @@
|
|
|
1149
1187
|
}
|
|
1150
1188
|
|
|
1151
1189
|
.e-de-list-container {
|
|
1152
|
-
background: #fff;
|
|
1153
1190
|
border: 1px solid #ccc;
|
|
1154
1191
|
border-radius: 2px;
|
|
1155
1192
|
box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
|
|
1193
|
+
background: #fff;
|
|
1156
1194
|
box-sizing: border-box;
|
|
1157
1195
|
display: inline-block;
|
|
1158
1196
|
line-height: normal;
|
|
@@ -1427,7 +1465,7 @@
|
|
|
1427
1465
|
}
|
|
1428
1466
|
|
|
1429
1467
|
.e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
|
|
1430
|
-
height:
|
|
1468
|
+
height: 36px !important;
|
|
1431
1469
|
}
|
|
1432
1470
|
|
|
1433
1471
|
.e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
|
|
@@ -1454,7 +1492,10 @@
|
|
|
1454
1492
|
margin-left: 12px;
|
|
1455
1493
|
}
|
|
1456
1494
|
.e-rtl .e-de-listview-icon {
|
|
1495
|
+
height: auto;
|
|
1496
|
+
width: auto;
|
|
1457
1497
|
line-height: 22px;
|
|
1498
|
+
margin-left: 12px;
|
|
1458
1499
|
}
|
|
1459
1500
|
|
|
1460
1501
|
.e-bigger .de-split-button > div:first-child {
|
|
@@ -1565,7 +1606,6 @@
|
|
|
1565
1606
|
height: 82px;
|
|
1566
1607
|
}
|
|
1567
1608
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
|
|
1568
|
-
height: 25px;
|
|
1569
1609
|
margin: 0 7.5px;
|
|
1570
1610
|
}
|
|
1571
1611
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
|
|
@@ -1667,6 +1707,19 @@
|
|
|
1667
1707
|
.e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
1668
1708
|
box-shadow: none;
|
|
1669
1709
|
}
|
|
1710
|
+
.e-bigger .e-de-status-bar button {
|
|
1711
|
+
height: 38px;
|
|
1712
|
+
box-shadow: none;
|
|
1713
|
+
}
|
|
1714
|
+
.e-bigger .e-de-status-bar button:focus {
|
|
1715
|
+
box-shadow: none;
|
|
1716
|
+
}
|
|
1717
|
+
.e-bigger .e-de-status-bar button:active {
|
|
1718
|
+
box-shadow: none;
|
|
1719
|
+
}
|
|
1720
|
+
.e-bigger .e-de-status-bar button:hover {
|
|
1721
|
+
box-shadow: none;
|
|
1722
|
+
}
|
|
1670
1723
|
.e-bigger .e-de-ctnr-group-btn button {
|
|
1671
1724
|
box-shadow: none;
|
|
1672
1725
|
height: 38px;
|
|
@@ -1782,18 +1835,18 @@
|
|
|
1782
1835
|
margin-left: 10px;
|
|
1783
1836
|
}
|
|
1784
1837
|
.e-bigger .e-de-status-bar {
|
|
1785
|
-
background
|
|
1838
|
+
background: #fff;
|
|
1786
1839
|
display: -ms-flexbox;
|
|
1787
1840
|
display: flex;
|
|
1788
1841
|
padding-top: 3px;
|
|
1789
1842
|
width: 100%;
|
|
1790
1843
|
}
|
|
1791
1844
|
.e-bigger .e-de-statusbar-zoom {
|
|
1792
|
-
background-color: #fff;
|
|
1793
1845
|
border: 0;
|
|
1794
1846
|
color: #333;
|
|
1795
1847
|
float: right;
|
|
1796
1848
|
height: 34px;
|
|
1849
|
+
background-color: #fff;
|
|
1797
1850
|
}
|
|
1798
1851
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
|
|
1799
1852
|
line-height: 25px;
|
|
@@ -1809,7 +1862,10 @@
|
|
|
1809
1862
|
margin-right: 16px;
|
|
1810
1863
|
}
|
|
1811
1864
|
.e-bigger .e-de-listview-icon {
|
|
1865
|
+
height: auto;
|
|
1866
|
+
width: auto;
|
|
1812
1867
|
line-height: 22px;
|
|
1868
|
+
margin-right: 16px;
|
|
1813
1869
|
}
|
|
1814
1870
|
.e-bigger .e-rtl .e-listview .e-list-icon {
|
|
1815
1871
|
height: 24px;
|
|
@@ -1817,7 +1873,10 @@
|
|
|
1817
1873
|
margin-left: 16px;
|
|
1818
1874
|
}
|
|
1819
1875
|
.e-bigger .e-rtl .e-de-listview-icon {
|
|
1876
|
+
height: auto;
|
|
1877
|
+
width: auto;
|
|
1820
1878
|
line-height: 22px;
|
|
1879
|
+
margin-left: 16px;
|
|
1821
1880
|
}
|
|
1822
1881
|
|
|
1823
1882
|
.e-de-ctn .e-de-bzr-button {
|
|
@@ -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: #201f1e;
|
|
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 #292827;
|
|
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 #292827;
|
|
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: #201f1e;
|
|
1020
1086
|
border-left: 1px solid #292827;
|
|
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 #292827;
|
|
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 #a19f9d;
|
|
1237
|
+
border-bottom: 1px solid #a19f9d !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: #201f1e;
|
|
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: #201f1e;
|
|
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: #201f1e;
|
|
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: #201f1e;
|
|
1905
1957
|
border: 0;
|
|
1906
1958
|
color: #c8c6c4;
|
|
1907
1959
|
float: right;
|
|
1908
1960
|
height: 34px;
|
|
1961
|
+
background-color: #201f1e;
|
|
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 {
|