@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: "\e720";
404
+ font-family: "e-icons";
405
+ }
406
+
407
+ .e-de-e-character-style-mark::before {
408
+ content: "\e97b";
409
+ font-family: "e-icons";
410
+ }
411
+
412
+ .e-de-e-linked-style-mark::before {
413
+ content: "\e97c";
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: 31px;
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: 31px;
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: #f8f9fa;
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: 14px;
573
631
  }
574
632
 
575
633
  .e-de-linespacing {
@@ -641,14 +699,22 @@
641
699
  .e-de-statusbar-separator {
642
700
  border-left: 1px solid #495057;
643
701
  height: 16px;
644
- margin-left: 15.5;
702
+ margin-left: 7.5px;
703
+ margin-right: 7.5px;
704
+ margin-top: 10px;
705
+ }
706
+
707
+ .e-bigger .e-de-statusbar-separator {
708
+ border-left: 1px solid #495057;
709
+ height: 16px;
710
+ margin-left: 7.5px;
711
+ margin-right: 7.5px;
645
712
  margin-top: 10px;
646
713
  }
647
714
 
648
715
  .e-de-statusbar-spellcheck {
649
716
  border-radius: 2px;
650
717
  font-weight: 400;
651
- margin-left: 7.5px;
652
718
  }
653
719
 
654
720
  .e-de-ctn {
@@ -661,7 +727,6 @@
661
727
 
662
728
  .e-bigger .e-de-statusbar-spellcheck {
663
729
  border-radius: 2px;
664
- margin-left: 7.5px;
665
730
  }
666
731
 
667
732
  .e-de-ctnr-toolbar {
@@ -1082,6 +1147,7 @@
1082
1147
  }
1083
1148
 
1084
1149
  .e-de-review-pane {
1150
+ background: #f8f9fa;
1085
1151
  border-left: 1px solid #dee2e6;
1086
1152
  height: 100%;
1087
1153
  min-height: 200px;
@@ -1105,34 +1171,6 @@
1105
1171
  border-color: #ced4da;
1106
1172
  }
1107
1173
 
1108
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
1109
- box-shadow: none;
1110
- height: 31px;
1111
- }
1112
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
1113
- box-shadow: none;
1114
- }
1115
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
1116
- box-shadow: none;
1117
- }
1118
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
1119
- box-shadow: none;
1120
- }
1121
-
1122
- .e-de-ctnr-group-btn button {
1123
- box-shadow: none;
1124
- height: 31px;
1125
- }
1126
- .e-de-ctnr-group-btn button:focus {
1127
- box-shadow: none;
1128
- }
1129
- .e-de-ctnr-group-btn button:active {
1130
- box-shadow: none;
1131
- }
1132
- .e-de-ctnr-group-btn button:hover {
1133
- box-shadow: none;
1134
- }
1135
-
1136
1174
  .e-de-property-div-padding {
1137
1175
  border-bottom: 0.5px solid #dee2e6;
1138
1176
  padding: 12.5px;
@@ -1257,7 +1295,7 @@
1257
1295
  }
1258
1296
 
1259
1297
  .e-de-list-header-presetmenu .e-de-list-line {
1260
- border-bottom: 1px solid #495057;
1298
+ border-bottom: 1px solid #495057 !important;
1261
1299
  margin-left: 5px;
1262
1300
  width: 100%;
1263
1301
  }
@@ -1326,10 +1364,10 @@
1326
1364
  }
1327
1365
 
1328
1366
  .e-de-list-container {
1329
- background: #f8f9fa;
1330
1367
  border: 1px solid #ccc;
1331
1368
  border-radius: 2px;
1332
1369
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
1370
+ background: #f8f9fa;
1333
1371
  box-sizing: border-box;
1334
1372
  display: inline-block;
1335
1373
  line-height: normal;
@@ -1601,7 +1639,7 @@
1601
1639
  }
1602
1640
 
1603
1641
  .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
