@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
@@ -399,6 +399,21 @@
399
399
  font-family: "e-icons";
400
400
  }
401
401
 
402
+ .e-de-e-paragraph-style-mark::before {
403
+ content: "\e353";
404
+ font-family: "e-icons";
405
+ }
406
+
407
+ .e-de-e-character-style-mark::before {
408
+ content: "\e98e";
409
+ font-family: "e-icons";
410
+ }
411
+
412
+ .e-de-e-linked-style-mark::before {
413
+ content: "\e992";
414
+ font-family: "e-icons";
415
+ }
416
+
402
417
  .e-de-ctnr-columns::before {
403
418
  content: "\e955";
404
419
  font-family: "e-icons";
@@ -531,6 +546,46 @@
531
546
  height: 100%;
532
547
  }
533
548
 
549
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
550
+ box-shadow: none;
551
+ height: 34px;
552
+ }
553
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
554
+ box-shadow: none;
555
+ }
556
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
557
+ box-shadow: none;
558
+ }
559
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
560
+ box-shadow: none;
561
+ }
562
+
563
+ .e-de-ctnr-group-btn-middle button {
564
+ border-radius: 0px;
565
+ }
566
+
567
+ .de-tbl-fill-clr .e-dropdown-btn.e-btn {
568
+ box-shadow: none;
569
+ }
570
+
571
+ .e-de-prop-pane .e-de-ctnr-group-btn button,
572
+ .e-de-ctn .e-de-status-bar button {
573
+ box-shadow: none;
574
+ height: 34px;
575
+ }
576
+ .e-de-prop-pane .e-de-ctnr-group-btn button:focus,
577
+ .e-de-ctn .e-de-status-bar button:focus {
578
+ box-shadow: none;
579
+ }
580
+ .e-de-prop-pane .e-de-ctnr-group-btn button:active,
581
+ .e-de-ctn .e-de-status-bar button:active {
582
+ box-shadow: none;
583
+ }
584
+ .e-de-prop-pane .e-de-ctnr-group-btn button:hover,
585
+ .e-de-ctn .e-de-status-bar button:hover {
586
+ box-shadow: none;
587
+ }
588
+
534
589
  .e-de-statusbar-pageweb {
535
590
  background: #1a1a1a;
536
591
  border: 0;
@@ -568,7 +623,10 @@
568
623
  }
569
624
 
570
625
  .e-de-listview-icon {
626
+ height: auto;
627
+ width: auto;
571
628
  line-height: 22px;
629
+ margin-right: 12px;
572
630
  }
573
631
 
574
632
  .e-de-linespacing {
@@ -639,14 +697,22 @@
639
697
  .e-de-statusbar-separator {
640
698
  border-left: 1px solid #ccc;
641
699
  height: 16px;
642
- margin-left: 15.5;
700
+ margin-left: 7.5px;
701
+ margin-right: 7.5px;
702
+ margin-top: 10px;
703
+ }
704
+
705
+ .e-bigger .e-de-statusbar-separator {
706
+ border-left: 1px solid #ccc;
707
+ height: 16px;
708
+ margin-left: 7.5px;
709
+ margin-right: 7.5px;
643
710
  margin-top: 10px;
644
711
  }
645
712
 
646
713
  .e-de-statusbar-spellcheck {
647
714
  border-radius: 2px;
648
715
  font-weight: 400;
649
- margin-left: 7.5px;
650
716
  }
651
717
 
652
718
  .e-de-ctn {
@@ -659,7 +725,6 @@
659
725
 
660
726
  .e-bigger .e-de-statusbar-spellcheck {
661
727
  border-radius: 2px;
662
- margin-left: 7.5px;
663
728
  }
664
729
 
665
730
  .e-de-ctnr-toolbar {
@@ -920,6 +985,7 @@
920
985
  }
921
986
 
922
987
  .e-de-review-pane {
988
+ background: #1a1a1a;
923
989
  border-left: 1px solid #505050;
924
990
  height: 100%;
925
991
  min-height: 200px;
@@ -937,34 +1003,6 @@
937
1003
  width: 272px;
938
1004
  }
939
1005
 
940
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
941
- box-shadow: none;
942
- height: 34px;
943
- }
944
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
945
- box-shadow: none;
946
- }
947
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
948
- box-shadow: none;
949
- }
950
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
951
- box-shadow: none;
952
- }
953
-
954
- .e-de-ctnr-group-btn button {
955
- box-shadow: none;
956
- height: 34px;
957
- }
958
- .e-de-ctnr-group-btn button:focus {
959
- box-shadow: none;
960
- }
961
- .e-de-ctnr-group-btn button:active {
962
- box-shadow: none;
963
- }
964
- .e-de-ctnr-group-btn button:hover {
965
- box-shadow: none;
966
- }
967
-
968
1006
  .e-de-property-div-padding {
969
1007
  border-bottom: 0.5px solid #505050;
970
1008
  padding: 12.5px;
@@ -1088,7 +1126,7 @@
1088
1126
  }
