@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
@@ -2442,6 +2442,11 @@ label[for*=_wholeWord_e-de-rtl] {
2442
2442
  margin-left: 12px;
2443
2443
  }
2444
2444
 
2445
+ .e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
2446
+ height: 40px !important;
2447
+ width: auto !important;
2448
+ }
2449
+
2445
2450
  .e-de-style-bold-button-size {
2446
2451
  margin-left: 12px;
2447
2452
  }
@@ -3352,6 +3357,7 @@ label[for*=_wholeWord_e-de-rtl] {
3352
3357
 
3353
3358
  .e-de-cp-option.e-btn.e-icon-btn span {
3354
3359
  margin-top: 0px;
3360
+ background: #201f1e;
3355
3361
  }
3356
3362
 
3357
3363
  .e-de-cmt-view:hover .e-de-cp-option {
@@ -4285,6 +4291,21 @@ label[for*=_wholeWord_e-de-rtl] {
4285
4291
  font-family: "e-icons";
4286
4292
  }
4287
4293
 
4294
+ .e-de-e-paragraph-style-mark::before {
4295
+ content: "\e844";
4296
+ font-family: "e-icons";
4297
+ }
4298
+
4299
+ .e-de-e-character-style-mark::before {
4300
+ content: "\e8bf";
4301
+ font-family: "e-icons";
4302
+ }
4303
+
4304
+ .e-de-e-linked-style-mark::before {
4305
+ content: "\e8c0";
4306
+ font-family: "e-icons";
4307
+ }
4308
+
4288
4309
  .e-de-ctnr-columns::before {
4289
4310
  content: "\e8b4";
4290
4311
  font-family: "e-icons";
@@ -4427,6 +4448,46 @@ label[for*=_wholeWord_e-de-rtl] {
4427
4448
  height: 100%;
4428
4449
  }
4429
4450
 
4451
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
4452
+ box-shadow: none;
4453
+ height: 32px;
4454
+ }
4455
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
4456
+ box-shadow: none;
4457
+ }
4458
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
4459
+ box-shadow: none;
4460
+ }
4461
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
4462
+ box-shadow: none;
4463
+ }
4464
+
4465
+ .e-de-ctnr-group-btn-middle button {
4466
+ border-radius: 0px;
4467
+ }
4468
+
4469
+ .de-tbl-fill-clr .e-dropdown-btn.e-btn {
4470
+ box-shadow: none;
4471
+ }
4472
+
4473
+ .e-de-prop-pane .e-de-ctnr-group-btn button,
4474
+ .e-de-ctn .e-de-status-bar button {
4475
+ box-shadow: none;
4476
+ height: 32px;
4477
+ }
4478
+ .e-de-prop-pane .e-de-ctnr-group-btn button:focus,
4479
+ .e-de-ctn .e-de-status-bar button:focus {
4480
+ box-shadow: none;
4481
+ }
4482
+ .e-de-prop-pane .e-de-ctnr-group-btn button:active,
4483
+ .e-de-ctn .e-de-status-bar button:active {
4484
+ box-shadow: none;
4485
+ }
4486
+ .e-de-prop-pane .e-de-ctnr-group-btn button:hover,
4487
+ .e-de-ctn .e-de-status-bar button:hover {
4488
+ box-shadow: none;
4489
+ }
4490
+
4430
4491
  .e-de-statusbar-pageweb {
4431
4492
  background: #201f1e;
4432
4493
  border: 0;
@@ -4459,7 +4520,10 @@ label[for*=_wholeWord_e-de-rtl] {
4459
4520
  }
4460
4521
 
4461
4522
  .e-de-listview-icon {
4523
+ height: auto;
4524
+ width: auto;
4462
4525
  line-height: 22px;
4526
+ margin-right: 16px;
4463
4527
  }
4464
4528
 
4465
4529
  .e-de-linespacing {
@@ -4558,14 +4622,22 @@ label[for*=_wholeWord_e-de-rtl] {
4558
4622
  .e-de-statusbar-separator {
4559
4623
  border-left: 1px solid #292827;
4560
4624
  height: 16px;
4561
- margin-left: 0;
4625
+ margin-left: 7.5px;
4626
+ margin-right: 7.5px;
4627
+ margin-top: 6px;
4628
+ }
4629
+
4630
+ .e-bigger .e-de-statusbar-separator {
4631
+ border-left: 1px solid #292827;
4632
+ height: 16px;
4633
+ margin-left: 7.5px;
4634
+ margin-right: 7.5px;
4562
4635
  margin-top: 6px;
4563
4636
  }
4564
4637
 
4565
4638
  .e-de-statusbar-spellcheck {
4566
4639
  border-radius: 2px;
4567
4640
  font-weight: 400;
4568
- margin-left: 7.5px;
4569
4641
  }
4570
4642
 
4571
4643
  .e-de-ctn {
@@ -4578,7 +4650,6 @@ label[for*=_wholeWord_e-de-rtl] {
4578
4650
 
4579
4651
  .e-bigger .e-de-statusbar-spellcheck {
4580
4652
  border-radius: 2px;
4581
- margin-left: 7.5px;
4582
4653
  }
4583
4654
 
4584
4655
  .e-de-ctnr-toolbar {
@@ -4877,6 +4948,7 @@ label[for*=_wholeWord_e-de-rtl] {
4877
4948
  }
4878
4949
 
4879
4950
  .e-de-review-pane {
4951
+ background: #201f1e;
4880
4952
  border-left: 1px solid #292827;
4881
4953
  height: 100%;
4882
4954
  min-height: 200px;
@@ -4897,34 +4969,6 @@ label[for*=_wholeWord_e-de-rtl] {
4897
4969
  width: 345px;
4898
4970
  }
4899
4971
 
4900
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
4901
- box-shadow: none;
4902
- height: 32px;
4903
- }
4904
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
4905
- box-shadow: none;
4906
- }
4907
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
4908
- box-shadow: none;
4909
- }
4910
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
4911
- box-shadow: none;
4912
- }
4913
-
4914
- .e-de-ctnr-group-btn button {
4915
- box-shadow: none;
4916
- height: 32px;
4917
- }
4918
- .e-de-ctnr-group-btn button:focus {
4919
- box-shadow: none;
4920
- }
4921
- .e-de-ctnr-group-btn button:active {
4922
- box-shadow: none;
4923
- }
4924
- .e-de-ctnr-group-btn button:hover {
4925
- box-shadow: none;
4926
- }
4927
-
4928
4972
  .e-de-property-div-padding {
4929
4973
  border-bottom: 0.5px solid #292827;
4930
4974
  padding: 16px;
@@ -5056,7 +5100,7 @@ label[for*=_wholeWord_e-de-rtl] {
5056
5100
  }
5057
5101
 
5058
5102
  .e-de-list-header-presetmenu .e-de-list-line {
5059
- border-bottom: 1px solid #a19f9d;
5103
+ border-bottom: 1px solid #a19f9d !important;
5060
5104
  margin-left: 5px;
5061
5105
  width: 100%;
5062
5106
  }
@@ -5125,10 +5169,10 @@ label[for*=_wholeWord_e-de-rtl] {
5125
5169
  }
5126
5170
 
5127
5171
  .e-de-list-container {
5128
- background: #201f1e;
5129
5172
  border: 1px solid #ccc;
5130
5173
  border-radius: 2px;
5131
5174
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
5175
+ background: #201f1e;
5132
5176
  box-sizing: border-box;
5133
5177
  display: inline-block;
5134
5178
  line-height: normal;
@@ -5401,7 +5445,7 @@ label[for*=_wholeWord_e-de-rtl] {
5401
5445
  }
5402
5446
 
5403
5447
  .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
5404
- height: 38px !important;
5448
+ height: 36px !important;
5405
5449
  }
5406
5450
 
5407
5451
  .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
@@ -5428,7 +5472,10 @@ label[for*=_wholeWord_e-de-rtl] {
5428
5472
  margin-left: 16px;
5429
5473
  }
5430
5474
  .e-rtl .e-de-listview-icon {
5475
+ height: auto;
5476
+ width: auto;
5431
5477
  line-height: 22px;
5478
+ margin-left: 16px;
5432
5479
  }
5433
5480
 
5434
5481
  .e-bigger .de-split-button > div:first-child {
@@ -5539,7 +5586,6 @@ label[for*=_wholeWord_e-de-rtl] {
5539
5586
  height: 81px;
5540
5587
  }
5541
5588
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
5542
- height: 25px;
5543
5589
  margin: 0 14px;
5544
5590
  }
5545
5591
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
@@ -5641,6 +5687,19 @@ label[for*=_wholeWord_e-de-rtl] {
5641
5687
  .e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
5642
5688
  box-shadow: none;
5643
5689
  }
5690
+ .e-bigger .e-de-status-bar button {
5691
+ height: 38px;
5692
+ box-shadow: none;
5693
+ }
5694
+ .e-bigger .e-de-status-bar button:focus {
5695
+ box-shadow: none;
5696
+ }
5697
+ .e-bigger .e-de-status-bar button:active {
5698
+ box-shadow: none;
5699
+ }
5700
+ .e-bigger .e-de-status-bar button:hover {
5701
+ box-shadow: none;
5702
+ }
5644
5703
  .e-bigger .e-de-ctnr-group-btn button {
5645
5704
  box-shadow: none;
5646
5705
  height: 38px;
@@ -5754,18 +5813,18 @@ label[for*=_wholeWord_e-de-rtl] {
5754
5813
  margin-left: 10px;
5755
5814
  }
5756
5815
  .e-bigger .e-de-status-bar {
5757
- background-color: #201f1e;
5816
+ background: #201f1e;
5758
5817
  display: -ms-flexbox;
5759
5818
  display: flex;
5760
5819
  padding-top: 5px;
5761
5820
  width: 100%;
5762
5821
  }
5763
5822
  .e-bigger .e-de-statusbar-zoom {
5764
- background-color: #201f1e;
5765
5823
  border: 0;
5766
5824
  color: #c8c6c4;
5767
5825
  float: right;
5768
5826
  height: 34px;
5827
+ background-color: #201f1e;
5769
5828
  }
5770
5829
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
5771
5830
  line-height: 25px;
@@ -5781,7 +5840,10 @@ label[for*=_wholeWord_e-de-rtl] {
5781
5840
  margin-right: 20px;
5782
5841
  }
5783
5842
  .e-bigger .e-de-listview-icon {
5843
+ height: auto;
5844
+ width: auto;
5784
5845
  line-height: 22px;
5846
+ margin-right: 20px;
5785
5847
  }
5786
5848
  .e-bigger .e-rtl .e-listview .e-list-icon {
5787
5849
  height: 24px;
@@ -5789,7 +5851,10 @@ label[for*=_wholeWord_e-de-rtl] {
5789
5851
  margin-left: 20px;
5790
5852
  }
5791
5853
  .e-bigger .e-rtl .e-de-listview-icon {
5854
+ height: auto;
5855
+ width: auto;
5792
5856
  line-height: 22px;
5857
+ margin-left: 20px;
5793
5858
  }
5794
5859
 
5795
5860
  .e-de-ctn .e-de-bzr-button {
package/styles/fluent.css CHANGED
@@ -2442,6 +2442,11 @@ label[for*=_wholeWord_e-de-rtl] {
2442
2442
  margin-left: 12px;
2443
2443
  }
2444
2444
 
2445
+ .e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
2446
+ height: 40px !important;
2447
+ width: auto !important;
2448
+ }
2449
+
2445
2450
  .e-de-style-bold-button-size {
2446
2451
  margin-left: 12px;
2447
2452
  }
@@ -3352,6 +3357,7 @@ label[for*=_wholeWord_e-de-rtl] {
3352
3357
 
3353
3358
  .e-de-cp-option.e-btn.e-icon-btn span {
3354
3359
  margin-top: 0px;
3360
+ background: #faf9f8;
3355
3361
  }
3356
3362
 
3357
3363
  .e-de-cmt-view:hover .e-de-cp-option {
@@ -4285,6 +4291,21 @@ label[for*=_wholeWord_e-de-rtl] {
4285
4291
  font-family: "e-icons";
4286
4292
  }
4287
4293
 
4294
+ .e-de-e-paragraph-style-mark::before {
4295
+ content: "\e844";
4296
+ font-family: "e-icons";
4297
+ }
4298
+
4299
+ .e-de-e-character-style-mark::before {
4300
+ content: "\e8bf";
4301
+ font-family: "e-icons";
4302
+ }
4303
+
4304
+ .e-de-e-linked-style-mark::before {
4305
+ content: "\e8c0";
4306
+ font-family: "e-icons";
4307
+ }
4308
+
4288
4309
  .e-de-ctnr-columns::before {
4289
4310
  content: "\e8b4";
4290
4311
  font-family: "e-icons";
@@ -4427,6 +4448,46 @@ label[for*=_wholeWord_e-de-rtl] {
4427
4448
  height: 100%;
4428
4449
  }
4429
4450
 
4451
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
4452
+ box-shadow: none;
4453
+ height: 32px;
4454
+ }
4455
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
4456
+ box-shadow: none;
4457
+ }
4458
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
4459
+ box-shadow: none;
4460
+ }
4461
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
4462
+ box-shadow: none;
4463
+ }
4464
+
4465
+ .e-de-ctnr-group-btn-middle button {
4466
+ border-radius: 0px;
4467
+ }
4468
+
4469
+ .de-tbl-fill-clr .e-dropdown-btn.e-btn {
4470
+ box-shadow: none;
4471
+ }
4472
+
4473
+ .e-de-prop-pane .e-de-ctnr-group-btn button,
4474
+ .e-de-ctn .e-de-status-bar button {
4475
+ box-shadow: none;
4476
+ height: 32px;
4477
+ }
4478
+ .e-de-prop-pane .e-de-ctnr-group-btn button:focus,
4479
+ .e-de-ctn .e-de-status-bar button:focus {
4480
+ box-shadow: none;
4481
+ }
4482
+ .e-de-prop-pane .e-de-ctnr-group-btn button:active,
4483
+ .e-de-ctn .e-de-status-bar button:active {
4484
+ box-shadow: none;
4485
+ }
4486
+ .e-de-prop-pane .e-de-ctnr-group-btn button:hover,
4487
+ .e-de-ctn .e-de-status-bar button:hover {
4488
+ box-shadow: none;
4489
+ }
4490
+
4430
4491
  .e-de-statusbar-pageweb {
4431
4492
  background: #faf9f8;
4432
4493
  border: 0;
@@ -4459,7 +4520,10 @@ label[for*=_wholeWord_e-de-rtl] {
4459
4520
  }
4460
4521
 
4461
4522
  .e-de-listview-icon {
4523
+ height: auto;
4524
+ width: auto;
4462
4525
  line-height: 22px;
4526
+ margin-right: 16px;
4463
4527
  }
4464
4528
 
4465
4529
  .e-de-linespacing {
@@ -4558,14 +4622,22 @@ label[for*=_wholeWord_e-de-rtl] {
4558
4622
  .e-de-statusbar-separator {
4559
4623
  border-left: 1px solid #edebe9;
4560
4624
  height: 16px;
4561
- margin-left: 0;
4625
+ margin-left: 7.5px;
4626
+ margin-right: 7.5px;
4627
+ margin-top: 6px;
4628
+ }
4629
+
4630
+ .e-bigger .e-de-statusbar-separator {
4631
+ border-left: 1px solid #edebe9;
4632
+ height: 16px;
4633
+ margin-left: 7.5px;
4634
+ margin-right: 7.5px;
4562
4635
  margin-top: 6px;
4563
4636
  }
4564
4637
 
4565
4638
  .e-de-statusbar-spellcheck {
4566
4639
  border-radius: 2px;
4567
4640
  font-weight: 400;
4568
- margin-left: 7.5px;
4569
4641
  }
4570
4642
 
4571
4643
  .e-de-ctn {
@@ -4578,7 +4650,6 @@ label[for*=_wholeWord_e-de-rtl] {
4578
4650
 
4579
4651
  .e-bigger .e-de-statusbar-spellcheck {
4580
4652
  border-radius: 2px;
4581
- margin-left: 7.5px;
4582
4653
  }
4583
4654
 
4584
4655
  .e-de-ctnr-toolbar {
@@ -4877,6 +4948,7 @@ label[for*=_wholeWord_e-de-rtl] {
4877
4948
  }
4878
4949
 
4879
4950
  .e-de-review-pane {
4951
+ background: #faf9f8;
4880
4952
  border-left: 1px solid #edebe9;
4881
4953
  height: 100%;
4882
4954
  min-height: 200px;
@@ -4897,34 +4969,6 @@ label[for*=_wholeWord_e-de-rtl] {
4897
4969
  width: 345px;
4898
4970
  }
4899
4971
 
4900
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
4901
- box-shadow: none;
4902
- height: 32px;
4903
- }
4904
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
4905
- box-shadow: none;
4906
- }
4907
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
4908
- box-shadow: none;
4909
- }
4910
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
4911
- box-shadow: none;
4912
- }
4913
-
4914
- .e-de-ctnr-group-btn button {
4915
- box-shadow: none;
4916
- height: 32px;
4917
- }
4918
- .e-de-ctnr-group-btn button:focus {
4919
- box-shadow: none;
4920
- }
4921
- .e-de-ctnr-group-btn button:active {
4922
- box-shadow: none;
4923
- }
4924
- .e-de-ctnr-group-btn button:hover {
4925
- box-shadow: none;
4926
- }
4927
-
4928
4972
  .e-de-property-div-padding {
4929
4973
  border-bottom: 0.5px solid #edebe9;
4930
4974
  padding: 16px;
@@ -5056,7 +5100,7 @@ label[for*=_wholeWord_e-de-rtl] {
5056
5100
  }
5057
5101
 
5058
5102
  .e-de-list-header-presetmenu .e-de-list-line {
5059
- border-bottom: 1px solid #605e5c;
5103
+ border-bottom: 1px solid #605e5c !important;
5060
5104
  margin-left: 5px;
5061
5105
  width: 100%;
5062
5106
  }
@@ -5125,10 +5169,10 @@ label[for*=_wholeWord_e-de-rtl] {
5125
5169
  }
5126
5170
 
5127
5171
  .e-de-list-container {
5128
- background: #faf9f8;
5129
5172
  border: 1px solid #ccc;
5130
5173
  border-radius: 2px;
5131
5174
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
5175
+ background: #faf9f8;
5132
5176
  box-sizing: border-box;
5133
5177
  display: inline-block;
5134
5178
  line-height: normal;
@@ -5401,7 +5445,7 @@ label[for*=_wholeWord_e-de-rtl] {
5401
5445
  }
5402
5446
 
5403
5447
  .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
5404
- height: 38px !important;
5448
+ height: 36px !important;
5405
5449
  }
5406
5450
 
5407
5451
  .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
@@ -5428,7 +5472,10 @@ label[for*=_wholeWord_e-de-rtl] {
5428
5472
  margin-left: 16px;
5429
5473
  }
5430
5474
  .e-rtl .e-de-listview-icon {
5475
+ height: auto;
5476
+ width: auto;
5431
5477
  line-height: 22px;
5478
+ margin-left: 16px;
5432
5479
  }
5433
5480
 
5434
5481
  .e-bigger .de-split-button > div:first-child {
@@ -5539,7 +5586,6 @@ label[for*=_wholeWord_e-de-rtl] {
5539
5586
  height: 81px;
5540
5587
  }
5541
5588
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
5542
- height: 25px;
5543
5589
  margin: 0 14px;
5544
5590
  }
5545
5591
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
@@ -5641,6 +5687,19 @@ label[for*=_wholeWord_e-de-rtl] {
5641
5687
  .e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
5642
5688
  box-shadow: none;
5643
5689
  }
5690
+ .e-bigger .e-de-status-bar button {
5691
+ height: 38px;
5692
+ box-shadow: none;
5693
+ }
5694
+ .e-bigger .e-de-status-bar button:focus {
5695
+ box-shadow: none;
5696
+ }
5697
+ .e-bigger .e-de-status-bar button:active {
5698
+ box-shadow: none;
5699
+ }
5700
+ .e-bigger .e-de-status-bar button:hover {
5701
+ box-shadow: none;
5702
+ }
5644
5703
  .e-bigger .e-de-ctnr-group-btn button {
5645
5704
  box-shadow: none;
5646
5705
  height: 38px;
@@ -5754,18 +5813,18 @@ label[for*=_wholeWord_e-de-rtl] {
5754
5813
  margin-left: 10px;
5755
5814
  }
5756
5815
  .e-bigger .e-de-status-bar {
5757
- background-color: #faf9f8;
5816
+ background: #faf9f8;
5758
5817
  display: -ms-flexbox;
5759
5818
  display: flex;
5760
5819
  padding-top: 5px;
5761
5820
  width: 100%;
5762
5821
  }
5763
5822
  .e-bigger .e-de-statusbar-zoom {
5764
- background-color: #faf9f8;
5765
5823
  border: 0;
5766
5824
  color: #3b3a39;
5767
5825
  float: right;
5768
5826
  height: 34px;
5827
+ background-color: #faf9f8;
5769
5828
  }
5770
5829
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
5771
5830
  line-height: 25px;
@@ -5781,7 +5840,10 @@ label[for*=_wholeWord_e-de-rtl] {
5781
5840
  margin-right: 20px;
5782
5841
  }
5783
5842
  .e-bigger .e-de-listview-icon {
5843
+ height: auto;
5844
+ width: auto;
5784
5845
  line-height: 22px;
5846
+ margin-right: 20px;
5785
5847
  }
5786
5848
  .e-bigger .e-rtl .e-listview .e-list-icon {
5787
5849
  height: 24px;
@@ -5789,7 +5851,10 @@ label[for*=_wholeWord_e-de-rtl] {
5789
5851
  margin-left: 20px;
5790
5852
  }
5791
5853
  .e-bigger .e-rtl .e-de-listview-icon {
5854
+ height: auto;
5855
+ width: auto;
5792
5856
  line-height: 22px;
5857
+ margin-left: 20px;
5793
5858
  }
5794
5859
 
5795
5860
  .e-de-ctn .e-de-bzr-button {