1604
- height: 38px !important;
1642
+ height: 36px !important;
1605
1643
  }
1606
1644
 
1607
1645
  .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
@@ -1628,7 +1666,10 @@
1628
1666
  margin-left: 14px;
1629
1667
  }
1630
1668
  .e-rtl .e-de-listview-icon {
1669
+ height: auto;
1670
+ width: auto;
1631
1671
  line-height: 22px;
1672
+ margin-left: 14px;
1632
1673
  }
1633
1674
 
1634
1675
  .e-bigger .de-split-button > div:first-child {
@@ -1748,7 +1789,6 @@
1748
1789
  height: 86px;
1749
1790
  }
1750
1791
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
1751
- height: 25px;
1752
1792
  margin: 0 7.5px;
1753
1793
  }
1754
1794
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
@@ -1870,6 +1910,19 @@
1870
1910
  .e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
1871
1911
  box-shadow: none;
1872
1912
  }
1913
+ .e-bigger .e-de-status-bar button {
1914
+ height: 38px;
1915
+ box-shadow: none;
1916
+ }
1917
+ .e-bigger .e-de-status-bar button:focus {
1918
+ box-shadow: none;
1919
+ }
1920
+ .e-bigger .e-de-status-bar button:active {
1921
+ box-shadow: none;
1922
+ }
1923
+ .e-bigger .e-de-status-bar button:hover {
1924
+ box-shadow: none;
1925
+ }
1873
1926
  .e-bigger .e-de-ctnr-group-btn button {
1874
1927
  box-shadow: none;
1875
1928
  height: 38px;
@@ -1990,18 +2043,18 @@
1990
2043
  margin-left: 10px;
1991
2044
  }
1992
2045
  .e-bigger .e-de-status-bar {
1993
- background-color: #f8f9fa;
2046
+ background: #f8f9fa;
1994
2047
  display: -ms-flexbox;
1995
2048
  display: flex;
1996
2049
  padding-top: 3px;
1997
2050
  width: 100%;
1998
2051
  }
1999
2052
  .e-bigger .e-de-statusbar-zoom {
2000
- background-color: #f8f9fa;
2001
2053
  border: 0;
2002
2054
  color: #212529;
2003
2055
  float: right;
2004
2056
  height: 34px;
2057
+ background-color: #f8f9fa;
2005
2058
  }
2006
2059
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
2007
2060
  line-height: 25px;
@@ -2017,7 +2070,10 @@
2017
2070
  margin-right: 16px;
2018
2071
  }
2019
2072
  .e-bigger .e-de-listview-icon {
2073
+ height: auto;
2074
+ width: auto;
2020
2075
  line-height: 22px;
2076
+ margin-right: 16px;
2021
2077
  }
2022
2078
  .e-bigger .e-rtl .e-listview .e-list-icon {
2023
2079
  height: 24px;
@@ -2025,7 +2081,10 @@
2025
2081
  margin-left: 16px;
2026
2082
  }
2027
2083
  .e-bigger .e-rtl .e-de-listview-icon {
2084
+ height: auto;
2085
+ width: auto;
2028
2086
  line-height: 22px;
2087
+ margin-left: 16px;
2029
2088
  }
2030
2089
 
2031
2090
  .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";
@@ -557,6 +572,46 @@
557
572
  height: 100%;
558
573
  }
559
574
 
