@syncfusion/ej2-vue-documenteditor 20.4.54 → 21.1.36

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 (71) hide show
  1. package/CHANGELOG.md +208 -0
  2. package/README.md +1 -1
  3. package/dist/ej2-vue-documenteditor.umd.min.js +2 -2
  4. package/dist/ej2-vue-documenteditor.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-vue-documenteditor.es2015.js +240 -282
  6. package/dist/es6/ej2-vue-documenteditor.es2015.js.map +1 -1
  7. package/dist/es6/ej2-vue-documenteditor.es5.js +261 -313
  8. package/dist/es6/ej2-vue-documenteditor.es5.js.map +1 -1
  9. package/dist/global/ej2-vue-documenteditor.min.js +2 -2
  10. package/package.json +11 -10
  11. package/src/document-editor/documenteditor.component.d.ts +3 -50
  12. package/src/document-editor/documenteditor.component.js +168 -197
  13. package/src/document-editor-container/documenteditorcontainer.component.d.ts +3 -26
  14. package/src/document-editor-container/documenteditorcontainer.component.js +96 -125
  15. package/styles/bootstrap-dark.css +167 -58
  16. package/styles/bootstrap.css +167 -54
  17. package/styles/bootstrap4.css +185 -65
  18. package/styles/bootstrap5-dark.css +187 -74
  19. package/styles/bootstrap5.css +187 -74
  20. package/styles/document-editor/bootstrap-dark.css +13 -2
  21. package/styles/document-editor/bootstrap.css +17 -2
  22. package/styles/document-editor/bootstrap4.css +23 -4
  23. package/styles/document-editor/bootstrap5-dark.css +32 -17
  24. package/styles/document-editor/bootstrap5.css +32 -17
  25. package/styles/document-editor/fabric-dark.css +13 -2
  26. package/styles/document-editor/fabric.css +17 -2
  27. package/styles/document-editor/fluent-dark.css +47 -27
  28. package/styles/document-editor/fluent.css +47 -27
  29. package/styles/document-editor/highcontrast-light.css +5 -0
  30. package/styles/document-editor/highcontrast.css +13 -2
  31. package/styles/document-editor/material-dark.css +13 -2
  32. package/styles/document-editor/material.css +13 -2
  33. package/styles/document-editor/material3-dark.css +3971 -0
  34. package/styles/document-editor/material3-dark.scss +2 -0
  35. package/styles/document-editor/material3.css +4027 -0
  36. package/styles/document-editor/material3.scss +2 -0
  37. package/styles/document-editor/tailwind-dark.css +29 -17
  38. package/styles/document-editor/tailwind.css +32 -17
  39. package/styles/document-editor-container/bootstrap-dark.css +154 -56
  40. package/styles/document-editor-container/bootstrap.css +150 -52
  41. package/styles/document-editor-container/bootstrap4.css +162 -61
  42. package/styles/document-editor-container/bootstrap5-dark.css +155 -57
  43. package/styles/document-editor-container/bootstrap5.css +155 -57
  44. package/styles/document-editor-container/fabric-dark.css +154 -56
  45. package/styles/document-editor-container/fabric.css +154 -56
  46. package/styles/document-editor-container/fluent-dark.css +159 -64
  47. package/styles/document-editor-container/fluent.css +159 -64
  48. package/styles/document-editor-container/highcontrast-light.css +154 -56
  49. package/styles/document-editor-container/highcontrast.css +154 -56
  50. package/styles/document-editor-container/material-dark.css +159 -61
  51. package/styles/document-editor-container/material.css +154 -55
  52. package/styles/document-editor-container/material3-dark.css +2178 -0
  53. package/styles/document-editor-container/material3-dark.scss +2 -0
  54. package/styles/document-editor-container/material3.css +2234 -0
  55. package/styles/document-editor-container/material3.scss +2 -0
  56. package/styles/document-editor-container/tailwind-dark.css +153 -55
  57. package/styles/document-editor-container/tailwind.css +153 -55
  58. package/styles/fabric-dark.css +167 -58
  59. package/styles/fabric.css +171 -58
  60. package/styles/fluent-dark.css +206 -91
  61. package/styles/fluent.css +206 -91
  62. package/styles/highcontrast-light.css +159 -56
  63. package/styles/highcontrast.css +167 -58
  64. package/styles/material-dark.css +172 -63
  65. package/styles/material.css +167 -57
  66. package/styles/material3-dark.css +6150 -0
  67. package/styles/material3-dark.scss +3 -0
  68. package/styles/material3.css +6261 -0
  69. package/styles/material3.scss +3 -0
  70. package/styles/tailwind-dark.css +182 -72
  71. package/styles/tailwind.css +185 -72
