@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
@@ -0,0 +1,6 @@
1
+ @import 'ej2-base/styles/material3-definition.scss';
2
+
3
+ @import '../document-editor/material3-definition.scss';
4
+ @import 'material3-definition.scss';
5
+ @import 'icons/material3.scss';
6
+ @import 'all.scss';
@@ -426,6 +426,21 @@
426
426
  font-family: "e-icons";
427
427
  }
428
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
+ }
443
+
429
444
  .e-de-ctnr-columns::before {
430
445
  content: "\e89d";
431
446
  font-family: "e-icons";
@@ -558,6 +573,46 @@
558
573
  height: 100%;
559
574
  }
560
575
 
576
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
577
+ box-shadow: none;
578
+ height: 31px;
579
+ }
580
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
581
+ box-shadow: none;
582
+ }
583
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
584
+ box-shadow: none;
585
+ }
586
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
587
+ box-shadow: none;
588
+ }
589
+
590
+ .e-de-ctnr-group-btn-middle button {
591
+ border-radius: 0px;
592
+ }
593
+
594
+ .de-tbl-fill-clr .e-dropdown-btn.e-btn {
595
+ box-shadow: none;
596
+ }
597
+
598
+ .e-de-prop-pane .e-de-ctnr-group-btn button,
599
+ .e-de-ctn .e-de-status-bar button {
600
+ box-shadow: none;
601
+ height: 31px;
602
+ }
603
+ .e-de-prop-pane .e-de-ctnr-group-btn button:focus,
604
+ .e-de-ctn .e-de-status-bar button:focus {
605
+ box-shadow: none;
606
+ }
607
+ .e-de-prop-pane .e-de-ctnr-group-btn button:active,
608
+ .e-de-ctn .e-de-status-bar button:active {
609
+ box-shadow: none;
610
+ }
611
+ .e-de-prop-pane .e-de-ctnr-group-btn button:hover,
612
+ .e-de-ctn .e-de-status-bar button:hover {
613
+ box-shadow: none;
614
+ }
615
+
561
616
  .e-de-statusbar-pageweb {
562
617
  background: #374151;
563
618
  border: 0;
@@ -590,7 +645,10 @@
590
645
  }
591
646
 
592
647
  .e-de-listview-icon {
648
+ height: auto;
649
+ width: auto;
593
650
  line-height: 22px;
651
+ margin-right: 10px;
594
652
  }
595
653
 
596
654
  .e-de-linespacing {
@@ -687,14 +745,22 @@
687
745
  .e-de-statusbar-separator {
688
746
  border-left: 1px solid #4b5563;
689
747
  height: 16px;
690
- margin-left: 0;
748
+ margin-left: 7.5px;
749
+ margin-right: 7.5px;
750
+ margin-top: 6px;
751
+ }
752
+
753
+ .e-bigger .e-de-statusbar-separator {
754
+ border-left: 1px solid #4b5563;
755
+ height: 16px;
756
+ margin-left: 7.5px;
757
+ margin-right: 7.5px;
691
758
  margin-top: 6px;
692
759
  }
693
760
 
694
761
  .e-de-statusbar-spellcheck {
695
762
  border-radius: 2px;
696
763
  font-weight: 400;
697
- margin-left: 7.5px;
698
764
  }
699
765
 
700
766
  .e-de-ctn {
@@ -707,7 +773,6 @@
707
773
 
708
774
  .e-bigger .e-de-statusbar-spellcheck {
709
775
  border-radius: 2px;
710
- margin-left: 7.5px;
711
776
  }
712
777
 
713
778
  .e-de-ctnr-toolbar {
@@ -1006,6 +1071,7 @@
1006
1071
  }
1007
1072
 
1008
1073
  .e-de-review-pane {
1074
+ background: #232e3e;
1009
1075
  border-left: 1px solid #6b7280;
1010
1076
  height: 100%;
1011
1077
  min-height: 200px;
@@ -1030,34 +1096,6 @@
1030
1096
  margin-bottom: 16px;
1031
1097
  }
1032
1098
 
1033
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
1034
- box-shadow: none;
1035
- height: 31px;
1036
- }
1037
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
1038
- box-shadow: none;
1039
- }
1040
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
1041
- box-shadow: none;
1042
- }
1043
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
1044
- box-shadow: none;
1045
- }
1046
-
1047
- .e-de-ctnr-group-btn button {
1048
- box-shadow: none;
1049
- height: 31px;
1050
- }
1051
- .e-de-ctnr-group-btn button:focus {
1052
- box-shadow: none;
1053
- }
1054
- .e-de-ctnr-group-btn button:active {
1055
- box-shadow: none;
1056
- }
1057
- .e-de-ctnr-group-btn button:hover {
1058
- box-shadow: none;
1059
- }
1060
-
1061
1099
  .e-de-property-div-padding {
1062
1100
  border-bottom: 0.5px solid #4b5563;
1063
1101
  padding: 12px;
@@ -1191,7 +1229,7 @@
1191
1229
  }
