@syncfusion/ej2-angular-documenteditor 20.1.60 → 20.2.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 (203) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/document-editor/documenteditor-all.module.mjs +113 -0
  3. package/esm2020/src/document-editor/documenteditor.component.mjs +262 -0
  4. package/esm2020/src/document-editor/documenteditor.module.mjs +25 -0
  5. package/esm2020/src/document-editor-container/documenteditorcontainer-all.module.mjs +29 -0
  6. package/esm2020/src/document-editor-container/documenteditorcontainer.component.mjs +66 -0
  7. package/esm2020/src/document-editor-container/documenteditorcontainer.module.mjs +25 -0
  8. package/esm2020/src/index.mjs +8 -0
  9. package/esm2020/syncfusion-ej2-angular-documenteditor.mjs +5 -0
  10. package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs +506 -0
  11. package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs.map +1 -0
  12. package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs +506 -0
  13. package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs.map +1 -0
  14. package/package.json +29 -15
  15. package/schematics/utils/lib-details.ts +2 -2
  16. package/src/document-editor/documenteditor-all.module.d.ts +6 -0
  17. package/src/document-editor/documenteditor.component.d.ts +3 -0
  18. package/src/document-editor/documenteditor.module.d.ts +6 -0
  19. package/src/document-editor-container/documenteditorcontainer-all.module.d.ts +6 -0
  20. package/src/document-editor-container/documenteditorcontainer.component.d.ts +3 -0
  21. package/src/document-editor-container/documenteditorcontainer.module.d.ts +6 -0
  22. package/styles/bootstrap-dark.css +215 -105
  23. package/styles/bootstrap.css +214 -104
  24. package/styles/bootstrap4.css +216 -106
  25. package/styles/bootstrap5-dark.css +220 -110
  26. package/styles/bootstrap5.css +220 -110
  27. package/styles/document-editor/_all.scss +3 -0
  28. package/styles/document-editor/_bootstrap-dark-definition.scss +544 -0
  29. package/styles/document-editor/_bootstrap-definition.scss +543 -0
  30. package/styles/document-editor/_bootstrap4-definition.scss +556 -0
  31. package/styles/document-editor/_bootstrap5-dark-definition.scss +1 -0
  32. package/styles/document-editor/_bootstrap5-definition.scss +556 -0
  33. package/styles/document-editor/_fabric-dark-definition.scss +546 -0
  34. package/styles/document-editor/_fabric-definition.scss +545 -0
  35. package/styles/document-editor/_fluent-dark-definition.scss +1 -0
  36. package/styles/document-editor/_fluent-definition.scss +564 -0
  37. package/styles/document-editor/_fusionnew-definition.scss +556 -0
  38. package/styles/document-editor/_highcontrast-definition.scss +545 -0
  39. package/styles/document-editor/_highcontrast-light-definition.scss +2988 -0
  40. package/styles/document-editor/_layout.scss +217 -0
  41. package/styles/document-editor/_material-dark-definition.scss +561 -0
  42. package/styles/document-editor/_material-definition.scss +563 -0
  43. package/styles/document-editor/_material3-definition.scss +556 -0
  44. package/styles/document-editor/_tailwind-dark-definition.scss +1 -0
  45. package/styles/document-editor/_tailwind-definition.scss +555 -0
  46. package/styles/document-editor/_theme.scss +3395 -0
  47. package/styles/document-editor/bootstrap-dark.css +211 -104
  48. package/styles/document-editor/bootstrap-dark.scss +4 -1
  49. package/styles/document-editor/bootstrap.css +210 -103
  50. package/styles/document-editor/bootstrap.scss +4 -1
  51. package/styles/document-editor/bootstrap4.css +211 -104
  52. package/styles/document-editor/bootstrap4.scss +4 -1
  53. package/styles/document-editor/bootstrap5-dark.css +215 -108
  54. package/styles/document-editor/bootstrap5-dark.scss +4 -1
  55. package/styles/document-editor/bootstrap5.css +215 -108
  56. package/styles/document-editor/bootstrap5.scss +4 -1
  57. package/styles/document-editor/fabric-dark.css +211 -104
  58. package/styles/document-editor/fabric-dark.scss +4 -1
  59. package/styles/document-editor/fabric.css +211 -104
  60. package/styles/document-editor/fabric.scss +4 -1
  61. package/styles/document-editor/fluent-dark.css +218 -110
  62. package/styles/document-editor/fluent-dark.scss +4 -1
  63. package/styles/document-editor/fluent.css +218 -110
  64. package/styles/document-editor/fluent.scss +4 -1
  65. package/styles/document-editor/highcontrast-light.css +74 -46
  66. package/styles/document-editor/highcontrast-light.scss +4 -1
  67. package/styles/document-editor/highcontrast.css +211 -104
  68. package/styles/document-editor/highcontrast.scss +4 -1
  69. package/styles/document-editor/icons/_bootstrap-dark.scss +609 -0
  70. package/styles/document-editor/icons/_bootstrap.scss +609 -0
  71. package/styles/document-editor/icons/_bootstrap4.scss +592 -0
  72. package/styles/document-editor/icons/_bootstrap5-dark.scss +1 -0
  73. package/styles/document-editor/icons/_bootstrap5.scss +642 -0
  74. package/styles/document-editor/icons/_fabric-dark.scss +608 -0
  75. package/styles/document-editor/icons/_fabric.scss +608 -0
  76. package/styles/document-editor/icons/_fluent-dark.scss +1 -0
  77. package/styles/document-editor/icons/_fluent.scss +640 -0
  78. package/styles/document-editor/icons/_fusionnew.scss +642 -0
  79. package/styles/document-editor/icons/_highcontrast-light.scss +612 -0
  80. package/styles/document-editor/icons/_highcontrast.scss +607 -0
  81. package/styles/document-editor/icons/_material-dark.scss +600 -0
  82. package/styles/document-editor/icons/_material.scss +600 -0
  83. package/styles/document-editor/icons/_material3.scss +642 -0
  84. package/styles/document-editor/icons/_tailwind-dark.scss +642 -0
  85. package/styles/document-editor/icons/_tailwind.scss +642 -0
  86. package/styles/document-editor/implementation/dailogs/_paragraph-dailogs.scss +171 -0
  87. package/styles/document-editor/material-dark.css +204 -97
  88. package/styles/document-editor/material-dark.scss +4 -1
  89. package/styles/document-editor/material.css +202 -95
  90. package/styles/document-editor/material.scss +4 -1
  91. package/styles/document-editor/tailwind-dark.css +221 -127
  92. package/styles/document-editor/tailwind-dark.scss +4 -1
  93. package/styles/document-editor/tailwind.css +221 -127
  94. package/styles/document-editor/tailwind.scss +4 -1
  95. package/styles/document-editor-container/_all.scss +2 -0
  96. package/styles/document-editor-container/_bootstrap-dark-definition.scss +125 -0
  97. package/styles/document-editor-container/_bootstrap-definition.scss +125 -0
  98. package/styles/document-editor-container/_bootstrap4-definition.scss +141 -0
  99. package/styles/document-editor-container/_bootstrap5-dark-definition.scss +1 -0
  100. package/styles/document-editor-container/_bootstrap5-definition.scss +152 -0
  101. package/styles/document-editor-container/_definition.scss +10 -0
  102. package/styles/document-editor-container/_fabric-dark-definition.scss +130 -0
  103. package/styles/document-editor-container/_fabric-definition.scss +127 -0
  104. package/styles/document-editor-container/_fluent-dark-definition.scss +1 -0
  105. package/styles/document-editor-container/_fluent-definition.scss +153 -0
  106. package/styles/document-editor-container/_fusionnew-definition.scss +152 -0
  107. package/styles/document-editor-container/_highcontrast-definition.scss +128 -0
  108. package/styles/document-editor-container/_highcontrast-light-definition.scss +131 -0
  109. package/styles/document-editor-container/_layout.scss +88 -0
  110. package/styles/document-editor-container/_material-dark-definition.scss +129 -0
  111. package/styles/document-editor-container/_material-definition.scss +128 -0
  112. package/styles/document-editor-container/_material3-definition.scss +152 -0
  113. package/styles/document-editor-container/_tailwind-dark-definition.scss +1 -0
  114. package/styles/document-editor-container/_tailwind-definition.scss +146 -0
  115. package/styles/document-editor-container/_theme.scss +2004 -0
  116. package/styles/document-editor-container/bootstrap-dark.css +4 -1
  117. package/styles/document-editor-container/bootstrap-dark.scss +5 -1
  118. package/styles/document-editor-container/bootstrap.css +4 -1
  119. package/styles/document-editor-container/bootstrap.scss +5 -1
  120. package/styles/document-editor-container/bootstrap4.css +5 -2
  121. package/styles/document-editor-container/bootstrap4.scss +5 -1
  122. package/styles/document-editor-container/bootstrap5-dark.css +5 -2
  123. package/styles/document-editor-container/bootstrap5-dark.scss +5 -1
  124. package/styles/document-editor-container/bootstrap5.css +5 -2
  125. package/styles/document-editor-container/bootstrap5.scss +5 -1
  126. package/styles/document-editor-container/fabric-dark.css +4 -1
  127. package/styles/document-editor-container/fabric-dark.scss +5 -1
  128. package/styles/document-editor-container/fabric.css +4 -1
  129. package/styles/document-editor-container/fabric.scss +5 -1
  130. package/styles/document-editor-container/fluent-dark.css +5 -2
  131. package/styles/document-editor-container/fluent-dark.scss +5 -1
  132. package/styles/document-editor-container/fluent.css +5 -2
  133. package/styles/document-editor-container/fluent.scss +5 -1
  134. package/styles/document-editor-container/highcontrast-light.css +22 -19
  135. package/styles/document-editor-container/highcontrast-light.scss +5 -1
  136. package/styles/document-editor-container/highcontrast.css +4 -1
  137. package/styles/document-editor-container/highcontrast.scss +5 -1
  138. package/styles/document-editor-container/icons/_bootstrap-dark.scss +397 -0
  139. package/styles/document-editor-container/icons/_bootstrap.scss +397 -0
  140. package/styles/document-editor-container/icons/_bootstrap4.scss +397 -0
  141. package/styles/document-editor-container/icons/_bootstrap5-dark.scss +1 -0
  142. package/styles/document-editor-container/icons/_bootstrap5.scss +423 -0
  143. package/styles/document-editor-container/icons/_fabric-dark.scss +397 -0
  144. package/styles/document-editor-container/icons/_fabric.scss +397 -0
  145. package/styles/document-editor-container/icons/_fluent-dark.scss +1 -0
  146. package/styles/document-editor-container/icons/_fluent.scss +423 -0
  147. package/styles/document-editor-container/icons/_fusionnew.scss +423 -0
  148. package/styles/document-editor-container/icons/_highcontrast-light.scss +397 -0
  149. package/styles/document-editor-container/icons/_highcontrast.scss +397 -0
  150. package/styles/document-editor-container/icons/_material-dark.scss +400 -0
  151. package/styles/document-editor-container/icons/_material.scss +400 -0
  152. package/styles/document-editor-container/icons/_material3.scss +423 -0
  153. package/styles/document-editor-container/icons/_tailwind-dark.scss +423 -0
  154. package/styles/document-editor-container/icons/_tailwind.scss +423 -0
  155. package/styles/document-editor-container/material-dark.css +4 -1
  156. package/styles/document-editor-container/material-dark.scss +5 -1
  157. package/styles/document-editor-container/material.css +4 -1
  158. package/styles/document-editor-container/material.scss +5 -1
  159. package/styles/document-editor-container/tailwind-dark.css +5 -3
  160. package/styles/document-editor-container/tailwind-dark.scss +5 -1
  161. package/styles/document-editor-container/tailwind.css +5 -3
  162. package/styles/document-editor-container/tailwind.scss +5 -1
  163. package/styles/fabric-dark.css +215 -105
  164. package/styles/fabric.css +215 -105
  165. package/styles/fluent-dark.css +223 -112
  166. package/styles/fluent.css +223 -112
  167. package/styles/highcontrast-light.css +78 -47
  168. package/styles/highcontrast.css +215 -105
  169. package/styles/material-dark.css +208 -98
  170. package/styles/material.css +206 -96
  171. package/styles/tailwind-dark.css +226 -130
  172. package/styles/tailwind.css +226 -130
  173. package/syncfusion-ej2-angular-documenteditor.d.ts +5 -0
  174. package/@syncfusion/ej2-angular-documenteditor.es5.js +0 -574
  175. package/@syncfusion/ej2-angular-documenteditor.es5.js.map +0 -1
  176. package/@syncfusion/ej2-angular-documenteditor.js +0 -544
  177. package/@syncfusion/ej2-angular-documenteditor.js.map +0 -1
  178. package/CHANGELOG.md +0 -3071
  179. package/dist/ej2-angular-documenteditor.umd.js +0 -838
  180. package/dist/ej2-angular-documenteditor.umd.js.map +0 -1
  181. package/dist/ej2-angular-documenteditor.umd.min.js +0 -11
  182. package/dist/ej2-angular-documenteditor.umd.min.js.map +0 -1
  183. package/ej2-angular-documenteditor.d.ts +0 -6
  184. package/ej2-angular-documenteditor.metadata.json +0 -1
  185. package/postinstall/tagchange.js +0 -18
  186. package/schematics/collection.json +0 -15
  187. package/schematics/generators/documenteditorcontainer-default/index.d.ts +0 -3
  188. package/schematics/generators/documenteditorcontainer-default/index.js +0 -8
  189. package/schematics/generators/documenteditorcontainer-default/sample-details.d.ts +0 -5
  190. package/schematics/generators/documenteditorcontainer-default/sample-details.js +0 -7
  191. package/schematics/generators/documenteditorcontainer-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -3
  192. package/schematics/generators/documenteditorcontainer-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -8
  193. package/schematics/generators/documenteditorcontainer-default/schema.d.ts +0 -3
  194. package/schematics/generators/documenteditorcontainer-default/schema.js +0 -2
  195. package/schematics/generators/documenteditorcontainer-default/schema.json +0 -124
  196. package/schematics/ng-add/index.d.ts +0 -3
  197. package/schematics/ng-add/index.js +0 -9
  198. package/schematics/ng-add/schema.d.ts +0 -13
  199. package/schematics/ng-add/schema.js +0 -2
  200. package/schematics/ng-add/schema.json +0 -34
  201. package/schematics/tsconfig.json +0 -25
  202. package/schematics/utils/lib-details.d.ts +0 -4
  203. package/schematics/utils/lib-details.js +0 -6
