@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 {
@@ -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 {
@@ -42,6 +42,12 @@
42
42
  font-family: "e-icons";
43
43
  font-size: 13px;
44
44
  }
45
+ .e-documenteditor .e-de-multi-cmt-mark::before {
46
+ color: #adb5bd;
47
+ content: "\e8bc";
48
+ font-family: "e-icons";
49
+ font-size: 14px;
50
+ }
45
51
  .e-documenteditor .e-de-cmt-post::before {
46
52
  content: "\e71d";
47
53
  font-family: "e-icons";
@@ -123,40 +129,43 @@
123
129
  .e-de-table-left-alignment::before {
124
130
  color: #adb5bd;
125
131
  content: "\e7f6";
126
- font-size: 46px;
132
+ font-size: 48px;
127
133
  }
128
134
 
129
135
  .e-de-table-center-alignment::before {
130
136
  color: #adb5bd;
131
137
  content: "\e7f1";
132
- font-size: 46px;
138
+ font-size: 48px;
133
139
  }
134
140
 
135
141
  .e-de-table-right-alignment::before {
136
142
  color: #adb5bd;
137
143
  content: "\e703";
138
- font-size: 46px;
144
+ font-size: 48px;
139
145
  }
140
146
 
141
147
  .e-de-tablecell-top-alignment::before {
142
148
  color: #adb5bd;
143
149
  content: "\e775";
144
150
  font-family: "e-icons";
145
- font-size: 51px;
151
+ font-size: 48px;
152
+ margin: 2px;
146
153
  }
147
154
 
148
155
  .e-de-tablecell-center-alignment::before {
149
156
  color: #adb5bd;
150
157
  content: "\e7e5";
151
158
  font-family: "e-icons";
152
- font-size: 51px;
159
+ font-size: 48px;
160
+ margin: 2px;
153
161
  }
154
162
 
155
163
  .e-de-tablecell-bottom-alignment::before {
156
164
  color: #adb5bd;
157
165
  content: "\e7d9";
158
166
  font-family: "e-icons";
159
- font-size: 51px;
167
+ font-size: 48px;
168
+ margin: 2px;
160
169
  }
161
170
 
162
171
  .e-de-table-border-setting {
@@ -204,14 +213,14 @@
204
213
  .e-de-table-border-none-setting::before {
205
214
  color: #adb5bd;
206
215
  content: "\e7eb";
207
- font-size: 38px;
216
+ font-size: 36px;
208
217
  position: absolute;
209
218
  }
210
219
 
211
220
  .e-de-table-border-box-setting::before {
212
221
  color: #adb5bd;
213
222
  content: "\e834";
214
- font-size: 34px;
223
+ font-size: 36px;
215
224
  left: 2px;
216
225
  position: absolute;
217
226
  top: 2px;
@@ -221,7 +230,7 @@
221
230
  color: #adb5bd;
222
231
  content: "\e7e8";
223
232
  font-family: "e-icons";
224
- font-size: 34px;
233
+ font-size: 36px;
225
234
  left: 2px;
226
235
  position: absolute;
227
236
  top: 2px;
@@ -230,7 +239,7 @@
230
239
  .e-de-table-border-custom-setting::before {
231
240
  color: #adb5bd;
232
241
  content: "\e7d5";
233
- font-size: 34px;
242
+ font-size: 36px;
234
243
  left: 2px;
235
244
  position: absolute;
236
245
  top: 2px;
@@ -239,14 +248,14 @@
239
248
  .e-de-para-border-none-setting::before {
240
249
  color: #adb5bd;
241
250
  content: "\e890";
242
- font-size: 38px;
251
+ font-size: 36px;
243
252
  position: absolute;
244
253
  }
245
254
 
246
255
  .e-de-para-border-box-setting::before {
247
256
  color: #adb5bd;
248
257
  content: "\e891";
249
- font-size: 34px;
258
+ font-size: 36px;
250
259
  left: 2px;
251
260
  position: absolute;
252
261
  top: 2px;
@@ -255,7 +264,7 @@
255
264
  .e-de-para-border-shadow-setting::before {
256
265
  color: #adb5bd;
257
266
  content: "\e892";
258
- font-size: 34px;
267
+ font-size: 36px;
259
268
  left: 2px;
260
269
  position: absolute;
261
270
  top: 2px;
@@ -264,7 +273,7 @@
264
273
  .e-de-para-border-custom-setting::before {
265
274
  color: #adb5bd;
266
275
  content: "\e88f";
267
- font-size: 34px;
276
+ font-size: 36px;
268
277
  left: 2px;
269
278
  position: absolute;
270
279
  top: 2px;
@@ -1676,7 +1685,7 @@ label[for*=_wholeWord_e-de-rtl] {
1676
1685
  .e-de-style-font-group-button .e-btn,
1677
1686
  .e-de-style-paragraph-group-button .e-btn,
1678
1687
  .e-de-style-paragraph-indent-group-button .e-btn {
1679
- background-color: #212529;
1688
+ background: #212529;
1680
1689
  border-color: #444c54;
1681
1690
  }
1682
1691
  .e-de-style-font-group-button .e-btn:focus,
@@ -1848,7 +1857,7 @@ label[for*=_wholeWord_e-de-rtl] {
1848
1857
 
1849
1858
  .e-de-restrict-pane,
1850
1859
  .e-de-op {
1851
- background-color: #282d31;
1860
+ background: #282d31;
1852
1861
  }
1853
1862
 
1854
1863
  .e-de-restrict-pane .e-tab-header .e-toolbar-items,
@@ -2489,6 +2498,11 @@ label[for*=_wholeWord_e-de-rtl] {
2489
2498
  margin-left: 6px;
2490
2499
  }
2491
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
+
2492
2506
  .e-de-style-bold-button-size {
2493
2507
  margin-left: 6px;
2494
2508
  }
@@ -2518,7 +2532,7 @@ label[for*=_wholeWord_e-de-rtl] {
2518
2532
  margin-right: 20px;
2519
2533
  }
2520
2534
 
2521
- .e-de-style-left-div .e-de-style-dlg-name-input {
2535
+ .e-de-style-dlg-name-input {
2522
2536
  height: 31px;
2523
2537
  }
2524
2538
 
@@ -3401,6 +3415,7 @@ label[for*=_wholeWord_e-de-rtl] {
3401
3415
 
3402
3416
  .e-de-cp-option.e-btn.e-icon-btn span {
3403
3417
  margin-top: 0px;
3418
+ background: #282d31;
3404
3419
  }
3405
3420
 
3406
3421
  .e-de-cmt-view:hover .e-de-cp-option {
@@ -42,6 +42,12 @@
42
42
  font-family: "e-icons";
43
43
  font-size: 13px;
44
44
  }
45
+ .e-documenteditor .e-de-multi-cmt-mark::before {
46
+ color: #6c757d;
47
+ content: "\e8bc";
48
+ font-family: "e-icons";
49
+ font-size: 14px;
50
+ }
45
51
  .e-documenteditor .e-de-cmt-post::before {
46
52
  content: "\e71d";
47
53
  font-family: "e-icons";
@@ -123,40 +129,43 @@
123
129
  .e-de-table-left-alignment::before {
124
130
  color: #6c757d;
125
131
  content: "\e7f6";
126
- font-size: 46px;
132
+ font-size: 48px;
127
133
  }
128
134
 
129
135
  .e-de-table-center-alignment::before {
130
136
  color: #6c757d;
131
137
  content: "\e7f1";
132
- font-size: 46px;
138
+ font-size: 48px;
133
139
  }
134
140
 
135
141
  .e-de-table-right-alignment::before {
136
142
  color: #6c757d;
137
143
  content: "\e703";
138
- font-size: 46px;
144
+ font-size: 48px;
139
145
  }
140
146
 
141
147
  .e-de-tablecell-top-alignment::before {
142
148
  color: #6c757d;
143
149
  content: "\e775";
144
150
  font-family: "e-icons";
145
- font-size: 51px;
151
+ font-size: 48px;
152
+ margin: 2px;
146
153
  }
147
154
 
148
155
  .e-de-tablecell-center-alignment::before {
149
156
  color: #6c757d;
150
157
  content: "\e7e5";
151
158
  font-family: "e-icons";
152
- font-size: 51px;
159
+ font-size: 48px;
160
+ margin: 2px;
153
161
  }
154
162
 
155
163
  .e-de-tablecell-bottom-alignment::before {
156
164
  color: #6c757d;
157
165
  content: "\e7d9";
158
166
  font-family: "e-icons";
159
- font-size: 51px;
167
+ font-size: 48px;
168
+ margin: 2px;
160
169
  }
161
170
 
162
171
  .e-de-table-border-setting {
@@ -204,14 +213,14 @@
204
213
  .e-de-table-border-none-setting::before {
205
214
  color: #6c757d;
206
215
  content: "\e7eb";
207
- font-size: 38px;
216
+ font-size: 36px;
208
217
  position: absolute;
209
218
  }
210
219
 
211
220
  .e-de-table-border-box-setting::before {
212
221
  color: #6c757d;
213
222
  content: "\e834";
214
- font-size: 34px;
223
+ font-size: 36px;
215
224
  left: 2px;
216
225
  position: absolute;
217
226
  top: 2px;
@@ -221,7 +230,7 @@
221
230
  color: #6c757d;
222
231
  content: "\e7e8";
223
232
  font-family: "e-icons";
224
- font-size: 34px;
233
+ font-size: 36px;
225
234
  left: 2px;
226
235
  position: absolute;
227
236
  top: 2px;
@@ -230,7 +239,7 @@
230
239
  .e-de-table-border-custom-setting::before {
231
240
  color: #6c757d;
232
241
  content: "\e7d5";
233
- font-size: 34px;
242
+ font-size: 36px;
234
243
  left: 2px;
235
244
  position: absolute;
236
245
  top: 2px;
@@ -239,14 +248,14 @@
239
248
  .e-de-para-border-none-setting::before {
240
249
  color: #6c757d;
241
250
  content: "\e890";
242
- font-size: 38px;
251
+ font-size: 36px;
243
252
  position: absolute;
244
253
  }
245
254
 
246
255
  .e-de-para-border-box-setting::before {
247
256
  color: #6c757d;
248
257
  content: "\e891";
249
- font-size: 34px;
258
+ font-size: 36px;
250
259
  left: 2px;
251
260
  position: absolute;
252
261
  top: 2px;
@@ -255,7 +264,7 @@
255
264
  .e-de-para-border-shadow-setting::before {
256
265
  color: #6c757d;
257
266
  content: "\e892";
258
- font-size: 34px;
267
+ font-size: 36px;
259
268
  left: 2px;
260
269
  position: absolute;
261
270
  top: 2px;
@@ -264,7 +273,7 @@
264
273
  .e-de-para-border-custom-setting::before {
265
274
  color: #6c757d;
266
275
  content: "\e88f";
267
- font-size: 34px;
276
+ font-size: 36px;
268
277
  left: 2px;
269
278
  position: absolute;
270
279
  top: 2px;
@@ -1676,7 +1685,7 @@ label[for*=_wholeWord_e-de-rtl] {
1676
1685
  .e-de-style-font-group-button .e-btn,
1677
1686
  .e-de-style-paragraph-group-button .e-btn,
1678
1687
  .e-de-style-paragraph-indent-group-button .e-btn {
1679
- background-color: #fff;
1688
+ background: #fff;
1680
1689
  border-color: #dee2e6;
1681
1690
  }
1682
1691
  .e-de-style-font-group-button .e-btn:focus,
@@ -1848,7 +1857,7 @@ label[for*=_wholeWord_e-de-rtl] {
1848
1857
 
1849
1858
  .e-de-restrict-pane,
1850
1859
  .e-de-op {
1851
- background-color: #f8f9fa;
1860
+ background: #f8f9fa;
1852
1861
  }
1853
1862
 
1854
1863
  .e-de-restrict-pane .e-tab-header .e-toolbar-items,
@@ -2489,6 +2498,11 @@ label[for*=_wholeWord_e-de-rtl] {
2489
2498
  margin-left: 6px;
2490
2499
  }
2491
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
+
2492
2506
  .e-de-style-bold-button-size {
2493
2507
  margin-left: 6px;
2494
2508
  }
@@ -2518,7 +2532,7 @@ label[for*=_wholeWord_e-de-rtl] {
2518
2532
  margin-right: 20px;
2519
2533
  }
2520
2534
 
2521
- .e-de-style-left-div .e-de-style-dlg-name-input {
2535
+ .e-de-style-dlg-name-input {
2522
2536
  height: 31px;
2523
2537
  }
2524
2538
 
@@ -3401,6 +3415,7 @@ label[for*=_wholeWord_e-de-rtl] {
3401
3415
 
3402
3416
  .e-de-cp-option.e-btn.e-icon-btn span {
3403
3417
  margin-top: 0px;
3418
+ background: #f8f9fa;
3404
3419
  }
3405
3420
 
3406
3421
  .e-de-cmt-view:hover .e-de-cp-option {
@@ -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: "\e97e";
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";
@@ -1690,7 +1695,7 @@ label[for*=_wholeWord_e-de-rtl] {
1690
1695
 
1691
1696
  .e-de-restrict-pane,
1692
1697
  .e-de-op {
1693
- background-color: #201f1f;
1698
+ background: #201f1f;
1694
1699
  }
1695
1700
 
1696
1701
  .e-de-restrict-pane .e-tab-header .e-toolbar-items,
@@ -2346,6 +2351,11 @@ label[for*=_wholeWord_e-de-rtl] {
2346
2351
  height: 35px;
2347
2352
  }
2348
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
+
2349
2359
  .e-de-style-bold-button-size {
2350
2360
  margin-left: 8px;
2351
2361
  margin-right: 8px;
@@ -2383,7 +2393,7 @@ label[for*=_wholeWord_e-de-rtl] {
2383
2393
  margin-right: 20px;
2384
2394
  }
2385
2395
 
2386
- .e-de-style-left-div .e-de-style-dlg-name-input {
2396
+ .e-de-style-dlg-name-input {
2387
2397
  height: 32px;
2388
2398
  }
2389
2399
 
@@ -3306,6 +3316,7 @@ label[for*=_wholeWord_e-de-rtl] {
3306
3316
 
3307
3317
  .e-de-cp-option.e-btn.e-icon-btn span {
3308
3318
  margin-top: 0px;
3319
+ background: #201f1f;
3309
3320
  }
3310
3321
 
3311
3322
  .e-de-cmt-view:hover .e-de-cp-option {
@@ -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: "\e97e";
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";
@@ -1690,7 +1695,7 @@ label[for*=_wholeWord_e-de-rtl] {
1690
1695
 
1691
1696
  .e-de-restrict-pane,
1692
1697
  .e-de-op {
1693
- background-color: #fff;
1698
+ background: #fff;
1694
1699
  }
1695
1700
 
1696
1701
  .e-de-restrict-pane .e-tab-header .e-toolbar-items,
@@ -2346,6 +2351,11 @@ label[for*=_wholeWord_e-de-rtl] {
2346
2351
  height: 35px;
2347
2352
  }
2348
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
+
2349
2359
  .e-de-style-bold-button-size {
2350
2360
  margin-left: 8px;
2351
2361
  margin-right: 8px;
@@ -2383,7 +2393,7 @@ label[for*=_wholeWord_e-de-rtl] {
2383
2393
  margin-right: 20px;
2384
2394
  }
2385
2395
 
2386
- .e-de-style-left-div .e-de-style-dlg-name-input {
2396
+ .e-de-style-dlg-name-input {
2387
2397
  height: 32px;
2388
2398
  }
2389
2399
 
@@ -3209,6 +3219,10 @@ label[for*=_wholeWord_e-de-rtl] {
3209
3219
  font-weight: normal;
3210
3220
  }
3211
3221
 
3222
+ .e-de-track-toolbar .e-de-track-pane-drop-btn {
3223
+ padding-top: 4px !important;
3224
+ }
3225
+
3212
3226
  .e-toolbar-item.e-de-track-toolbar-overlay.e-template.e-overlay {
3213
3227
  opacity: 1;
3214
3228
  font-weight: normal;
@@ -3306,6 +3320,7 @@ label[for*=_wholeWord_e-de-rtl] {
3306
3320
 
3307
3321
  .e-de-cp-option.e-btn.e-icon-btn span {
3308
3322
  margin-top: 0px;
3323
+ background: #fff;
3309
3324
  }
3310
3325
 
3311
3326
  .e-de-cmt-view:hover .e-de-cp-option {