1089
1127
 
1090
1128
  .e-de-list-header-presetmenu .e-de-list-line {
1091
- border-bottom: 1px solid #ccc;
1129
+ border-bottom: 1px solid #ccc !important;
1092
1130
  margin-left: 5px;
1093
1131
  width: 100%;
1094
1132
  }
@@ -1157,10 +1195,10 @@
1157
1195
  }
1158
1196
 
1159
1197
  .e-de-list-container {
1160
- background: #1a1a1a;
1161
1198
  border: 1px solid #ccc;
1162
1199
  border-radius: 2px;
1163
1200
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
1201
+ background: #1a1a1a;
1164
1202
  box-sizing: border-box;
1165
1203
  display: inline-block;
1166
1204
  line-height: normal;
@@ -1433,7 +1471,7 @@
1433
1471
  }
1434
1472
 
1435
1473
  .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
1436
- height: 38px !important;
1474
+ height: 36px !important;
1437
1475
  }
1438
1476
 
1439
1477
  .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
@@ -1460,7 +1498,10 @@
1460
1498
  margin-left: 12px;
1461
1499
  }
1462
1500
  .e-rtl .e-de-listview-icon {
1501
+ height: auto;
1502
+ width: auto;
1463
1503
  line-height: 22px;
1504
+ margin-left: 12px;
1464
1505
  }
1465
1506
 
1466
1507
  .e-bigger .de-split-button > div:first-child {
@@ -1580,7 +1621,6 @@
1580
1621
  height: 82px;
1581
1622
  }
1582
1623
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
1583
- height: 25px;
1584
1624
  margin: 0 7.5px;
1585
1625
  }
1586
1626
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
@@ -1682,6 +1722,19 @@
1682
1722
  .e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
1683
1723
  box-shadow: none;
1684
1724
  }
1725
+ .e-bigger .e-de-status-bar button {
1726
+ height: 38px;
1727
+ box-shadow: none;
1728
+ }
1729
+ .e-bigger .e-de-status-bar button:focus {
1730
+ box-shadow: none;
1731
+ }
1732
+ .e-bigger .e-de-status-bar button:active {
1733
+ box-shadow: none;
1734
+ }
1735
+ .e-bigger .e-de-status-bar button:hover {
1736
+ box-shadow: none;
1737
+ }
1685
1738
  .e-bigger .e-de-ctnr-group-btn button {
1686
1739
  box-shadow: none;
1687
1740
  height: 38px;
@@ -1795,18 +1848,18 @@
1795
1848
  margin-left: 10px;
1796
1849
  }
1797
1850
  .e-bigger .e-de-status-bar {
1798
- background-color: #1a1a1a;
1851
+ background: #1a1a1a;
1799
1852
  display: -ms-flexbox;
1800
1853
  display: flex;
1801
1854
  padding-top: 2.5px;
1802
1855
  width: 100%;
1803
1856
  }
1804
1857
  .e-bigger .e-de-statusbar-zoom {
1805
- background-color: #1a1a1a;
1806
1858
  border: 0;
1807
1859
  color: #fff;
1808
1860
  float: right;
1809
1861
  height: 34px;
1862
+ background-color: #1a1a1a;
1810
1863
  }
1811
1864
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
1812
1865
  line-height: 25px;
@@ -1822,7 +1875,10 @@
1822
1875
  margin-right: 16px;
1823
1876
  }