@@ -162,25 +162,23 @@
162
162
 
163
163
  .e-de-table-border-setting {
164
164
  border: 1px solid #6c757d;
165
- height: 48px;
165
+ height: 40px;
166
166
  left: 5px;
167
167
  position: relative;
168
168
  top: 5px;
169
- width: 48px;
169
+ width: 40px;
170
170
  }
171
171
 
172
172
  .e-de-table-border-setting-genral {
173
173
  border: 1px solid #adb5bd;
174
- display: inline-block;
175
- height: 60px;
176
- width: 60px;
174
+ height: 52px;
175
+ width: 52px;
177
176
  }
178
177
 
179
178
  .e-de-table-border-preview-genral {
180
179
  border: 1px solid #adb5bd;
181
- display: inline-block;
182
- height: 25px;
183
- width: 25px;
180
+ height: 24px;
181
+ width: 24px;
184
182
  }
185
183
 
186
184
  .e-de-table-border-inside-setting:hover {
@@ -207,14 +205,14 @@
207
205
  .e-de-table-border-none-setting::before {
208
206
  color: #adb5bd;
209
207
  content: "\e7eb";
210
- font-size: 46px;
208
+ font-size: 38px;
211
209
  position: absolute;
212
210
  }
213
211
 
214
212
  .e-de-table-border-box-setting::before {
215
213
  color: #adb5bd;
216
214
  content: "\e834";
217
- font-size: 42px;
215
+ font-size: 34px;
218
216
  left: 2px;
219
217
  position: absolute;
220
218
  top: 2px;
@@ -224,7 +222,7 @@
224
222
  color: #adb5bd;
225
223
  content: "\e7e8";
226
224
  font-family: "e-icons";
227
- font-size: 42px;
225
+ font-size: 34px;
228
226
  left: 2px;
229
227
  position: absolute;
230
228
  top: 2px;
@@ -233,7 +231,41 @@
233
231
  .e-de-table-border-custom-setting::before {
234
232
  color: #adb5bd;
235
233
  content: "\e7d5";
236
- font-size: 42px;
234
+ font-size: 34px;
235
+ left: 2px;
236
+ position: absolute;
237
+ top: 2px;
238
+ }
239
+
240
+ .e-de-para-border-none-setting::before {
241
+ color: #adb5bd;
242
+ content: "\e890";
243
+ font-size: 38px;
244
+ position: absolute;
245
+ }
246
+
247
+ .e-de-para-border-box-setting::before {
248
+ color: #adb5bd;
249
+ content: "\e891";
250
+ font-size: 34px;
251
+ left: 2px;
252
+ position: absolute;
253
+ top: 2px;
254
+ }
255
+
256
+ .e-de-para-border-shadow-setting::before {
257
+ color: #adb5bd;
258
+ content: "\e892";
259
+ font-size: 34px;
260
+ left: 2px;
261
+ position: absolute;
262
+ top: 2px;
263
+ }
264
+
265
+ .e-de-para-border-custom-setting::before {
266
+ color: #adb5bd;
267
+ content: "\e88f";
268
+ font-size: 34px;
237
269
  left: 2px;
238
270
  position: absolute;
239
271
  top: 2px;
@@ -244,72 +276,72 @@
244
276
  content: "\e7e0";
245
277
  font-family: "e-icons";
246
278
  font-size: 16px;
247
- left: 4px;
279
+ left: 5px;
248
280
  position: absolute;
249
- top: 0;
281
+ top: 2px;
250
282
  }
251
283
 
252
284
  .e-de-table-border-topcenter-alignment::before {
253
285
  color: #adb5bd;
254
286
  content: "\e83b";
255
287
  font-size: 16px;
256
- left: 4px;
288
+ left: 5px;
257
289
  position: absolute;
258
- top: 0;
290
+ top: 2px;
259
291
  }
260
292
 
261
293
  .e-de-table-border-topbottom-alignment::before {
262
294
  color: #adb5bd;
263
295
  content: "\e766";
264
296
  font-size: 16px;
265
- left: 4px;
297
+ left: 5px;
266
298
  position: absolute;
267
- top: 0;
299
+ top: 2px;
268
300
  }
269
301
 
270
302
  .e-de-table-border-diagionalup-alignment::before {
271
303
  color: #adb5bd;
272
304
  content: "\e79d";
273
305
  font-size: 16px;
274
- left: 4px;
306
+ left: 5px;
275
307
  position: absolute;
276
- top: 0;
308
+ top: 2px;
277
309
  }
278
310
 
279
311
  .e-de-table-border-diagionaldown-alignment::before {
280
312
  color: #adb5bd;
281
313
  content: "\e784";
282
314
  font-size: 16px;
283
- left: 4px;
315
+ left: 5px;
284
316
  position: absolute;
285
- top: 0;
317
+ top: 2px;
286
318
  }
287
319
 
288
320
  .e-de-table-border-bottomleft-alignment::before {
289
321
  color: #adb5bd;
290
322
  content: "\e806";
291
323
  font-size: 16px;
292
- left: 4px;
324
+ left: 5px;
293
325
  position: absolute;
294
- top: 0;
326
+ top: 2px;
295
327
  }
296
328
 
297
329
  .e-de-table-border-bottomcenter-alignment::before {
298
330
  color: #adb5bd;
299
331
  content: "\e792";
300
332
  font-size: 16px;
301
- left: 4px;
333
+ left: 5px;
302
334
  position: absolute;
303
- top: 0;
335
+ top: 2px;
304
336
  }
305
337
 
306
338
  .e-de-table-border-bottomright-alignment::before {
307
339
  color: #adb5bd;
308
340
  content: "\e7ab";
309
341
  font-size: 16px;
310
- left: 4px;
342
+ left: 5px;
311
343
  position: absolute;
312
- top: 0;
344
+ top: 2px;
313
345
  }
314
346
 
315
347
  .e-menu-item .e-de-cmt-add::before {
@@ -745,7 +777,7 @@
745
777
  .e-documenteditor .e-de-op-close-button {
746
778
  left: 267px;
747
779
  position: absolute;
748
- top: 10px;
780
+ top: 8px;
749
781
  }
750
782
  .e-documenteditor .e-de-op-close-button.e-de-rtl {
751
783
  left: 14px;
@@ -983,8 +1015,7 @@
983
1015
  display: block;
984
1016
  font-size: 14px;
985
1017
  font-weight: 500;
986
- margin-bottom: 8px !important;
987
- margin-top: 8px;
1018
+ margin-bottom: 8px;
988
1019
  }
989
1020
 
990
1021
  .e-content-placeholder.e-documenteditor.e-placeholder-documenteditor {
@@ -1000,18 +1031,18 @@
1000
1031
  }
1001
1032
 
1002
1033
  .e-de-toc-modify-button {
1003
- margin-left: 162px;
1034
+ margin-left: 156px;
1004
1035
  margin-top: 10px;
1005
1036
  }
1006
1037
 
1007
1038
  .e-de-toc-modify-button.e-de-rtl {
1008
1039
  margin-left: 0;
1009
- margin-right: 180px;
1040
+ margin-right: 156px;
1010
1041
  }
1011
1042
 
1012
1043
  .e-de-toc-dlg-container {
1013
1044
  height: 454px;
1014
- width: 500px;
1045
+ width: 550px;
1015
1046
  }
1016
1047
 
1017
1048
  .e-de-toc-dlg-sub-container {
@@ -1022,15 +1053,12 @@
1022
1053
  border: 1px solid #6c757d;
1023
1054
  border-radius: 3px;
1024
1055
  font-size: 12px;
1025
- height: 174px;
1026
- margin-left: 38px;
1056
+ height: 186px;
1027
1057
  overflow-y: scroll;
1028
- width: 209px;
1029
1058
  }
1030
1059
 
1031
1060
  .e-de-toc-list-view.e-de-rtl {
1032
1061
  margin-left: 0;
1033
- margin-right: 38px;
1034
1062
  }
1035
1063
 
1036
1064
  .e-de-toc-dlg-sub-heading {
@@ -1220,8 +1248,7 @@
1220
1248
  margin-right: 20px;
1221
1249
  }
1222
1250
 
1223
- .e-de-restrict-pane,
1224
- .e-de-op {
1251
+ .e-de-restrict-pane {
1225
1252
  border-right: 1px solid #6c757d;
1226
1253
  padding-left: 12px;
1227
1254
  padding-top: 12px;
@@ -1230,6 +1257,14 @@
1230
1257
  width: 300px;
1231
1258
  }
1232
1259
 
1260
+ .e-de-op {
1261
+ border-right: 1px solid #6c757d;
1262
+ padding-left: 12px;
1263
+ padding-right: 12px;
1264
+ position: relative;
1265
+ width: 300px;
1266
+ }
1267
+
1233
1268
  .e-de-op.e-de-rtl {
1234
1269
  padding-left: 0;
1235
1270
  padding-right: 12px;
@@ -1241,15 +1276,17 @@
1241
1276
  font-size: 15px;
1242
1277
  font-weight: 500;
1243
1278
  margin-bottom: 12px;
1279
+ padding-top: 12px;
1244
1280
  }
1245
1281
 
1246
1282
  .e-de-op-header.e-de-rtl {
1247
1283
  direction: rtl;
1284
+ text-align: right;
1248
1285
  }
1249
1286
 
1250
1287
  .e-de-op-tab {
1251
1288
  border: 0;
1252
- height: 40px;
1289
+ height: auto;
1253
1290
  }
1254
1291
 
1255
1292
  .e-de-op-icon {
@@ -1284,7 +1321,6 @@
1284
1321
  }
1285
1322
 
1286
1323
  .e-de-op-replacetabcontentdiv {
1287
- height: 82px;
1288
1324
  margin-top: 12px;
1289
1325
  }
1290
1326
 
@@ -1312,24 +1348,25 @@ label[for*=_wholeWord_e-de-rtl] {
1312
1348
  .e-de-table-border-heading {
1313
1349
  font-size: 16px;
1314
1350
  font-weight: 500;
1315
- padding-bottom: 12px;
1351
+ padding-bottom: 8px;
1316
1352
  }
1317
1353
 
1318
1354
  .e-de-table-setting-heading {
1319
1355
  font-size: 12px;
1320
1356
  font-weight: 500;
1321
- padding-bottom: 8px;
1357
+ padding-bottom: 4px;
1322
1358
  }
1323
1359
 
1324
1360
  .e-de-layout-setting-heading {
1325
1361
  font-size: 12px;
1326
1362
  font-weight: 500;
1327
- padding-bottom: 8px;
1363
+ padding-bottom: 4px;
1328
1364
  }
1329
1365
 
1330
1366
  .e-de-table-setting-labels-heading {
1331
1367
  font-size: 12px;
1332
1368
  font-weight: 500;
1369
+ margin-left: 10px;
1333
1370
  }
1334
1371
 
1335
1372
  .e-de-table-element-subheading {
@@ -1339,13 +1376,15 @@ label[for*=_wholeWord_e-de-rtl] {
1339
1376
 
1340
1377
  .e-de-border-dlg-preview-div {
1341
1378
  border: 1px solid rgba(0, 0, 0, 0.54);
1379
+ width: 80px;
1380
+ height: 80px;
1342
1381
  }
1343
1382
 
1344
1383
  .e-de-border-dlg-preview-inside-divs {
1345
1384
  opacity: 0.54;
1346
1385
  }
1347
1386
 
1348
- .e-de-table-dia-align-div {
1387
+ .e-de-tablecell-dia-align-div {
1349
1388
  border: 1px solid #6c757d;
1350
1389
  display: inline-block;
1351
1390
  height: 60px;
@@ -1353,7 +1392,7 @@ label[for*=_wholeWord_e-de-rtl] {
1353
1392
  width: 60px;
1354
1393
  }
1355
1394
 
1356
- .e-de-table-dia-align-div.e-de-rtl {
1395
+ .e-de-tablecell-dia-align-div.e-de-rtl {
1357
1396
  margin-left: 11px;
1358
1397
  margin-right: 0;
1359
1398
  }
@@ -1381,10 +1420,7 @@ label[for*=_wholeWord_e-de-rtl] {
1381
1420
  border: 1px solid #0d6efd;
1382
1421
  }
1383
1422
 
1384
- .e-de-table-dialog-options-label {
1385
- font-size: 14px;
1386
- font-weight: 500;
1387
- padding-bottom: 8px;
1423
+ .e-de-table-dialog-size-label {
1388
1424
  padding-top: 12px !important;
1389
1425
  }
1390
1426
 
@@ -1438,6 +1474,7 @@ label[for*=_wholeWord_e-de-rtl] {
1438
1474
  }
1439
1475
 
1440
1476
  .e-de-tbl-dlg-border-btn.e-de-rtl {
1477
+ float: left;
1441
1478
  margin-right: 0;
1442
1479
  }
1443
1480
 
@@ -1559,7 +1596,7 @@ label[for*=_wholeWord_e-de-rtl] {
1559
1596
  .e-documenteditor .e-de-op-close-button {
1560
1597
  left: 250px;
1561
1598
  position: absolute;
1562
- top: 10px;
1599
+ top: 8px;
1563
1600
  }
1564
1601
 
1565
1602
  .e-bigger .e-documenteditor .e-de-op-close-button {
@@ -1669,9 +1706,6 @@ label[for*=_wholeWord_e-de-rtl] {
1669
1706
  .e-bigger .e-de-page-setup-dlg-sub-container-port {
1670
1707
  margin-top: 19px;
1671
1708
  }
1672
- .e-bigger .e-de-table-ppty-dlg-left-indent-container {
1673
- bottom: 12px;
1674
- }
1675
1709
  .e-bigger .e-de-table-container-div {
1676
1710
  margin-top: 13px;
1677
1711
  }
@@ -2056,7 +2090,6 @@ label[for*=_wholeWord_e-de-rtl] {
2056
2090
  }
2057
2091
 
2058
2092
  .e-de-search-tab-content {
2059
- margin-right: 12px;
2060
2093
  margin-top: 12px;
2061
2094
  width: 275px;
2062
2095
  }
@@ -2089,23 +2122,37 @@ label[for*=_wholeWord_e-de-rtl] {
2089
2122
  font-weight: 500;
2090
2123
  }
2091
2124
 
2125
+ .e-bigger .e-de-insert-spellchecker {
2126
+ width: 600px;
2127
+ }
2128
+
2092
2129
  .e-de-dlg-spellcheck-listview {
2093
2130
  border: 1px solid #444c54;
2094
2131
  border-radius: 2px !important;
2095
2132
  height: 122px !important;
2133
+ margin-right: 12px;
2096
2134
  margin-top: 8px;
2097
2135
  position: relative;
2098
2136
  float: left;
2099
- width: 343px !important;
2137
+ width: 100%;
2138
+ }
2139
+
2140
+ .e-de-dlg-spellcheck-listview.e-de-rtl {
2141
+ float: right;
2100
2142
  }
2101
2143
 
2102
2144
  .e-de-spellcheck-error-container {
2103
2145
  height: 140px;
2104
2146
  margin-bottom: 16px;
2147
+ display: -ms-flexbox;
2148
+ display: flex;
2105
2149
  }
2106
2150
 
2107
2151
  .e-de-spellcheck-suggestion-container {
2108
2152
  height: 140px;
2153
+ margin-bottom: 16px;
2154
+ display: -ms-flexbox;
2155
+ display: flex;
2109
2156
  }
2110
2157
 
2111
2158
  .e-dlg-spellcheck-listitem {
@@ -2115,13 +2162,17 @@ label[for*=_wholeWord_e-de-rtl] {
2115
2162
  .e-de-spellcheck-btncontainer {
2116
2163
  margin-top: 8px;
2117
2164
  position: relative;
2118
- width: 154px;
2165
+ width: 100%;
2119
2166
  float: right;
2120
2167
  }
2121
2168
 
2169
+ .e-de-spellcheck-btncontainer.e-de-rtl {
2170
+ float: left;
2171
+ }
2172
+
2122
2173
  .e-de-spellcheck-btn {
2123
2174
  margin-bottom: 8px;
2124
- width: 154px;
2175
+ width: 100%;
2125
2176
  }
2126
2177
 
2127
2178
  .e-de-dlg-spellchecker-subheader {
@@ -2148,7 +2199,6 @@ label[for*=_wholeWord_e-de-rtl] {
2148
2199
  }
2149
2200
 
2150
2201
  .e-de-table-border-shading-dlg {
2151
- height: 438px;
2152
2202
  width: 460px;
2153
2203
  }
2154
2204
 
@@ -2305,7 +2355,7 @@ label[for*=_wholeWord_e-de-rtl] {
2305
2355
  .e-de-table-border-bottomcenter-alignment,
2306
2356
  .e-de-table-border-bottomright-alignment {
2307
2357
  left: 48%;
2308
- position: absolute;
2358
+ position: relative;
2309
2359
  top: 59%;
2310
2360
  transform: translate(-50%, -50%);
2311
2361
  }
@@ -2440,8 +2490,7 @@ label[for*=_wholeWord_e-de-rtl] {
2440
2490
 
2441
2491
  .e-de-op-replace-messagediv {
2442
2492
  color: #fff;
2443
- position: absolute;
2444
- top: 144px;
2493
+ top: auto;
2445
2494
  }
2446
2495
 
2447
2496
  .e-de-op-input-group,
@@ -2493,16 +2542,6 @@ label[for*=_wholeWord_e-de-rtl] {
2493
2542
  margin-right: 12px;
2494
2543
  }
2495
2544
 
2496
- .e-de-table-ppty-dlg-left-indent-container {
2497
- bottom: 5px;
2498
- left: 46px;
2499
- position: relative;
2500
- }
2501
-
2502
- .e-de-table-ppty-dlg-left-indent-container.e-de-rtl {
2503
- right: 46px;
2504
- }
2505
-
2506
2545
  .e-de-table-ppty-dlg-row-height-label {
2507
2546
  float: right;
2508
2547
  margin-right: 184px;
@@ -2608,10 +2647,6 @@ label[for*=_wholeWord_e-de-rtl] {
2608
2647
  margin-right: 38px;
2609
2648
  }
2610
2649
 
2611
- .e-de-toc-dlg-build-table {
2612
- margin-top: 12px;
2613
- }
2614
-
2615
2650
  .e-de-toc-table-div .e-de-toc-dlg-toc-level {
2616
2651
  height: 24px;
2617
2652
  margin-left: 36px;
@@ -2621,8 +2656,9 @@ label[for*=_wholeWord_e-de-rtl] {
2621
2656
  .e-de-toc-styles-table-div {
2622
2657
  border: 1px solid #6c757d;
2623
2658
  border-radius: 3px;
2624
- margin-top: 15px;
2625
- width: 213px;
2659
+ margin-top: 10px;
2660
+ width: 100%;
2661
+ height: 183px;
2626
2662
  }
2627
2663
 
2628
2664
  .e-de-toc-dlg-sub-level-heading {
@@ -2632,7 +2668,7 @@ label[for*=_wholeWord_e-de-rtl] {
2632
2668
  .e-de-toc-table-div {
2633
2669
  height: 143px;
2634
2670
  overflow-y: scroll;
2635
- width: 211px;
2671
+ width: 100%;
2636
2672
  }
2637
2673
 
2638
2674
  .e-de-toc-dlg-style-input {
@@ -2778,15 +2814,6 @@ label[for*=_wholeWord_e-de-rtl] {
2778
2814
  padding: 0;
2779
2815
  }
2780
2816
 
2781
- .e-de-table-border-fill.e-de-rtl {
2782
- margin-left: 15px;
2783
- }
2784
-
2785
- .e-de-table-border-fill:not(.e-de-rtl) {
2786
- margin-right: 15px;
2787
- margin-top: 5px;
2788
- }
2789
-
2790
2817
  .e-de-table-ppty-dlg-tabs {
2791
2818
  height: 280px;
2792
2819
  position: relative;
@@ -2822,7 +2849,6 @@ label[for*=_wholeWord_e-de-rtl] {
2822
2849
  .e-de-tbl-rtl-btn-div {
2823
2850
  font-size: 12px;
2824
2851
  margin-right: 14px;
2825
- width: 140px;
2826
2852
  }
2827
2853
 
2828
2854
  .e-de-tbl-rtl-btn-div.e-de-rtl {
@@ -2832,7 +2858,6 @@ label[for*=_wholeWord_e-de-rtl] {
2832
2858
 
2833
2859
  .e-de-tbl-ltr-btn-div {
2834
2860
  font-size: 12px;
2835
- width: 140px;
2836
2861
  }
2837
2862
 
2838
2863
  .e-de-disabledbutton {
@@ -2864,11 +2889,11 @@ label[for*=_wholeWord_e-de-rtl] {
2864
2889
  width: 90px;
2865
2890
  }
2866
2891
  .e-bigger .e-de-toc-label {
2867
- margin-left: 0;
2892
+ margin-left: 0px;
2868
2893
  }
2869
2894
  .e-bigger .e-de-toc-label-rtl {
2870
2895
  margin-left: 0px;
2871
- margin-right: 0;
2896
+ margin-right: 0px;
2872
2897
  }
2873
2898
  .e-bigger .e-de-outline-rtl {
2874
2899
  width: 173px;
@@ -3159,34 +3184,26 @@ label[for*=_wholeWord_e-de-rtl] {
3159
3184
  }
3160
3185
 
3161
3186
  .e-btn.e-outline.e-de-track-accept-button {
3162
- border-color: #4d841e;
3163
- background-color: transparent;
3164
- color: #4d841e;
3187
+ min-width: 66px;
3165
3188
  padding: 5px 4px;
3166
3189
  text-transform: initial;
3167
3190
  }
3168
3191
 
3169
3192
  .e-btn.e-outline.e-de-track-accept-button:hover {
3170
- border-color: transparent;
3171
- background-color: #198754;
3172
- color: #fff;
3193
+ min-width: 66px;
3173
3194
  padding: 5px 4px;
3174
3195
  text-transform: initial;
3175
3196
  }
3176
3197
 
3177
3198
  .e-btn.e-outline.e-de-track-reject-button {
3178
- border-color: #dc3545;
3179
- background-color: transparent;
3180
- color: #dc3545;
3199
+ min-width: 64px;
3181
3200
  padding: 5px 6px;
3182
3201
  margin-left: 8px;
3183
3202
  text-transform: initial;
3184
3203
  }
3185
3204
 
3186
3205
  .e-btn.e-outline.e-de-track-reject-button:hover {
3187
- border-color: transparent;
3188
- background-color: #dc3545;
3189
- color: #fff;
3206
+ min-width: 64px;
3190
3207
  padding: 5px 6px;
3191
3208
  margin-left: 8px;
3192
3209
  text-transform: initial;
@@ -3264,13 +3281,13 @@ label[for*=_wholeWord_e-de-rtl] {
3264
3281
  .e-de-track-chng-table {
3265
3282
  border-collapse: collapse;
3266
3283
  border-spacing: 0px;
3267
- height: 20px;
3268
3284
  opacity: 70%;
3269
3285
  width: 100%;
3270
3286
  }
3271
3287
 
3272
3288
  .e-de-tc-tble-cell {
3273
3289
  border: 1px solid;
3290
+ height: 20px;
3274
3291
  }
3275
3292
 
3276
3293
  .e-de-tc-shrink-img {
@@ -3401,7 +3418,7 @@ label[for*=_wholeWord_e-de-rtl] {
3401
3418
 
3402
3419
  .e-de-lock-mark {
3403
3420
  cursor: default;
3404
- color: #000;
3421
+ color: #adb5bd;
3405
3422
  font-size: 13px;
3406
3423
  height: 13px;
3407
3424
  pointer-events: all;
@@ -3410,7 +3427,7 @@ label[for*=_wholeWord_e-de-rtl] {
3410
3427
 
3411
3428
  .e-de-cmt-mark {
3412
3429
  cursor: default;
3413
- color: #000;
3430
+ color: #adb5bd;
3414
3431
  font-size: 13px;
3415
3432
  height: 13px;
3416
3433
  pointer-events: all;
@@ -3553,10 +3570,100 @@ label[for*=_wholeWord_e-de-rtl] {
3553
3570
  margin-top: 3px;
3554
3571
  }
3555
3572
 
3573
+ .e-de-table-dialog-row-height {
3574
+ padding-top: 24px;
3575
+ }
3576
+
3577
+ .e-de-tablecell-dialog-alignment-icon {
3578
+ width: 54px;
3579
+ height: 54px;
3580
+ margin: 2px;
3581
+ }
3582
+
3583
+ .e-de-table-dia-indent-from-left {
3584
+ right: 45px;
3585
+ }
3586
+
3587
+ .e-de-table-dia-align-div {
3588
+ border: 1px solid #6c757d;
3589
+ display: inline-block;
3590
+ height: 52px;
3591
+ margin-right: 11px;
3592
+ width: 52px;
3593
+ }
3594
+
3595
+ .e-de-table-dialog-alignment-icon {
3596
+ margin: 2px;
3597
+ height: 46px;
3598
+ }
3599
+
3600
+ .e-de-table-border-setting-genral {
3601
+ margin-right: 11px;
3602
+ }
3603
+
3604
+ .e-de-table-border-clr-left-container {
3605
+ padding-right: 19px;
3606
+ }
3607
+
3608
+ .e-de-table-border-clr-heading {
3609
+ font-size: 12px;
3610
+ font-weight: 500;
3611
+ padding-bottom: 6px;
3612
+ }
3613
+
3614
+ .e-de-table-border-icon-container {
3615
+ margin-top: 4px;
3616
+ margin-right: 4px;
3617
+ }
3618
+
3619
+ .e-de-table-border-preview-container {
3620
+ padding-left: 72px;
3621
+ }
3622
+
3623
+ .e-de-table-dlg-alignment-heading {
3624
+ color: #ced4da;
3625
+ display: block;
3626
+ font-size: 14px;
3627
+ font-weight: 500;
3628
+ margin-bottom: 3px;
3629
+ }
3630
+
3556
3631
  .e-rtl .e-de-cmt-author-name {
3557
3632
  padding-left: 0%;
3558
3633
  padding-right: 12px;
3559
3634
  }
3635
+ .e-rtl .e-de-ok-button {
3636
+ margin-right: 0;
3637
+ margin-left: 8px;
3638
+ }
3639
+ .e-rtl .e-de-table-dia-align-div.e-de-rtl {
3640
+ margin-left: 11px;
3641
+ margin-right: 0;
3642
+ }
3643
+ .e-rtl .e-de-table-border-clr-left-container {
3644
+ padding-right: 0;
3645
+ padding-left: 19px;
3646
+ }
3647
+ .e-rtl .e-de-table-border-preview-container {
3648
+ padding-right: 72px;
3649
+ padding-left: 0;
3650
+ }
3651
+ .e-rtl .e-de-table-border-setting-genral {
3652
+ margin-right: 0;
3653
+ margin-left: 11px;
3654
+ }
3655
+ .e-rtl .e-de-table-border-icon-container {
3656
+ margin-right: 0;
3657
+ margin-left: 4px;
3658
+ }
3659
+ .e-rtl .e-de-table-border-preview {
3660
+ width: 23px;
3661
+ }
3662
+ .e-rtl .e-de-table-setting-labels-heading {
3663
+ margin-left: 0;
3664
+ margin-right: 10px;
3665
+ }
3666
+
3560
3667
  .e-bigger .e-de-cmt-author-name {
3561
3668
  padding-left: 16px;
3562
3669
  }
@@ -3890,6 +3997,10 @@ label[for*=_wholeWord_e-de-rtl] {
3890
3997
  content: "\e77e";
3891
3998
  }
3892
3999
 
4000
+ .e-de-ctnr-borders::before {
4001
+ content: "\e893";
4002
+ }
4003
+
3893
4004
  .e-de-ctnr-decreaseindent::before {
3894
4005
  content: "\e72a";
3895
4006
  }
@@ -4939,7 +5050,7 @@ label[for*=_wholeWord_e-de-rtl] {
4939
5050
  }
4940
5051
 
4941
5052
  .e-de-list-header-presetmenu .e-de-list-line {
4942
- border-bottom: 1px solid #ccc;
5053
+ border-bottom: 1px solid #adb5bd;
4943
5054
  margin-left: 5px;
4944
5055
  width: 100%;
4945
5056
  }
@@ -4956,7 +5067,6 @@ label[for*=_wholeWord_e-de-rtl] {
4956
5067
  }
4957
5068
 
4958
5069
  .e-de-list-header-presetmenu div span {
4959
- color: #aaa;
4960
5070
  display: inline-block;
4961
5071
  vertical-align: middle;
4962
5072
  }