@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
@@ -2352,6 +2352,11 @@ label[for*=_wholeWord_e-de-rtl] {
2352
2352
  height: 35px;
2353
2353
  }
2354
2354
 
2355
+ .e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
2356
+ height: 40px !important;
2357
+ width: auto !important;
2358
+ }
2359
+
2355
2360
  .e-de-style-bold-button-size {
2356
2361
  margin-left: 8px;
2357
2362
  margin-right: 8px;
@@ -3312,6 +3317,7 @@ label[for*=_wholeWord_e-de-rtl] {
3312
3317
 
3313
3318
  .e-de-cp-option.e-btn.e-icon-btn span {
3314
3319
  margin-top: 0px;
3320
+ background: #201f1f;
3315
3321
  }
3316
3322
 
3317
3323
  .e-de-cmt-view:hover .e-de-cp-option {
@@ -4218,6 +4224,21 @@ label[for*=_wholeWord_e-de-rtl] {
4218
4224
  font-family: "e-icons";
4219
4225
  }
4220
4226
 
4227
+ .e-de-e-paragraph-style-mark::before {
4228
+ content: "\e353";
4229
+ font-family: "e-icons";
4230
+ }
4231
+
4232
+ .e-de-e-character-style-mark::before {
4233
+ content: "\e982";
4234
+ font-family: "e-icons";
4235
+ }
4236
+
4237
+ .e-de-e-linked-style-mark::before {
4238
+ content: "\e983";
4239
+ font-family: "e-icons";
4240
+ }
4241
+
4221
4242
  .e-de-ctnr-columns::before {
4222
4243
  content: "\e972";
4223
4244
  font-family: "e-icons";
@@ -4350,6 +4371,46 @@ label[for*=_wholeWord_e-de-rtl] {
4350
4371
  height: 100%;
4351
4372
  }
4352
4373
 
4374
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
4375
+ box-shadow: none;
4376
+ height: 32px;
4377
+ }
4378
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
4379
+ box-shadow: none;
4380
+ }
4381
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
4382
+ box-shadow: none;
4383
+ }
4384
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
4385
+ box-shadow: none;
4386
+ }
4387
+
4388
+ .e-de-ctnr-group-btn-middle button {
4389
+ border-radius: 0px;
4390
+ }
4391
+
4392
+ .de-tbl-fill-clr .e-dropdown-btn.e-btn {
4393
+ box-shadow: none;
4394
+ }
4395
+
4396
+ .e-de-prop-pane .e-de-ctnr-group-btn button,
4397
+ .e-de-ctn .e-de-status-bar button {
4398
+ box-shadow: none;
4399
+ height: 32px;
4400
+ }
4401
+ .e-de-prop-pane .e-de-ctnr-group-btn button:focus,
4402
+ .e-de-ctn .e-de-status-bar button:focus {
4403
+ box-shadow: none;
4404
+ }
4405
+ .e-de-prop-pane .e-de-ctnr-group-btn button:active,
4406
+ .e-de-ctn .e-de-status-bar button:active {
4407
+ box-shadow: none;
4408
+ }
4409
+ .e-de-prop-pane .e-de-ctnr-group-btn button:hover,
4410
+ .e-de-ctn .e-de-status-bar button:hover {
4411
+ box-shadow: none;
4412
+ }
4413
+
4353
4414
  .e-de-statusbar-pageweb {
4354
4415
  background: #282727;
4355
4416
  border: 0;
@@ -4387,7 +4448,10 @@ label[for*=_wholeWord_e-de-rtl] {
4387
4448
  }
4388
4449
 
4389
4450
  .e-de-listview-icon {
4451
+ height: auto;
4452
+ width: auto;
4390
4453
  line-height: 22px;
4454
+ margin-right: 12px;
4391
4455
  }
4392
4456
 
4393
4457
  .e-de-linespacing {
@@ -4458,14 +4522,22 @@ label[for*=_wholeWord_e-de-rtl] {
4458
4522
  .e-de-statusbar-separator {
4459
4523
  border-left: 1px solid #dadada;
4460
4524
  height: 16px;
4461
- margin-left: 15.5;
4525
+ margin-left: 7.5px;
4526
+ margin-right: 7.5px;
4527
+ margin-top: 10px;
4528
+ }
4529
+
4530
+ .e-bigger .e-de-statusbar-separator {
4531
+ border-left: 1px solid #dadada;
4532
+ height: 16px;
4533
+ margin-left: 7.5px;
4534
+ margin-right: 7.5px;
4462
4535
  margin-top: 10px;
4463
4536
  }
4464
4537
 
4465
4538
  .e-de-statusbar-spellcheck {
4466
4539
  border-radius: 2px;
4467
4540
  font-weight: 400;
4468
- margin-left: 7.5px;
4469
4541
  }
4470
4542
 
4471
4543
  .e-de-ctn {
@@ -4478,7 +4550,6 @@ label[for*=_wholeWord_e-de-rtl] {
4478
4550
 
4479
4551
  .e-bigger .e-de-statusbar-spellcheck {
4480
4552
  border-radius: 2px;
4481
- margin-left: 7.5px;
4482
4553
  }
4483
4554
 
4484
4555
  .e-de-ctnr-toolbar {
@@ -4728,6 +4799,7 @@ label[for*=_wholeWord_e-de-rtl] {
4728
4799
  }
4729
4800
 
4730
4801
  .e-de-review-pane {
4802
+ background: #282727;
4731
4803
  border-left: 1px solid #4a4848;
4732
4804
  height: 100%;
4733
4805
  min-height: 200px;
@@ -4745,34 +4817,6 @@ label[for*=_wholeWord_e-de-rtl] {
4745
4817
  width: 272px;
4746
4818
  }
4747
4819
 
4748
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
4749
- box-shadow: none;
4750
- height: 32px;
4751
- }
4752
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
4753
- box-shadow: none;
4754
- }
4755
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
4756
- box-shadow: none;
4757
- }
4758
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
4759
- box-shadow: none;
4760
- }
4761
-
4762
- .e-de-ctnr-group-btn button {
4763
- box-shadow: none;
4764
- height: 32px;
4765
- }
4766
- .e-de-ctnr-group-btn button:focus {
4767
- box-shadow: none;
4768
- }
4769
- .e-de-ctnr-group-btn button:active {
4770
- box-shadow: none;
4771
- }
4772
- .e-de-ctnr-group-btn button:hover {
4773
- box-shadow: none;
4774
- }
4775
-
4776
4820
  .e-de-property-div-padding {
4777
4821
  border-bottom: 0.5px solid #4a4848;
4778
4822
  padding: 12.5px;
@@ -4896,7 +4940,7 @@ label[for*=_wholeWord_e-de-rtl] {
4896
4940
  }
4897
4941
 
4898
4942
  .e-de-list-header-presetmenu .e-de-list-line {
4899
- border-bottom: 1px solid #ccc;
4943
+ border-bottom: 1px solid #ccc !important;
4900
4944
  margin-left: 5px;
4901
4945
  width: 100%;
4902
4946
  }
@@ -4965,10 +5009,10 @@ label[for*=_wholeWord_e-de-rtl] {
4965
5009
  }
4966
5010
 
4967
5011
  .e-de-list-container {
4968
- background: #282727;
4969
5012
  border: 1px solid #ccc;
4970
5013
  border-radius: 2px;
4971
5014
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
5015
+ background: #282727;
4972
5016
  box-sizing: border-box;
4973
5017
  display: inline-block;
4974
5018
  line-height: normal;
@@ -5241,7 +5285,7 @@ label[for*=_wholeWord_e-de-rtl] {
5241
5285
  }
5242
5286
 
5243
5287
  .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
5244
- height: 38px !important;
5288
+ height: 36px !important;
5245
5289
  }
5246
5290
 
5247
5291
  .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
@@ -5268,7 +5312,10 @@ label[for*=_wholeWord_e-de-rtl] {
5268
5312
  margin-left: 12px;
5269
5313
  }
5270
5314
  .e-rtl .e-de-listview-icon {
5315
+ height: auto;
5316
+ width: auto;
5271
5317
  line-height: 22px;
5318
+ margin-left: 12px;
5272
5319
  }
5273
5320
 
5274
5321
  .e-bigger .de-split-button > div:first-child {
@@ -5379,7 +5426,6 @@ label[for*=_wholeWord_e-de-rtl] {
5379
5426
  height: 82px;
5380
5427
  }
5381
5428
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
5382
- height: 25px;
5383
5429
  margin: 0 7.5px;
5384
5430
  }
5385
5431
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
@@ -5481,6 +5527,19 @@ label[for*=_wholeWord_e-de-rtl] {
5481
5527
  .e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
5482
5528
  box-shadow: none;
5483
5529
  }
5530
+ .e-bigger .e-de-status-bar button {
5531
+ height: 38px;
5532
+ box-shadow: none;
5533
+ }
5534
+ .e-bigger .e-de-status-bar button:focus {
5535
+ box-shadow: none;
5536
+ }
5537
+ .e-bigger .e-de-status-bar button:active {
5538
+ box-shadow: none;
5539
+ }
5540
+ .e-bigger .e-de-status-bar button:hover {
5541
+ box-shadow: none;
5542
+ }
5484
5543
  .e-bigger .e-de-ctnr-group-btn button {
5485
5544
  box-shadow: none;
5486
5545
  height: 38px;
@@ -5594,18 +5653,18 @@ label[for*=_wholeWord_e-de-rtl] {
5594
5653
  margin-left: 10px;
5595
5654
  }
5596
5655
  .e-bigger .e-de-status-bar {
5597
- background-color: #282727;
5656
+ background: #282727;
5598
5657
  display: -ms-flexbox;
5599
5658
  display: flex;
5600
5659
  padding-top: 3px;
5601
5660
  width: 100%;
5602
5661
  }
5603
5662
  .e-bigger .e-de-statusbar-zoom {
5604
- background-color: #282727;
5605
5663
  border: 0;
5606
5664
  color: #dadada;
5607
5665
  float: right;
5608
5666
  height: 34px;
5667
+ background-color: #282727;
5609
5668
  }
5610
5669
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
5611
5670
  line-height: 25px;
@@ -5621,7 +5680,10 @@ label[for*=_wholeWord_e-de-rtl] {
5621
5680
  margin-right: 16px;
5622
5681
  }
5623
5682
  .e-bigger .e-de-listview-icon {
5683
+ height: auto;
5684
+ width: auto;
5624
5685
  line-height: 22px;
5686
+ margin-right: 16px;
5625
5687
  }
5626
5688
  .e-bigger .e-rtl .e-listview .e-list-icon {
5627
5689
  height: 24px;
@@ -5629,7 +5691,10 @@ label[for*=_wholeWord_e-de-rtl] {
5629
5691
  margin-left: 16px;
5630
5692
  }
5631
5693
  .e-bigger .e-rtl .e-de-listview-icon {
5694
+ height: auto;
5695
+ width: auto;
5632
5696
  line-height: 22px;
5697
+ margin-left: 16px;
5633
5698
  }
5634
5699
 
5635
5700
  .e-de-ctn .e-de-bzr-button {
package/styles/fabric.css CHANGED
@@ -2352,6 +2352,11 @@ label[for*=_wholeWord_e-de-rtl] {
2352
2352
  height: 35px;
2353
2353
  }
2354
2354
 
2355
+ .e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
2356
+ height: 40px !important;
2357
+ width: auto !important;
2358
+ }
2359
+
2355
2360
  .e-de-style-bold-button-size {
2356
2361
  margin-left: 8px;
2357
2362
  margin-right: 8px;
@@ -3215,6 +3220,10 @@ label[for*=_wholeWord_e-de-rtl] {
3215
3220
  font-weight: normal;
3216
3221
  }
3217
3222
 
3223
+ .e-de-track-toolbar .e-de-track-pane-drop-btn {
3224
+ padding-top: 4px !important;
3225
+ }
3226
+
3218
3227
  .e-toolbar-item.e-de-track-toolbar-overlay.e-template.e-overlay {
3219
3228
  opacity: 1;
3220
3229
  font-weight: normal;
@@ -3312,6 +3321,7 @@ label[for*=_wholeWord_e-de-rtl] {
3312
3321
 
3313
3322
  .e-de-cp-option.e-btn.e-icon-btn span {
3314
3323
  margin-top: 0px;
3324
+ background: #fff;
3315
3325
  }
3316
3326
 
3317
3327
  .e-de-cmt-view:hover .e-de-cp-option {
@@ -4218,6 +4228,21 @@ label[for*=_wholeWord_e-de-rtl] {
4218
4228
  font-family: "e-icons";
4219
4229
  }
4220
4230
 
4231
+ .e-de-e-paragraph-style-mark::before {
4232
+ content: "\e353";
4233
+ font-family: "e-icons";
4234
+ }
4235
+
4236
+ .e-de-e-character-style-mark::before {
4237
+ content: "\e982";
4238
+ font-family: "e-icons";
4239
+ }
4240
+
4241
+ .e-de-e-linked-style-mark::before {
4242
+ content: "\e983";
4243
+ font-family: "e-icons";
4244
+ }
4245
+
4221
4246
  .e-de-ctnr-columns::before {
4222
4247
  content: "\e972";
4223
4248
  font-family: "e-icons";
@@ -4350,6 +4375,46 @@ label[for*=_wholeWord_e-de-rtl] {
4350
4375
  height: 100%;
4351
4376
  }
4352
4377
 
4378
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
4379
+ box-shadow: none;
4380
+ height: 32px;
4381
+ }
4382
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
4383
+ box-shadow: none;
4384
+ }
4385
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
4386
+ box-shadow: none;
4387
+ }
4388
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
4389
+ box-shadow: none;
4390
+ }
4391
+
4392
+ .e-de-ctnr-group-btn-middle button {
4393
+ border-radius: 0px;
4394
+ }
4395
+
4396
+ .de-tbl-fill-clr .e-dropdown-btn.e-btn {
4397
+ box-shadow: none;
4398
+ }
4399
+
4400
+ .e-de-prop-pane .e-de-ctnr-group-btn button,
4401
+ .e-de-ctn .e-de-status-bar button {
4402
+ box-shadow: none;
4403
+ height: 32px;
4404
+ }
4405
+ .e-de-prop-pane .e-de-ctnr-group-btn button:focus,
4406
+ .e-de-ctn .e-de-status-bar button:focus {
4407
+ box-shadow: none;
4408
+ }
4409
+ .e-de-prop-pane .e-de-ctnr-group-btn button:active,
4410
+ .e-de-ctn .e-de-status-bar button:active {
4411
+ box-shadow: none;
4412
+ }
4413
+ .e-de-prop-pane .e-de-ctnr-group-btn button:hover,
4414
+ .e-de-ctn .e-de-status-bar button:hover {
4415
+ box-shadow: none;
4416
+ }
4417
+
4353
4418
  .e-de-statusbar-pageweb {
4354
4419
  background: #fff;
4355
4420
  border: 0;
@@ -4387,7 +4452,10 @@ label[for*=_wholeWord_e-de-rtl] {
4387
4452
  }
4388
4453
 
4389
4454
  .e-de-listview-icon {
4455
+ height: auto;
4456
+ width: auto;
4390
4457
  line-height: 22px;
4458
+ margin-right: 12px;
4391
4459
  }
4392
4460
 
4393
4461
  .e-de-linespacing {
@@ -4458,14 +4526,22 @@ label[for*=_wholeWord_e-de-rtl] {
4458
4526
  .e-de-statusbar-separator {
4459
4527
  border-left: 1px solid #dadada;
4460
4528
  height: 16px;
4461
- margin-left: 15.5;
4529
+ margin-left: 7.5px;
4530
+ margin-right: 7.5px;
4531
+ margin-top: 10px;
4532
+ }
4533
+
4534
+ .e-bigger .e-de-statusbar-separator {
4535
+ border-left: 1px solid #dadada;
4536
+ height: 16px;
4537
+ margin-left: 7.5px;
4538
+ margin-right: 7.5px;
4462
4539
  margin-top: 10px;
4463
4540
  }
4464
4541
 
4465
4542
  .e-de-statusbar-spellcheck {
4466
4543
  border-radius: 2px;
4467
4544
  font-weight: 400;
4468
- margin-left: 7.5px;
4469
4545
  }
4470
4546
 
4471
4547
  .e-de-ctn {
@@ -4478,7 +4554,6 @@ label[for*=_wholeWord_e-de-rtl] {
4478
4554
 
4479
4555
  .e-bigger .e-de-statusbar-spellcheck {
4480
4556
  border-radius: 2px;
4481
- margin-left: 7.5px;
4482
4557
  }
4483
4558
 
4484
4559
  .e-de-ctnr-toolbar {
@@ -4730,6 +4805,7 @@ label[for*=_wholeWord_e-de-rtl] {
4730
4805
  }
4731
4806
 
4732
4807
  .e-de-review-pane {
4808
+ background: #fff;
4733
4809
  border-left: 1px solid #eaeaea;
4734
4810
  height: 100%;
4735
4811
  min-height: 200px;
@@ -4747,34 +4823,6 @@ label[for*=_wholeWord_e-de-rtl] {
4747
4823
  width: 272px;
4748
4824
  }
4749
4825
 
4750
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
4751
- box-shadow: none;
4752
- height: 32px;
4753
- }
4754
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
4755
- box-shadow: none;
4756
- }
4757
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
4758
- box-shadow: none;
4759
- }
4760
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
4761
- box-shadow: none;
4762
- }
4763
-
4764
- .e-de-ctnr-group-btn button {
4765
- box-shadow: none;
4766
- height: 32px;
4767
- }
4768
- .e-de-ctnr-group-btn button:focus {
4769
- box-shadow: none;
4770
- }
4771
- .e-de-ctnr-group-btn button:active {
4772
- box-shadow: none;
4773
- }
4774
- .e-de-ctnr-group-btn button:hover {
4775
- box-shadow: none;
4776
- }
4777
-
4778
4826
  .e-de-property-div-padding {
4779
4827
  border-bottom: 0.5px solid #e0e0e0;
4780
4828
  padding: 12.5px;
@@ -4898,7 +4946,7 @@ label[for*=_wholeWord_e-de-rtl] {
4898
4946
  }
4899
4947
 
4900
4948
  .e-de-list-header-presetmenu .e-de-list-line {
4901
- border-bottom: 1px solid #ccc;
4949
+ border-bottom: 1px solid #ccc !important;
4902
4950
  margin-left: 5px;
4903
4951
  width: 100%;
4904
4952
  }
@@ -4967,10 +5015,10 @@ label[for*=_wholeWord_e-de-rtl] {
4967
5015
  }
4968
5016
 
4969
5017
  .e-de-list-container {
4970
- background: #fff;
4971
5018
  border: 1px solid #ccc;
4972
5019
  border-radius: 2px;
4973
5020
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
5021
+ background: #fff;
4974
5022
  box-sizing: border-box;
4975
5023
  display: inline-block;
4976
5024
  line-height: normal;
@@ -5245,7 +5293,7 @@ label[for*=_wholeWord_e-de-rtl] {
5245
5293
  }
5246
5294
 
5247
5295
  .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
5248
- height: 38px !important;
5296
+ height: 36px !important;
5249
5297
  }
5250
5298
 
5251
5299
  .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
@@ -5272,7 +5320,10 @@ label[for*=_wholeWord_e-de-rtl] {
5272
5320
  margin-left: 12px;
5273
5321
  }
5274
5322
  .e-rtl .e-de-listview-icon {
5323
+ height: auto;
5324
+ width: auto;
5275
5325
  line-height: 22px;
5326
+ margin-left: 12px;
5276
5327
  }
5277
5328
 
5278
5329
  .e-bigger .de-split-button > div:first-child {
@@ -5383,7 +5434,6 @@ label[for*=_wholeWord_e-de-rtl] {
5383
5434
  height: 82px;
5384
5435
  }
5385
5436
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
5386
- height: 25px;
5387
5437
  margin: 0 7.5px;
5388
5438
  }
5389
5439
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
@@ -5485,6 +5535,19 @@ label[for*=_wholeWord_e-de-rtl] {
5485
5535
  .e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
5486
5536
  box-shadow: none;
5487
5537
  }
5538
+ .e-bigger .e-de-status-bar button {
5539
+ height: 38px;
5540
+ box-shadow: none;
5541
+ }
5542
+ .e-bigger .e-de-status-bar button:focus {
5543
+ box-shadow: none;
5544
+ }
5545
+ .e-bigger .e-de-status-bar button:active {
5546
+ box-shadow: none;
5547
+ }
5548
+ .e-bigger .e-de-status-bar button:hover {
5549
+ box-shadow: none;
5550
+ }
5488
5551
  .e-bigger .e-de-ctnr-group-btn button {
5489
5552
  box-shadow: none;
5490
5553
  height: 38px;
@@ -5600,18 +5663,18 @@ label[for*=_wholeWord_e-de-rtl] {
5600
5663
  margin-left: 10px;
5601
5664
  }
5602
5665
  .e-bigger .e-de-status-bar {
5603
- background-color: #fff;
5666
+ background: #fff;
5604
5667
  display: -ms-flexbox;
5605
5668
  display: flex;
5606
5669
  padding-top: 3px;
5607
5670
  width: 100%;
5608
5671
  }
5609
5672
  .e-bigger .e-de-statusbar-zoom {
5610
- background-color: #fff;
5611
5673
  border: 0;
5612
5674
  color: #333;
5613
5675
  float: right;
5614
5676
  height: 34px;
5677
+ background-color: #fff;
5615
5678
  }
5616
5679
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
5617
5680
  line-height: 25px;
@@ -5627,7 +5690,10 @@ label[for*=_wholeWord_e-de-rtl] {
5627
5690
  margin-right: 16px;
5628
5691
  }
5629
5692
  .e-bigger .e-de-listview-icon {
5693
+ height: auto;
5694
+ width: auto;
5630
5695
  line-height: 22px;
5696
+ margin-right: 16px;
5631
5697
  }
5632
5698
  .e-bigger .e-rtl .e-listview .e-list-icon {
5633
5699
  height: 24px;
@@ -5635,7 +5701,10 @@ label[for*=_wholeWord_e-de-rtl] {
5635
5701
  margin-left: 16px;
5636
5702
  }
5637
5703
  .e-bigger .e-rtl .e-de-listview-icon {
5704
+ height: auto;
5705
+ width: auto;
5638
5706
  line-height: 22px;
5707
+ margin-left: 16px;
5639
5708
  }
5640
5709
 
5641
5710
  .e-de-ctn .e-de-bzr-button {