1824
1877
  .e-bigger .e-de-listview-icon {
1878
+ height: auto;
1879
+ width: auto;
1825
1880
  line-height: 22px;
1881
+ margin-right: 16px;
1826
1882
  }
1827
1883
  .e-bigger .e-rtl .e-listview .e-list-icon {
1828
1884
  height: 24px;
@@ -1830,7 +1886,10 @@
1830
1886
  margin-left: 16px;
1831
1887
  }
1832
1888
  .e-bigger .e-rtl .e-de-listview-icon {
1889
+ height: auto;
1890
+ width: auto;
1833
1891
  line-height: 22px;
1892
+ margin-left: 16px;
1834
1893
  }
1835
1894
 
1836
1895
  .e-de-ctn .e-de-bzr-button {
@@ -399,6 +399,21 @@
399
399
  font-family: "e-icons";
400
400
  }
401
401
 
402
+ .e-de-e-paragraph-style-mark::before {
403
+ content: "\e353";
404
+ font-family: "e-icons";
405
+ }
406
+
407
+ .e-de-e-character-style-mark::before {
408
+ content: "\e98e";
409
+ font-family: "e-icons";
410
+ }
411
+
412
+ .e-de-e-linked-style-mark::before {
413
+ content: "\e992";
414
+ font-family: "e-icons";
415
+ }
416
+
402
417
  .e-de-ctnr-columns::before {
403
418
  content: "\e955";
404
419
  font-family: "e-icons";
@@ -531,6 +546,46 @@
531
546
  height: 100%;
532
547
  }
533
548
 
549
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
550
+ box-shadow: none;
551
+ height: 34px;
552
+ }
553
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
554
+ box-shadow: none;
555
+ }
556
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
557
+ box-shadow: none;
558
+ }
559
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
560
+ box-shadow: none;
561
+ }
562
+
563
+ .e-de-ctnr-group-btn-middle button {
564
+ border-radius: 0px;
565
+ }
566
+
567
+ .de-tbl-fill-clr .e-dropdown-btn.e-btn {
568
+ box-shadow: none;
569
+ }
570
+
571
+ .e-de-prop-pane .e-de-ctnr-group-btn button,
572
+ .e-de-ctn .e-de-status-bar button {
573
+ box-shadow: none;
574
+ height: 34px;
575
+ }
576
+ .e-de-prop-pane .e-de-ctnr-group-btn button:focus,
577
+ .e-de-ctn .e-de-status-bar button:focus {
578
+ box-shadow: none;
579
+ }
580
+ .e-de-prop-pane .e-de-ctnr-group-btn button:active,
581
+ .e-de-ctn .e-de-status-bar button:active {
582
+ box-shadow: none;
583
+ }
584
+ .e-de-prop-pane .e-de-ctnr-group-btn button:hover,
585
+ .e-de-ctn .e-de-status-bar button:hover {
586
+ box-shadow: none;
587
+ }
588
+
534
589
  .e-de-statusbar-pageweb {
535
590
  background: #f8f8f8;
536
591
  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 #ccc;
642
700
  height: 16px;
643
- margin-left: 15.5;
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 #ccc;
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 {
@@ -921,6 +986,7 @@
921
986
  }
922
987
 
923
988
  .e-de-review-pane {
989
+ background: #f8f8f8;
924
990
  border-left: 1px solid #e6e6e6;
925
991
  height: 100%;
926
992
  min-height: 200px;
@@ -938,34 +1004,6 @@
938
1004
  width: 272px;
939
1005
  }
940
1006
 
941
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
942
- box-shadow: none;
943
- height: 34px;
944
- }
945
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
946
- box-shadow: none;
947
- }
948
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
949
- box-shadow: none;
950
- }
951
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
952
- box-shadow: none;
953
- }
954
-
955
- .e-de-ctnr-group-btn button {
956
- box-shadow: none;
957
- height: 34px;
958
- }
959
- .e-de-ctnr-group-btn button:focus {
960
- box-shadow: none;
961
- }
962
- .e-de-ctnr-group-btn button:active {
963
- box-shadow: none;
964
- }
965
- .e-de-ctnr-group-btn button:hover {
966
- box-shadow: none;
967
- }
968
-
969
1007
  .e-de-property-div-padding {
970
1008
  border-bottom: 0.5px solid #e0e0e0;
971
1009
  padding: 12.5px;
@@ -1090,7 +1128,7 @@
1090
1128
  }