1192
1230
 
1193
1231
  .e-de-list-header-presetmenu .e-de-list-line {
1194
- border-bottom: 1px solid #d1d5db;
1232
+ border-bottom: 1px solid #d1d5db !important;
1195
1233
  margin-left: 5px;
1196
1234
  width: 100%;
1197
1235
  }
@@ -1519,7 +1557,7 @@
1519
1557
  }
1520
1558
 
1521
1559
  .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
1522
- height: 38px !important;
1560
+ height: 36px !important;
1523
1561
  }
1524
1562
 
1525
1563
  .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
@@ -1556,7 +1594,10 @@
1556
1594
  margin-left: 10px;
1557
1595
  }
1558
1596
  .e-rtl .e-de-listview-icon {
1597
+ height: auto;
1598
+ width: auto;
1559
1599
  line-height: 22px;
1600
+ margin-left: 10px;
1560
1601
  }
1561
1602
 
1562
1603
  .e-bigger .de-split-button > div:first-child {
@@ -1677,7 +1718,6 @@
1677
1718
  height: 81px;
1678
1719
  }
1679
1720
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
1680
- height: 25px;
1681
1721
  margin: 0 12px;
1682
1722
  }
1683
1723
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
@@ -1780,6 +1820,19 @@
1780
1820
  .e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
1781
1821
  box-shadow: none;
1782
1822
  }
1823
+ .e-bigger .e-de-status-bar button {
1824
+ height: 38px;
1825
+ box-shadow: none;
1826
+ }
1827
+ .e-bigger .e-de-status-bar button:focus {
1828
+ box-shadow: none;
1829
+ }
1830
+ .e-bigger .e-de-status-bar button:active {
1831
+ box-shadow: none;
1832
+ }
1833
+ .e-bigger .e-de-status-bar button:hover {
1834
+ box-shadow: none;
1835
+ }
1783
1836
  .e-bigger .e-de-ctnr-group-btn button {
1784
1837
  box-shadow: none;
1785
1838
  height: 38px;
@@ -1885,18 +1938,18 @@
1885
1938
  margin-left: 10px;
1886
1939
  }
1887
1940
  .e-bigger .e-de-status-bar {
1888
- background-color: #374151;
1941
+ background: #374151;
1889
1942
  display: -ms-flexbox;
1890
1943
  display: flex;
1891
1944
  padding-top: 6px;
1892
1945
  width: 100%;
1893
1946
  }
1894
1947
  .e-bigger .e-de-statusbar-zoom {
1895
- background-color: #374151;
1896
1948
  border: 0;
1897
1949
  color: #9ca3af;
1898
1950
  float: right;
1899
1951
  height: 34px;
1952
+ background-color: #374151;
1900
1953
  }
1901
1954
  .e-bigger .e-listview .e-list-icon {
1902
1955
  height: 24px;
@@ -1904,7 +1957,10 @@
1904
1957
  margin-right: 16px;
1905
1958
  }
1906
1959
  .e-bigger .e-de-listview-icon {
1960
+ height: auto;
1961
+ width: auto;
1907
1962
  line-height: 22px;
1963
+ margin-right: 16px;
1908
1964
  }
1909
1965
  .e-bigger .e-rtl .e-listview .e-list-icon {
1910
1966
  height: 24px;
@@ -1912,7 +1968,10 @@
1912
1968
  margin-left: 16px;
1913
1969
  }
1914
1970
  .e-bigger .e-rtl .e-de-listview-icon {
1971
+ height: auto;
1972
+ width: auto;
1915
1973
  line-height: 22px;
1974
+ margin-left: 16px;
1916
1975
  }
