@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.
Files changed (127) hide show
  1. package/README.md +45 -137
  2. package/esm2020/src/document-editor/documenteditor-all.module.mjs +4 -7
  3. package/esm2020/src/document-editor/documenteditor.component.mjs +4 -11
  4. package/esm2020/src/document-editor-container/documenteditorcontainer.component.mjs +4 -4
  5. package/esm2020/src/index.mjs +2 -2
  6. package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs +10 -20
  7. package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs.map +1 -1
  8. package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs +10 -20
  9. package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs.map +1 -1
  10. package/license +10 -0
  11. package/package.json +18 -8
  12. package/schematics/utils/lib-details.ts +2 -2
  13. package/src/document-editor/documenteditor-all.module.d.ts +0 -1
  14. package/src/document-editor/documenteditor.component.d.ts +1 -2
  15. package/src/document-editor-container/documenteditorcontainer.component.d.ts +1 -2
  16. package/src/index.d.ts +1 -1
  17. package/styles/bootstrap-dark.css +102 -37
  18. package/styles/bootstrap.css +106 -37
  19. package/styles/bootstrap4.css +110 -37
  20. package/styles/bootstrap5-dark.css +102 -37
  21. package/styles/bootstrap5.css +102 -37
  22. package/styles/document-editor/_material3-dark-definition.scss +1 -0
  23. package/styles/document-editor/_material3-definition.scss +560 -0
  24. package/styles/document-editor/_theme.scss +68 -3
  25. package/styles/document-editor/bootstrap-dark.css +6 -0
  26. package/styles/document-editor/bootstrap.css +10 -0
  27. package/styles/document-editor/bootstrap4.css +14 -0
  28. package/styles/document-editor/bootstrap5-dark.css +6 -0
  29. package/styles/document-editor/bootstrap5.css +6 -0
  30. package/styles/document-editor/fabric-dark.css +6 -0
  31. package/styles/document-editor/fabric.css +10 -0
  32. package/styles/document-editor/fluent-dark.css +6 -0
  33. package/styles/document-editor/fluent.css +6 -0
  34. package/styles/document-editor/highcontrast.css +6 -0
  35. package/styles/document-editor/icons/_material3-dark.scss +1 -0
  36. package/styles/document-editor/icons/_material3.scss +6 -6
  37. package/styles/document-editor/material-dark.css +6 -0
  38. package/styles/document-editor/material.css +6 -0
  39. package/styles/document-editor/material3-dark.css +3971 -0
  40. package/styles/document-editor/material3-dark.scss +5 -0
  41. package/styles/document-editor/material3.css +4027 -0
  42. package/styles/document-editor/material3.scss +5 -0
  43. package/styles/document-editor/tailwind-dark.css +6 -0
  44. package/styles/document-editor/tailwind.css +6 -0
  45. package/styles/document-editor-container/_bootstrap-dark-definition.scss +1 -0
  46. package/styles/document-editor-container/_bootstrap-definition.scss +1 -0
  47. package/styles/document-editor-container/_bootstrap4-definition.scss +1 -0
  48. package/styles/document-editor-container/_bootstrap5-definition.scss +1 -0
  49. package/styles/document-editor-container/_fabric-dark-definition.scss +1 -0
  50. package/styles/document-editor-container/_fabric-definition.scss +1 -0
  51. package/styles/document-editor-container/_fluent-definition.scss +1 -0
  52. package/styles/document-editor-container/_fusionnew-definition.scss +1 -0
  53. package/styles/document-editor-container/_highcontrast-definition.scss +1 -0
  54. package/styles/document-editor-container/_highcontrast-light-definition.scss +1 -0
  55. package/styles/document-editor-container/_material-dark-definition.scss +2 -1
  56. package/styles/document-editor-container/_material-definition.scss +1 -0
  57. package/styles/document-editor-container/_material3-dark-definition.scss +1 -0
  58. package/styles/document-editor-container/_material3-definition.scss +163 -0
  59. package/styles/document-editor-container/_tailwind-definition.scss +1 -0
  60. package/styles/document-editor-container/_theme.scss +271 -52
  61. package/styles/document-editor-container/bootstrap-dark.css +96 -37
  62. package/styles/document-editor-container/bootstrap.css +96 -37
  63. package/styles/document-editor-container/bootstrap4.css +96 -37
  64. package/styles/document-editor-container/bootstrap5-dark.css +96 -37
  65. package/styles/document-editor-container/bootstrap5.css +96 -37
  66. package/styles/document-editor-container/fabric-dark.css +96 -37
  67. package/styles/document-editor-container/fabric.css +96 -37
  68. package/styles/document-editor-container/fluent-dark.css +96 -37
  69. package/styles/document-editor-container/fluent.css +96 -37
  70. package/styles/document-editor-container/highcontrast-light.css +96 -37
  71. package/styles/document-editor-container/highcontrast.css +96 -37
  72. package/styles/document-editor-container/icons/_bootstrap-dark.scss +15 -0
  73. package/styles/document-editor-container/icons/_bootstrap.scss +15 -0
  74. package/styles/document-editor-container/icons/_bootstrap4.scss +15 -0
  75. package/styles/document-editor-container/icons/_bootstrap5.scss +15 -0
  76. package/styles/document-editor-container/icons/_fabric-dark.scss +15 -0
  77. package/styles/document-editor-container/icons/_fabric.scss +15 -0
  78. package/styles/document-editor-container/icons/_fluent.scss +15 -0
  79. package/styles/document-editor-container/icons/_fusionnew.scss +15 -0
  80. package/styles/document-editor-container/icons/_highcontrast-light.scss +15 -0
  81. package/styles/document-editor-container/icons/_highcontrast.scss +15 -0
  82. package/styles/document-editor-container/icons/_material-dark.scss +15 -0
  83. package/styles/document-editor-container/icons/_material.scss +15 -0
  84. package/styles/document-editor-container/icons/_material3-dark.scss +1 -0
  85. package/styles/document-editor-container/icons/_material3.scss +29 -15
  86. package/styles/document-editor-container/icons/_tailwind-dark.scss +15 -0
  87. package/styles/document-editor-container/icons/_tailwind.scss +15 -0
  88. package/styles/document-editor-container/material-dark.css +101 -42
  89. package/styles/document-editor-container/material.css +97 -37
  90. package/styles/document-editor-container/material3-dark.css +2178 -0
  91. package/styles/document-editor-container/material3-dark.scss +6 -0
  92. package/styles/document-editor-container/material3.css +2234 -0
  93. package/styles/document-editor-container/material3.scss +6 -0
  94. package/styles/document-editor-container/tailwind-dark.css +95 -36
  95. package/styles/document-editor-container/tailwind.css +95 -36
  96. package/styles/fabric-dark.css +102 -37
  97. package/styles/fabric.css +106 -37
  98. package/styles/fluent-dark.css +102 -37
  99. package/styles/fluent.css +102 -37
  100. package/styles/highcontrast-light.css +96 -37
  101. package/styles/highcontrast.css +102 -37
  102. package/styles/material-dark.css +107 -42
  103. package/styles/material.css +103 -37
  104. package/styles/material3-dark.css +6094 -0
  105. package/styles/material3-dark.scss +4 -0
  106. package/styles/material3.css +6150 -0
  107. package/styles/material3.scss +4 -0
  108. package/styles/tailwind-dark.css +101 -36
  109. package/styles/tailwind.css +101 -36
  110. package/schematics/collection.json +0 -15
  111. package/schematics/generators/documenteditorcontainer-default/index.d.ts +0 -3
  112. package/schematics/generators/documenteditorcontainer-default/index.js +0 -8
  113. package/schematics/generators/documenteditorcontainer-default/sample-details.d.ts +0 -5
  114. package/schematics/generators/documenteditorcontainer-default/sample-details.js +0 -7
  115. package/schematics/generators/documenteditorcontainer-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -3
  116. package/schematics/generators/documenteditorcontainer-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -8
  117. package/schematics/generators/documenteditorcontainer-default/schema.d.ts +0 -3
  118. package/schematics/generators/documenteditorcontainer-default/schema.js +0 -2
  119. package/schematics/generators/documenteditorcontainer-default/schema.json +0 -125
  120. package/schematics/ng-add/index.d.ts +0 -3
  121. package/schematics/ng-add/index.js +0 -9
  122. package/schematics/ng-add/schema.d.ts +0 -13
  123. package/schematics/ng-add/schema.js +0 -2
  124. package/schematics/ng-add/schema.json +0 -34
  125. package/schematics/tsconfig.json +0 -25
  126. package/schematics/utils/lib-details.d.ts +0 -4
  127. package/schematics/utils/lib-details.js +0 -6
