@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
@@ -161,25 +161,23 @@
161
161
 
162
162
  .e-de-table-border-setting {
163
163
  border: 1px solid #6c757d;
164
- height: 48px;
164
+ height: 40px;
165
165
  left: 5px;
166
166
  position: relative;
167
167
  top: 5px;
168
- width: 48px;
168
+ width: 40px;
169
169
  }
170
170
 
171
171
  .e-de-table-border-setting-genral {
172
172
  border: 1px solid #adb5bd;
173
- display: inline-block;
174
- height: 60px;
175
- width: 60px;
173
+ height: 52px;
174
+ width: 52px;
176
175
  }
177
176
 
178
177
  .e-de-table-border-preview-genral {
179
178
  border: 1px solid #adb5bd;
180
- display: inline-block;
181
- height: 25px;
182
- width: 25px;
179
+ height: 24px;
180
+ width: 24px;
183
181
  }
184
182
 
185
183
  .e-de-table-border-inside-setting:hover {
@@ -206,14 +204,14 @@
206
204
  .e-de-table-border-none-setting::before {
207
205
  color: #adb5bd;
208
206
  content: "\e7eb";
209
- font-size: 46px;
207
+ font-size: 38px;
210
208
  position: absolute;
211
209
  }
212
210
 
213
211
  .e-de-table-border-box-setting::before {
214
212
  color: #adb5bd;
215
213
  content: "\e834";
216
- font-size: 42px;
214
+ font-size: 34px;
217
215
  left: 2px;
218
216
  position: absolute;
219
217
  top: 2px;
@@ -223,7 +221,7 @@
223
221
  color: #adb5bd;
224
222
  content: "\e7e8";
225
223
  font-family: "e-icons";
226
- font-size: 42px;
224
+ font-size: 34px;
227
225
  left: 2px;
228
226
  position: absolute;
229
227
  top: 2px;
@@ -232,7 +230,41 @@
232
230
  .e-de-table-border-custom-setting::before {
233
231
  color: #adb5bd;
234
232
  content: "\e7d5";
235
- font-size: 42px;
233
+ font-size: 34px;
234
+ left: 2px;
235
+ position: absolute;
236
+ top: 2px;
237
+ }
238
+
239
+ .e-de-para-border-none-setting::before {
240
+ color: #adb5bd;
241
+ content: "\e890";
242
+ font-size: 38px;
243
+ position: absolute;
244
+ }
245
+
246
+ .e-de-para-border-box-setting::before {
247
+ color: #adb5bd;
248
+ content: "\e891";
249
+ font-size: 34px;
250
+ left: 2px;
251
+ position: absolute;
252
+ top: 2px;
253
+ }
254
+
255
+ .e-de-para-border-shadow-setting::before {
256
+ color: #adb5bd;
257
+ content: "\e892";
258
+ font-size: 34px;
259
+ left: 2px;
260
+ position: absolute;
261
+ top: 2px;
262
+ }
263
+
264
+ .e-de-para-border-custom-setting::before {
265
+ color: #adb5bd;
266
+ content: "\e88f";
267
+ font-size: 34px;
236
268
  left: 2px;
237
269
  position: absolute;
238
270
  top: 2px;
@@ -243,72 +275,72 @@
243
275
  content: "\e7e0";
244
276
  font-family: "e-icons";
245
277
  font-size: 16px;
246
- left: 4px;
278
+ left: 5px;
247
279
  position: absolute;
248
- top: 0;
280
+ top: 2px;
249
281
  }
250
282
 
251
283
  .e-de-table-border-topcenter-alignment::before {
252
284
  color: #adb5bd;
253
285
  content: "\e83b";
254
286
  font-size: 16px;
255
- left: 4px;
287
+ left: 5px;
256
288
  position: absolute;
257
- top: 0;
289
+ top: 2px;
258
290
  }
259
291
 
260
292
  .e-de-table-border-topbottom-alignment::before {
261
293
  color: #adb5bd;
262
294
  content: "\e766";
263
295
  font-size: 16px;
264
- left: 4px;
296
+ left: 5px;
265
297
  position: absolute;
266
- top: 0;
298
+ top: 2px;
267
299
  }
268
300
 
269
301
  .e-de-table-border-diagionalup-alignment::before {
270
302
  color: #adb5bd;
271
303
  content: "\e79d";
272
304
  font-size: 16px;
273
- left: 4px;
305
+ left: 5px;
274
306
  position: absolute;
275
- top: 0;
307
+ top: 2px;
276
308
  }
277
309
 
278
310
  .e-de-table-border-diagionaldown-alignment::before {
279
311
  color: #adb5bd;
280
312
  content: "\e784";
281
313
  font-size: 16px;
282
- left: 4px;
314
+ left: 5px;
283
315
  position: absolute;
284
- top: 0;
316
+ top: 2px;
285
317
  }
286
318
 
287
319
  .e-de-table-border-bottomleft-alignment::before {
288
320
  color: #adb5bd;
289
321
  content: "\e806";
290
322
  font-size: 16px;
291
- left: 4px;
323
+ left: 5px;
292
324
  position: absolute;
293
- top: 0;
325
+ top: 2px;
294
326
  }
295
327
 
296
328
  .e-de-table-border-bottomcenter-alignment::before {
297
329
  color: #adb5bd;
298
330
  content: "\e792";
299
331
  font-size: 16px;
300
- left: 4px;
332
+ left: 5px;
301
333
  position: absolute;
302
- top: 0;
334
+ top: 2px;
303
335
  }
304
336
 
305
337
  .e-de-table-border-bottomright-alignment::before {
306
338
  color: #adb5bd;
307
339
  content: "\e7ab";
308
340
  font-size: 16px;
309
- left: 4px;
341
+ left: 5px;
310
342
  position: absolute;
311
- top: 0;
343
+ top: 2px;
312
344
  }
313
345
 
314
346
  .e-menu-item .e-de-cmt-add::before {
@@ -744,7 +776,7 @@
744
776
  .e-documenteditor .e-de-op-close-button {
745
777
  left: 267px;
746
778
  position: absolute;
747
- top: 10px;
779
+ top: 8px;
748
780
  }
749
781
  .e-documenteditor .e-de-op-close-button.e-de-rtl {
750
782
  left: 14px;
@@ -982,8 +1014,7 @@
982
1014
  display: block;
983
1015
  font-size: 14px;
984
1016
  font-weight: 500;
985
- margin-bottom: 8px !important;
986
- margin-top: 8px;
1017
+ margin-bottom: 8px;
987
1018
  }
988
1019
 
989
1020
  .e-content-placeholder.e-documenteditor.e-placeholder-documenteditor {
@@ -999,18 +1030,18 @@
999
1030
  }
1000
1031
 
1001
1032
  .e-de-toc-modify-button {
1002
- margin-left: 162px;
1033
+ margin-left: 156px;
1003
1034
  margin-top: 10px;
1004
1035
  }
1005
1036
 
1006
1037
  .e-de-toc-modify-button.e-de-rtl {
1007
1038
  margin-left: 0;
1008
- margin-right: 180px;
1039
+ margin-right: 156px;
1009
1040
  }
1010
1041
 
1011
1042
  .e-de-toc-dlg-container {
1012
1043
  height: 454px;
1013
- width: 500px;
1044
+ width: 550px;
1014
1045
  }
1015
1046
 
1016
1047
  .e-de-toc-dlg-sub-container {
@@ -1021,15 +1052,12 @@
1021
1052
  border: 1px solid #6c757d;
1022
1053
  border-radius: 3px;
1023
1054
  font-size: 12px;
1024
- height: 174px;
1025
- margin-left: 38px;
1055
+ height: 186px;
1026
1056
  overflow-y: scroll;
1027
- width: 209px;
1028
1057
  }
1029
1058
 
1030
1059
  .e-de-toc-list-view.e-de-rtl {
1031
1060
  margin-left: 0;
1032
- margin-right: 38px;
1033
1061
  }
1034
1062
 
1035
1063
  .e-de-toc-dlg-sub-heading {
@@ -1219,8 +1247,7 @@
1219
1247
  margin-right: 20px;
1220
1248
  }
1221
1249
 
1222
- .e-de-restrict-pane,
1223
- .e-de-op {
1250
+ .e-de-restrict-pane {
1224
1251
  border-right: 1px solid #6c757d;
1225
1252
  padding-left: 12px;
1226
1253
  padding-top: 12px;
@@ -1229,6 +1256,14 @@
1229
1256
  width: 300px;
1230
1257
  }
1231
1258
 
1259
+ .e-de-op {
1260
+ border-right: 1px solid #6c757d;
1261
+ padding-left: 12px;
1262
+ padding-right: 12px;
1263
+ position: relative;
1264
+ width: 300px;
1265
+ }
1266
+
1232
1267
  .e-de-op.e-de-rtl {
1233
1268
  padding-left: 0;
1234
1269
  padding-right: 12px;
@@ -1240,15 +1275,17 @@
1240
1275
  font-size: 15px;
1241
1276
  font-weight: 500;
1242
1277
  margin-bottom: 12px;
1278
+ padding-top: 12px;
1243
1279
  }
1244
1280
 
1245
1281
  .e-de-op-header.e-de-rtl {
1246
1282
  direction: rtl;
1283
+ text-align: right;
1247
1284
  }
1248
1285
 
1249
1286
  .e-de-op-tab {
1250
1287
  border: 0;
1251
- height: 40px;
1288
+ height: auto;
1252
1289
  }
1253
1290
 
1254
1291
  .e-de-op-icon {
@@ -1283,7 +1320,6 @@
1283
1320
  }
1284
1321
 
1285
1322
  .e-de-op-replacetabcontentdiv {
1286
- height: 82px;
1287
1323
  margin-top: 12px;
1288
1324
  }
1289
1325
 
@@ -1311,24 +1347,25 @@ label[for*=_wholeWord_e-de-rtl] {
1311
1347
  .e-de-table-border-heading {
1312
1348
  font-size: 16px;
1313
1349
  font-weight: 500;
1314
- padding-bottom: 12px;
1350
+ padding-bottom: 8px;
1315
1351
  }
1316
1352
 
1317
1353
  .e-de-table-setting-heading {
1318
1354
  font-size: 12px;
1319
1355
  font-weight: 500;
1320
- padding-bottom: 8px;
1356
+ padding-bottom: 4px;
1321
1357
  }
1322
1358
 
1323
1359
  .e-de-layout-setting-heading {
1324
1360
  font-size: 12px;
1325
1361
  font-weight: 500;
1326
- padding-bottom: 8px;
1362
+ padding-bottom: 4px;
1327
1363
  }
1328
1364
 
1329
1365
  .e-de-table-setting-labels-heading {
1330
1366
  font-size: 12px;
1331
1367
  font-weight: 500;
1368
+ margin-left: 10px;
1332
1369
  }
1333
1370
 
1334
1371
  .e-de-table-element-subheading {
@@ -1338,13 +1375,15 @@ label[for*=_wholeWord_e-de-rtl] {
1338
1375
 
1339
1376
  .e-de-border-dlg-preview-div {
1340
1377
  border: 1px solid rgba(0, 0, 0, 0.54);
1378
+ width: 80px;
1379
+ height: 80px;
1341
1380
  }
1342
1381
 
1343
1382
  .e-de-border-dlg-preview-inside-divs {
1344
1383
  opacity: 0.54;
1345
1384
  }
1346
1385
 
1347
- .e-de-table-dia-align-div {
1386
+ .e-de-tablecell-dia-align-div {
1348
1387
  border: 1px solid #6c757d;
1349
1388
  display: inline-block;
1350
1389
  height: 60px;
@@ -1352,7 +1391,7 @@ label[for*=_wholeWord_e-de-rtl] {
1352
1391
  width: 60px;
1353
1392
  }
1354
1393
 
1355
- .e-de-table-dia-align-div.e-de-rtl {
1394
+ .e-de-tablecell-dia-align-div.e-de-rtl {
1356
1395
  margin-left: 11px;
1357
1396
  margin-right: 0;
1358
1397
  }
@@ -1380,10 +1419,7 @@ label[for*=_wholeWord_e-de-rtl] {
1380
1419
  border: 1px solid #0d6efd;
1381
1420
  }
1382
1421
 
1383
- .e-de-table-dialog-options-label {
1384
- font-size: 14px;
1385
- font-weight: 500;
1386
- padding-bottom: 8px;
1422
+ .e-de-table-dialog-size-label {
1387
1423
  padding-top: 12px !important;
1388
1424
  }
1389
1425
 
@@ -1437,6 +1473,7 @@ label[for*=_wholeWord_e-de-rtl] {
1437
1473
  }
1438
1474
 
1439
1475
  .e-de-tbl-dlg-border-btn.e-de-rtl {
1476
+ float: left;
1440
1477
  margin-right: 0;
1441
1478
  }
1442
1479
 
@@ -1558,7 +1595,7 @@ label[for*=_wholeWord_e-de-rtl] {
1558
1595
  .e-documenteditor .e-de-op-close-button {
1559
1596
  left: 250px;
1560
1597
  position: absolute;
1561
- top: 10px;
1598
+ top: 8px;
1562
1599
  }
1563
1600
 
1564
1601
  .e-bigger .e-documenteditor .e-de-op-close-button {
@@ -1668,9 +1705,6 @@ label[for*=_wholeWord_e-de-rtl] {
1668
1705
  .e-bigger .e-de-page-setup-dlg-sub-container-port {
1669
1706
  margin-top: 19px;
1670
1707
  }
1671
- .e-bigger .e-de-table-ppty-dlg-left-indent-container {
1672
- bottom: 12px;
1673
- }
1674
1708
  .e-bigger .e-de-table-container-div {
1675
1709
  margin-top: 13px;
1676
1710
  }
@@ -2055,7 +2089,6 @@ label[for*=_wholeWord_e-de-rtl] {
2055
2089
  }
2056
2090
 
2057
2091
  .e-de-search-tab-content {
2058
- margin-right: 12px;
2059
2092
  margin-top: 12px;
2060
2093
  width: 275px;
2061
2094
  }
@@ -2088,23 +2121,37 @@ label[for*=_wholeWord_e-de-rtl] {
2088
2121
  font-weight: 500;
2089
2122
  }
2090
2123
 
2124
+ .e-bigger .e-de-insert-spellchecker {
2125
+ width: 600px;
2126
+ }
2127
+
2091
2128
  .e-de-dlg-spellcheck-listview {
2092
2129
  border: 1px solid #444c54;
2093
2130
  border-radius: 2px !important;
2094
2131
  height: 122px !important;
2132
+ margin-right: 12px;
2095
2133
  margin-top: 8px;
2096
2134
  position: relative;
2097
2135
  float: left;
2098
- width: 343px !important;
2136
+ width: 100%;
2137
+ }
2138
+
2139
+ .e-de-dlg-spellcheck-listview.e-de-rtl {
2140
+ float: right;
2099
2141
  }
2100
2142
 
2101
2143
  .e-de-spellcheck-error-container {
2102
2144
  height: 140px;
2103
2145
  margin-bottom: 16px;
2146
+ display: -ms-flexbox;
2147
+ display: flex;
2104
2148
  }
2105
2149
 
2106
2150
  .e-de-spellcheck-suggestion-container {
2107
2151
  height: 140px;
2152
+ margin-bottom: 16px;
2153
+ display: -ms-flexbox;
2154
+ display: flex;
2108
2155
  }
2109
2156
 
2110
2157
  .e-dlg-spellcheck-listitem {
@@ -2114,13 +2161,17 @@ label[for*=_wholeWord_e-de-rtl] {
2114
2161
  .e-de-spellcheck-btncontainer {
2115
2162
  margin-top: 8px;
2116
2163
  position: relative;
2117
- width: 154px;
2164
+ width: 100%;
2118
2165
  float: right;
2119
2166
  }
2120
2167
 
2168
+ .e-de-spellcheck-btncontainer.e-de-rtl {
2169
+ float: left;
2170
+ }
2171
+
2121
2172
  .e-de-spellcheck-btn {
2122
2173
  margin-bottom: 8px;
2123
- width: 154px;
2174
+ width: 100%;
2124
2175
  }
2125
2176
 
2126
2177
  .e-de-dlg-spellchecker-subheader {
@@ -2147,7 +2198,6 @@ label[for*=_wholeWord_e-de-rtl] {
2147
2198
  }
2148
2199
 
2149
2200
  .e-de-table-border-shading-dlg {
2150
- height: 438px;
2151
2201
  width: 460px;
2152
2202
  }
2153
2203
 
@@ -2304,7 +2354,7 @@ label[for*=_wholeWord_e-de-rtl] {
2304
2354
  .e-de-table-border-bottomcenter-alignment,
2305
2355
  .e-de-table-border-bottomright-alignment {
2306
2356
  left: 48%;
2307
- position: absolute;
2357
+ position: relative;
2308
2358
  top: 59%;
2309
2359
  transform: translate(-50%, -50%);
2310
2360
  }
@@ -2439,8 +2489,7 @@ label[for*=_wholeWord_e-de-rtl] {
2439
2489
 
2440
2490
  .e-de-op-replace-messagediv {
2441
2491
  color: #fff;
2442
- position: absolute;
2443
- top: 144px;
2492
+ top: auto;
2444
2493
  }
2445
2494
 
2446
2495
  .e-de-op-input-group,
@@ -2492,16 +2541,6 @@ label[for*=_wholeWord_e-de-rtl] {
2492
2541
  margin-right: 12px;
2493
2542
  }
2494
2543
 
2495
- .e-de-table-ppty-dlg-left-indent-container {
2496
- bottom: 5px;
2497
- left: 46px;
2498
- position: relative;
2499
- }
2500
-
2501
- .e-de-table-ppty-dlg-left-indent-container.e-de-rtl {
2502
- right: 46px;
2503
- }
2504
-
2505
2544
  .e-de-table-ppty-dlg-row-height-label {
2506
2545
  float: right;
2507
2546
  margin-right: 184px;
@@ -2607,10 +2646,6 @@ label[for*=_wholeWord_e-de-rtl] {
2607
2646
  margin-right: 38px;
2608
2647
  }
2609
2648
 
2610
- .e-de-toc-dlg-build-table {
2611
- margin-top: 12px;
2612
- }
2613
-
2614
2649
  .e-de-toc-table-div .e-de-toc-dlg-toc-level {
2615
2650
  height: 24px;
2616
2651
  margin-left: 36px;
@@ -2620,8 +2655,9 @@ label[for*=_wholeWord_e-de-rtl] {
2620
2655
  .e-de-toc-styles-table-div {
2621
2656
  border: 1px solid #6c757d;
2622
2657
  border-radius: 3px;
2623
- margin-top: 15px;
2624
- width: 213px;
2658
+ margin-top: 10px;
2659
+ width: 100%;
2660
+ height: 183px;
2625
2661
  }
2626
2662
 
2627
2663
  .e-de-toc-dlg-sub-level-heading {
@@ -2631,7 +2667,7 @@ label[for*=_wholeWord_e-de-rtl] {
2631
2667
  .e-de-toc-table-div {
2632
2668
  height: 143px;
2633
2669
  overflow-y: scroll;
2634
- width: 211px;
2670
+ width: 100%;
2635
2671
  }
2636
2672
 
2637
2673
  .e-de-toc-dlg-style-input {
@@ -2777,15 +2813,6 @@ label[for*=_wholeWord_e-de-rtl] {
2777
2813
  padding: 0;
2778
2814
  }
2779
2815
 
2780
- .e-de-table-border-fill.e-de-rtl {
2781
- margin-left: 15px;
2782
- }
2783
-
2784
- .e-de-table-border-fill:not(.e-de-rtl) {
2785
- margin-right: 15px;
2786
- margin-top: 5px;
2787
- }
2788
-
2789
2816
  .e-de-table-ppty-dlg-tabs {
2790
2817
  height: 280px;
2791
2818
  position: relative;
@@ -2821,7 +2848,6 @@ label[for*=_wholeWord_e-de-rtl] {
2821
2848
  .e-de-tbl-rtl-btn-div {
2822
2849
  font-size: 12px;
2823
2850
  margin-right: 14px;
2824
- width: 140px;
2825
2851
  }
2826
2852
 
2827
2853
  .e-de-tbl-rtl-btn-div.e-de-rtl {
@@ -2831,7 +2857,6 @@ label[for*=_wholeWord_e-de-rtl] {
2831
2857
 
2832
2858
  .e-de-tbl-ltr-btn-div {
2833
2859
  font-size: 12px;
2834
- width: 140px;
2835
2860
  }
2836
2861
 
2837
2862
  .e-de-disabledbutton {
@@ -2863,11 +2888,11 @@ label[for*=_wholeWord_e-de-rtl] {
2863
2888
  width: 90px;
2864
2889
  }
2865
2890
  .e-bigger .e-de-toc-label {
2866
- margin-left: 0;
2891
+ margin-left: 0px;
2867
2892
  }
2868
2893
  .e-bigger .e-de-toc-label-rtl {
2869
2894
  margin-left: 0px;
2870
- margin-right: 0;
2895
+ margin-right: 0px;
2871
2896
  }
2872
2897
  .e-bigger .e-de-outline-rtl {
2873
2898
  width: 173px;
@@ -3158,34 +3183,26 @@ label[for*=_wholeWord_e-de-rtl] {
3158
3183
  }
3159
3184
 
3160
3185
  .e-btn.e-outline.e-de-track-accept-button {
3161
- border-color: #4d841e;
3162
- background-color: transparent;
3163
- color: #4d841e;
3186
+ min-width: 66px;
3164
3187
  padding: 5px 4px;
3165
3188
  text-transform: initial;
3166
3189
  }
3167
3190
 
3168
3191
  .e-btn.e-outline.e-de-track-accept-button:hover {
3169
- border-color: transparent;
3170
- background-color: #198754;
3171
- color: #fff;
3192
+ min-width: 66px;
3172
3193
  padding: 5px 4px;
3173
3194
  text-transform: initial;
3174
3195
  }
3175
3196
 
3176
3197
  .e-btn.e-outline.e-de-track-reject-button {
3177
- border-color: #dc3545;
3178
- background-color: transparent;
3179
- color: #dc3545;
3198
+ min-width: 64px;
3180
3199
  padding: 5px 6px;
3181
3200
  margin-left: 8px;
3182
3201
  text-transform: initial;
3183
3202
  }
3184
3203
 
3185
3204
  .e-btn.e-outline.e-de-track-reject-button:hover {
3186
- border-color: transparent;
3187
- background-color: #dc3545;
3188
- color: #fff;
3205
+ min-width: 64px;
3189
3206
  padding: 5px 6px;
3190
3207
  margin-left: 8px;
3191
3208
  text-transform: initial;
@@ -3263,13 +3280,13 @@ label[for*=_wholeWord_e-de-rtl] {
3263
3280
  .e-de-track-chng-table {
3264
3281
  border-collapse: collapse;
3265
3282
  border-spacing: 0px;
3266
- height: 20px;
3267
3283
  opacity: 70%;
3268
3284
  width: 100%;
3269
3285
  }
3270
3286
 
3271
3287
  .e-de-tc-tble-cell {
3272
3288
  border: 1px solid;
3289
+ height: 20px;
3273
3290
  }
3274
3291
 
3275
3292
  .e-de-tc-shrink-img {
@@ -3400,7 +3417,7 @@ label[for*=_wholeWord_e-de-rtl] {
3400
3417
 
3401
3418
  .e-de-lock-mark {
3402
3419
  cursor: default;
3403
- color: #000;
3420
+ color: #adb5bd;
3404
3421
  font-size: 13px;
3405
3422
  height: 13px;
3406
3423
  pointer-events: all;
@@ -3409,7 +3426,7 @@ label[for*=_wholeWord_e-de-rtl] {
3409
3426
 
3410
3427
  .e-de-cmt-mark {
3411
3428
  cursor: default;
3412
- color: #000;
3429
+ color: #adb5bd;
3413
3430
  font-size: 13px;
3414
3431
  height: 13px;
3415
3432
  pointer-events: all;
@@ -3552,10 +3569,100 @@ label[for*=_wholeWord_e-de-rtl] {
3552
3569
  margin-top: 3px;
3553
3570
  }
3554
3571
 
3572
+ .e-de-table-dialog-row-height {
3573
+ padding-top: 24px;
3574
+ }
3575
+
3576
+ .e-de-tablecell-dialog-alignment-icon {
3577
+ width: 54px;
3578
+ height: 54px;
3579
+ margin: 2px;
3580
+ }
3581
+
3582
+ .e-de-table-dia-indent-from-left {
3583
+ right: 45px;
3584
+ }
3585
+
3586
+ .e-de-table-dia-align-div {
3587
+ border: 1px solid #6c757d;
3588
+ display: inline-block;
3589
+ height: 52px;
3590
+ margin-right: 11px;
3591
+ width: 52px;
3592
+ }
3593
+
3594
+ .e-de-table-dialog-alignment-icon {
3595
+ margin: 2px;
3596
+ height: 46px;
3597
+ }
3598
+
3599
+ .e-de-table-border-setting-genral {
3600
+ margin-right: 11px;
3601
+ }
3602
+
3603
+ .e-de-table-border-clr-left-container {
3604
+ padding-right: 19px;
3605
+ }
3606
+
3607
+ .e-de-table-border-clr-heading {
3608
+ font-size: 12px;
3609
+ font-weight: 500;
3610
+ padding-bottom: 6px;
3611
+ }
3612
+
3613
+ .e-de-table-border-icon-container {
3614
+ margin-top: 4px;
3615
+ margin-right: 4px;
3616
+ }
3617
+
3618
+ .e-de-table-border-preview-container {
3619
+ padding-left: 72px;
3620
+ }
3621
+
3622
+ .e-de-table-dlg-alignment-heading {
3623
+ color: #ced4da;
3624
+ display: block;
3625
+ font-size: 14px;
3626
+ font-weight: 500;
3627
+ margin-bottom: 3px;
3628
+ }
3629
+
3555
3630
  .e-rtl .e-de-cmt-author-name {
3556
3631
  padding-left: 0%;
3557
3632
  padding-right: 12px;
3558
3633
  }
3634
+ .e-rtl .e-de-ok-button {
3635
+ margin-right: 0;
3636
+ margin-left: 8px;
3637
+ }
3638
+ .e-rtl .e-de-table-dia-align-div.e-de-rtl {
3639
+ margin-left: 11px;
3640
+ margin-right: 0;
3641
+ }
3642
+ .e-rtl .e-de-table-border-clr-left-container {
3643
+ padding-right: 0;
3644
+ padding-left: 19px;
3645
+ }
3646
+ .e-rtl .e-de-table-border-preview-container {
3647
+ padding-right: 72px;
3648
+ padding-left: 0;
3649
+ }
3650
+ .e-rtl .e-de-table-border-setting-genral {
3651
+ margin-right: 0;
3652
+ margin-left: 11px;
3653
+ }
3654
+ .e-rtl .e-de-table-border-icon-container {
3655
+ margin-right: 0;
3656
+ margin-left: 4px;
3657
+ }
3658
+ .e-rtl .e-de-table-border-preview {
3659
+ width: 23px;
3660
+ }
3661
+ .e-rtl .e-de-table-setting-labels-heading {
3662
+ margin-left: 0;
3663
+ margin-right: 10px;
3664
+ }
3665
+
3559
3666
  .e-bigger .e-de-cmt-author-name {
3560
3667
  padding-left: 16px;
3561
3668
  }