@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
@@ -2346,6 +2346,11 @@ label[for*=_wholeWord_e-de-rtl] {
2346
2346
  height: 35px;
2347
2347
  }
2348
2348
 
2349
+ .e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
2350
+ height: 40px !important;
2351
+ width: auto !important;
2352
+ }
2353
+
2349
2354
  .e-de-style-bold-button-size {
2350
2355
  margin-left: 8px;
2351
2356
  margin-right: 8px;
@@ -3306,6 +3311,7 @@ label[for*=_wholeWord_e-de-rtl] {
3306
3311
 
3307
3312
  .e-de-cp-option.e-btn.e-icon-btn span {
3308
3313
  margin-top: 0px;
3314
+ background: #212121;
3309
3315
  }
3310
3316
 
3311
3317
  .e-de-cmt-view:hover .e-de-cp-option {
@@ -4214,6 +4220,21 @@ label[for*=_wholeWord_e-de-rtl] {
4214
4220
  font-family: "e-icons";
4215
4221
  }
4216
4222
 
4223
+ .e-de-e-paragraph-style-mark::before {
4224
+ content: "\e353";
4225
+ font-family: "e-icons";
4226
+ }
4227
+
4228
+ .e-de-e-character-style-mark::before {
4229
+ content: "\e97d";
4230
+ font-family: "e-icons";
4231
+ }
4232
+
4233
+ .e-de-e-linked-style-mark::before {
4234
+ content: "\e97e";
4235
+ font-family: "e-icons";
4236
+ }
4237
+
4217
4238
  .e-de-ctnr-columns::before {
4218
4239
  content: "\e955";
4219
4240
  font-family: "e-icons";
@@ -4346,6 +4367,46 @@ label[for*=_wholeWord_e-de-rtl] {
4346
4367
  height: 100%;
4347
4368
  }
4348
4369
 
4370
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
4371
+ box-shadow: none;
4372
+ height: 28px;
4373
+ }
4374
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
4375
+ box-shadow: none;
4376
+ }
4377
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
4378
+ box-shadow: none;
4379
+ }
4380
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
4381
+ box-shadow: none;
4382
+ }
4383
+
4384
+ .e-de-ctnr-group-btn-middle button {
4385
+ border-radius: 0px;
4386
+ }
4387
+
4388
+ .de-tbl-fill-clr .e-dropdown-btn.e-btn {
4389
+ box-shadow: none;
4390
+ }
4391
+
4392
+ .e-de-prop-pane .e-de-ctnr-group-btn button,
4393
+ .e-de-ctn .e-de-status-bar button {
4394
+ box-shadow: none;
4395
+ height: 28px;
4396
+ }
4397
+ .e-de-prop-pane .e-de-ctnr-group-btn button:focus,
4398
+ .e-de-ctn .e-de-status-bar button:focus {
4399
+ box-shadow: none;
4400
+ }
4401
+ .e-de-prop-pane .e-de-ctnr-group-btn button:active,
4402
+ .e-de-ctn .e-de-status-bar button:active {
4403
+ box-shadow: none;
4404
+ }
4405
+ .e-de-prop-pane .e-de-ctnr-group-btn button:hover,
4406
+ .e-de-ctn .e-de-status-bar button:hover {
4407
+ box-shadow: none;
4408
+ }
4409
+
4349
4410
  .e-de-statusbar-pageweb {
4350
4411
  background: #303030;
4351
4412
  border: 0;
@@ -4383,7 +4444,10 @@ label[for*=_wholeWord_e-de-rtl] {
4383
4444
  }
4384
4445
 
4385
4446
  .e-de-listview-icon {
4447
+ height: auto;
4448
+ width: auto;
4386
4449
  line-height: 22px;
4450
+ margin-right: 12px;
4387
4451
  }
4388
4452
 
4389
4453
  .e-de-linespacing {
@@ -4454,14 +4518,22 @@ label[for*=_wholeWord_e-de-rtl] {
4454
4518
  .e-de-statusbar-separator {
4455
4519
  border-left: 1px solid #626161;
4456
4520
  height: 16px;
4457
- margin-left: 15.5;
4521
+ margin-left: 7.5px;
4522
+ margin-right: 7.5px;
4523
+ margin-top: 10px;
4524
+ }
4525
+
4526
+ .e-bigger .e-de-statusbar-separator {
4527
+ border-left: 1px solid #626161;
4528
+ height: 16px;
4529
+ margin-left: 7.5px;
4530
+ margin-right: 7.5px;
4458
4531
  margin-top: 10px;
4459
4532
  }
4460
4533
 
4461
4534
  .e-de-statusbar-spellcheck {
4462
4535
  border-radius: 2px;
4463
4536
  font-weight: 400;
4464
- margin-left: 7.5px;
4465
4537
  }
4466
4538
 
4467
4539
  .e-de-ctn {
@@ -4474,7 +4546,6 @@ label[for*=_wholeWord_e-de-rtl] {
4474
4546
 
4475
4547
  .e-bigger .e-de-statusbar-spellcheck {
4476
4548
  border-radius: 2px;
4477
- margin-left: 7.5px;
4478
4549
  }
4479
4550
 
4480
4551
  .e-de-ctnr-toolbar {
@@ -4724,6 +4795,7 @@ label[for*=_wholeWord_e-de-rtl] {
4724
4795
  }
4725
4796
 
4726
4797
  .e-de-review-pane {
4798
+ background: #303030;
4727
4799
  border-left: 1px solid #616161;
4728
4800
  height: 100%;
4729
4801
  min-height: 200px;
@@ -4741,34 +4813,6 @@ label[for*=_wholeWord_e-de-rtl] {
4741
4813
  width: 270px;
4742
4814
  }
4743
4815
 
4744
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
4745
- box-shadow: none;
4746
- height: 28px;
4747
- }
4748
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
4749
- box-shadow: none;
4750
- }
4751
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
4752
- box-shadow: none;
4753
- }
4754
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
4755
- box-shadow: none;
4756
- }
4757
-
4758
- .e-de-ctnr-group-btn button {
4759
- box-shadow: none;
4760
- height: 28px;
4761
- }
4762
- .e-de-ctnr-group-btn button:focus {
4763
- box-shadow: none;
4764
- }
4765
- .e-de-ctnr-group-btn button:active {
4766
- box-shadow: none;
4767
- }
4768
- .e-de-ctnr-group-btn button:hover {
4769
- box-shadow: none;
4770
- }
4771
-
4772
4816
  .e-de-property-div-padding {
4773
4817
  border-bottom: 0.5px solid #616161;
4774
4818
  padding: 12.5px;
@@ -4892,7 +4936,7 @@ label[for*=_wholeWord_e-de-rtl] {
4892
4936
  }
4893
4937
 
4894
4938
  .e-de-list-header-presetmenu .e-de-list-line {
4895
- border-bottom: 1px solid #ccc;
4939
+ border-bottom: 1px solid #ccc !important;
4896
4940
  margin-left: 5px;
4897
4941
  width: 100%;
4898
4942
  }
@@ -4961,10 +5005,10 @@ label[for*=_wholeWord_e-de-rtl] {
4961
5005
  }
4962
5006
 
4963
5007
  .e-de-list-container {
4964
- background: #303030;
4965
5008
  border: 1px solid #ccc;
4966
5009
  border-radius: 2px;
4967
5010
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
5011
+ background: #303030;
4968
5012
  box-sizing: border-box;
4969
5013
  display: inline-block;
4970
5014
  line-height: normal;
@@ -5237,7 +5281,7 @@ label[for*=_wholeWord_e-de-rtl] {
5237
5281
  }
5238
5282
 
5239
5283
  .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
5240
- height: 38px !important;
5284
+ height: 36px !important;
5241
5285
  }
5242
5286
 
5243
5287
  .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
@@ -5264,7 +5308,10 @@ label[for*=_wholeWord_e-de-rtl] {
5264
5308
  margin-left: 12px;
5265
5309
  }
5266
5310
  .e-rtl .e-de-listview-icon {
5311
+ height: auto;
5312
+ width: auto;
5267
5313
  line-height: 22px;
5314
+ margin-left: 12px;
5268
5315
  }
5269
5316
 
5270
5317
  .e-bigger .de-split-button > div:first-child {
@@ -5323,7 +5370,7 @@ label[for*=_wholeWord_e-de-rtl] {
5323
5370
  .e-bigger .e-de-ctnr-toolbar {
5324
5371
  display: -ms-flexbox;
5325
5372
  display: flex;
5326
- height: 82px;
5373
+ height: 90px;
5327
5374
  width: 100%;
5328
5375
  }
5329
5376
  .e-bigger .e-de-tlbr-wrapper .e-de-toolbar.e-toolbar,
@@ -5352,7 +5399,7 @@ label[for*=_wholeWord_e-de-rtl] {
5352
5399
  }
5353
5400
  .e-bigger .e-de-tlbr-wrapper {
5354
5401
  background-color: #212121;
5355
- height: 82px;
5402
+ height: 90px;
5356
5403
  width: calc(100% - 75px);
5357
5404
  }
5358
5405
  .e-bigger .e-de-ctnr-prop-label {
@@ -5372,10 +5419,9 @@ label[for*=_wholeWord_e-de-rtl] {
5372
5419
  margin-right: 14.5px;
5373
5420
  }
5374
5421
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items {
5375
- height: 82px;
5422
+ height: 90px;
5376
5423
  }
5377
5424
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
5378
- height: 25px;
5379
5425
  margin: 0 7.5px;
5380
5426
  }
5381
5427
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
@@ -5444,11 +5490,11 @@ label[for*=_wholeWord_e-de-rtl] {
5444
5490
  }
5445
5491
  .e-bigger .e-de-showhide-btn {
5446
5492
  border: 0;
5447
- height: 82px;
5493
+ height: 90px;
5448
5494
  }
5449
5495
  .e-bigger .e-de-showhide-btn-rtl {
5450
5496
  border: 0;
5451
- height: 82px;
5497
+ height: 90px;
5452
5498
  }
5453
5499
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
5454
5500
  padding: 0;
@@ -5477,6 +5523,19 @@ label[for*=_wholeWord_e-de-rtl] {
5477
5523
  .e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
5478
5524
  box-shadow: none;
5479
5525
  }
5526
+ .e-bigger .e-de-status-bar button {
5527
+ height: 36px;
5528
+ box-shadow: none;
5529
+ }
5530
+ .e-bigger .e-de-status-bar button:focus {
5531
+ box-shadow: none;
5532
+ }
5533
+ .e-bigger .e-de-status-bar button:active {
5534
+ box-shadow: none;
5535
+ }
5536
+ .e-bigger .e-de-status-bar button:hover {
5537
+ box-shadow: none;
5538
+ }
5480
5539
  .e-bigger .e-de-ctnr-group-btn button {
5481
5540
  box-shadow: none;
5482
5541
  height: 36px;
@@ -5590,18 +5649,18 @@ label[for*=_wholeWord_e-de-rtl] {
5590
5649
  margin-left: 10px;
5591
5650
  }
5592
5651
  .e-bigger .e-de-status-bar {
5593
- background-color: #303030;
5652
+ background: #303030;
5594
5653
  display: -ms-flexbox;
5595
5654
  display: flex;
5596
5655
  padding-top: 3.5px;
5597
5656
  width: 100%;
5598
5657
  }
5599
5658
  .e-bigger .e-de-statusbar-zoom {
5600
- background-color: #303030;
5601
5659
  border: 0;
5602
5660
  color: #fff;
5603
5661
  float: right;
5604
5662
  height: 34px;
5663
+ background-color: #303030;
5605
5664
  }
5606
5665
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
5607
5666
  line-height: 25px;
@@ -5617,7 +5676,10 @@ label[for*=_wholeWord_e-de-rtl] {
5617
5676
  margin-right: 12px;
5618
5677
  }
5619
5678
  .e-bigger .e-de-listview-icon {
5679
+ height: auto;
5680
+ width: auto;
5620
5681
  line-height: 22px;
5682
+ margin-right: 12px;
5621
5683
  }
5622
5684
  .e-bigger .e-rtl .e-listview .e-list-icon {
5623
5685
  height: 24px;
@@ -5625,7 +5687,10 @@ label[for*=_wholeWord_e-de-rtl] {
5625
5687
  margin-left: 12px;
5626
5688
  }
5627
5689
  .e-bigger .e-rtl .e-de-listview-icon {
5690
+ height: auto;
5691
+ width: auto;
5628
5692
  line-height: 22px;
5693
+ margin-left: 12px;
5629
5694
  }
5630
5695
 
5631
5696
  .e-de-ctn .e-de-bzr-button {
@@ -2346,6 +2346,11 @@ label[for*=_wholeWord_e-de-rtl] {
2346
2346
  height: 35px;
2347
2347
  }
2348
2348
 
2349
+ .e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
2350
+ height: 40px !important;
2351
+ width: auto !important;
2352
+ }
2353
+
2349
2354
  .e-de-style-bold-button-size {
2350
2355
  margin-left: 8px;
2351
2356
  margin-right: 8px;
@@ -3306,6 +3311,7 @@ label[for*=_wholeWord_e-de-rtl] {
3306
3311
 
3307
3312
  .e-de-cp-option.e-btn.e-icon-btn span {
3308
3313
  margin-top: 0px;
3314
+ background: #fff;
3309
3315
  }
3310
3316
 
3311
3317
  .e-de-cmt-view:hover .e-de-cp-option {
@@ -4214,6 +4220,21 @@ label[for*=_wholeWord_e-de-rtl] {
4214
4220
  font-family: "e-icons";
4215
4221
  }
4216
4222
 
4223
+ .e-de-e-paragraph-style-mark::before {
4224
+ content: "\e353";
4225
+ font-family: "e-icons";
4226
+ }
4227
+
4228
+ .e-de-e-character-style-mark::before {
4229
+ content: "\e97d";
4230
+ font-family: "e-icons";
4231
+ }
4232
+
4233
+ .e-de-e-linked-style-mark::before {
4234
+ content: "\e97e";
4235
+ font-family: "e-icons";
4236
+ }
4237
+
4217
4238
  .e-de-ctnr-columns::before {
4218
4239
  content: "\e955";
4219
4240
  font-family: "e-icons";
@@ -4346,6 +4367,46 @@ label[for*=_wholeWord_e-de-rtl] {
4346
4367
  height: 100%;
4347
4368
  }
4348
4369
 
4370
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
4371
+ box-shadow: none;
4372
+ height: 28px;
4373
+ }
4374
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
4375
+ box-shadow: none;
4376
+ }
4377
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
4378
+ box-shadow: none;
4379
+ }
4380
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
4381
+ box-shadow: none;
4382
+ }
4383
+
4384
+ .e-de-ctnr-group-btn-middle button {
4385
+ border-radius: 0px;
4386
+ }
4387
+
4388
+ .de-tbl-fill-clr .e-dropdown-btn.e-btn {
4389
+ box-shadow: none;
4390
+ }
4391
+
4392
+ .e-de-prop-pane .e-de-ctnr-group-btn button,
4393
+ .e-de-ctn .e-de-status-bar button {
4394
+ box-shadow: none;
4395
+ height: 28px;
4396
+ }
4397
+ .e-de-prop-pane .e-de-ctnr-group-btn button:focus,
4398
+ .e-de-ctn .e-de-status-bar button:focus {
4399
+ box-shadow: none;
4400
+ }
4401
+ .e-de-prop-pane .e-de-ctnr-group-btn button:active,
4402
+ .e-de-ctn .e-de-status-bar button:active {
4403
+ box-shadow: none;
4404
+ }
4405
+ .e-de-prop-pane .e-de-ctnr-group-btn button:hover,
4406
+ .e-de-ctn .e-de-status-bar button:hover {
4407
+ box-shadow: none;
4408
+ }
4409
+
4349
4410
  .e-de-statusbar-pageweb {
4350
4411
  background: #fafafa;
4351
4412
  border: 0;
@@ -4383,7 +4444,10 @@ label[for*=_wholeWord_e-de-rtl] {
4383
4444
  }
4384
4445
 
4385
4446
  .e-de-listview-icon {
4447
+ height: auto;
4448
+ width: auto;
4386
4449
  line-height: 22px;
4450
+ margin-right: 12px;
4387
4451
  }
4388
4452
 
4389
4453
  .e-de-linespacing {
@@ -4454,14 +4518,22 @@ label[for*=_wholeWord_e-de-rtl] {
4454
4518
  .e-de-statusbar-separator {
4455
4519
  border-left: 1px solid #ebebeb;
4456
4520
  height: 16px;
4457
- margin-left: 15.5;
4521
+ margin-left: 7.5px;
4522
+ margin-right: 7.5px;
4523
+ margin-top: 10px;
4524
+ }
4525
+
4526
+ .e-bigger .e-de-statusbar-separator {
4527
+ border-left: 1px solid #ebebeb;
4528
+ height: 16px;
4529
+ margin-left: 7.5px;
4530
+ margin-right: 7.5px;
4458
4531
  margin-top: 10px;
4459
4532
  }
4460
4533
 
4461
4534
  .e-de-statusbar-spellcheck {
4462
4535
  border-radius: 2px;
4463
4536
  font-weight: 400;
4464
- margin-left: 7.5px;
4465
4537
  }
4466
4538
 
4467
4539
  .e-de-ctn {
@@ -4474,7 +4546,6 @@ label[for*=_wholeWord_e-de-rtl] {
4474
4546
 
4475
4547
  .e-bigger .e-de-statusbar-spellcheck {
4476
4548
  border-radius: 2px;
4477
- margin-left: 7.5px;
4478
4549
  }
4479
4550
 
4480
4551
  .e-de-ctnr-toolbar {
@@ -4729,6 +4800,7 @@ label[for*=_wholeWord_e-de-rtl] {
4729
4800
  }
4730
4801
 
4731
4802
  .e-de-review-pane {
4803
+ background: #fafafa;
4732
4804
  border-left: 1px solid #e0e0e0;
4733
4805
  height: 100%;
4734
4806
  min-height: 200px;
@@ -4746,34 +4818,6 @@ label[for*=_wholeWord_e-de-rtl] {
4746
4818
  width: 270px;
4747
4819
  }
4748
4820
 
4749
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
4750
- box-shadow: none;
4751
- height: 28px;
4752
- }
4753
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
4754
- box-shadow: none;
4755
- }
4756
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
4757
- box-shadow: none;
4758
- }
4759
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
4760
- box-shadow: none;
4761
- }
4762
-
4763
- .e-de-ctnr-group-btn button {
4764
- box-shadow: none;
4765
- height: 28px;
4766
- }
4767
- .e-de-ctnr-group-btn button:focus {
4768
- box-shadow: none;
4769
- }
4770
- .e-de-ctnr-group-btn button:active {
4771
- box-shadow: none;
4772
- }
4773
- .e-de-ctnr-group-btn button:hover {
4774
- box-shadow: none;
4775
- }
4776
-
4777
4821
  .e-de-property-div-padding {
4778
4822
  border-bottom: 0.5px solid #e0e0e0;
4779
4823
  padding: 12.5px;
@@ -4897,7 +4941,7 @@ label[for*=_wholeWord_e-de-rtl] {
4897
4941
  }
4898
4942
 
4899
4943
  .e-de-list-header-presetmenu .e-de-list-line {
4900
- border-bottom: 1px solid #ccc;
4944
+ border-bottom: 1px solid #ccc !important;
4901
4945
  margin-left: 5px;
4902
4946
  width: 100%;
4903
4947
  }
@@ -4966,10 +5010,10 @@ label[for*=_wholeWord_e-de-rtl] {
4966
5010
  }
4967
5011
 
4968
5012
  .e-de-list-container {
4969
- background: #fafafa;
4970
5013
  border: 1px solid #ccc;
4971
5014
  border-radius: 2px;
4972
5015
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
5016
+ background: #fafafa;
4973
5017
  box-sizing: border-box;
4974
5018
  display: inline-block;
4975
5019
  line-height: normal;
@@ -5242,7 +5286,7 @@ label[for*=_wholeWord_e-de-rtl] {
5242
5286
  }
5243
5287
 
5244
5288
  .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
5245
- height: 38px !important;
5289
+ height: 36px !important;
5246
5290
  }
5247
5291
 
5248
5292
  .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
@@ -5269,7 +5313,10 @@ label[for*=_wholeWord_e-de-rtl] {
5269
5313
  margin-left: 12px;
5270
5314
  }
5271
5315
  .e-rtl .e-de-listview-icon {
5316
+ height: auto;
5317
+ width: auto;
5272
5318
  line-height: 22px;
5319
+ margin-left: 12px;
5273
5320
  }
5274
5321
 
5275
5322
  .e-bigger .de-split-button > div:first-child {
@@ -5384,7 +5431,6 @@ label[for*=_wholeWord_e-de-rtl] {
5384
5431
  height: 82px;
5385
5432
  }
5386
5433
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
5387
- height: 25px;
5388
5434
  margin: 0 7.5px;
5389
5435
  }
5390
5436
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
@@ -5465,6 +5511,7 @@ label[for*=_wholeWord_e-de-rtl] {
5465
5511
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
5466
5512
  display: table;
5467
5513
  font-size: 13px;
5514
+ font-size: 12px !important;
5468
5515
  margin: 0 6px;
5469
5516
  padding: 0;
5470
5517
  white-space: normal;
@@ -5487,6 +5534,19 @@ label[for*=_wholeWord_e-de-rtl] {
5487
5534
  .e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
5488
5535
  box-shadow: none;
5489
5536
  }
5537
+ .e-bigger .e-de-status-bar button {
5538
+ height: 36px;
5539
+ box-shadow: none;
5540
+ }
5541
+ .e-bigger .e-de-status-bar button:focus {
5542
+ box-shadow: none;
5543
+ }
5544
+ .e-bigger .e-de-status-bar button:active {
5545
+ box-shadow: none;
5546
+ }
5547
+ .e-bigger .e-de-status-bar button:hover {
5548
+ box-shadow: none;
5549
+ }
5490
5550
  .e-bigger .e-de-ctnr-group-btn button {
5491
5551
  box-shadow: none;
5492
5552
  height: 36px;
@@ -5600,18 +5660,18 @@ label[for*=_wholeWord_e-de-rtl] {
5600
5660
  margin-left: 10px;
5601
5661
  }
5602
5662
  .e-bigger .e-de-status-bar {
5603
- background-color: #fafafa;
5663
+ background: #fafafa;
5604
5664
  display: -ms-flexbox;
5605
5665
  display: flex;
5606
5666
  padding-top: 3.5px;
5607
5667
  width: 100%;
5608
5668
  }
5609
5669
  .e-bigger .e-de-statusbar-zoom {
5610
- background-color: #fafafa;
5611
5670
  border: 0;
5612
5671
  color: #000;
5613
5672
  float: right;
5614
5673
  height: 34px;
5674
+ background-color: #fafafa;
5615
5675
  }
5616
5676
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
5617
5677
  line-height: 25px;
@@ -5626,7 +5686,10 @@ label[for*=_wholeWord_e-de-rtl] {
5626
5686
  margin-right: 12px;
5627
5687
  }
5628
5688
  .e-bigger .e-de-listview-icon {
5689
+ height: auto;
5690
+ width: auto;
5629
5691
  line-height: 22px;
5692
+ margin-right: 12px;
5630
5693
  }
5631
5694
  .e-bigger .e-rtl .e-listview .e-list-icon {
5632
5695
  height: 24px;
@@ -5634,7 +5697,10 @@ label[for*=_wholeWord_e-de-rtl] {
5634
5697
  margin-left: 12px;
5635
5698
  }
5636
5699
  .e-bigger .e-rtl .e-de-listview-icon {
5700
+ height: auto;
5701
+ width: auto;
5637
5702
  line-height: 22px;
5703
+ margin-left: 12px;
5638
5704
  }
5639
5705
 
5640
5706
  .e-de-ctn .e-de-bzr-button {