@@ -402,6 +402,21 @@
402
402
  font-family: "e-icons";
403
403
  }
404
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
+ }
419
+
405
420
  .e-de-ctnr-columns::before {
406
421
  content: "\e955";
407
422
  font-family: "e-icons";
@@ -534,6 +549,46 @@
534
549
  height: 100%;
535
550
  }
536
551
 
552
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
553
+ box-shadow: none;
554
+ height: 28px;
555
+ }
556
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
557
+ box-shadow: none;
558
+ }
559
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
560
+ box-shadow: none;
561
+ }
562
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
563
+ box-shadow: none;
564
+ }
565
+
566
+ .e-de-ctnr-group-btn-middle button {
567
+ border-radius: 0px;
568
+ }
569
+
570
+ .de-tbl-fill-clr .e-dropdown-btn.e-btn {
571
+ box-shadow: none;
572
+ }
573
+
574
+ .e-de-prop-pane .e-de-ctnr-group-btn button,
575
+ .e-de-ctn .e-de-status-bar button {
576
+ box-shadow: none;
577
+ height: 28px;
578
+ }
579
+ .e-de-prop-pane .e-de-ctnr-group-btn button:focus,
580
+ .e-de-ctn .e-de-status-bar button:focus {
581
+ box-shadow: none;
582
+ }
583
+ .e-de-prop-pane .e-de-ctnr-group-btn button:active,
584
+ .e-de-ctn .e-de-status-bar button:active {
585
+ box-shadow: none;
586
+ }
587
+ .e-de-prop-pane .e-de-ctnr-group-btn button:hover,
588
+ .e-de-ctn .e-de-status-bar button:hover {
589
+ box-shadow: none;
590
+ }
591
+
537
592
  .e-de-statusbar-pageweb {
538
593
  background: #303030;
539
594
  border: 0;
@@ -571,7 +626,10 @@
571
626
  }
