@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: "\e978";
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";
@@ -1639,7 +1644,7 @@ label[for*=_wholeWord_e-de-rtl] {
1639
1644
  .e-de-style-font-group-button .e-btn,
1640
1645
  .e-de-style-paragraph-group-button .e-btn,
1641
1646
  .e-de-style-paragraph-indent-group-button .e-btn {
1642
- background-color: #fff;
1647
+ background: #fff;
1643
1648
  border-color: #ced4da;
1644
1649
  }
1645
1650
  .e-de-style-font-group-button .e-btn:focus,
@@ -1724,6 +1729,14 @@ label[for*=_wholeWord_e-de-rtl] {
1724
1729
  margin-top: 0 !important;
1725
1730
  }
1726
1731
 
1732
+ .e-de-bookmark .e-bookmark-textbox-input {
1733
+ box-sizing: border-box !important;
1734
+ }
1735
+
1736
+ .e-de-cp-option {
1737
+ background: transparent;
1738
+ }
1739
+
1727
1740
  .e-styles-common {
1728
1741
  padding-top: 14px;
1729
1742
  }
@@ -1732,7 +1745,7 @@ label[for*=_wholeWord_e-de-rtl] {
1732
1745
  margin-right: 14px;
1733
1746
  }
1734
1747
 
1735
- .e-bigger .e-de-style-left-div .e-de-style-dlg-name-input {
1748
+ .e-bigger .e-de-style-dlg-name-input {
1736
1749
  height: 41px;
1737
1750
  }
1738
1751
  .e-bigger .e-de-style-bold-button-size {
@@ -1835,7 +1848,7 @@ label[for*=_wholeWord_e-de-rtl] {
1835
1848
 
1836
1849
  .e-de-restrict-pane,
1837
1850
  .e-de-op {
1838
- background-color: #f8f9fa;
1851
+ background: #f8f9fa;
1839
1852
  }
1840
1853
 
1841
1854
  .e-de-restrict-pane .e-tab-header .e-toolbar-items,
@@ -2482,6 +2495,11 @@ label[for*=_wholeWord_e-de-rtl] {
2482
2495
  height: 35px;
2483
2496
  }
2484
2497
 
2498
+ .e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
2499
+ height: 40px !important;
2500
+ width: auto !important;
2501
+ }
2502
+
2485
2503
  .e-de-style-bold-button-size {
2486
2504
  margin-left: 8px;
2487
2505
  margin-right: 8px;
@@ -2519,7 +2537,7 @@ label[for*=_wholeWord_e-de-rtl] {
2519
2537
  margin-right: 20px;
2520
2538
  }
2521
2539
 
2522
- .e-de-style-left-div .e-de-style-dlg-name-input {
2540
+ .e-de-style-dlg-name-input {
2523
2541
  height: 31px;
2524
2542
  }
2525
2543
 
@@ -3450,6 +3468,7 @@ label[for*=_wholeWord_e-de-rtl] {
3450
3468
 
3451
3469
  .e-de-cp-option.e-btn.e-icon-btn span {
3452
3470
  margin-top: 0px;
3471
+ background: #f8f9fa;
3453
3472
  }
3454
3473
 
3455
3474
  .e-de-cmt-view:hover .e-de-cp-option {
@@ -4360,6 +4379,21 @@ textarea.e-de-cmt-textarea {
4360
4379
  font-family: "e-icons";
4361
4380
  }
4362
4381
 
4382
+ .e-de-e-paragraph-style-mark::before {
4383
+ content: "\e720";
4384
+ font-family: "e-icons";
4385
+ }
4386
+
4387
+ .e-de-e-character-style-mark::before {
4388
+ content: "\e97b";
4389
+ font-family: "e-icons";
4390
+ }
4391
+
4392
+ .e-de-e-linked-style-mark::before {
4393
+ content: "\e97c";
4394
+ font-family: "e-icons";
4395
+ }
4396
+
4363
4397
  .e-de-ctnr-columns::before {
4364
4398
  content: "\e955";
4365
4399
  font-family: "e-icons";
@@ -4492,8 +4526,48 @@ textarea.e-de-cmt-textarea {
4492
4526
  height: 100%;
4493
4527
  }
4494
4528
 
4529
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
4530
+ box-shadow: none;
4531
+ height: 31px;
4532
+ }
4533
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
4534
+ box-shadow: none;
4535
+ }
4536
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
4537
+ box-shadow: none;
4538
+ }
4539
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
4540
+ box-shadow: none;
4541
+ }
4542
+
4543
+ .e-de-ctnr-group-btn-middle button {
4544
+ border-radius: 0px;
4545
+ }
4546
+
4547
+ .de-tbl-fill-clr .e-dropdown-btn.e-btn {
4548
+ box-shadow: none;
4549
+ }
4550
+
4551
+ .e-de-prop-pane .e-de-ctnr-group-btn button,
4552
+ .e-de-ctn .e-de-status-bar button {
4553
+ box-shadow: none;
4554
+ height: 31px;
4555
+ }
4556
+ .e-de-prop-pane .e-de-ctnr-group-btn button:focus,
4557
+ .e-de-ctn .e-de-status-bar button:focus {
4558
+ box-shadow: none;
4559
+ }
4560
+ .e-de-prop-pane .e-de-ctnr-group-btn button:active,
4561
+ .e-de-ctn .e-de-status-bar button:active {
4562
+ box-shadow: none;
4563
+ }
4564
+ .e-de-prop-pane .e-de-ctnr-group-btn button:hover,
4565
+ .e-de-ctn .e-de-status-bar button:hover {
4566
+ box-shadow: none;
4567
+ }
4568
+
4495
4569
  .e-de-statusbar-pageweb {
4496
- background-color: #f8f9fa;
4570
+ background: #f8f9fa;
4497
4571
  border: 0;
4498
4572
  box-shadow: none;
4499
4573
  float: right;
@@ -4523,12 +4597,25 @@ textarea.e-de-cmt-textarea {
4523
4597
  font-size: 18px;
4524
4598
  }
4525
4599
 
4600
+ .e-listview .e-list-icon {
4601
+ height: 24px;
4602
+ width: 16px;
4603
+ margin-right: 14px;
4604
+ }
4605
+
4606
+ .e-de-listview-icon {
4607
+ height: auto;
4608
+ width: auto;
4609
+ line-height: 22px;
4610
+ margin-right: 14px;
4611
+ }
4612
+
4526
4613
  .e-de-linespacing {
4527
4614
  margin-top: 6px;
4528
4615
  }
4529
4616
 
4530
4617
  .e-de-statusbar-zoom {
4531
- background-color: #f8f9fa;
4618
+ background: #f8f9fa;
4532
4619
  border: 0;
4533
4620
  color: #212529;
4534
4621
  float: right;
@@ -4592,14 +4679,22 @@ textarea.e-de-cmt-textarea {
4592
4679
  .e-de-statusbar-separator {
4593
4680
  border-left: 1px solid #495057;
4594
4681
  height: 16px;
4595
- margin-left: 15.5;
4682
+ margin-left: 7.5px;
4683
+ margin-right: 7.5px;
4684
+ margin-top: 10px;
4685
+ }
4686
+
4687
+ .e-bigger .e-de-statusbar-separator {
4688
+ border-left: 1px solid #495057;
4689
+ height: 16px;
4690
+ margin-left: 7.5px;
4691
+ margin-right: 7.5px;
4596
4692
  margin-top: 10px;
4597
4693
  }
4598
4694
 
4599
4695
  .e-de-statusbar-spellcheck {
4600
4696
  border-radius: 2px;
4601
4697
  font-weight: 400;
4602
- margin-left: 7.5px;
4603
4698
  }
4604
4699
 
4605
4700
  .e-de-ctn {
@@ -4612,7 +4707,6 @@ textarea.e-de-cmt-textarea {
4612
4707
 
4613
4708
  .e-bigger .e-de-statusbar-spellcheck {
4614
4709
  border-radius: 2px;
4615
- margin-left: 7.5px;
4616
4710
  }
4617
4711
 
4618
4712
  .e-de-ctnr-toolbar {
@@ -4637,7 +4731,7 @@ textarea.e-de-cmt-textarea {
4637
4731
 
4638
4732
  .e-de-tool-ctnr-properties-pane,
4639
4733
  .e-de-ctnr-properties-pane {
4640
- background-color: #f8f9fa;
4734
+ background: #f8f9fa;
4641
4735
  border-bottom: 1px solid #dee2e6;
4642
4736
  border-top: 1px solid #dee2e6;
4643
4737
  }
@@ -4747,7 +4841,7 @@ textarea.e-de-cmt-textarea {
4747
4841
  margin: 0 5.5px;
4748
4842
  }
4749
4843
  .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
4750
- margin-left: 14px;
4844
+ margin-left: 14px !important;
4751
4845
  margin-right: 7px;
4752
4846
  }
4753
4847
  .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-middle {
@@ -4763,37 +4857,43 @@ textarea.e-de-cmt-textarea {
4763
4857
  }
4764
4858
 
4765
4859
  .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn {
4860
+ -ms-flex-direction: column;
4861
+ flex-direction: column;
4862
+ height: calc(100% - 10px);
4766
4863
  padding: 0;
4767
- padding-bottom: 6px;
4864
+ padding-bottom: 5px;
4768
4865
  }
4769
4866
  .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:focus {
4770
4867
  padding: 0;
4771
- padding-bottom: 6px;
4868
+ padding-bottom: 5px;
4772
4869
  }
4773
4870
  .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:active {
4774
4871
  padding: 0;
4775
- padding-bottom: 6px;
4872
+ padding-bottom: 5px;
4776
4873
  }
4777
4874
  .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:hover {
4778
4875
  padding: 0;
4779
- padding-bottom: 6px;
4876
+ padding-bottom: 5px;
4780
4877
  }
4781
4878
 
4782
4879
  .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn {
4880
+ -ms-flex-direction: column;
4881
+ flex-direction: column;
4882
+ height: calc(100% - 10px);
4783
4883
  padding: 0 1px;
4784
- padding-bottom: 6px;
4884
+ padding-bottom: 5px;
4785
4885
  }
4786
4886
  .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:focus {
4787
4887
  padding: 0;
4788
- padding-bottom: 6px;
4888
+ padding-bottom: 5px;
4789
4889
  }
4790
4890
  .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:active {
4791
4891
  padding: 0;
4792
- padding-bottom: 6px;
4892
+ padding-bottom: 5px;
4793
4893
  }
4794
4894
  .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:hover {
4795
4895
  padding: 0;
4796
- padding-bottom: 6px;
4896
+ padding-bottom: 5px;
4797
4897
  }
4798
4898
 
4799
4899
  .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-btn-icon {
@@ -4865,7 +4965,7 @@ textarea.e-de-cmt-textarea {
4865
4965
  }
4866
4966
 
4867
4967
  .e-de-ctnr-group-btn .e-btn {
4868
- background-color: #fff;
4968
+ background: #fff;
4869
4969
  border-color: #dee2e6;
4870
4970
  }
4871
4971
  .e-de-ctnr-group-btn .e-btn:focus {
@@ -4962,7 +5062,7 @@ textarea.e-de-cmt-textarea {
4962
5062
  }
4963
5063
 
4964
5064
  .e-de-ctnr-properties-pane-btn .e-btn {
4965
- background-color: #f8f9fa;
5065
+ background: #f8f9fa;
4966
5066
  border-radius: 0;
4967
5067
  box-shadow: none;
4968
5068
  color: #007bff;
@@ -5004,6 +5104,7 @@ textarea.e-de-cmt-textarea {
5004
5104
  .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-btn-icon,
5005
5105
  .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
5006
5106
  padding: 0 !important;
5107
+ min-height: 16px;
5007
5108
  }
5008
5109
 
5009
5110
  .e-de-hdr-ftr-frst-div {
@@ -5026,6 +5127,7 @@ textarea.e-de-cmt-textarea {
5026
5127
  }
5027
5128
 
5028
5129
  .e-de-review-pane {
5130
+ background: #f8f9fa;
5029
5131
  border-left: 1px solid #dee2e6;
5030
5132
  height: 100%;
5031
5133
  min-height: 200px;
@@ -5049,34 +5151,6 @@ textarea.e-de-cmt-textarea {
5049
5151
  border-color: #ced4da;
5050
5152
  }
5051
5153
 
5052
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
5053
- box-shadow: none;
5054
- height: 31px;
5055
- }
5056
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
5057
- box-shadow: none;
5058
- }
5059
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
5060
- box-shadow: none;
5061
- }
5062
- .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
5063
- box-shadow: none;
5064
- }
5065
-
5066
- .e-de-ctnr-group-btn button {
5067
- box-shadow: none;
5068
- height: 31px;
5069
- }
5070
- .e-de-ctnr-group-btn button:focus {
5071
- box-shadow: none;
5072
- }
5073
- .e-de-ctnr-group-btn button:active {
5074
- box-shadow: none;
5075
- }
5076
- .e-de-ctnr-group-btn button:hover {
5077
- box-shadow: none;
5078
- }
5079
-
5080
5154
  .e-de-property-div-padding {
5081
5155
  border-bottom: 0.5px solid #dee2e6;
5082
5156
  padding: 12.5px;
@@ -5201,7 +5275,7 @@ textarea.e-de-cmt-textarea {
5201
5275
  }
5202
5276
 
5203
5277
  .e-de-list-header-presetmenu .e-de-list-line {
5204
- border-bottom: 1px solid #495057;
5278
+ border-bottom: 1px solid #495057 !important;
5205
5279
  margin-left: 5px;
5206
5280
  width: 100%;
5207
5281
  }
@@ -5270,10 +5344,10 @@ textarea.e-de-cmt-textarea {
5270
5344
  }
5271
5345
 
5272
5346
  .e-de-list-container {
5273
- background: #f8f9fa;
5274
5347
  border: 1px solid #ccc;
5275
5348
  border-radius: 2px;
5276
5349
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
5350
+ background: #f8f9fa;
5277
5351
  box-sizing: border-box;
5278
5352
  display: inline-block;
5279
5353
  line-height: normal;
@@ -5364,8 +5438,8 @@ textarea.e-de-cmt-textarea {
5364
5438
  border: 1px solid #dee2e6;
5365
5439
  color: #212529;
5366
5440
  height: 129px;
5367
- margin-left: 78px;
5368
5441
  width: 94px;
5442
+ margin-left: 78px;
5369
5443
  }
5370
5444
 
5371
5445
  .e-de-toc-template1.e-de-rtl {
@@ -5420,7 +5494,7 @@ textarea.e-de-cmt-textarea {
5420
5494
  }
5421
5495
 
5422
5496
  .e-de-status-bar {
5423
- background-color: #f8f9fa;
5497
+ background: #f8f9fa;
5424
5498
  display: -ms-flexbox;
5425
5499
  display: flex;
5426
5500
  padding-top: 2.5px;
@@ -5545,7 +5619,7 @@ textarea.e-de-cmt-textarea {
5545
5619
  }
5546
5620
 
5547
5621
  .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
5548
- height: 38px !important;
5622
+ height: 36px !important;
5549
5623
  }
5550
5624
 
5551
5625
  .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
@@ -5553,8 +5627,8 @@ textarea.e-de-cmt-textarea {
5553
5627
  }
5554
5628
 
5555
5629
  .e-de-grp-btn-ctnr .e-de-ctnr-group-btn > button {
5556
- height: 38px;
5557
5630
  width: 38px;
5631
+ height: 38px;
5558
5632
  }
5559
5633
 
5560
5634
  .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn > button {
@@ -5566,6 +5640,18 @@ textarea.e-de-cmt-textarea {
5566
5640
  width: 70px;
5567
5641
  }
5568
5642
 
5643
+ .e-rtl .e-listview .e-list-icon {
5644
+ height: 24px;
5645
+ width: 16px;
5646
+ margin-left: 14px;
5647
+ }
5648
+ .e-rtl .e-de-listview-icon {
5649
+ height: auto;
5650
+ width: auto;
5651
+ line-height: 22px;
5652
+ margin-left: 14px;
5653
+ }
5654
+
5569
5655
  .e-bigger .de-split-button > div:first-child {
5570
5656
  margin-right: 0;
5571
5657
  }
@@ -5683,11 +5769,10 @@ textarea.e-de-cmt-textarea {
5683
5769
  height: 86px;
5684
5770
  }
5685
5771
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
5686
- height: 25px;
5687
5772
  margin: 0 7.5px;
5688
5773
  }
5689
5774
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
5690
- margin-left: 16px;
5775
+ margin-left: 16px !important;
5691
5776
  margin-right: 8px;
5692
5777
  }
5693
5778
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-middle {
@@ -5704,22 +5789,22 @@ textarea.e-de-cmt-textarea {
5704
5789
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn,
5705
5790
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control {
5706
5791
  padding: 0;
5707
- padding-bottom: 6px;
5792
+ padding-bottom: 5px;
5708
5793
  }
5709
5794
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:focus,
5710
5795
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:focus {
5711
5796
  padding: 0;
5712
- padding-bottom: 6px;
5797
+ padding-bottom: 5px;
5713
5798
  }
5714
5799
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:active,
5715
5800
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:active {
5716
5801
  padding: 0;
5717
- padding-bottom: 6px;
5802
+ padding-bottom: 5px;
5718
5803
  }
5719
5804
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:hover,
5720
5805
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover {
5721
5806
  padding: 0;
5722
- padding-bottom: 6px;
5807
+ padding-bottom: 5px;
5723
5808
  }
5724
5809
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn,
5725
5810
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control {
@@ -5755,7 +5840,7 @@ textarea.e-de-cmt-textarea {
5755
5840
  width: 75px;
5756
5841
  }
5757
5842
  .e-bigger .e-de-ctnr-properties-pane-btn .e-btn {
5758
- background-color: #f8f9fa;
5843
+ background: #f8f9fa;
5759
5844
  border-radius: 0;
5760
5845
  box-shadow: none;
5761
5846
  min-height: 100%;
@@ -5783,7 +5868,7 @@ textarea.e-de-cmt-textarea {
5783
5868
  }
5784
5869
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
5785
5870
  display: table;
5786
- font-size: 12px;
5871
+ font-size: 12px !important;
5787
5872
  margin: 0 6px;
5788
5873
  padding: 0;
5789
5874
  white-space: normal;
@@ -5805,6 +5890,19 @@ textarea.e-de-cmt-textarea {
5805
5890
  .e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
5806
5891
  box-shadow: none;
5807
5892
  }
5893
+ .e-bigger .e-de-status-bar button {
5894
+ height: 38px;
5895
+ box-shadow: none;
5896
+ }
5897
+ .e-bigger .e-de-status-bar button:focus {
5898
+ box-shadow: none;
5899
+ }
5900
+ .e-bigger .e-de-status-bar button:active {
5901
+ box-shadow: none;
5902
+ }
5903
+ .e-bigger .e-de-status-bar button:hover {
5904
+ box-shadow: none;
5905
+ }
5808
5906
  .e-bigger .e-de-ctnr-group-btn button {
5809
5907
  box-shadow: none;
5810
5908
  height: 38px;
@@ -5925,18 +6023,18 @@ textarea.e-de-cmt-textarea {
5925
6023
  margin-left: 10px;
5926
6024
  }
5927
6025
  .e-bigger .e-de-status-bar {
5928
- background-color: #f8f9fa;
6026
+ background: #f8f9fa;
5929
6027
  display: -ms-flexbox;
5930
6028
  display: flex;
5931
6029
  padding-top: 3px;
5932
6030
  width: 100%;
5933
6031
  }
5934
6032
  .e-bigger .e-de-statusbar-zoom {
5935
- background-color: #f8f9fa;
5936
6033
  border: 0;
5937
6034
  color: #212529;
5938
6035
  float: right;
5939
6036
  height: 34px;
6037
+ background-color: #f8f9fa;
5940
6038
  }
5941
6039
  .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
5942
6040
  line-height: 25px;
@@ -5946,6 +6044,28 @@ textarea.e-de-cmt-textarea {
5946
6044
  height: 0;
5947
6045
  line-height: 0;
5948
6046
  }
6047
+ .e-bigger .e-listview .e-list-icon {
6048
+ height: 24px;
6049
+ width: 16px;
6050
+ margin-right: 16px;
6051
+ }
6052
+ .e-bigger .e-de-listview-icon {
6053
+ height: auto;
6054
+ width: auto;
6055
+ line-height: 22px;
6056
+ margin-right: 16px;
6057
+ }
6058
+ .e-bigger .e-rtl .e-listview .e-list-icon {
6059
+ height: 24px;
6060
+ width: 16px;
6061
+ margin-left: 16px;
6062
+ }
6063
+ .e-bigger .e-rtl .e-de-listview-icon {
6064
+ height: auto;
6065
+ width: auto;
6066
+ line-height: 22px;
6067
+ margin-left: 16px;
6068
+ }
5949
6069
 
5950
6070
  .e-de-ctn .e-de-bzr-button {
5951
6071
  font-size: 12px;