575
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
576
+ box-shadow: none;
577
+ height: 31px;
578
+ }
579
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
580
+ box-shadow: none;
581
+ }
582
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
583
+ box-shadow: none;
584
+ }
585
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
586
+ box-shadow: none;
587
+ }
588
+
589
+ .e-de-ctnr-group-btn-middle button {
590
+ border-radius: 0px;
591
+ }
592
+
593
+ .de-tbl-fill-clr .e-dropdown-btn.e-btn {
594
+ box-shadow: none;
595
+ }
596
+
597
+ .e-de-prop-pane .e-de-ctnr-group-btn button,
598
+ .e-de-ctn .e-de-status-bar button {
599
+ box-shadow: none;
600
+ height: 31px;
601
+ }
602
+ .e-de-prop-pane .e-de-ctnr-group-btn button:focus,
603
+ .e-de-ctn .e-de-status-bar button:focus {
604
+ box-shadow: none;
605
+ }
606
+ .e-de-prop-pane .e-de-ctnr-group-btn button:active,
607
+ .e-de-ctn .e-de-status-bar button:active {
608
+ box-shadow: none;
609
+ }
610
+ .e-de-prop-pane .e-de-ctnr-group-btn button:hover,
611
+ .e-de-ctn .e-de-status-bar button:hover {
612
+ box-shadow: none;
613
+ }
614
+
560
615
  .e-de-statusbar-pageweb {
561
616
  background: #282d31;
562
617
  border: 0;
@@ -592,7 +647,10 @@
592
647
  }
593
648
 
594
649
  .e-de-listview-icon {
650
+ height: auto;
651
+ width: auto;
595
652
  line-height: 22px;
653
+ margin-right: 12px;
596
654
  }
597
655
 
598
656
  .e-de-linespacing {
@@ -692,14 +750,22 @@
692
750
  .e-de-statusbar-separator {
693
751
  border-left: 1px solid #444c54;
694
752
  height: 16px;
695
- margin-left: 0;
753
+ margin-left: 7.5px;
754
+ margin-right: 7.5px;
755
+ margin-top: 6px;
756
+ }
757
+
758
+ .e-bigger .e-de-statusbar-separator {
759
+ border-left: 1px solid #444c54;
760
+ height: 16px;
761
+ margin-left: 7.5px;
762
+ margin-right: 7.5px;
696
763
  margin-top: 6px;
697
764
  }
698
765
 
699
766
  .e-de-statusbar-spellcheck {
700
767
  border-radius: 2px;
701
768
  font-weight: 400;
702
- margin-left: 7.5px;
703
769
  }
704
770
 
705
771
  .e-de-ctn {
@@ -712,7 +778,6 @@
712
778
 
713
779
  .e-bigger .e-de-statusbar-spellcheck {
714
780
  border-radius: 2px;
715
- margin-left: 7.5px;
716
781
  }
717
782
 
718
783
  .e-de-ctnr-toolbar {
@@ -1120,6 +1185,7 @@
1120
1185
  }
1121
1186
 
1122
1187
  .e-de-review-pane {
1188
+ background: #282d31;
1123
1189
  border-left: 1px solid #6c757d;
1124
1190
  height: 100%;
1125
1191
  min-height: 200px;
@@ -1137,34 +1203,6 @@
1137
1203
  width: 306px;
1138
1204
  }
1139
1205
 
1140
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
1141
- box-shadow: none;
1142
- height: 31px;
1143
- }
1144
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
1145
- box-shadow: none;
1146
- }
1147
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
1148
- box-shadow: none;
1149
- }
1150
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
1151
- box-shadow: none;
1152
- }
1153
-
1154
- .e-de-ctnr-group-btn button {
1155
- box-shadow: none;
1156
- height: 31px;
1157
- }
1158
- .e-de-ctnr-group-btn button:focus {
1159
- box-shadow: none;
1160
- }
1161
- .e-de-ctnr-group-btn button:active {
1162
- box-shadow: none;
1163
- }
1164
- .e-de-ctnr-group-btn button:hover {
1165
- box-shadow: none;
1166
- }
1167
-
1168
1206
  .e-de-property-div-padding {
1169
1207
  border-bottom: 0.5px solid #444c54;
1170
1208
  padding: 12px;
@@ -1297,7 +1335,7 @@
1297
1335
  }
1298
1336
 
1299
1337
  .e-de-list-header-presetmenu .e-de-list-line {
1300
- border-bottom: 1px solid #adb5bd;
1338
+ border-bottom: 1px solid #adb5bd !important;
1301
1339
  margin-left: 5px;
1302
1340
  width: 100%;
1303
1341
  }