572
627
 
573
628
  .e-de-listview-icon {
629
+ height: auto;
630
+ width: auto;
574
631
  line-height: 22px;
632
+ margin-right: 12px;
575
633
  }
576
634
 
577
635
  .e-de-linespacing {
@@ -642,14 +700,22 @@
642
700
  .e-de-statusbar-separator {
643
701
  border-left: 1px solid #626161;
644
702
  height: 16px;
645
- margin-left: 15.5;
703
+ margin-left: 7.5px;
704
+ margin-right: 7.5px;
705
+ margin-top: 10px;
706
+ }
707
+
708
+ .e-bigger .e-de-statusbar-separator {
709
+ border-left: 1px solid #626161;
710
+ height: 16px;
711
+ margin-left: 7.5px;
712
+ margin-right: 7.5px;
646
713
  margin-top: 10px;
647
714
  }
648
715
 
649
716
  .e-de-statusbar-spellcheck {
650
717
  border-radius: 2px;
651
718
  font-weight: 400;
652
- margin-left: 7.5px;
653
719
  }
654
720
 
655
721
  .e-de-ctn {
@@ -662,7 +728,6 @@
662
728
 
663
729
  .e-bigger .e-de-statusbar-spellcheck {
664
730
  border-radius: 2px;
665
- margin-left: 7.5px;
666
731
  }
667
732
 
668
733
  .e-de-ctnr-toolbar {
@@ -912,6 +977,7 @@
912
977
  }
913
978
 
914
979
  .e-de-review-pane {
980
+ background: #303030;
915
981
  border-left: 1px solid #616161;
916
982
  height: 100%;
917
983
  min-height: 200px;
@@ -929,34 +995,6 @@
929
995
  width: 270px;
930
996
  }
931
997
 
932
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
933
- box-shadow: none;
934
- height: 28px;
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: 28px;
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 #616161;
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: #303030;
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: #303030;
1156
1194
  box-sizing: border-box;
1157
1195
  display: inline-block;
1158
1196
  line-height: normal;
@@ -1425,7 +1463,7 @@
1425
1463
  }
1426
1464
 
1427
1465
  .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
1428
- height: 38px !important;
1466
+ height: 36px !important;
1429
1467
  }
1430
1468
 
1431
1469
  .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
@@ -1452,7 +1490,10 @@
1452
1490
  margin-left: 12px;
1453
1491
  }
1454
1492
  .e-rtl .e-de-listview-icon {
1493
+ height: auto;
1494
+ width: auto;
1455
1495
  line-height: 22px;
1496
+ margin-left: 12px;
1456
1497
  }
