@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
@@ -2498,6 +2498,11 @@ label[for*=_wholeWord_e-de-rtl] {
2498
2498
  margin-left: 6px;
2499
2499
  }
2500
2500
 
2501
+ .e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
2502
+ height: 40px !important;
2503
+ width: auto !important;
2504
+ }
2505
+
2501
2506
  .e-de-style-bold-button-size {
2502
2507
  margin-left: 6px;
2503
2508
  }
@@ -3410,6 +3415,7 @@ label[for*=_wholeWord_e-de-rtl] {
3410
3415
 
3411
3416
  .e-de-cp-option.e-btn.e-icon-btn span {
3412
3417
  margin-top: 0px;
3418
+ background: #282d31;
3413
3419
  }
3414
3420
 
3415
3421
  .e-de-cmt-view:hover .e-de-cp-option {
@@ -4341,6 +4347,21 @@ label[for*=_wholeWord_e-de-rtl] {
4341
4347
  font-family: "e-icons";
4342
4348
  }
4343
4349
 
4350
+ .e-de-e-paragraph-style-mark::before {
4351
+ content: "\e844";
4352
+ font-family: "e-icons";
4353
+ }
4354
+
4355
+ .e-de-e-character-style-mark::before {
4356
+ content: "\e8bf";
4357
+ font-family: "e-icons";
4358
+ }
4359
+
4360
+ .e-de-e-linked-style-mark::before {
4361
+ content: "\e8c0";
4362
+ font-family: "e-icons";
4363
+ }
4364
+
4344
4365
  .e-de-ctnr-columns::before {
4345
4366
  content: "\e8b4";
4346
4367
  font-family: "e-icons";
@@ -4473,6 +4494,46 @@ label[for*=_wholeWord_e-de-rtl] {
4473
4494
  height: 100%;
4474
4495
  }
4475
4496
 
4497
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
4498
+ box-shadow: none;
4499
+ height: 31px;
4500
+ }
4501
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
4502
+ box-shadow: none;
4503
+ }
4504
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
4505
+ box-shadow: none;
4506
+ }
4507
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
4508
+ box-shadow: none;
4509
+ }
4510
+
4511
+ .e-de-ctnr-group-btn-middle button {
4512
+ border-radius: 0px;
4513
+ }
4514
+
4515
+ .de-tbl-fill-clr .e-dropdown-btn.e-btn {
4516
+ box-shadow: none;
4517
+ }
4518
+
4519
+ .e-de-prop-pane .e-de-ctnr-group-btn button,
4520
+ .e-de-ctn .e-de-status-bar button {
4521
+ box-shadow: none;
4522
+ height: 31px;
4523
+ }
4524
+ .e-de-prop-pane .e-de-ctnr-group-btn button:focus,
4525
+ .e-de-ctn .e-de-status-bar button:focus {
4526
+ box-shadow: none;
4527
+ }
4528
+ .e-de-prop-pane .e-de-ctnr-group-btn button:active,
4529
+ .e-de-ctn .e-de-status-bar button:active {
4530
+ box-shadow: none;
4531
+ }
4532
+ .e-de-prop-pane .e-de-ctnr-group-btn button:hover,
4533
+ .e-de-ctn .e-de-status-bar button:hover {
4534
+ box-shadow: none;
4535
+ }
4536
+
4476
4537
  .e-de-statusbar-pageweb {
4477
4538
  background: #282d31;
4478
4539
  border: 0;
@@ -4508,7 +4569,10 @@ label[for*=_wholeWord_e-de-rtl] {
4508
4569
  }
4509
4570
 
4510
4571
  .e-de-listview-icon {
4572
+ height: auto;
4573
+ width: auto;
4511
4574
  line-height: 22px;
4575
+ margin-right: 12px;
4512
4576
  }
4513
4577
 
4514
4578
  .e-de-linespacing {
@@ -4608,14 +4672,22 @@ label[for*=_wholeWord_e-de-rtl] {
4608
4672
  .e-de-statusbar-separator {
4609
4673
  border-left: 1px solid #444c54;
4610
4674
  height: 16px;
4611
- margin-left: 0;
4675
+ margin-left: 7.5px;
4676
+ margin-right: 7.5px;
4677
+ margin-top: 6px;
4678
+ }
4679
+
4680
+ .e-bigger .e-de-statusbar-separator {
4681
+ border-left: 1px solid #444c54;
4682
+ height: 16px;
4683
+ margin-left: 7.5px;
4684
+ margin-right: 7.5px;
4612
4685
  margin-top: 6px;
4613
4686
  }
4614
4687
 
4615
4688
  .e-de-statusbar-spellcheck {
4616
4689
  border-radius: 2px;
4617
4690
  font-weight: 400;
4618
- margin-left: 7.5px;
4619
4691
  }
4620
4692
 
4621
4693
  .e-de-ctn {
@@ -4628,7 +4700,6 @@ label[for*=_wholeWord_e-de-rtl] {
4628
4700
 
4629
4701
  .e-bigger .e-de-statusbar-spellcheck {
4630
4702
  border-radius: 2px;
4631
- margin-left: 7.5px;
4632
4703
  }
4633
4704
 
4634
4705
  .e-de-ctnr-toolbar {
@@ -5036,6 +5107,7 @@ label[for*=_wholeWord_e-de-rtl] {
5036
5107
  }
5037
5108
 
5038
5109
  .e-de-review-pane {
5110
+ background: #282d31;
5039
5111
  border-left: 1px solid #6c757d;
5040
5112
  height: 100%;
5041
5113
  min-height: 200px;
@@ -5053,34 +5125,6 @@ label[for*=_wholeWord_e-de-rtl] {
5053
5125
  width: 306px;
5054
5126
  }
5055
5127
 
5056
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
5057
- box-shadow: none;
5058
- height: 31px;
5059
- }
5060
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
5061
- box-shadow: none;
5062
- }
5063
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
5064
- box-shadow: none;
5065
- }
5066
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
5067
- box-shadow: none;
5068
- }
5069
-
5070
- .e-de-ctnr-group-btn button {
5071
- box-shadow: none;
5072
- height: 31px;
5073
- }
5074
- .e-de-ctnr-group-btn button:focus {
5075
- box-shadow: none;
5076
- }
5077
- .e-de-ctnr-group-btn button:active {
5078
- box-shadow: none;
5079
- }
5080
- .e-de-ctnr-group-btn button:hover {
5081
- box-shadow: none;
5082
- }
5083
-
5084
5128
  .e-de-property-div-padding {
5085
5129
  border-bottom: 0.5px solid #444c54;
5086
5130
  padding: 12px;
@@ -5213,7 +5257,7 @@ label[for*=_wholeWord_e-de-rtl] {
5213
5257
  }
5214
5258
 
5215
5259
  .e-de-list-header-presetmenu .e-de-list-line {
5216
- border-bottom: 1px solid #adb5bd;
5260
+ border-bottom: 1px solid #adb5bd !important;
5217
5261
  margin-left: 5px;
5218
5262
  width: 100%;
5219
5263
  }
@@ -5282,10 +5326,10 @@ label[for*=_wholeWord_e-de-rtl] {
5282
5326
  }
5283
5327
 
5284
5328
  .e-de-list-container {
5285
- background: #282d31;
5286
5329
  border: 1px solid #ccc;
5287
5330
  border-radius: 2px;
5288
5331
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
5332
+ background: #282d31;
5289
5333
  box-sizing: border-box;
5290
5334
  display: inline-block;
5291
5335
  line-height: normal;
@@ -5558,7 +5602,7 @@ label[for*=_wholeWord_e-de-rtl] {
5558
5602
  }
5559
5603
 
5560
5604
  .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
5561
- height: 38px !important;
5605
+ height: 36px !important;
5562
5606
  }
5563
5607
 
5564
5608
  .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
@@ -5585,7 +5629,10 @@ label[for*=_wholeWord_e-de-rtl] {
5585
5629
  margin-left: 12px;
5586
5630
  }
5587
5631
  .e-rtl .e-de-listview-icon {
5632
+ height: auto;
5633
+ width: auto;
5588
5634
  line-height: 22px;
5635
+ margin-left: 12px;
5589
5636
  }
5590
5637
 
5591
5638
  .e-bigger .de-split-button > div:first-child {
@@ -5708,7 +5755,6 @@ label[for*=_wholeWord_e-de-rtl] {
5708
5755
  height: 81px;
5709
5756
  }
5710
5757
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
5711
- height: 25px;
5712
5758
  margin: 0 16px;
5713
5759
  }
5714
5760
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
@@ -5811,6 +5857,19 @@ label[for*=_wholeWord_e-de-rtl] {
5811
5857
  .e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
5812
5858
  box-shadow: none;
5813
5859
  }
5860
+ .e-bigger .e-de-status-bar button {
5861
+ height: 38px;
5862
+ box-shadow: none;
5863
+ }
5864
+ .e-bigger .e-de-status-bar button:focus {
5865
+ box-shadow: none;
5866
+ }
5867
+ .e-bigger .e-de-status-bar button:active {
5868
+ box-shadow: none;
5869
+ }
5870
+ .e-bigger .e-de-status-bar button:hover {
5871
+ box-shadow: none;
5872
+ }
5814
5873
  .e-bigger .e-de-ctnr-group-btn button {
5815
5874
  box-shadow: none;
5816
5875
  height: 38px;
@@ -5925,18 +5984,18 @@ label[for*=_wholeWord_e-de-rtl] {
5925
5984
  margin-left: 10px;
5926
5985
  }
5927
5986
  .e-bigger .e-de-status-bar {
5928
- background-color: #282d31;
5987
+ background: #282d31;
5929
5988
  display: -ms-flexbox;
5930
5989
  display: flex;
5931
5990
  padding-top: 5px;
5932
5991
  width: 100%;
5933
5992
  }
5934
5993
  .e-bigger .e-de-statusbar-zoom {
5935
- background-color: #282d31;
5936
5994
  border: 0;
5937
5995
  color: #ced4da;
5938
5996
  float: right;
5939
5997
  height: 34px;
5998
+ background-color: #282d31;
5940
5999
  }
5941
6000
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
5942
6001
  line-height: 25px;
@@ -5952,7 +6011,10 @@ label[for*=_wholeWord_e-de-rtl] {
5952
6011
  margin-right: 16px;
5953
6012
  }
5954
6013
  .e-bigger .e-de-listview-icon {
6014
+ height: auto;
6015
+ width: auto;
5955
6016
  line-height: 22px;
6017
+ margin-right: 16px;
5956
6018
  }
5957
6019
  .e-bigger .e-rtl .e-listview .e-list-icon {
5958
6020
  height: 24px;
@@ -5960,7 +6022,10 @@ label[for*=_wholeWord_e-de-rtl] {
5960
6022
  margin-left: 16px;
5961
6023
  }
5962
6024
  .e-bigger .e-rtl .e-de-listview-icon {
6025
+ height: auto;
6026
+ width: auto;
5963
6027
  line-height: 22px;
6028
+ margin-left: 16px;
5964
6029
  }
5965
6030
 
5966
6031
  .e-de-ctn .e-de-bzr-button {
@@ -2498,6 +2498,11 @@ label[for*=_wholeWord_e-de-rtl] {
2498
2498
  margin-left: 6px;
2499
2499
  }
2500
2500
 
2501
+ .e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
2502
+ height: 40px !important;
2503
+ width: auto !important;
2504
+ }
2505
+
2501
2506
  .e-de-style-bold-button-size {
2502
2507
  margin-left: 6px;
2503
2508
  }
@@ -3410,6 +3415,7 @@ label[for*=_wholeWord_e-de-rtl] {
3410
3415
 
3411
3416
  .e-de-cp-option.e-btn.e-icon-btn span {
3412
3417
  margin-top: 0px;
3418
+ background: #f8f9fa;
3413
3419
  }
3414
3420
 
3415
3421
  .e-de-cmt-view:hover .e-de-cp-option {
@@ -4341,6 +4347,21 @@ label[for*=_wholeWord_e-de-rtl] {
4341
4347
  font-family: "e-icons";
4342
4348
  }
4343
4349
 
4350
+ .e-de-e-paragraph-style-mark::before {
4351
+ content: "\e844";
4352
+ font-family: "e-icons";
4353
+ }
4354
+
4355
+ .e-de-e-character-style-mark::before {
4356
+ content: "\e8bf";
4357
+ font-family: "e-icons";
4358
+ }
4359
+
4360
+ .e-de-e-linked-style-mark::before {
4361
+ content: "\e8c0";
4362
+ font-family: "e-icons";
4363
+ }
4364
+
4344
4365
  .e-de-ctnr-columns::before {
4345
4366
  content: "\e8b4";
4346
4367
  font-family: "e-icons";
@@ -4473,6 +4494,46 @@ label[for*=_wholeWord_e-de-rtl] {
4473
4494
  height: 100%;
4474
4495
  }
4475
4496
 
4497
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
4498
+ box-shadow: none;
4499
+ height: 31px;
4500
+ }
4501
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
4502
+ box-shadow: none;
4503
+ }
4504
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
4505
+ box-shadow: none;
4506
+ }
4507
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
4508
+ box-shadow: none;
4509
+ }
4510
+
4511
+ .e-de-ctnr-group-btn-middle button {
4512
+ border-radius: 0px;
4513
+ }
4514
+
4515
+ .de-tbl-fill-clr .e-dropdown-btn.e-btn {
4516
+ box-shadow: none;
4517
+ }
4518
+
4519
+ .e-de-prop-pane .e-de-ctnr-group-btn button,
4520
+ .e-de-ctn .e-de-status-bar button {
4521
+ box-shadow: none;
4522
+ height: 31px;
4523
+ }
4524
+ .e-de-prop-pane .e-de-ctnr-group-btn button:focus,
4525
+ .e-de-ctn .e-de-status-bar button:focus {
4526
+ box-shadow: none;
4527
+ }
4528
+ .e-de-prop-pane .e-de-ctnr-group-btn button:active,
4529
+ .e-de-ctn .e-de-status-bar button:active {
4530
+ box-shadow: none;
4531
+ }
4532
+ .e-de-prop-pane .e-de-ctnr-group-btn button:hover,
4533
+ .e-de-ctn .e-de-status-bar button:hover {
4534
+ box-shadow: none;
4535
+ }
4536
+
4476
4537
  .e-de-statusbar-pageweb {
4477
4538
  background: #f8f9fa;
4478
4539
  border: 0;
@@ -4508,7 +4569,10 @@ label[for*=_wholeWord_e-de-rtl] {
4508
4569
  }
4509
4570
 
4510
4571
  .e-de-listview-icon {
4572
+ height: auto;
4573
+ width: auto;
4511
4574
  line-height: 22px;
4575
+ margin-right: 12px;
4512
4576
  }
4513
4577
 
4514
4578
  .e-de-linespacing {
@@ -4608,14 +4672,22 @@ label[for*=_wholeWord_e-de-rtl] {
4608
4672
  .e-de-statusbar-separator {
4609
4673
  border-left: 1px solid #dee2e6;
4610
4674
  height: 16px;
4611
- margin-left: 0;
4675
+ margin-left: 7.5px;
4676
+ margin-right: 7.5px;
4677
+ margin-top: 6px;
4678
+ }
4679
+
4680
+ .e-bigger .e-de-statusbar-separator {
4681
+ border-left: 1px solid #dee2e6;
4682
+ height: 16px;
4683
+ margin-left: 7.5px;
4684
+ margin-right: 7.5px;
4612
4685
  margin-top: 6px;
4613
4686
  }
4614
4687
 
4615
4688
  .e-de-statusbar-spellcheck {
4616
4689
  border-radius: 2px;
4617
4690
  font-weight: 400;
4618
- margin-left: 7.5px;
4619
4691
  }
4620
4692
 
4621
4693
  .e-de-ctn {
@@ -4628,7 +4700,6 @@ label[for*=_wholeWord_e-de-rtl] {
4628
4700
 
4629
4701
  .e-bigger .e-de-statusbar-spellcheck {
4630
4702
  border-radius: 2px;
4631
- margin-left: 7.5px;
4632
4703
  }
4633
4704
 
4634
4705
  .e-de-ctnr-toolbar {
@@ -5036,6 +5107,7 @@ label[for*=_wholeWord_e-de-rtl] {
5036
5107
  }
5037
5108
 
5038
5109
  .e-de-review-pane {
5110
+ background: #f8f9fa;
5039
5111
  border-left: 1px solid #ced4da;
5040
5112
  height: 100%;
5041
5113
  min-height: 200px;
@@ -5053,34 +5125,6 @@ label[for*=_wholeWord_e-de-rtl] {
5053
5125
  width: 306px;
5054
5126
  }
5055
5127
 
5056
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
5057
- box-shadow: none;
5058
- height: 31px;
5059
- }
5060
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
5061
- box-shadow: none;
5062
- }
5063
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
5064
- box-shadow: none;
5065
- }
5066
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
5067
- box-shadow: none;
5068
- }
5069
-
5070
- .e-de-ctnr-group-btn button {
5071
- box-shadow: none;
5072
- height: 31px;
5073
- }
5074
- .e-de-ctnr-group-btn button:focus {
5075
- box-shadow: none;
5076
- }
5077
- .e-de-ctnr-group-btn button:active {
5078
- box-shadow: none;
5079
- }
5080
- .e-de-ctnr-group-btn button:hover {
5081
- box-shadow: none;
5082
- }
5083
-
5084
5128
  .e-de-property-div-padding {
5085
5129
  border-bottom: 0.5px solid #dee2e6;
5086
5130
  padding: 12px;
@@ -5213,7 +5257,7 @@ label[for*=_wholeWord_e-de-rtl] {
5213
5257
  }
5214
5258
 
5215
5259
  .e-de-list-header-presetmenu .e-de-list-line {
5216
- border-bottom: 1px solid #6c757d;
5260
+ border-bottom: 1px solid #6c757d !important;
5217
5261
  margin-left: 5px;
5218
5262
  width: 100%;
5219
5263
  }
@@ -5282,10 +5326,10 @@ label[for*=_wholeWord_e-de-rtl] {
5282
5326
  }
5283
5327
 
5284
5328
  .e-de-list-container {
5285
- background: #f8f9fa;
5286
5329
  border: 1px solid #ccc;
5287
5330
  border-radius: 2px;
5288
5331
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
5332
+ background: #f8f9fa;
5289
5333
  box-sizing: border-box;
5290
5334
  display: inline-block;
5291
5335
  line-height: normal;
@@ -5558,7 +5602,7 @@ label[for*=_wholeWord_e-de-rtl] {
5558
5602
  }
5559
5603
 
5560
5604
  .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
5561
- height: 38px !important;
5605
+ height: 36px !important;
5562
5606
  }
5563
5607
 
5564
5608
  .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
@@ -5585,7 +5629,10 @@ label[for*=_wholeWord_e-de-rtl] {
5585
5629
  margin-left: 12px;
5586
5630
  }
5587
5631
  .e-rtl .e-de-listview-icon {
5632
+ height: auto;
5633
+ width: auto;
5588
5634
  line-height: 22px;
5635
+ margin-left: 12px;
5589
5636
  }
5590
5637
 
5591
5638
  .e-bigger .de-split-button > div:first-child {
@@ -5708,7 +5755,6 @@ label[for*=_wholeWord_e-de-rtl] {
5708
5755
  height: 81px;
5709
5756
  }
5710
5757
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
5711
- height: 25px;
5712
5758
  margin: 0 16px;
5713
5759
  }
5714
5760
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
@@ -5811,6 +5857,19 @@ label[for*=_wholeWord_e-de-rtl] {
5811
5857
  .e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
5812
5858
  box-shadow: none;
5813
5859
  }
5860
+ .e-bigger .e-de-status-bar button {
5861
+ height: 38px;
5862
+ box-shadow: none;
5863
+ }
5864
+ .e-bigger .e-de-status-bar button:focus {
5865
+ box-shadow: none;
5866
+ }
5867
+ .e-bigger .e-de-status-bar button:active {
5868
+ box-shadow: none;
5869
+ }
5870
+ .e-bigger .e-de-status-bar button:hover {
5871
+ box-shadow: none;
5872
+ }
5814
5873
  .e-bigger .e-de-ctnr-group-btn button {
5815
5874
  box-shadow: none;
5816
5875
  height: 38px;
@@ -5925,18 +5984,18 @@ label[for*=_wholeWord_e-de-rtl] {
5925
5984
  margin-left: 10px;
5926
5985
  }
5927
5986
  .e-bigger .e-de-status-bar {
5928
- background-color: #f8f9fa;
5987
+ background: #f8f9fa;
5929
5988
  display: -ms-flexbox;
5930
5989
  display: flex;
5931
5990
  padding-top: 5px;
5932
5991
  width: 100%;
5933
5992
  }
5934
5993
  .e-bigger .e-de-statusbar-zoom {
5935
- background-color: #f8f9fa;
5936
5994
  border: 0;
5937
5995
  color: #495057;
5938
5996
  float: right;
5939
5997
  height: 34px;
5998
+ background-color: #f8f9fa;
5940
5999
  }
5941
6000
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
5942
6001
  line-height: 25px;
@@ -5952,7 +6011,10 @@ label[for*=_wholeWord_e-de-rtl] {
5952
6011
  margin-right: 16px;
5953
6012
  }
5954
6013
  .e-bigger .e-de-listview-icon {
6014
+ height: auto;
6015
+ width: auto;
5955
6016
  line-height: 22px;
6017
+ margin-right: 16px;
5956
6018
  }
5957
6019
  .e-bigger .e-rtl .e-listview .e-list-icon {
5958
6020
  height: 24px;
@@ -5960,7 +6022,10 @@ label[for*=_wholeWord_e-de-rtl] {
5960
6022
  margin-left: 16px;
5961
6023
  }
5962
6024
  .e-bigger .e-rtl .e-de-listview-icon {
6025
+ height: auto;
6026
+ width: auto;
5963
6027
  line-height: 22px;
6028
+ margin-left: 16px;
5964
6029
  }
5965
6030
 
5966
6031
  .e-de-ctn .e-de-bzr-button {
@@ -0,0 +1 @@
1
+ @import './material3-definition.scss';