@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
@@ -3194,6 +3194,21 @@ label[for=container_wholeWord] {
3194
3194
  font-family: "e-icons";
3195
3195
  }
3196
3196
 
3197
+ .e-de-e-paragraph-style-mark::before {
3198
+ content: "\e353";
3199
+ font-family: "e-icons";
3200
+ }
3201
+
3202
+ .e-de-e-character-style-mark::before {
3203
+ content: "\e980";
3204
+ font-family: "e-icons";
3205
+ }
3206
+
3207
+ .e-de-e-linked-style-mark::before {
3208
+ content: "\e981";
3209
+ font-family: "e-icons";
3210
+ }
3211
+
3197
3212
  .e-de-ctnr-columns::before {
3198
3213
  content: "\e968";
3199
3214
  font-family: "e-icons";
@@ -3326,6 +3341,46 @@ label[for=container_wholeWord] {
3326
3341
  height: 100%;
3327
3342
  }
3328
3343
 
3344
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
3345
+ box-shadow: none;
3346
+ height: 32px;
3347
+ }
3348
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
3349
+ box-shadow: none;
3350
+ }
3351
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
3352
+ box-shadow: none;
3353
+ }
3354
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
3355
+ box-shadow: none;
3356
+ }
3357
+
3358
+ .e-de-ctnr-group-btn-middle button {
3359
+ border-radius: 0px;
3360
+ }
3361
+
3362
+ .de-tbl-fill-clr .e-dropdown-btn.e-btn {
3363
+ box-shadow: none;
3364
+ }
3365
+
3366
+ .e-de-prop-pane .e-de-ctnr-group-btn button,
3367
+ .e-de-ctn .e-de-status-bar button {
3368
+ box-shadow: none;
3369
+ height: 32px;
3370
+ }
3371
+ .e-de-prop-pane .e-de-ctnr-group-btn button:focus,
3372
+ .e-de-ctn .e-de-status-bar button:focus {
3373
+ box-shadow: none;
3374
+ }
3375
+ .e-de-prop-pane .e-de-ctnr-group-btn button:active,
3376
+ .e-de-ctn .e-de-status-bar button:active {
3377
+ box-shadow: none;
3378
+ }
3379
+ .e-de-prop-pane .e-de-ctnr-group-btn button:hover,
3380
+ .e-de-ctn .e-de-status-bar button:hover {
3381
+ box-shadow: none;
3382
+ }
3383
+
3329
3384
  .e-de-statusbar-pageweb {
3330
3385
  background: #fff;
3331
3386
  border: 0;
@@ -3363,7 +3418,10 @@ label[for=container_wholeWord] {
3363
3418
  }
3364
3419
 
3365
3420
  .e-de-listview-icon {
3421
+ height: auto;
3422
+ width: auto;
3366
3423
  line-height: 22px;
3424
+ margin-right: 12px;
3367
3425
  }
3368
3426
 
3369
3427
  .e-de-linespacing {
@@ -3434,14 +3492,22 @@ label[for=container_wholeWord] {
3434
3492
  .e-de-statusbar-separator {
3435
3493
  border-left: 1px solid #dadada;
3436
3494
  height: 16px;
3437
- margin-left: 15.5;
3495
+ margin-left: 7.5px;
3496
+ margin-right: 7.5px;
3497
+ margin-top: 10px;
3498
+ }
3499
+
3500
+ .e-bigger .e-de-statusbar-separator {
3501
+ border-left: 1px solid #dadada;
3502
+ height: 16px;
3503
+ margin-left: 7.5px;
3504
+ margin-right: 7.5px;
3438
3505
  margin-top: 10px;
3439
3506
  }
3440
3507
 
3441
3508
  .e-de-statusbar-spellcheck {
3442
3509
  border-radius: 2px;
3443
3510
  font-weight: 400;
3444
- margin-left: 7.5px;
3445
3511
  }
3446
3512
 
3447
3513
  .e-de-ctn {
@@ -3454,7 +3520,6 @@ label[for=container_wholeWord] {
3454
3520
 
3455
3521
  .e-bigger .e-de-statusbar-spellcheck {
3456
3522
  border-radius: 2px;
3457
- margin-left: 7.5px;
3458
3523
  }
3459
3524
 
3460
3525
  .e-de-ctnr-toolbar {
@@ -3704,6 +3769,7 @@ label[for=container_wholeWord] {
3704
3769
  }
3705
3770
 
3706
3771
  .e-de-review-pane {
3772
+ background: #fff;
3707
3773
  border-left: 1px solid #e1e1e1;
3708
3774
  height: 100%;
3709
3775
  min-height: 200px;
@@ -3721,34 +3787,6 @@ label[for=container_wholeWord] {
3721
3787
  width: 272px;
3722
3788
  }
3723
3789
 
3724
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
3725
- box-shadow: none;
3726
- height: 32px;
3727
- }
3728
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
3729
- box-shadow: none;
3730
- }
3731
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
3732
- box-shadow: none;
3733
- }
3734
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
3735
- box-shadow: none;
3736
- }
3737
-
3738
- .e-de-ctnr-group-btn button {
3739
- box-shadow: none;
3740
- height: 32px;
3741
- }
3742
- .e-de-ctnr-group-btn button:focus {
3743
- box-shadow: none;
3744
- }
3745
- .e-de-ctnr-group-btn button:active {
3746
- box-shadow: none;
3747
- }
3748
- .e-de-ctnr-group-btn button:hover {
3749
- box-shadow: none;
3750
- }
3751
-
3752
3790
  .e-de-property-div-padding {
3753
3791
  border-bottom: 0.5px solid #e0e0e0;
3754
3792
  padding: 12.5px;
@@ -3872,7 +3910,7 @@ label[for=container_wholeWord] {
3872
3910
  }
3873
3911
 
3874
3912
  .e-de-list-header-presetmenu .e-de-list-line {
3875
- border-bottom: 1px solid #ccc;
3913
+ border-bottom: 1px solid #ccc !important;
3876
3914
  margin-left: 5px;
3877
3915
  width: 100%;
3878
3916
  }
@@ -3941,10 +3979,10 @@ label[for=container_wholeWord] {
3941
3979
  }
3942
3980
 
3943
3981
  .e-de-list-container {
3944
- background: #fff;
3945
3982
  border: 1px solid #ccc;
3946
3983
  border-radius: 2px;
3947
3984
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
3985
+ background: #fff;
3948
3986
  box-sizing: border-box;
3949
3987
  display: inline-block;
3950
3988
  line-height: normal;
@@ -4217,7 +4255,7 @@ label[for=container_wholeWord] {
4217
4255
  }
4218
4256
 
4219
4257
  .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
4220
- height: 38px !important;
4258
+ height: 36px !important;
4221
4259
  }
4222
4260
 
4223
4261
  .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
@@ -4244,7 +4282,10 @@ label[for=container_wholeWord] {
4244
4282
  margin-left: 12px;
4245
4283
  }
4246
4284
  .e-rtl .e-de-listview-icon {
4285
+ height: auto;
4286
+ width: auto;
4247
4287
  line-height: 22px;
4288
+ margin-left: 12px;
4248
4289
  }
4249
4290
 
4250
4291
  .e-bigger .de-split-button > div:first-child {
@@ -4355,7 +4396,6 @@ label[for=container_wholeWord] {
4355
4396
  height: 82px;
4356
4397
  }
4357
4398
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
4358
- height: 25px;
4359
4399
  margin: 0 7.5px;
4360
4400
  }
4361
4401
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
@@ -4457,6 +4497,19 @@ label[for=container_wholeWord] {
4457
4497
  .e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
4458
4498
  box-shadow: none;
4459
4499
  }
4500
+ .e-bigger .e-de-status-bar button {
4501
+ height: 38px;
4502
+ box-shadow: none;
4503
+ }
4504
+ .e-bigger .e-de-status-bar button:focus {
4505
+ box-shadow: none;
4506
+ }
4507
+ .e-bigger .e-de-status-bar button:active {
4508
+ box-shadow: none;
4509
+ }
4510
+ .e-bigger .e-de-status-bar button:hover {
4511
+ box-shadow: none;
4512
+ }
4460
4513
  .e-bigger .e-de-ctnr-group-btn button {
4461
4514
  box-shadow: none;
4462
4515
  height: 38px;
@@ -4570,18 +4623,18 @@ label[for=container_wholeWord] {
4570
4623
  margin-left: 10px;
4571
4624
  }
4572
4625
  .e-bigger .e-de-status-bar {
4573
- background-color: #fff;
4626
+ background: #fff;
4574
4627
  display: -ms-flexbox;
4575
4628
  display: flex;
4576
4629
  padding-top: 1.5px;
4577
4630
  width: 100%;
4578
4631
  }
4579
4632
  .e-bigger .e-de-statusbar-zoom {
4580
- background-color: #fff;
4581
4633
  border: 0;
4582
4634
  color: #000;
4583
4635
  float: right;
4584
4636
  height: 34px;
4637
+ background-color: #fff;
4585
4638
  }
4586
4639
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
4587
4640
  line-height: 25px;
@@ -4597,7 +4650,10 @@ label[for=container_wholeWord] {
4597
4650
  margin-right: 16px;
4598
4651
  }
4599
4652
  .e-bigger .e-de-listview-icon {
4653
+ height: auto;
4654
+ width: auto;
4600
4655
  line-height: 22px;
4656
+ margin-right: 16px;
4601
4657
  }
4602
4658
  .e-bigger .e-rtl .e-listview .e-list-icon {
4603
4659
  height: 24px;
@@ -4605,7 +4661,10 @@ label[for=container_wholeWord] {
4605
4661
  margin-left: 16px;
4606
4662
  }
4607
4663
  .e-bigger .e-rtl .e-de-listview-icon {
4664
+ height: auto;
4665
+ width: auto;
4608
4666
  line-height: 22px;
4667
+ margin-left: 16px;
4609
4668
  }
4610
4669
 
4611
4670
  .e-de-ctn .e-de-bzr-button {
@@ -2351,6 +2351,11 @@ label[for*=_wholeWord_e-de-rtl] {
2351
2351
  height: 35px;
2352
2352
  }
2353
2353
 
2354
+ .e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
2355
+ height: 40px !important;
2356
+ width: auto !important;
2357
+ }
2358
+
2354
2359
  .e-de-style-bold-button-size {
2355
2360
  margin-left: 8px;
2356
2361
  margin-right: 8px;
@@ -3311,6 +3316,7 @@ label[for*=_wholeWord_e-de-rtl] {
3311
3316
 
3312
3317
  .e-de-cp-option.e-btn.e-icon-btn span {
3313
3318
  margin-top: 0px;
3319
+ background: #000;
3314
3320
  }
3315
3321
 
3316
3322
  .e-de-cmt-view:hover .e-de-cp-option {
@@ -4217,6 +4223,21 @@ label[for*=_wholeWord_e-de-rtl] {
4217
4223
  font-family: "e-icons";
4218
4224
  }
4219
4225
 
4226
+ .e-de-e-paragraph-style-mark::before {
4227
+ content: "\e353";
4228
+ font-family: "e-icons";
4229
+ }
4230
+
4231
+ .e-de-e-character-style-mark::before {
4232
+ content: "\e980";
4233
+ font-family: "e-icons";
4234
+ }
4235
+
4236
+ .e-de-e-linked-style-mark::before {
4237
+ content: "\e981";
4238
+ font-family: "e-icons";
4239
+ }
4240
+
4220
4241
  .e-de-ctnr-columns::before {
4221
4242
  content: "\e968";
4222
4243
  font-family: "e-icons";
@@ -4349,6 +4370,46 @@ label[for*=_wholeWord_e-de-rtl] {
4349
4370
  height: 100%;
4350
4371
  }
4351
4372
 
4373
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
4374
+ box-shadow: none;
4375
+ height: 32px;
4376
+ }
4377
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
4378
+ box-shadow: none;
4379
+ }
4380
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
4381
+ box-shadow: none;
4382
+ }
4383
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
4384
+ box-shadow: none;
4385
+ }
4386
+
4387
+ .e-de-ctnr-group-btn-middle button {
4388
+ border-radius: 0px;
4389
+ }
4390
+
4391
+ .de-tbl-fill-clr .e-dropdown-btn.e-btn {
4392
+ box-shadow: none;
4393
+ }
4394
+
4395
+ .e-de-prop-pane .e-de-ctnr-group-btn button,
4396
+ .e-de-ctn .e-de-status-bar button {
4397
+ box-shadow: none;
4398
+ height: 32px;
4399
+ }
4400
+ .e-de-prop-pane .e-de-ctnr-group-btn button:focus,
4401
+ .e-de-ctn .e-de-status-bar button:focus {
4402
+ box-shadow: none;
4403
+ }
4404
+ .e-de-prop-pane .e-de-ctnr-group-btn button:active,
4405
+ .e-de-ctn .e-de-status-bar button:active {
4406
+ box-shadow: none;
4407
+ }
4408
+ .e-de-prop-pane .e-de-ctnr-group-btn button:hover,
4409
+ .e-de-ctn .e-de-status-bar button:hover {
4410
+ box-shadow: none;
4411
+ }
4412
+
4352
4413
  .e-de-statusbar-pageweb {
4353
4414
  background: #000;
4354
4415
  border: 0;
@@ -4386,7 +4447,10 @@ label[for*=_wholeWord_e-de-rtl] {
4386
4447
  }
4387
4448
 
4388
4449
  .e-de-listview-icon {
4450
+ height: auto;
4451
+ width: auto;
4389
4452
  line-height: 22px;
4453
+ margin-right: 12px;
4390
4454
  }
4391
4455
 
4392
4456
  .e-de-linespacing {
@@ -4457,14 +4521,22 @@ label[for*=_wholeWord_e-de-rtl] {
4457
4521
  .e-de-statusbar-separator {
4458
4522
  border-left: 1px solid #dadada;
4459
4523
  height: 16px;
4460
- margin-left: 15.5;
4524
+ margin-left: 7.5px;
4525
+ margin-right: 7.5px;
4526
+ margin-top: 10px;
4527
+ }
4528
+
4529
+ .e-bigger .e-de-statusbar-separator {
4530
+ border-left: 1px solid #dadada;
4531
+ height: 16px;
4532
+ margin-left: 7.5px;
4533
+ margin-right: 7.5px;
4461
4534
  margin-top: 10px;
4462
4535
  }
4463
4536
 
4464
4537
  .e-de-statusbar-spellcheck {
4465
4538
  border-radius: 2px;
4466
4539
  font-weight: 400;
4467
- margin-left: 7.5px;
4468
4540
  }
4469
4541
 
4470
4542
  .e-de-ctn {
@@ -4477,7 +4549,6 @@ label[for*=_wholeWord_e-de-rtl] {
4477
4549
 
4478
4550
  .e-bigger .e-de-statusbar-spellcheck {
4479
4551
  border-radius: 2px;
4480
- margin-left: 7.5px;
4481
4552
  }
4482
4553
 
4483
4554
  .e-de-ctnr-toolbar {
@@ -4727,6 +4798,7 @@ label[for*=_wholeWord_e-de-rtl] {
4727
4798
  }
4728
4799
 
4729
4800
  .e-de-review-pane {
4801
+ background: #000;
4730
4802
  border-left: 1px solid #e1e1e1;
4731
4803
  height: 100%;
4732
4804
  min-height: 200px;
@@ -4744,34 +4816,6 @@ label[for*=_wholeWord_e-de-rtl] {
4744
4816
  width: 272px;
4745
4817
  }
4746
4818
 
4747
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
4748
- box-shadow: none;
4749
- height: 32px;
4750
- }
4751
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
4752
- box-shadow: none;
4753
- }
4754
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
4755
- box-shadow: none;
4756
- }
4757
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
4758
- box-shadow: none;
4759
- }
4760
-
4761
- .e-de-ctnr-group-btn button {
4762
- box-shadow: none;
4763
- height: 32px;
4764
- }
4765
- .e-de-ctnr-group-btn button:focus {
4766
- box-shadow: none;
4767
- }
4768
- .e-de-ctnr-group-btn button:active {
4769
- box-shadow: none;
4770
- }
4771
- .e-de-ctnr-group-btn button:hover {
4772
- box-shadow: none;
4773
- }
4774
-
4775
4819
  .e-de-property-div-padding {
4776
4820
  border-bottom: 0.5px solid #e0e0e0;
4777
4821
  padding: 12.5px;
@@ -4895,7 +4939,7 @@ label[for*=_wholeWord_e-de-rtl] {
4895
4939
  }
4896
4940
 
4897
4941
  .e-de-list-header-presetmenu .e-de-list-line {
4898
- border-bottom: 1px solid #ccc;
4942
+ border-bottom: 1px solid #ccc !important;
4899
4943
  margin-left: 5px;
4900
4944
  width: 100%;
4901
4945
  }
@@ -4964,10 +5008,10 @@ label[for*=_wholeWord_e-de-rtl] {
4964
5008
  }
4965
5009
 
4966
5010
  .e-de-list-container {
4967
- background: #000;
4968
5011
  border: 1px solid #ccc;
4969
5012
  border-radius: 2px;
4970
5013
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
5014
+ background: #000;
4971
5015
  box-sizing: border-box;
4972
5016
  display: inline-block;
4973
5017
  line-height: normal;
@@ -5249,7 +5293,7 @@ label[for*=_wholeWord_e-de-rtl] {
5249
5293
  }
5250
5294
 
5251
5295
  .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
5252
- height: 38px !important;
5296
+ height: 36px !important;
5253
5297
  }
5254
5298
 
5255
5299
  .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
@@ -5276,7 +5320,10 @@ label[for*=_wholeWord_e-de-rtl] {
5276
5320
  margin-left: 12px;
5277
5321
  }
5278
5322
  .e-rtl .e-de-listview-icon {
5323
+ height: auto;
5324
+ width: auto;
5279
5325
  line-height: 22px;
5326
+ margin-left: 12px;
5280
5327
  }
5281
5328
 
5282
5329
  .e-bigger .de-split-button > div:first-child {
@@ -5387,7 +5434,6 @@ label[for*=_wholeWord_e-de-rtl] {
5387
5434
  height: 82px;
5388
5435
  }
5389
5436
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
5390
- height: 25px;
5391
5437
  margin: 0 7.5px;
5392
5438
  }
5393
5439
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
@@ -5489,6 +5535,19 @@ label[for*=_wholeWord_e-de-rtl] {
5489
5535
  .e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
5490
5536
  box-shadow: none;
5491
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
+ }
5492
5551
  .e-bigger .e-de-ctnr-group-btn button {
5493
5552
  box-shadow: none;
5494
5553
  height: 38px;
@@ -5602,18 +5661,18 @@ label[for*=_wholeWord_e-de-rtl] {
5602
5661
  margin-left: 10px;
5603
5662
  }
5604
5663
  .e-bigger .e-de-status-bar {
5605
- background-color: #000;
5664
+ background: #000;
5606
5665
  display: -ms-flexbox;
5607
5666
  display: flex;
5608
5667
  padding-top: 1.5px;
5609
5668
  width: 100%;
5610
5669
  }
5611
5670
  .e-bigger .e-de-statusbar-zoom {
5612
- background-color: #000;
5613
5671
  border: 0;
5614
5672
  color: #fff;
5615
5673
  float: right;
5616
5674
  height: 34px;
5675
+ background-color: #000;
5617
5676
  }
5618
5677
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
5619
5678
  line-height: 25px;
@@ -5629,7 +5688,10 @@ label[for*=_wholeWord_e-de-rtl] {
5629
5688
  margin-right: 16px;
5630
5689
  }
5631
5690
  .e-bigger .e-de-listview-icon {
5691
+ height: auto;
5692
+ width: auto;
5632
5693
  line-height: 22px;
5694
+ margin-right: 16px;
5633
5695
  }
5634
5696
  .e-bigger .e-rtl .e-listview .e-list-icon {
5635
5697
  height: 24px;
@@ -5637,7 +5699,10 @@ label[for*=_wholeWord_e-de-rtl] {
5637
5699
  margin-left: 16px;
5638
5700
  }
5639
5701
  .e-bigger .e-rtl .e-de-listview-icon {
5702
+ height: auto;
5703
+ width: auto;
5640
5704
  line-height: 22px;
5705
+ margin-left: 16px;
5641
5706
  }
5642
5707
 
5643
5708
  .e-de-ctn .e-de-bzr-button {