1457
1498
 
1458
1499
  .e-bigger .de-split-button > div:first-child {
@@ -1511,7 +1552,7 @@
1511
1552
  .e-bigger .e-de-ctnr-toolbar {
1512
1553
  display: -ms-flexbox;
1513
1554
  display: flex;
1514
- height: 82px;
1555
+ height: 90px;
1515
1556
  width: 100%;
1516
1557
  }
1517
1558
  .e-bigger .e-de-tlbr-wrapper .e-de-toolbar.e-toolbar,
@@ -1540,7 +1581,7 @@
1540
1581
  }
1541
1582
  .e-bigger .e-de-tlbr-wrapper {
1542
1583
  background-color: #212121;
1543
- height: 82px;
1584
+ height: 90px;
1544
1585
  width: calc(100% - 75px);
1545
1586
  }
1546
1587
  .e-bigger .e-de-ctnr-prop-label {
@@ -1560,10 +1601,9 @@
1560
1601
  margin-right: 14.5px;
1561
1602
  }
1562
1603
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items {
1563
- height: 82px;
1604
+ height: 90px;
1564
1605
  }
1565
1606
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
1566
- height: 25px;
1567
1607
  margin: 0 7.5px;
1568
1608
  }
1569
1609
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
@@ -1632,11 +1672,11 @@
1632
1672
  }
1633
1673
  .e-bigger .e-de-showhide-btn {
1634
1674
  border: 0;
1635
- height: 82px;
1675
+ height: 90px;
1636
1676
  }
1637
1677
  .e-bigger .e-de-showhide-btn-rtl {
1638
1678
  border: 0;
1639
- height: 82px;
1679
+ height: 90px;
1640
1680
  }
1641
1681
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
1642
1682
  padding: 0;
@@ -1665,6 +1705,19 @@
1665
1705
  .e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
1666
1706
  box-shadow: none;
1667
1707
  }
1708
+ .e-bigger .e-de-status-bar button {
1709
+ height: 36px;
1710
+ box-shadow: none;
1711
+ }
1712
+ .e-bigger .e-de-status-bar button:focus {
1713
+ box-shadow: none;
1714
+ }
1715
+ .e-bigger .e-de-status-bar button:active {
1716
+ box-shadow: none;
1717
+ }
1718
+ .e-bigger .e-de-status-bar button:hover {
1719
+ box-shadow: none;
1720
+ }
1668
1721
  .e-bigger .e-de-ctnr-group-btn button {
1669
1722
  box-shadow: none;
1670
1723
  height: 36px;
@@ -1778,18 +1831,18 @@
1778
1831
  margin-left: 10px;
1779
1832
  }
1780
1833
  .e-bigger .e-de-status-bar {
1781
- background-color: #303030;
1834
+ background: #303030;
1782
1835
  display: -ms-flexbox;
1783
1836
  display: flex;
1784
1837
  padding-top: 3.5px;
1785
1838
  width: 100%;
1786
1839
  }
1787
1840
  .e-bigger .e-de-statusbar-zoom {
1788
- background-color: #303030;
1789
1841
  border: 0;
1790
1842
  color: #fff;
1791
1843
  float: right;
1792
1844
  height: 34px;
1845
+ background-color: #303030;
1793
1846
  }
1794
1847
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
1795
1848
  line-height: 25px;
@@ -1805,7 +1858,10 @@
1805
1858
  margin-right: 12px;
1806
1859
  }
1807
1860
  .e-bigger .e-de-listview-icon {
1861
+ height: auto;
1862
+ width: auto;
1808
1863
  line-height: 22px;
1864
+ margin-right: 12px;
1809
1865
  }
1810
1866
  .e-bigger .e-rtl .e-listview .e-list-icon {
1811
1867
  height: 24px;
@@ -1813,7 +1869,10 @@
1813
1869
  margin-left: 12px;
1814
1870
  }
1815
1871
  .e-bigger .e-rtl .e-de-listview-icon {
1872
+ height: auto;
1873
+ width: auto;
1816
1874
  line-height: 22px;
1875
+ margin-left: 12px;
1817
1876
  }
1818
1877
 
1819
1878
  .e-de-ctn .e-de-bzr-button {
@@ -402,6 +402,21 @@
402
402
  font-family: "e-icons";
403
403
  }