@@ -43,6 +43,11 @@
43
43
  font-family: "e-icons";
44
44
  font-size: 13px;
45
45
  }
46
+ .e-documenteditor .e-de-multi-cmt-mark::before {
47
+ content: "\e98a";
48
+ font-family: "e-icons";
49
+ font-size: 14px;
50
+ }
46
51
  .e-documenteditor .e-de-cmt-post::before {
47
52
  content: "\e816";
48
53
  font-family: "e-icons";
@@ -1686,7 +1691,7 @@ label[for*=_wholeWord_e-de-rtl] {
1686
1691
 
1687
1692
  .e-de-restrict-pane,
1688
1693
  .e-de-op {
1689
- background-color: #fff;
1694
+ background: #fff;
1690
1695
  }
1691
1696
 
1692
1697
  .e-de-restrict-pane .e-tab-header .e-toolbar-items,
@@ -2342,6 +2347,11 @@ label[for*=_wholeWord_e-de-rtl] {
2342
2347
  height: 35px;
2343
2348
  }
2344
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
+
2345
2355
  .e-de-style-bold-button-size {
2346
2356
  margin-left: 8px;
2347
2357
  margin-right: 8px;
@@ -2379,7 +2389,7 @@ label[for*=_wholeWord_e-de-rtl] {
2379
2389
  margin-right: 20px;
2380
2390
  }
2381
2391
 
2382
- .e-de-style-left-div .e-de-style-dlg-name-input {
2392
+ .e-de-style-dlg-name-input {
2383
2393
  height: 32px;
2384
2394
  }
2385
2395
 
@@ -3205,6 +3215,10 @@ label[for*=_wholeWord_e-de-rtl] {
3205
3215
  font-weight: normal;
3206
3216
  }
3207
3217
 
3218
+ .e-de-track-toolbar .e-de-track-pane-drop-btn {
3219
+ padding-top: 4px !important;
3220
+ }
3221
+
3208
3222
  .e-toolbar-item.e-de-track-toolbar-overlay.e-template.e-overlay {
3209
3223
  opacity: 1;
3210
3224
  font-weight: normal;
@@ -3303,6 +3317,7 @@ label[for*=_wholeWord_e-de-rtl] {
3303
3317
 
3304
3318
  .e-de-cp-option.e-btn.e-icon-btn span {
3305
3319
  margin-top: 0px;
3320
+ background: #fff;
3306
3321
  }
3307
3322
 
3308
3323
  .e-de-cmt-view:hover .e-de-cp-option {
@@ -4209,6 +4224,21 @@ label[for*=_wholeWord_e-de-rtl] {
4209
4224
  font-family: "e-icons";
4210
4225
  }
4211
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
+
4212
4242
  .e-de-ctnr-columns::before {
4213
4243
  content: "\e955";
4214
4244
  font-family: "e-icons";
@@ -4341,8 +4371,48 @@ label[for*=_wholeWord_e-de-rtl] {
4341
4371
  height: 100%;
4342
4372
  }
4343
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
+
4344
4414
  .e-de-statusbar-pageweb {
4345
- background-color: #f8f8f8;
4415
+ background: #f8f8f8;
4346
4416
  border: 0;
4347
4417
  box-shadow: none;
4348
4418
  float: right;
@@ -4372,12 +4442,25 @@ label[for*=_wholeWord_e-de-rtl] {
4372
4442
  margin-top: -6px;
4373
4443
  }
4374
4444
 
4445
+ .e-listview .e-list-icon {
4446
+ height: 24px;
4447
+ width: 16px;
4448
+ margin-right: 12px;
4449
+ }
4450
+
4451
+ .e-de-listview-icon {
4452
+ height: auto;
4453
+ width: auto;
4454
+ line-height: 22px;
4455
+ margin-right: 12px;
4456
+ }
4457
+
4375
4458
  .e-de-linespacing {
4376
4459
  margin-top: 6px;
4377
4460
  }
4378
4461
 
4379
4462
  .e-de-statusbar-zoom {
4380
- background-color: #f8f8f8;
4463
+ background: #f8f8f8;
4381
4464
  border: 0;
4382
4465
  color: #333;
4383
4466
  float: right;
@@ -4440,14 +4523,22 @@ label[for*=_wholeWord_e-de-rtl] {
4440
4523
  .e-de-statusbar-separator {
4441
4524
  border-left: 1px solid #ccc;
4442
4525
  height: 16px;
4443
- 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;
4444
4536
  margin-top: 10px;
4445
4537
  }
4446
4538
 
4447
4539
  .e-de-statusbar-spellcheck {
4448
4540
  border-radius: 2px;
4449
4541
  font-weight: 400;
4450
- margin-left: 7.5px;
4451
4542
  }
4452
4543
 
4453
4544
  .e-de-ctn {
@@ -4460,7 +4551,6 @@ label[for*=_wholeWord_e-de-rtl] {
4460
4551
 
4461
4552
  .e-bigger .e-de-statusbar-spellcheck {
4462
4553
  border-radius: 2px;
4463
- margin-left: 7.5px;
4464
4554
  }
4465
4555
 
4466
4556
  .e-de-ctnr-toolbar {
@@ -4485,7 +4575,7 @@ label[for*=_wholeWord_e-de-rtl] {
4485
4575
 
4486
4576
  .e-de-tool-ctnr-properties-pane,
4487
4577
  .e-de-ctnr-properties-pane {
4488
- background-color: #f8f8f8;
4578
+ background: #f8f8f8;
4489
4579
  border-bottom: 1px solid #ccc;
4490
4580
  border-top: 1px solid #ccc;
4491
4581
  }
@@ -4595,7 +4685,7 @@ label[for*=_wholeWord_e-de-rtl] {
4595
4685
  margin: 0 5.5px;
4596
4686
  }
4597
4687
  .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
4598
- margin-left: 12px;
4688
+ margin-left: 12px !important;
4599
4689
  margin-right: 6px;
4600
4690
  }
4601
4691
  .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-middle {
@@ -4611,20 +4701,23 @@ label[for*=_wholeWord_e-de-rtl] {
4611
4701
  }
4612
4702
 
4613
4703
  .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn {
4704
+ -ms-flex-direction: column;
4705
+ flex-direction: column;
4706
+ height: calc(100% - 10px);
4614
4707
  padding: 0 1px;
4615
- padding-bottom: 6px;
4708
+ padding-bottom: 5px;
4616
4709
  }
4617
4710
  .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:focus {
4618
4711
  padding: 0;
4619
- padding-bottom: 6px;
4712
+ padding-bottom: 5px;
4620
4713
  }
4621
4714
  .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:active {
4622
4715
  padding: 0;
4623
- padding-bottom: 6px;
4716
+ padding-bottom: 5px;
4624
4717
  }
4625
4718
  .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:hover {
4626
4719
  padding: 0;
4627
- padding-bottom: 6px;
4720
+ padding-bottom: 5px;
4628
4721
  }
4629
4722
 
4630
4723
  .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text {
@@ -4653,7 +4746,7 @@ label[for*=_wholeWord_e-de-rtl] {
4653
4746
  }
4654
4747
 
4655
4748
  .e-de-ctnr-properties-pane-btn .e-btn {
4656
- background-color: #f8f8f8;
4749
+ background: #f8f8f8;
4657
4750
  border-radius: 0;
4658
4751
  box-shadow: none;
4659
4752
  color: #317ab9;
@@ -4695,6 +4788,7 @@ label[for*=_wholeWord_e-de-rtl] {
4695
4788
  .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-btn-icon,
4696
4789
  .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
4697
4790
  padding: 0 !important;
4791
+ min-height: 16px;
4698
4792
  }
4699
4793
 
4700
4794
  .e-de-hdr-ftr-frst-div {
@@ -4717,6 +4811,7 @@ label[for*=_wholeWord_e-de-rtl] {
4717
4811
  }
4718
4812
 
4719
4813
  .e-de-review-pane {
4814
+ background: #f8f8f8;
4720
4815
  border-left: 1px solid #e6e6e6;
4721
4816
  height: 100%;
4722
4817
  min-height: 200px;
@@ -4734,34 +4829,6 @@ label[for*=_wholeWord_e-de-rtl] {
4734
4829
  width: 272px;
4735
4830
  }
4736
4831
 
4737
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
4738
- box-shadow: none;
4739
- height: 34px;
4740
- }
4741
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
4742
- box-shadow: none;
4743
- }
4744
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
4745
- box-shadow: none;
4746
- }
4747
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
4748
- box-shadow: none;
4749
- }
4750
-
4751
- .e-de-ctnr-group-btn button {
4752
- box-shadow: none;
4753
- height: 34px;
4754
- }
4755
- .e-de-ctnr-group-btn button:focus {
4756
- box-shadow: none;
4757
- }
4758
- .e-de-ctnr-group-btn button:active {
4759
- box-shadow: none;
4760
- }
4761
- .e-de-ctnr-group-btn button:hover {
4762
- box-shadow: none;
4763
- }
4764
-
4765
4832
  .e-de-property-div-padding {
4766
4833
  border-bottom: 0.5px solid #e0e0e0;
4767
4834
  padding: 12.5px;
@@ -4886,7 +4953,7 @@ label[for*=_wholeWord_e-de-rtl] {
4886
4953
  }
4887
4954
 
4888
4955
  .e-de-list-header-presetmenu .e-de-list-line {
4889
- border-bottom: 1px solid #ccc;
4956
+ border-bottom: 1px solid #ccc !important;
4890
4957
  margin-left: 5px;
4891
4958
  width: 100%;
4892
4959
  }
@@ -4955,10 +5022,10 @@ label[for*=_wholeWord_e-de-rtl] {
4955
5022
  }
4956
5023
 
4957
5024
  .e-de-list-container {
4958
- background: #f8f8f8;
4959
5025
  border: 1px solid #ccc;
4960
5026
  border-radius: 2px;
4961
5027
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
5028
+ background: #f8f8f8;
4962
5029
  box-sizing: border-box;
4963
5030
  display: inline-block;
4964
5031
  line-height: normal;
@@ -5050,8 +5117,8 @@ label[for*=_wholeWord_e-de-rtl] {
5050
5117
  border: 1px solid #ccc;
5051
5118
  color: #333;
5052
5119
  height: 129px;
5053
- margin-left: 78px;
5054
5120
  width: 94px;
5121
+ margin-left: 78px;
5055
5122
  }
5056
5123
 
5057
5124
  .e-de-toc-template1.e-de-rtl {
@@ -5106,7 +5173,7 @@ label[for*=_wholeWord_e-de-rtl] {
5106
5173
  }
5107
5174
 
5108
5175
  .e-de-status-bar {
5109
- background-color: #f8f8f8;
5176
+ background: #f8f8f8;
5110
5177
  display: -ms-flexbox;
5111
5178
  display: flex;
5112
5179
  padding-top: 2.5px;
@@ -5231,7 +5298,7 @@ label[for*=_wholeWord_e-de-rtl] {
5231
5298
  }
5232
5299
 
5233
5300
  .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
5234
- height: 38px !important;
5301
+ height: 36px !important;
5235
5302
  }
5236
5303
 
5237
5304
  .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
@@ -5239,8 +5306,8 @@ label[for*=_wholeWord_e-de-rtl] {
5239
5306
  }
5240
5307
 
5241
5308
  .e-de-grp-btn-ctnr .e-de-ctnr-group-btn > button {
5242
- height: 38px;
5243
5309
  width: 38px;
5310
+ height: 38px;
5244
5311
  }
5245
5312
 
5246
5313
  .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn > button {
@@ -5252,6 +5319,18 @@ label[for*=_wholeWord_e-de-rtl] {
5252
5319
  width: 70px;
5253
5320
  }
5254
5321
 
5322
+ .e-rtl .e-listview .e-list-icon {
5323
+ height: 24px;
5324
+ width: 16px;
5325
+ margin-left: 12px;
5326
+ }
5327
+ .e-rtl .e-de-listview-icon {
5328
+ height: auto;
5329
+ width: auto;
5330
+ line-height: 22px;
5331
+ margin-left: 12px;
5332
+ }
5333
+
5255
5334
  .e-bigger .de-split-button > div:first-child {
5256
5335
  margin-right: 16px;
5257
5336
  }
@@ -5369,11 +5448,10 @@ label[for*=_wholeWord_e-de-rtl] {
5369
5448
  height: 82px;
5370
5449
  }
5371
5450
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
5372
- height: 25px;
5373
5451
  margin: 0 7.5px;
5374
5452
  }
5375
5453
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
5376
- margin-left: 16px;
5454
+ margin-left: 16px !important;
5377
5455
  margin-right: 8px;
5378
5456
  }
5379
5457
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-middle {
@@ -5421,7 +5499,7 @@ label[for*=_wholeWord_e-de-rtl] {
5421
5499
  width: 75px;
5422
5500
  }
5423
5501
  .e-bigger .e-de-ctnr-properties-pane-btn .e-btn {
5424
- background-color: #f8f8f8;
5502
+ background: #f8f8f8;
5425
5503
  border-radius: 0;
5426
5504
  box-shadow: none;
5427
5505
  min-height: 100%;
@@ -5449,7 +5527,7 @@ label[for*=_wholeWord_e-de-rtl] {
5449
5527
  }
5450
5528
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
5451
5529
  display: table;
5452
- font-size: 12px;
5530
+ font-size: 12px !important;
5453
5531
  margin: 0 6px;
5454
5532
  padding: 0;
5455
5533
  white-space: normal;
@@ -5471,6 +5549,19 @@ label[for*=_wholeWord_e-de-rtl] {
5471
5549
  .e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
5472
5550
  box-shadow: none;
5473
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
+ }
5474
5565
  .e-bigger .e-de-ctnr-group-btn button {
5475
5566
  box-shadow: none;
5476
5567
  height: 38px;
@@ -5591,18 +5682,18 @@ label[for*=_wholeWord_e-de-rtl] {
5591
5682
  margin-left: 10px;
5592
5683
  }
5593
5684
  .e-bigger .e-de-status-bar {
5594
- background-color: #f8f8f8;
5685
+ background: #f8f8f8;
5595
5686
  display: -ms-flexbox;
5596
5687
  display: flex;
5597
5688
  padding-top: 2.5px;
5598
5689
  width: 100%;
5599
5690
  }
5600
5691
  .e-bigger .e-de-statusbar-zoom {
5601
- background-color: #f8f8f8;
5602
5692
  border: 0;
5603
5693
  color: #333;
5604
5694
  float: right;
5605
5695
  height: 34px;
5696
+ background-color: #f8f8f8;
5606
5697
  }
5607
5698
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
5608
5699
  line-height: 25px;
@@ -5612,6 +5703,28 @@ label[for*=_wholeWord_e-de-rtl] {
5612
5703
  height: 0;
5613
5704
  line-height: 0;
5614
5705
  }
5706
+ .e-bigger .e-listview .e-list-icon {
5707
+ height: 24px;
5708
+ width: 16px;
5709
+ margin-right: 16px;
5710
+ }
5711
+ .e-bigger .e-de-listview-icon {
5712
+ height: auto;
5713
+ width: auto;
5714
+ line-height: 22px;
5715
+ margin-right: 16px;
5716
+ }
5717
+ .e-bigger .e-rtl .e-listview .e-list-icon {
5718
+ height: 24px;
5719
+ width: 16px;
5720
+ margin-left: 16px;
5721
+ }
5722
+ .e-bigger .e-rtl .e-de-listview-icon {
5723
+ height: auto;
5724
+ width: auto;
5725
+ line-height: 22px;
5726
+ margin-left: 16px;
5727
+ }
5615
5728
 
5616
5729
  .e-de-ctn .e-de-bzr-button {
5617
5730
  font-size: 12px;