1917
1976
 
1918
1977
  .e-de-ctn .e-de-bzr-button {
@@ -426,6 +426,21 @@
426
426
  font-family: "e-icons";
427
427
  }
428
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
+ }
443
+
429
444
  .e-de-ctnr-columns::before {
430
445
  content: "\e89d";
431
446
  font-family: "e-icons";
@@ -558,6 +573,46 @@
558
573
  height: 100%;
559
574
  }
560
575
 
576
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
577
+ box-shadow: none;
578
+ height: 31px;
579
+ }
580
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
581
+ box-shadow: none;
582
+ }
583
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
584
+ box-shadow: none;
585
+ }
586
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
587
+ box-shadow: none;
588
+ }
589
+
590
+ .e-de-ctnr-group-btn-middle button {
591
+ border-radius: 0px;
592
+ }
593
+
594
+ .de-tbl-fill-clr .e-dropdown-btn.e-btn {
595
+ box-shadow: none;
596
+ }
597
+
598
+ .e-de-prop-pane .e-de-ctnr-group-btn button,
599
+ .e-de-ctn .e-de-status-bar button {
600
+ box-shadow: none;
601
+ height: 31px;
602
+ }
603
+ .e-de-prop-pane .e-de-ctnr-group-btn button:focus,
604
+ .e-de-ctn .e-de-status-bar button:focus {
605
+ box-shadow: none;
606
+ }
607
+ .e-de-prop-pane .e-de-ctnr-group-btn button:active,
608
+ .e-de-ctn .e-de-status-bar button:active {
609
+ box-shadow: none;
610
+ }
611
+ .e-de-prop-pane .e-de-ctnr-group-btn button:hover,
612
+ .e-de-ctn .e-de-status-bar button:hover {
613
+ box-shadow: none;
614
+ }
615
+
561
616
  .e-de-statusbar-pageweb {
562
617
  background: #f3f4f6;
563
618
  border: 0;
@@ -590,7 +645,10 @@
590
645
  }
591
646
 
592
647
  .e-de-listview-icon {
648
+ height: auto;
649
+ width: auto;
593
650
  line-height: 22px;
651
+ margin-right: 10px;
594
652
  }
595
653
 
596
654
  .e-de-linespacing {
@@ -687,14 +745,22 @@
687
745
  .e-de-statusbar-separator {
688
746
  border-left: 1px solid #e5e7eb;
689
747
  height: 16px;
690
- margin-left: 0;
748
+ margin-left: 7.5px;
749
+ margin-right: 7.5px;
750
+ margin-top: 6px;
751
+ }
752
+
753
+ .e-bigger .e-de-statusbar-separator {
754
+ border-left: 1px solid #e5e7eb;
755
+ height: 16px;
756
+ margin-left: 7.5px;
757
+ margin-right: 7.5px;
691
758
  margin-top: 6px;
692
759
  }
693
760
 
694
761
  .e-de-statusbar-spellcheck {
695
762
  border-radius: 2px;
696
763
  font-weight: 400;
697
- margin-left: 7.5px;
698
764
  }
699
765
 
700
766
  .e-de-ctn {
@@ -707,7 +773,6 @@
707
773
 
708
774
  .e-bigger .e-de-statusbar-spellcheck {
709
775
  border-radius: 2px;
710
- margin-left: 7.5px;
711
776
  }
712
777
 
713
778
  .e-de-ctnr-toolbar {
@@ -1006,6 +1071,7 @@
1006
1071
  }
1007
1072
 
1008
1073
  .e-de-review-pane {
1074
+ background: #f9fafb;
1009
1075
  border-left: 1px solid #d1d5db;
1010
1076
  height: 100%;
1011
1077
  min-height: 200px;
@@ -1030,34 +1096,6 @@
1030
1096
  margin-bottom: 16px;
1031
1097
  }
1032
1098
 
1033
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
1034
- box-shadow: none;
1035
- height: 31px;
1036
- }
1037
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
1038
- box-shadow: none;
1039
- }
1040
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
1041
- box-shadow: none;
1042
- }
1043
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
1044
- box-shadow: none;
1045
- }
1046
-
1047
- .e-de-ctnr-group-btn button {
1048
- box-shadow: none;
1049
- height: 31px;
1050
- }
1051
- .e-de-ctnr-group-btn button:focus {
1052
- box-shadow: none;
1053
- }
1054
- .e-de-ctnr-group-btn button:active {
1055
- box-shadow: none;
1056
- }
1057
- .e-de-ctnr-group-btn button:hover {
1058
- box-shadow: none;
1059
- }
1060
-
1061
1099
  .e-de-property-div-padding {
1062
1100
  border-bottom: 0.5px solid #e5e7eb;
1063
1101
  padding: 12px;
@@ -1191,7 +1229,7 @@
1191
1229
  }