404
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
+ }
419
+
405
420
  .e-de-ctnr-columns::before {
406
421
  content: "\e955";
407
422
  font-family: "e-icons";
@@ -534,6 +549,46 @@
534
549
  height: 100%;
535
550
  }
536
551
 
552
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
553
+ box-shadow: none;
554
+ height: 28px;
555
+ }
556
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
557
+ box-shadow: none;
558
+ }
559
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
560
+ box-shadow: none;
561
+ }
562
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
563
+ box-shadow: none;
564
+ }
565
+
566
+ .e-de-ctnr-group-btn-middle button {
567
+ border-radius: 0px;
568
+ }
569
+
570
+ .de-tbl-fill-clr .e-dropdown-btn.e-btn {
571
+ box-shadow: none;
572
+ }
573
+
574
+ .e-de-prop-pane .e-de-ctnr-group-btn button,
575
+ .e-de-ctn .e-de-status-bar button {
576
+ box-shadow: none;
577
+ height: 28px;
578
+ }
579
+ .e-de-prop-pane .e-de-ctnr-group-btn button:focus,
580
+ .e-de-ctn .e-de-status-bar button:focus {
581
+ box-shadow: none;
582
+ }
583
+ .e-de-prop-pane .e-de-ctnr-group-btn button:active,
584
+ .e-de-ctn .e-de-status-bar button:active {
585
+ box-shadow: none;
586
+ }
587
+ .e-de-prop-pane .e-de-ctnr-group-btn button:hover,
588
+ .e-de-ctn .e-de-status-bar button:hover {
589
+ box-shadow: none;
590
+ }
591
+
537
592
  .e-de-statusbar-pageweb {
538
593
  background: #fafafa;
539
594
  border: 0;
@@ -571,7 +626,10 @@
571
626
  }
572
627
 
573
628
  .e-de-listview-icon {
629
+ height: auto;
630
+ width: auto;
574
631
  line-height: 22px;
632
+ margin-right: 12px;
575
633
  }
576
634
 
577
635
  .e-de-linespacing {
@@ -642,14 +700,22 @@
642
700
  .e-de-statusbar-separator {
643
701
  border-left: 1px solid #ebebeb;
644
702
  height: 16px;
645
- margin-left: 15.5;
703
+ margin-left: 7.5px;
704
+ margin-right: 7.5px;
705
+ margin-top: 10px;
706
+ }
707
+
708
+ .e-bigger .e-de-statusbar-separator {
709
+ border-left: 1px solid #ebebeb;
710
+ height: 16px;
711
+ margin-left: 7.5px;
712
+ margin-right: 7.5px;
646
713
  margin-top: 10px;
647
714
  }
648
715
 
649
716
  .e-de-statusbar-spellcheck {
650
717
  border-radius: 2px;
651
718
  font-weight: 400;
652
- margin-left: 7.5px;
653
719
  }
654
720
 
655
721
  .e-de-ctn {
@@ -662,7 +728,6 @@
662
728
 
663
729
  .e-bigger .e-de-statusbar-spellcheck {
664
730
  border-radius: 2px;
665
- margin-left: 7.5px;
666
731
  }
667
732
 
668
733
  .e-de-ctnr-toolbar {
@@ -917,6 +982,7 @@
917
982
  }
918
983
 
919
984
  .e-de-review-pane {
985
+ background: #fafafa;
920
986
  border-left: 1px solid #e0e0e0;
921
987
  height: 100%;
922
988
  min-height: 200px;
@@ -934,34 +1000,6 @@
934
1000
  width: 270px;
935
1001
  }
936
1002
 
937
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
938
- box-shadow: none;
939
- height: 28px;
940
- }
941
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
942
- box-shadow: none;
943
- }
944
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
945
- box-shadow: none;
946
- }
947
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
948
- box-shadow: none;
949
- }
950
-
951
- .e-de-ctnr-group-btn button {
952
- box-shadow: none;
953
- height: 28px;
954
- }
955
- .e-de-ctnr-group-btn button:focus {
956
- box-shadow: none;
957
- }
958
- .e-de-ctnr-group-btn button:active {
959
- box-shadow: none;
960
- }
961
- .e-de-ctnr-group-btn button:hover {
962
- box-shadow: none;
963
- }
964
-
965
1003
  .e-de-property-div-padding {
966
1004
  border-bottom: 0.5px solid #e0e0e0;
967
1005
  padding: 12.5px;
@@ -1085,7 +1123,7 @@
1085
1123
  }