@@ -1366,10 +1404,10 @@
1366
1404
  }
1367
1405
 
1368
1406
  .e-de-list-container {
1369
- background: #282d31;
1370
1407
  border: 1px solid #ccc;
1371
1408
  border-radius: 2px;
1372
1409
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
1410
+ background: #282d31;
1373
1411
  box-sizing: border-box;
1374
1412
  display: inline-block;
1375
1413
  line-height: normal;
@@ -1642,7 +1680,7 @@
1642
1680
  }
1643
1681
 
1644
1682
  .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
1645
- height: 38px !important;
1683
+ height: 36px !important;
1646
1684
  }
1647
1685
 
1648
1686
  .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
@@ -1669,7 +1707,10 @@
1669
1707
  margin-left: 12px;
1670
1708
  }
1671
1709
  .e-rtl .e-de-listview-icon {
1710
+ height: auto;
1711
+ width: auto;
1672
1712
  line-height: 22px;
1713
+ margin-left: 12px;
1673
1714
  }
1674
1715
 
1675
1716
  .e-bigger .de-split-button > div:first-child {
@@ -1792,7 +1833,6 @@
1792
1833
  height: 81px;
1793
1834
  }
1794
1835
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
1795
- height: 25px;
1796
1836
  margin: 0 16px;
1797
1837
  }
1798
1838
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
@@ -1895,6 +1935,19 @@
1895
1935
  .e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
1896
1936
  box-shadow: none;
1897
1937
  }
1938
+ .e-bigger .e-de-status-bar button {
1939
+ height: 38px;
1940
+ box-shadow: none;
1941
+ }
1942
+ .e-bigger .e-de-status-bar button:focus {
1943
+ box-shadow: none;
1944
+ }
1945
+ .e-bigger .e-de-status-bar button:active {
1946
+ box-shadow: none;
1947
+ }
1948
+ .e-bigger .e-de-status-bar button:hover {
1949
+ box-shadow: none;
1950
+ }
1898
1951
  .e-bigger .e-de-ctnr-group-btn button {
1899
1952
  box-shadow: none;
1900
1953
  height: 38px;
@@ -2009,18 +2062,18 @@
2009
2062
  margin-left: 10px;
2010
2063
  }
2011
2064
  .e-bigger .e-de-status-bar {
2012
- background-color: #282d31;
2065
+ background: #282d31;
2013
2066
  display: -ms-flexbox;
2014
2067
  display: flex;
2015
2068
  padding-top: 5px;
2016
2069
  width: 100%;
2017
2070
  }
2018
2071
  .e-bigger .e-de-statusbar-zoom {
2019
- background-color: #282d31;
2020
2072
  border: 0;
2021
2073
  color: #ced4da;
2022
2074
  float: right;
2023
2075
  height: 34px;
2076
+ background-color: #282d31;
2024
2077
  }
2025
2078
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
2026
2079
  line-height: 25px;
@@ -2036,7 +2089,10 @@
2036
2089
  margin-right: 16px;
2037
2090
  }
2038
2091
  .e-bigger .e-de-listview-icon {
2092
+ height: auto;
2093
+ width: auto;
2039
2094
  line-height: 22px;
2095
+ margin-right: 16px;
2040
2096
  }
2041
2097
  .e-bigger .e-rtl .e-listview .e-list-icon {
2042
2098
  height: 24px;
@@ -2044,7 +2100,10 @@
2044
2100
  margin-left: 16px;
2045
2101
  }
2046
2102
  .e-bigger .e-rtl .e-de-listview-icon {
2103
+ height: auto;
2104
+ width: auto;
2047
2105
  line-height: 22px;
2106
+ margin-left: 16px;
2048
2107
  }
2049
2108
 
2050
2109
  .e-de-ctn .e-de-bzr-button {