@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
@@ -2347,6 +2347,11 @@ label[for*=_wholeWord_e-de-rtl] {
2347
2347
  height: 35px;
2348
2348
  }
2349
2349
 
2350
+ .e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
2351
+ height: 40px !important;
2352
+ width: auto !important;
2353
+ }
2354
+
2350
2355
  .e-de-style-bold-button-size {
2351
2356
  margin-left: 8px;
2352
2357
  margin-right: 8px;
@@ -3210,6 +3215,10 @@ label[for*=_wholeWord_e-de-rtl] {
3210
3215
  font-weight: normal;
3211
3216
  }
3212
3217
 
3218
+ .e-de-track-toolbar .e-de-track-pane-drop-btn {
3219
+ padding-top: 4px !important;
3220
+ }
3221
+
3213
3222
  .e-toolbar-item.e-de-track-toolbar-overlay.e-template.e-overlay {
3214
3223
  opacity: 1;
3215
3224
  font-weight: normal;
@@ -3308,6 +3317,7 @@ label[for*=_wholeWord_e-de-rtl] {
3308
3317
 
3309
3318
  .e-de-cp-option.e-btn.e-icon-btn span {
3310
3319
  margin-top: 0px;
3320
+ background: #fff;
3311
3321
  }
3312
3322
 
3313
3323
  .e-de-cmt-view:hover .e-de-cp-option {
@@ -4214,6 +4224,21 @@ label[for*=_wholeWord_e-de-rtl] {
4214
4224
  font-family: "e-icons";
4215
4225
  }
4216
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: "\e98e";
4234
+ font-family: "e-icons";
4235
+ }
4236
+
4237
+ .e-de-e-linked-style-mark::before {
4238
+ content: "\e992";
4239
+ font-family: "e-icons";
4240
+ }
4241
+
4217
4242
  .e-de-ctnr-columns::before {
4218
4243
  content: "\e955";
4219
4244
  font-family: "e-icons";
@@ -4346,6 +4371,46 @@ label[for*=_wholeWord_e-de-rtl] {
4346
4371
  height: 100%;
4347
4372
  }
4348
4373
 
4374
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
4375
+ box-shadow: none;
4376
+ height: 34px;
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: 34px;
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
+
4349
4414
  .e-de-statusbar-pageweb {
4350
4415
  background: #f8f8f8;
4351
4416
  border: 0;
@@ -4384,7 +4449,10 @@ label[for*=_wholeWord_e-de-rtl] {
4384
4449
  }
4385
4450
 
4386
4451
  .e-de-listview-icon {
4452
+ height: auto;
4453
+ width: auto;
4387
4454
  line-height: 22px;
4455
+ margin-right: 12px;
4388
4456
  }
4389
4457
 
4390
4458
  .e-de-linespacing {
@@ -4455,14 +4523,22 @@ label[for*=_wholeWord_e-de-rtl] {
4455
4523
  .e-de-statusbar-separator {
4456
4524
  border-left: 1px solid #ccc;
4457
4525
  height: 16px;
4458
- margin-left: 15.5;
4526
+ margin-left: 7.5px;
4527
+ margin-right: 7.5px;
4528
+ margin-top: 10px;
4529
+ }
4530
+
4531
+ .e-bigger .e-de-statusbar-separator {
4532
+ border-left: 1px solid #ccc;
4533
+ height: 16px;
4534
+ margin-left: 7.5px;
4535
+ margin-right: 7.5px;
4459
4536
  margin-top: 10px;
4460
4537
  }
4461
4538
 
4462
4539
  .e-de-statusbar-spellcheck {
4463
4540
  border-radius: 2px;
4464
4541
  font-weight: 400;
4465
- margin-left: 7.5px;
4466
4542
  }
4467
4543
 
4468
4544
  .e-de-ctn {
@@ -4475,7 +4551,6 @@ label[for*=_wholeWord_e-de-rtl] {
4475
4551
 
4476
4552
  .e-bigger .e-de-statusbar-spellcheck {
4477
4553
  border-radius: 2px;
4478
- margin-left: 7.5px;
4479
4554
  }
4480
4555
 
4481
4556
  .e-de-ctnr-toolbar {
@@ -4736,6 +4811,7 @@ label[for*=_wholeWord_e-de-rtl] {
4736
4811
  }
4737
4812
 
4738
4813
  .e-de-review-pane {
4814
+ background: #f8f8f8;
4739
4815
  border-left: 1px solid #e6e6e6;
4740
4816
  height: 100%;
4741
4817
  min-height: 200px;
@@ -4753,34 +4829,6 @@ label[for*=_wholeWord_e-de-rtl] {
4753
4829
  width: 272px;
4754
4830
  }
4755
4831
 
4756
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
4757
- box-shadow: none;
4758
- height: 34px;
4759
- }
4760
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
4761
- box-shadow: none;
4762
- }
4763
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
4764
- box-shadow: none;
4765
- }
4766
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
4767
- box-shadow: none;
4768
- }
4769
-
4770
- .e-de-ctnr-group-btn button {
4771
- box-shadow: none;
4772
- height: 34px;
4773
- }
4774
- .e-de-ctnr-group-btn button:focus {
4775
- box-shadow: none;
4776
- }
4777
- .e-de-ctnr-group-btn button:active {
4778
- box-shadow: none;
4779
- }
4780
- .e-de-ctnr-group-btn button:hover {
4781
- box-shadow: none;
4782
- }
4783
-
4784
4832
  .e-de-property-div-padding {
4785
4833
  border-bottom: 0.5px solid #e0e0e0;
4786
4834
  padding: 12.5px;
@@ -4905,7 +4953,7 @@ label[for*=_wholeWord_e-de-rtl] {
4905
4953
  }
4906
4954
 
4907
4955
  .e-de-list-header-presetmenu .e-de-list-line {
4908
- border-bottom: 1px solid #ccc;
4956
+ border-bottom: 1px solid #ccc !important;
4909
4957
  margin-left: 5px;
4910
4958
  width: 100%;
4911
4959
  }
@@ -4974,10 +5022,10 @@ label[for*=_wholeWord_e-de-rtl] {
4974
5022
  }
4975
5023
 
4976
5024
  .e-de-list-container {
4977
- background: #f8f8f8;
4978
5025
  border: 1px solid #ccc;
4979
5026
  border-radius: 2px;
4980
5027
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
5028
+ background: #f8f8f8;
4981
5029
  box-sizing: border-box;
4982
5030
  display: inline-block;
4983
5031
  line-height: normal;
@@ -5250,7 +5298,7 @@ label[for*=_wholeWord_e-de-rtl] {
5250
5298
  }
5251
5299
 
5252
5300
  .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
5253
- height: 38px !important;
5301
+ height: 36px !important;
5254
5302
  }
5255
5303
 
5256
5304
  .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
@@ -5277,7 +5325,10 @@ label[for*=_wholeWord_e-de-rtl] {
5277
5325
  margin-left: 12px;
5278
5326
  }
5279
5327
  .e-rtl .e-de-listview-icon {
5328
+ height: auto;
5329
+ width: auto;
5280
5330
  line-height: 22px;
5331
+ margin-left: 12px;
5281
5332
  }
5282
5333
 
5283
5334
  .e-bigger .de-split-button > div:first-child {
@@ -5397,7 +5448,6 @@ label[for*=_wholeWord_e-de-rtl] {
5397
5448
  height: 82px;
5398
5449
  }
5399
5450
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
5400
- height: 25px;
5401
5451
  margin: 0 7.5px;
5402
5452
  }
5403
5453
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
@@ -5499,6 +5549,19 @@ label[for*=_wholeWord_e-de-rtl] {
5499
5549
  .e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
5500
5550
  box-shadow: none;
5501
5551
  }
5552
+ .e-bigger .e-de-status-bar button {
5553
+ height: 38px;
5554
+ box-shadow: none;
5555
+ }
5556
+ .e-bigger .e-de-status-bar button:focus {
5557
+ box-shadow: none;
5558
+ }
5559
+ .e-bigger .e-de-status-bar button:active {
5560
+ box-shadow: none;
5561
+ }
5562
+ .e-bigger .e-de-status-bar button:hover {
5563
+ box-shadow: none;
5564
+ }
5502
5565
  .e-bigger .e-de-ctnr-group-btn button {
5503
5566
  box-shadow: none;
5504
5567
  height: 38px;
@@ -5619,18 +5682,18 @@ label[for*=_wholeWord_e-de-rtl] {
5619
5682
  margin-left: 10px;
5620
5683
  }
5621
5684
  .e-bigger .e-de-status-bar {
5622
- background-color: #f8f8f8;
5685
+ background: #f8f8f8;
5623
5686
  display: -ms-flexbox;
5624
5687
  display: flex;
5625
5688
  padding-top: 2.5px;
5626
5689
  width: 100%;
5627
5690
  }
5628
5691
  .e-bigger .e-de-statusbar-zoom {
5629
- background-color: #f8f8f8;
5630
5692
  border: 0;
5631
5693
  color: #333;
5632
5694
  float: right;
5633
5695
  height: 34px;
5696
+ background-color: #f8f8f8;
5634
5697
  }
5635
5698
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
5636
5699
  line-height: 25px;
@@ -5646,7 +5709,10 @@ label[for*=_wholeWord_e-de-rtl] {
5646
5709
  margin-right: 16px;
5647
5710
  }
5648
5711
  .e-bigger .e-de-listview-icon {
5712
+ height: auto;
5713
+ width: auto;
5649
5714
  line-height: 22px;
5715
+ margin-right: 16px;
5650
5716
  }
5651
5717
  .e-bigger .e-rtl .e-listview .e-list-icon {
5652
5718
  height: 24px;
@@ -5654,7 +5720,10 @@ label[for*=_wholeWord_e-de-rtl] {
5654
5720
  margin-left: 16px;
5655
5721
  }
5656
5722
  .e-bigger .e-rtl .e-de-listview-icon {
5723
+ height: auto;
5724
+ width: auto;
5657
5725
  line-height: 22px;
5726
+ margin-left: 16px;
5658
5727
  }
5659
5728
 
5660
5729
  .e-de-ctn .e-de-bzr-button {
@@ -1729,6 +1729,14 @@ label[for*=_wholeWord_e-de-rtl] {
1729
1729
  margin-top: 0 !important;
1730
1730
  }
1731
1731
 
1732
+ .e-de-bookmark .e-bookmark-textbox-input {
1733
+ box-sizing: border-box !important;
1734
+ }
1735
+
1736
+ .e-de-cp-option {
1737
+ background: transparent;
1738
+ }
1739
+
1732
1740
  .e-styles-common {
1733
1741
  padding-top: 14px;
1734
1742
  }
@@ -2487,6 +2495,11 @@ label[for*=_wholeWord_e-de-rtl] {
2487
2495
  height: 35px;
2488
2496
  }
2489
2497
 
2498
+ .e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
2499
+ height: 40px !important;
2500
+ width: auto !important;
2501
+ }
2502
+
2490
2503
  .e-de-style-bold-button-size {
2491
2504
  margin-left: 8px;
2492
2505
  margin-right: 8px;
@@ -3455,6 +3468,7 @@ label[for*=_wholeWord_e-de-rtl] {
3455
3468
 
3456
3469
  .e-de-cp-option.e-btn.e-icon-btn span {
3457
3470
  margin-top: 0px;
3471
+ background: #f8f9fa;
3458
3472
  }
3459
3473
 
3460
3474
  .e-de-cmt-view:hover .e-de-cp-option {
@@ -4365,6 +4379,21 @@ textarea.e-de-cmt-textarea {
4365
4379
  font-family: "e-icons";
4366
4380
  }
4367
4381
 
4382
+ .e-de-e-paragraph-style-mark::before {
4383
+ content: "\e720";
4384
+ font-family: "e-icons";
4385
+ }
4386
+
4387
+ .e-de-e-character-style-mark::before {
4388
+ content: "\e97b";
4389
+ font-family: "e-icons";
4390
+ }
4391
+
4392
+ .e-de-e-linked-style-mark::before {
4393
+ content: "\e97c";
4394
+ font-family: "e-icons";
4395
+ }
4396
+
4368
4397
  .e-de-ctnr-columns::before {
4369
4398
  content: "\e955";
4370
4399
  font-family: "e-icons";
@@ -4497,6 +4526,46 @@ textarea.e-de-cmt-textarea {
4497
4526
  height: 100%;
4498
4527
  }
4499
4528
 
4529
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
4530
+ box-shadow: none;
4531
+ height: 31px;
4532
+ }
4533
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
4534
+ box-shadow: none;
4535
+ }
4536
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
4537
+ box-shadow: none;
4538
+ }
4539
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
4540
+ box-shadow: none;
4541
+ }
4542
+
4543
+ .e-de-ctnr-group-btn-middle button {
4544
+ border-radius: 0px;
4545
+ }
4546
+
4547
+ .de-tbl-fill-clr .e-dropdown-btn.e-btn {
4548
+ box-shadow: none;
4549
+ }
4550
+
4551
+ .e-de-prop-pane .e-de-ctnr-group-btn button,
4552
+ .e-de-ctn .e-de-status-bar button {
4553
+ box-shadow: none;
4554
+ height: 31px;
4555
+ }
4556
+ .e-de-prop-pane .e-de-ctnr-group-btn button:focus,
4557
+ .e-de-ctn .e-de-status-bar button:focus {
4558
+ box-shadow: none;
4559
+ }
4560
+ .e-de-prop-pane .e-de-ctnr-group-btn button:active,
4561
+ .e-de-ctn .e-de-status-bar button:active {
4562
+ box-shadow: none;
4563
+ }
4564
+ .e-de-prop-pane .e-de-ctnr-group-btn button:hover,
4565
+ .e-de-ctn .e-de-status-bar button:hover {
4566
+ box-shadow: none;
4567
+ }
4568
+
4500
4569
  .e-de-statusbar-pageweb {
4501
4570
  background: #f8f9fa;
4502
4571
  border: 0;
@@ -4535,7 +4604,10 @@ textarea.e-de-cmt-textarea {
4535
4604
  }
4536
4605
 
4537
4606
  .e-de-listview-icon {
4607
+ height: auto;
4608
+ width: auto;
4538
4609
  line-height: 22px;
4610
+ margin-right: 14px;
4539
4611
  }
4540
4612
 
4541
4613
  .e-de-linespacing {
@@ -4607,14 +4679,22 @@ textarea.e-de-cmt-textarea {
4607
4679
  .e-de-statusbar-separator {
4608
4680
  border-left: 1px solid #495057;
4609
4681
  height: 16px;
4610
- margin-left: 15.5;
4682
+ margin-left: 7.5px;
4683
+ margin-right: 7.5px;
4684
+ margin-top: 10px;
4685
+ }
4686
+
4687
+ .e-bigger .e-de-statusbar-separator {
4688
+ border-left: 1px solid #495057;
4689
+ height: 16px;
4690
+ margin-left: 7.5px;
4691
+ margin-right: 7.5px;
4611
4692
  margin-top: 10px;
4612
4693
  }
4613
4694
 
4614
4695
  .e-de-statusbar-spellcheck {
4615
4696
  border-radius: 2px;
4616
4697
  font-weight: 400;
4617
- margin-left: 7.5px;
4618
4698
  }
4619
4699
 
4620
4700
  .e-de-ctn {
@@ -4627,7 +4707,6 @@ textarea.e-de-cmt-textarea {
4627
4707
 
4628
4708
  .e-bigger .e-de-statusbar-spellcheck {
4629
4709
  border-radius: 2px;
4630
- margin-left: 7.5px;
4631
4710
  }
4632
4711
 
4633
4712
  .e-de-ctnr-toolbar {
@@ -5048,6 +5127,7 @@ textarea.e-de-cmt-textarea {
5048
5127
  }
5049
5128
 
5050
5129
  .e-de-review-pane {
5130
+ background: #f8f9fa;
5051
5131
  border-left: 1px solid #dee2e6;
5052
5132
  height: 100%;
5053
5133
  min-height: 200px;
@@ -5071,34 +5151,6 @@ textarea.e-de-cmt-textarea {
5071
5151
  border-color: #ced4da;
5072
5152
  }
5073
5153
 
5074
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
5075
- box-shadow: none;
5076
- height: 31px;
5077
- }
5078
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
5079
- box-shadow: none;
5080
- }
5081
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
5082
- box-shadow: none;
5083
- }
5084
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
5085
- box-shadow: none;
5086
- }
5087
-
5088
- .e-de-ctnr-group-btn button {
5089
- box-shadow: none;
5090
- height: 31px;
5091
- }
5092
- .e-de-ctnr-group-btn button:focus {
5093
- box-shadow: none;
5094
- }
5095
- .e-de-ctnr-group-btn button:active {
5096
- box-shadow: none;
5097
- }
5098
- .e-de-ctnr-group-btn button:hover {
5099
- box-shadow: none;
5100
- }
5101
-
5102
5154
  .e-de-property-div-padding {
5103
5155
  border-bottom: 0.5px solid #dee2e6;
5104
5156
  padding: 12.5px;
@@ -5223,7 +5275,7 @@ textarea.e-de-cmt-textarea {
5223
5275
  }
5224
5276
 
5225
5277
  .e-de-list-header-presetmenu .e-de-list-line {
5226
- border-bottom: 1px solid #495057;
5278
+ border-bottom: 1px solid #495057 !important;
5227
5279
  margin-left: 5px;
5228
5280
  width: 100%;
5229
5281
  }
@@ -5292,10 +5344,10 @@ textarea.e-de-cmt-textarea {
5292
5344
  }
5293
5345
 
5294
5346
  .e-de-list-container {
5295
- background: #f8f9fa;
5296
5347
  border: 1px solid #ccc;
5297
5348
  border-radius: 2px;
5298
5349
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
5350
+ background: #f8f9fa;
5299
5351
  box-sizing: border-box;
5300
5352
  display: inline-block;
5301
5353
  line-height: normal;
@@ -5567,7 +5619,7 @@ textarea.e-de-cmt-textarea {
5567
5619
  }
5568
5620
 
5569
5621
  .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
5570
- height: 38px !important;
5622
+ height: 36px !important;
5571
5623
  }
5572
5624
 
5573
5625
  .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
@@ -5594,7 +5646,10 @@ textarea.e-de-cmt-textarea {
5594
5646
  margin-left: 14px;
5595
5647
  }
5596
5648
  .e-rtl .e-de-listview-icon {
5649
+ height: auto;
5650
+ width: auto;
5597
5651
  line-height: 22px;
5652
+ margin-left: 14px;
5598
5653
  }
5599
5654
 
5600
5655
  .e-bigger .de-split-button > div:first-child {
@@ -5714,7 +5769,6 @@ textarea.e-de-cmt-textarea {
5714
5769
  height: 86px;
5715
5770
  }
5716
5771
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
5717
- height: 25px;
5718
5772
  margin: 0 7.5px;
5719
5773
  }
5720
5774
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
@@ -5836,6 +5890,19 @@ textarea.e-de-cmt-textarea {
5836
5890
  .e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
5837
5891
  box-shadow: none;
5838
5892
  }
5893
+ .e-bigger .e-de-status-bar button {
5894
+ height: 38px;
5895
+ box-shadow: none;
5896
+ }
5897
+ .e-bigger .e-de-status-bar button:focus {
5898
+ box-shadow: none;
5899
+ }
5900
+ .e-bigger .e-de-status-bar button:active {
5901
+ box-shadow: none;
5902
+ }
5903
+ .e-bigger .e-de-status-bar button:hover {
5904
+ box-shadow: none;
5905
+ }
5839
5906
  .e-bigger .e-de-ctnr-group-btn button {
5840
5907
  box-shadow: none;
5841
5908
  height: 38px;
@@ -5956,18 +6023,18 @@ textarea.e-de-cmt-textarea {
5956
6023
  margin-left: 10px;
5957
6024
  }
5958
6025
  .e-bigger .e-de-status-bar {
5959
- background-color: #f8f9fa;
6026
+ background: #f8f9fa;
5960
6027
  display: -ms-flexbox;
5961
6028
  display: flex;
5962
6029
  padding-top: 3px;
5963
6030
  width: 100%;
5964
6031
  }
5965
6032
  .e-bigger .e-de-statusbar-zoom {
5966
- background-color: #f8f9fa;
5967
6033
  border: 0;
5968
6034
  color: #212529;
5969
6035
  float: right;
5970
6036
  height: 34px;
6037
+ background-color: #f8f9fa;
5971
6038
  }
5972
6039
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
5973
6040
  line-height: 25px;
@@ -5983,7 +6050,10 @@ textarea.e-de-cmt-textarea {
5983
6050
  margin-right: 16px;
5984
6051
  }
5985
6052
  .e-bigger .e-de-listview-icon {
6053
+ height: auto;
6054
+ width: auto;
5986
6055
  line-height: 22px;
6056
+ margin-right: 16px;
5987
6057
  }
5988
6058
  .e-bigger .e-rtl .e-listview .e-list-icon {
5989
6059
  height: 24px;
@@ -5991,7 +6061,10 @@ textarea.e-de-cmt-textarea {
5991
6061
  margin-left: 16px;
5992
6062
  }
5993
6063
  .e-bigger .e-rtl .e-de-listview-icon {
6064
+ height: auto;
6065
+ width: auto;
5994
6066
  line-height: 22px;
6067
+ margin-left: 16px;
5995
6068
  }
5996
6069
 
5997
6070
  .e-de-ctn .e-de-bzr-button {