1086
1124
 
1087
1125
  .e-de-list-header-presetmenu .e-de-list-line {
1088
- border-bottom: 1px solid #ccc;
1126
+ border-bottom: 1px solid #ccc !important;
1089
1127
  margin-left: 5px;
1090
1128
  width: 100%;
1091
1129
  }
@@ -1154,10 +1192,10 @@
1154
1192
  }
1155
1193
 
1156
1194
  .e-de-list-container {
1157
- background: #fafafa;
1158
1195
  border: 1px solid #ccc;
1159
1196
  border-radius: 2px;
1160
1197
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
1198
+ background: #fafafa;
1161
1199
  box-sizing: border-box;
1162
1200
  display: inline-block;
1163
1201
  line-height: normal;
@@ -1430,7 +1468,7 @@
1430
1468
  }
1431
1469
 
1432
1470
  .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
1433
- height: 38px !important;
1471
+ height: 36px !important;
1434
1472
  }
1435
1473
 
1436
1474
  .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
@@ -1457,7 +1495,10 @@
1457
1495
  margin-left: 12px;
1458
1496
  }
1459
1497
  .e-rtl .e-de-listview-icon {
1498
+ height: auto;
1499
+ width: auto;
1460
1500
  line-height: 22px;
1501
+ margin-left: 12px;
1461
1502
  }
1462
1503
 
1463
1504
  .e-bigger .de-split-button > div:first-child {
@@ -1572,7 +1613,6 @@
1572
1613
  height: 82px;
1573
1614
  }
1574
1615
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
1575
- height: 25px;
1576
1616
  margin: 0 7.5px;
1577
1617
  }
1578
1618
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
@@ -1653,6 +1693,7 @@
1653
1693
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
1654
1694
  display: table;
1655
1695
  font-size: 13px;
1696
+ font-size: 12px !important;
1656
1697
  margin: 0 6px;
1657
1698
  padding: 0;
1658
1699
  white-space: normal;
@@ -1675,6 +1716,19 @@
1675
1716
  .e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
1676
1717
  box-shadow: none;
1677
1718
  }
1719
+ .e-bigger .e-de-status-bar button {
1720
+ height: 36px;
1721
+ box-shadow: none;
1722
+ }
1723
+ .e-bigger .e-de-status-bar button:focus {
1724
+ box-shadow: none;
1725
+ }
1726
+ .e-bigger .e-de-status-bar button:active {
1727
+ box-shadow: none;
1728
+ }
1729
+ .e-bigger .e-de-status-bar button:hover {
1730
+ box-shadow: none;
1731
+ }
1678
1732
  .e-bigger .e-de-ctnr-group-btn button {
1679
1733
  box-shadow: none;
1680
1734
  height: 36px;
@@ -1788,18 +1842,18 @@
1788
1842
  margin-left: 10px;
1789
1843
  }
1790
1844
  .e-bigger .e-de-status-bar {
1791
- background-color: #fafafa;
1845
+ background: #fafafa;
1792
1846
  display: -ms-flexbox;
1793
1847
  display: flex;
1794
1848
  padding-top: 3.5px;
1795
1849
  width: 100%;
1796
1850
  }
1797
1851
  .e-bigger .e-de-statusbar-zoom {
1798
- background-color: #fafafa;
1799
1852
  border: 0;
1800
1853
  color: #000;
1801
1854
  float: right;
1802
1855
  height: 34px;
1856
+ background-color: #fafafa;
1803
1857
  }
1804
1858
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
1805
1859
  line-height: 25px;
@@ -1814,7 +1868,10 @@
1814
1868
  margin-right: 12px;
1815
1869
  }
1816
1870
  .e-bigger .e-de-listview-icon {
1871
+ height: auto;
1872
+ width: auto;
1817
1873
  line-height: 22px;
1874
+ margin-right: 12px;
1818
1875
  }
1819
1876
  .e-bigger .e-rtl .e-listview .e-list-icon {
1820
1877
  height: 24px;
@@ -1822,7 +1879,10 @@
1822
1879
  margin-left: 12px;
1823
1880
  }
1824
1881
  .e-bigger .e-rtl .e-de-listview-icon {
1882
+ height: auto;
1883
+ width: auto;
1825
1884
  line-height: 22px;
1885
+ margin-left: 12px;
1826
1886
  }
1827
1887
 
1828
1888
  .e-de-ctn .e-de-bzr-button {