1192
1230
 
1193
1231
  .e-de-list-header-presetmenu .e-de-list-line {
1194
- border-bottom: 1px solid #6b7280;
1232
+ border-bottom: 1px solid #6b7280 !important;
1195
1233
  margin-left: 5px;
1196
1234
  width: 100%;
1197
1235
  }
@@ -1519,7 +1557,7 @@
1519
1557
  }
1520
1558
 
1521
1559
  .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
1522
- height: 38px !important;
1560
+ height: 36px !important;
1523
1561
  }
1524
1562
 
1525
1563
  .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
@@ -1556,7 +1594,10 @@
1556
1594
  margin-left: 10px;
1557
1595
  }
1558
1596
  .e-rtl .e-de-listview-icon {
1597
+ height: auto;
1598
+ width: auto;
1559
1599
  line-height: 22px;
1600
+ margin-left: 10px;
1560
1601
  }
1561
1602
 
1562
1603
  .e-bigger .de-split-button > div:first-child {
@@ -1677,7 +1718,6 @@
1677
1718
  height: 81px;
1678
1719
  }
1679
1720
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
1680
- height: 25px;
1681
1721
  margin: 0 12px;
1682
1722
  }
1683
1723
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
@@ -1780,6 +1820,19 @@
1780
1820
  .e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
1781
1821
  box-shadow: none;
1782
1822
  }
1823
+ .e-bigger .e-de-status-bar button {
1824
+ height: 38px;
1825
+ box-shadow: none;
1826
+ }
1827
+ .e-bigger .e-de-status-bar button:focus {
1828
+ box-shadow: none;
1829
+ }
1830
+ .e-bigger .e-de-status-bar button:active {
1831
+ box-shadow: none;
1832
+ }
1833
+ .e-bigger .e-de-status-bar button:hover {
1834
+ box-shadow: none;
1835
+ }
1783
1836
  .e-bigger .e-de-ctnr-group-btn button {
1784
1837
  box-shadow: none;
1785
1838
  height: 38px;
@@ -1885,18 +1938,18 @@
1885
1938
  margin-left: 10px;
1886
1939
  }
1887
1940
  .e-bigger .e-de-status-bar {
1888
- background-color: #f3f4f6;
1941
+ background: #f3f4f6;
1889
1942
  display: -ms-flexbox;
1890
1943
  display: flex;
1891
1944
  padding-top: 6px;
1892
1945
  width: 100%;
1893
1946
  }
1894
1947
  .e-bigger .e-de-statusbar-zoom {
1895
- background-color: #f3f4f6;
1896
1948
  border: 0;
1897
1949
  color: #6b7280;
1898
1950
  float: right;
1899
1951
  height: 34px;
1952
+ background-color: #f3f4f6;
1900
1953
  }
1901
1954
  .e-bigger .e-listview .e-list-icon {
1902
1955
  height: 24px;
@@ -1904,7 +1957,10 @@
1904
1957
  margin-right: 16px;
1905
1958
  }
1906
1959
  .e-bigger .e-de-listview-icon {
1960
+ height: auto;
1961
+ width: auto;
1907
1962
  line-height: 22px;
1963
+ margin-right: 16px;
1908
1964
  }
1909
1965
  .e-bigger .e-rtl .e-listview .e-list-icon {
1910
1966
  height: 24px;
@@ -1912,7 +1968,10 @@
1912
1968
  margin-left: 16px;
1913
1969
  }
1914
1970
  .e-bigger .e-rtl .e-de-listview-icon {
1971
+ height: auto;
1972
+ width: auto;
1915
1973
  line-height: 22px;
1974
+ margin-left: 16px;
1916
1975
  }
1917
1976
 
1918
1977
  .e-de-ctn .e-de-bzr-button {