1091
1129
 
1092
1130
  .e-de-list-header-presetmenu .e-de-list-line {
1093
- border-bottom: 1px solid #ccc;
1131
+ border-bottom: 1px solid #ccc !important;
1094
1132
  margin-left: 5px;
1095
1133
  width: 100%;
1096
1134
  }
@@ -1159,10 +1197,10 @@
1159
1197
  }
1160
1198
 
1161
1199
  .e-de-list-container {
1162
- background: #f8f8f8;
1163
1200
  border: 1px solid #ccc;
1164
1201
  border-radius: 2px;
1165
1202
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
1203
+ background: #f8f8f8;
1166
1204
  box-sizing: border-box;
1167
1205
  display: inline-block;
1168
1206
  line-height: normal;
@@ -1435,7 +1473,7 @@
1435
1473
  }
1436
1474
 
1437
1475
  .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
1438
- height: 38px !important;
1476
+ height: 36px !important;
1439
1477
  }
1440
1478
 
1441
1479
  .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
@@ -1462,7 +1500,10 @@
1462
1500
  margin-left: 12px;
1463
1501
  }
1464
1502
  .e-rtl .e-de-listview-icon {
1503
+ height: auto;
1504
+ width: auto;
1465
1505
  line-height: 22px;
1506
+ margin-left: 12px;
1466
1507
  }
1467
1508
 
1468
1509
  .e-bigger .de-split-button > div:first-child {
@@ -1582,7 +1623,6 @@
1582
1623
  height: 82px;
1583
1624
  }
1584
1625
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
1585
- height: 25px;
1586
1626
  margin: 0 7.5px;
1587
1627
  }
1588
1628
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
@@ -1684,6 +1724,19 @@
1684
1724
  .e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
1685
1725
  box-shadow: none;
1686
1726
  }
1727
+ .e-bigger .e-de-status-bar button {
1728
+ height: 38px;
1729
+ box-shadow: none;
1730
+ }
1731
+ .e-bigger .e-de-status-bar button:focus {
1732
+ box-shadow: none;
1733
+ }
1734
+ .e-bigger .e-de-status-bar button:active {
1735
+ box-shadow: none;
1736
+ }
1737
+ .e-bigger .e-de-status-bar button:hover {
1738
+ box-shadow: none;
1739
+ }
1687
1740
  .e-bigger .e-de-ctnr-group-btn button {
1688
1741
  box-shadow: none;
1689
1742
  height: 38px;
@@ -1804,18 +1857,18 @@
1804
1857
  margin-left: 10px;
1805
1858
  }
1806
1859
  .e-bigger .e-de-status-bar {
1807
- background-color: #f8f8f8;
1860
+ background: #f8f8f8;
1808
1861
  display: -ms-flexbox;
1809
1862
  display: flex;
1810
1863
  padding-top: 2.5px;
1811
1864
  width: 100%;
1812
1865
  }
1813
1866
  .e-bigger .e-de-statusbar-zoom {
1814
- background-color: #f8f8f8;
1815
1867
  border: 0;
1816
1868
  color: #333;
1817
1869
  float: right;
1818
1870
  height: 34px;
1871
+ background-color: #f8f8f8;
1819
1872
  }
1820
1873
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
1821
1874
  line-height: 25px;
@@ -1831,7 +1884,10 @@
1831
1884
  margin-right: 16px;
1832
1885
  }
1833
1886
  .e-bigger .e-de-listview-icon {
1887
+ height: auto;
1888
+ width: auto;
1834
1889
  line-height: 22px;
1890
+ margin-right: 16px;
1835
1891
  }
1836
1892
  .e-bigger .e-rtl .e-listview .e-list-icon {
1837
1893
  height: 24px;
@@ -1839,7 +1895,10 @@
1839
1895
  margin-left: 16px;
1840
1896
  }
1841
1897
  .e-bigger .e-rtl .e-de-listview-icon {
1898
+ height: auto;
1899
+ width: auto;
1842
1900
  line-height: 22px;
1901
+ margin-left: 16px;
1843
1902
  }
1844
1903
 
1845
1904
  .e-de-ctn .e-de-bzr-button {