@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
@@ -122,19 +122,19 @@
122
122
  .e-de-table-left-alignment::before {
123
123
  color: #a19f9d;
124
124
  content: "\e7f6";
125
- font-size: 46px;
125
+ font-size: 42px;
126
126
  }
127
127
 
128
128
  .e-de-table-center-alignment::before {
129
129
  color: #a19f9d;
130
130
  content: "\e7f1";
131
- font-size: 46px;
131
+ font-size: 42px;
132
132
  }
133
133
 
134
134
  .e-de-table-right-alignment::before {
135
135
  color: #a19f9d;
136
136
  content: "\e703";
137
- font-size: 46px;
137
+ font-size: 42px;
138
138
  }
139
139
 
140
140
  .e-de-tablecell-top-alignment::before {
@@ -160,25 +160,23 @@
160
160
 
161
161
  .e-de-table-border-setting {
162
162
  border: 1px solid #a19f9d;
163
- height: 48px;
163
+ height: 40px;
164
164
  left: 5px;
165
165
  position: relative;
166
166
  top: 5px;
167
- width: 48px;
167
+ width: 40px;
168
168
  }
169
169
 
170
170
  .e-de-table-border-setting-genral {
171
171
  border: 1px solid #a19f9d;
172
- display: inline-block;
173
- height: 60px;
174
- width: 60px;
172
+ height: 52px;
173
+ width: 52px;
175
174
  }
176
175
 
177
176
  .e-de-table-border-preview-genral {
178
177
  border: 1px solid #a19f9d;
179
- display: inline-block;
180
- height: 25px;
181
- width: 25px;
178
+ height: 24px;
179
+ width: 24px;
182
180
  }
183
181
 
184
182
  .e-de-table-border-inside-setting:hover {
@@ -205,14 +203,14 @@
205
203
  .e-de-table-border-none-setting::before {
206
204
  color: #a19f9d;
207
205
  content: "\e7eb";
208
- font-size: 46px;
206
+ font-size: 38px;
209
207
  position: absolute;
210
208
  }
211
209
 
212
210
  .e-de-table-border-box-setting::before {
213
211
  color: #a19f9d;
214
212
  content: "\e834";
215
- font-size: 42px;
213
+ font-size: 34px;
216
214
  left: 2px;
217
215
  position: absolute;
218
216
  top: 2px;
@@ -222,7 +220,7 @@
222
220
  color: #a19f9d;
223
221
  content: "\e7e8";
224
222
  font-family: "e-icons";
225
- font-size: 42px;
223
+ font-size: 34px;
226
224
  left: 2px;
227
225
  position: absolute;
228
226
  top: 2px;
@@ -231,7 +229,41 @@
231
229
  .e-de-table-border-custom-setting::before {
232
230
  color: #a19f9d;
233
231
  content: "\e7d5";
234
- font-size: 42px;
232
+ font-size: 34px;
233
+ left: 2px;
234
+ position: absolute;
235
+ top: 2px;
236
+ }
237
+
238
+ .e-de-para-border-none-setting::before {
239
+ color: #a19f9d;
240
+ content: "\e890";
241
+ font-size: 38px;
242
+ position: absolute;
243
+ }
244
+
245
+ .e-de-para-border-box-setting::before {
246
+ color: #a19f9d;
247
+ content: "\e891";
248
+ font-size: 34px;
249
+ left: 2px;
250
+ position: absolute;
251
+ top: 2px;
252
+ }
253
+
254
+ .e-de-para-border-shadow-setting::before {
255
+ color: #a19f9d;
256
+ content: "\e892";
257
+ font-size: 34px;
258
+ left: 2px;
259
+ position: absolute;
260
+ top: 2px;
261
+ }
262
+
263
+ .e-de-para-border-custom-setting::before {
264
+ color: #a19f9d;
265
+ content: "\e88f";
266
+ font-size: 34px;
235
267
  left: 2px;
236
268
  position: absolute;
237
269
  top: 2px;
@@ -242,72 +274,72 @@
242
274
  content: "\e7e0";
243
275
  font-family: "e-icons";
244
276
  font-size: 16px;
245
- left: 4px;
277
+ left: 5px;
246
278
  position: absolute;
247
- top: 0;
279
+ top: 2px;
248
280
  }
249
281
 
250
282
  .e-de-table-border-topcenter-alignment::before {
251
283
  color: #a19f9d;
252
284
  content: "\e83b";
253
285
  font-size: 16px;
254
- left: 4px;
286
+ left: 5px;
255
287
  position: absolute;
256
- top: 0;
288
+ top: 2px;
257
289
  }
258
290
 
259
291
  .e-de-table-border-topbottom-alignment::before {
260
292
  color: #a19f9d;
261
293
  content: "\e766";
262
294
  font-size: 16px;
263
- left: 4px;
295
+ left: 5px;
264
296
  position: absolute;
265
- top: 0;
297
+ top: 2px;
266
298
  }
267
299
 
268
300
  .e-de-table-border-diagionalup-alignment::before {
269
301
  color: #a19f9d;
270
302
  content: "\e79d";
271
303
  font-size: 16px;
272
- left: 4px;
304
+ left: 5px;
273
305
  position: absolute;
274
- top: 0;
306
+ top: 2px;
275
307
  }
276
308
 
277
309
  .e-de-table-border-diagionaldown-alignment::before {
278
310
  color: #a19f9d;
279
311
  content: "\e784";
280
312
  font-size: 16px;
281
- left: 4px;
313
+ left: 5px;
282
314
  position: absolute;
283
- top: 0;
315
+ top: 2px;
284
316
  }
285
317
 
286
318
  .e-de-table-border-bottomleft-alignment::before {
287
319
  color: #a19f9d;
288
320
  content: "\e806";
289
321
  font-size: 16px;
290
- left: 4px;
322
+ left: 5px;
291
323
  position: absolute;
292
- top: 0;
324
+ top: 2px;
293
325
  }
294
326
 
295
327
  .e-de-table-border-bottomcenter-alignment::before {
296
328
  color: #a19f9d;
297
329
  content: "\e792";
298
330
  font-size: 16px;
299
- left: 4px;
331
+ left: 5px;
300
332
  position: absolute;
301
- top: 0;
333
+ top: 2px;
302
334
  }
303
335
 
304
336
  .e-de-table-border-bottomright-alignment::before {
305
337
  color: #a19f9d;
306
338
  content: "\e7ab";
307
339
  font-size: 16px;
308
- left: 4px;
340
+ left: 5px;
309
341
  position: absolute;
310
- top: 0;
342
+ top: 2px;
311
343
  }
312
344
 
313
345
  .e-menu-item .e-de-cmt-add::before {
@@ -743,7 +775,7 @@
743
775
  .e-documenteditor .e-de-op-close-button {
744
776
  left: 267px;
745
777
  position: absolute;
746
- top: 10px;
778
+ top: 8px;
747
779
  }
748
780
  .e-documenteditor .e-de-op-close-button.e-de-rtl {
749
781
  left: 14px;
@@ -981,7 +1013,7 @@
981
1013
  display: block;
982
1014
  font-size: 14px;
983
1015
  font-weight: 600;
984
- margin-bottom: 8px !important;
1016
+ margin-bottom: 8px;
985
1017
  }
986
1018
 
987
1019
  .e-content-placeholder.e-documenteditor.e-placeholder-documenteditor {
@@ -997,18 +1029,18 @@
997
1029
  }
998
1030
 
999
1031
  .e-de-toc-modify-button {
1000
- margin-left: 162px;
1032
+ margin-left: 156px;
1001
1033
  margin-top: 10px;
1002
1034
  }
1003
1035
 
1004
1036
  .e-de-toc-modify-button.e-de-rtl {
1005
1037
  margin-left: 0;
1006
- margin-right: 180px;
1038
+ margin-right: 150px;
1007
1039
  }
1008
1040
 
1009
1041
  .e-de-toc-dlg-container {
1010
1042
  height: 454px;
1011
- width: 500px;
1043
+ width: 550px;
1012
1044
  }
1013
1045
 
1014
1046
  .e-de-toc-dlg-sub-container {
@@ -1019,15 +1051,12 @@
1019
1051
  border: 1px solid #a19f9d;
1020
1052
  border-radius: 3px;
1021
1053
  font-size: 12px;
1022
- height: 174px;
1023
- margin-left: 38px;
1054
+ height: 193px;
1024
1055
  overflow-y: scroll;
1025
- width: 209px;
1026
1056
  }
1027
1057
 
1028
1058
  .e-de-toc-list-view.e-de-rtl {
1029
1059
  margin-left: 0;
1030
- margin-right: 38px;
1031
1060
  }
1032
1061
 
1033
1062
  .e-de-toc-dlg-sub-heading {
@@ -1205,8 +1234,7 @@
1205
1234
  margin-right: 20px;
1206
1235
  }
1207
1236
 
1208
- .e-de-restrict-pane,
1209
- .e-de-op {
1237
+ .e-de-restrict-pane {
1210
1238
  border-right: 1px solid #292827;
1211
1239
  padding-left: 12px;
1212
1240
  padding-top: 12px;
@@ -1220,6 +1248,14 @@
1220
1248
  width: 300px;
1221
1249
  }
1222
1250
 
1251
+ .e-de-op {
1252
+ border-right: 1px solid #292827;
1253
+ padding-left: 12px;
1254
+ padding-right: 12px;
1255
+ position: relative;
1256
+ width: 300px;
1257
+ }
1258
+
1223
1259
  .e-de-op.e-de-rtl {
1224
1260
  padding-left: 0;
1225
1261
  padding-right: 12px;
@@ -1230,16 +1266,18 @@
1230
1266
  font-family: inherit;
1231
1267
  font-size: 15px;
1232
1268
  font-weight: 600;
1233
- margin-bottom: 16px;
1269
+ margin-bottom: 12px;
1270
+ padding-top: 12px;
1234
1271
  }
1235
1272
 
1236
1273
  .e-de-op-header.e-de-rtl {
1237
1274
  direction: rtl;
1275
+ text-align: right;
1238
1276
  }
1239
1277
 
1240
1278
  .e-de-op-tab {
1241
1279
  border: 0;
1242
- height: 40px;
1280
+ height: auto;
1243
1281
  }
1244
1282
 
1245
1283
  .e-de-op-icon {
@@ -1283,7 +1321,6 @@
1283
1321
  }
1284
1322
 
1285
1323
  .e-de-op-replacetabcontentdiv {
1286
- height: 82px;
1287
1324
  margin-top: 16px;
1288
1325
  }
1289
1326
 
@@ -1329,6 +1366,7 @@ label[for*=_wholeWord_e-de-rtl] {
1329
1366
  .e-de-table-setting-labels-heading {
1330
1367
  font-size: 12px;
1331
1368
  font-weight: 600;
1369
+ margin-left: 10px;
1332
1370
  }
1333
1371
 
1334
1372
  .e-de-table-element-subheading {
@@ -1338,13 +1376,15 @@ label[for*=_wholeWord_e-de-rtl] {
1338
1376
 
1339
1377
  .e-de-border-dlg-preview-div {
1340
1378
  border: 1px solid #292827;
1379
+ width: 80px;
1380
+ height: 80px;
1341
1381
  }
1342
1382
 
1343
1383
  .e-de-border-dlg-preview-inside-divs {
1344
1384
  opacity: 0.54;
1345
1385
  }
1346
1386
 
1347
- .e-de-table-dia-align-div {
1387
+ .e-de-tablecell-dia-align-div {
1348
1388
  border: 1px solid #a19f9d;
1349
1389
  display: inline-block;
1350
1390
  height: 60px;
@@ -1352,7 +1392,7 @@ label[for*=_wholeWord_e-de-rtl] {
1352
1392
  width: 60px;
1353
1393
  }
1354
1394
 
1355
- .e-de-table-dia-align-div.e-de-rtl {
1395
+ .e-de-tablecell-dia-align-div.e-de-rtl {
1356
1396
  margin-left: 12px;
1357
1397
  margin-right: 0;
1358
1398
  }
@@ -1380,10 +1420,7 @@ label[for*=_wholeWord_e-de-rtl] {
1380
1420
  border: 1px solid #0078d4;
1381
1421
  }
1382
1422
 
1383
- .e-de-table-dialog-options-label {
1384
- font-size: 14px;
1385
- font-weight: 400;
1386
- padding-bottom: 8px;
1423
+ .e-de-table-dialog-size-label {
1387
1424
  padding-top: 12px !important;
1388
1425
  }
1389
1426
 
@@ -1437,6 +1474,7 @@ label[for*=_wholeWord_e-de-rtl] {
1437
1474
  }
1438
1475
 
1439
1476
  .e-de-tbl-dlg-border-btn.e-de-rtl {
1477
+ float: left;
1440
1478
  margin-right: 0;
1441
1479
  }
1442
1480
 
@@ -1559,7 +1597,7 @@ label[for*=_wholeWord_e-de-rtl] {
1559
1597
  .e-documenteditor .e-de-op-close-button {
1560
1598
  left: 250px;
1561
1599
  position: absolute;
1562
- top: 10px;
1600
+ top: 8px;
1563
1601
  }
1564
1602
 
1565
1603
  .e-bigger .e-documenteditor .e-de-op-close-button {
@@ -1607,9 +1645,6 @@ label[for*=_wholeWord_e-de-rtl] {
1607
1645
  .e-bigger .e-de-page-setup-dlg-sub-container-port {
1608
1646
  margin-top: 34px;
1609
1647
  }
1610
- .e-bigger .e-de-table-ppty-dlg-left-indent-container {
1611
- bottom: 12px;
1612
- }
1613
1648
  .e-bigger .e-de-table-container-div {
1614
1649
  margin-top: 13px;
1615
1650
  }
@@ -1994,7 +2029,6 @@ label[for*=_wholeWord_e-de-rtl] {
1994
2029
  }
1995
2030
 
1996
2031
  .e-de-search-tab-content {
1997
- margin-right: 12px;
1998
2032
  margin-top: 12px;
1999
2033
  width: 275px;
2000
2034
  }
@@ -2027,23 +2061,37 @@ label[for*=_wholeWord_e-de-rtl] {
2027
2061
  font-weight: 600;
2028
2062
  }
2029
2063
 
2064
+ .e-bigger .e-de-insert-spellchecker {
2065
+ width: 600px;
2066
+ }
2067
+
2030
2068
  .e-de-dlg-spellcheck-listview {
2031
2069
  border: 1px solid #292827;
2032
2070
  border-radius: 2px !important;
2033
2071
  height: 122px !important;
2072
+ margin-right: 12px;
2034
2073
  margin-top: 8px;
2035
2074
  position: relative;
2036
2075
  float: left;
2037
- width: 343px !important;
2076
+ width: 100%;
2077
+ }
2078
+
2079
+ .e-de-dlg-spellcheck-listview.e-de-rtl {
2080
+ float: right;
2038
2081
  }
2039
2082
 
2040
2083
  .e-de-spellcheck-error-container {
2041
2084
  height: 140px;
2042
2085
  margin-bottom: 16px;
2086
+ display: -ms-flexbox;
2087
+ display: flex;
2043
2088
  }
2044
2089
 
2045
2090
  .e-de-spellcheck-suggestion-container {
2046
2091
  height: 140px;
2092
+ margin-bottom: 16px;
2093
+ display: -ms-flexbox;
2094
+ display: flex;
2047
2095
  }
2048
2096
 
2049
2097
  .e-dlg-spellcheck-listitem {
@@ -2053,13 +2101,17 @@ label[for*=_wholeWord_e-de-rtl] {
2053
2101
  .e-de-spellcheck-btncontainer {
2054
2102
  margin-top: 8px;
2055
2103
  position: relative;
2056
- width: 154px;
2104
+ width: 100%;
2057
2105
  float: right;
2058
2106
  }
2059
2107
 
2108
+ .e-de-spellcheck-btncontainer.e-de-rtl {
2109
+ float: left;
2110
+ }
2111
+
2060
2112
  .e-de-spellcheck-btn {
2061
- margin-bottom: 8px;
2062
- width: 154px;
2113
+ margin-bottom: 14px;
2114
+ width: 95%;
2063
2115
  }
2064
2116
 
2065
2117
  .e-de-dlg-spellchecker-subheader {
@@ -2086,7 +2138,6 @@ label[for*=_wholeWord_e-de-rtl] {
2086
2138
  }
2087
2139
 
2088
2140
  .e-de-table-border-shading-dlg {
2089
- height: 438px;
2090
2141
  width: 460px;
2091
2142
  }
2092
2143
 
@@ -2243,7 +2294,7 @@ label[for*=_wholeWord_e-de-rtl] {
2243
2294
  .e-de-table-border-bottomcenter-alignment,
2244
2295
  .e-de-table-border-bottomright-alignment {
2245
2296
  left: 48%;
2246
- position: absolute;
2297
+ position: relative;
2247
2298
  top: 59%;
2248
2299
  transform: translate(-50%, -50%);
2249
2300
  }
@@ -2378,8 +2429,7 @@ label[for*=_wholeWord_e-de-rtl] {
2378
2429
 
2379
2430
  .e-de-op-replace-messagediv {
2380
2431
  color: #f3f2f1;
2381
- position: absolute;
2382
- top: 144px;
2432
+ top: auto;
2383
2433
  }
2384
2434
 
2385
2435
  .e-de-op-input-group,
@@ -2431,16 +2481,6 @@ label[for*=_wholeWord_e-de-rtl] {
2431
2481
  margin-right: 12px;
2432
2482
  }
2433
2483
 
2434
- .e-de-table-ppty-dlg-left-indent-container {
2435
- bottom: 5px;
2436
- left: 46px;
2437
- position: relative;
2438
- }
2439
-
2440
- .e-de-table-ppty-dlg-left-indent-container.e-de-rtl {
2441
- right: 46px;
2442
- }
2443
-
2444
2484
  .e-de-table-ppty-dlg-row-height-label {
2445
2485
  float: right;
2446
2486
  margin-right: 184px;
@@ -2546,10 +2586,6 @@ label[for*=_wholeWord_e-de-rtl] {
2546
2586
  margin-right: 38px;
2547
2587
  }
2548
2588
 
2549
- .e-de-toc-dlg-build-table {
2550
- margin-top: 12px;
2551
- }
2552
-
2553
2589
  .e-de-toc-table-div .e-de-toc-dlg-toc-level {
2554
2590
  height: 24px;
2555
2591
  margin-left: 36px;
@@ -2559,8 +2595,9 @@ label[for*=_wholeWord_e-de-rtl] {
2559
2595
  .e-de-toc-styles-table-div {
2560
2596
  border: 1px solid #a19f9d;
2561
2597
  border-radius: 3px;
2562
- margin-top: 15px;
2563
- width: 213px;
2598
+ margin-top: 8px;
2599
+ width: 100%;
2600
+ height: 185px;
2564
2601
  }
2565
2602
 
2566
2603
  .e-de-toc-dlg-sub-level-heading {
@@ -2570,7 +2607,7 @@ label[for*=_wholeWord_e-de-rtl] {
2570
2607
  .e-de-toc-table-div {
2571
2608
  height: 143px;
2572
2609
  overflow-y: scroll;
2573
- width: 211px;
2610
+ width: 100%;
2574
2611
  }
2575
2612
 
2576
2613
  .e-de-toc-dlg-style-input {
@@ -2581,7 +2618,7 @@ label[for*=_wholeWord_e-de-rtl] {
2581
2618
 
2582
2619
  .e-de-toc-dlg-outline-levels {
2583
2620
  margin-top: 15px;
2584
- width: 150px;
2621
+ width: 160px;
2585
2622
  }
2586
2623
 
2587
2624
  .e-bookmark-textboxdiv .e-bookmark-textbox-input {
@@ -2716,15 +2753,6 @@ label[for*=_wholeWord_e-de-rtl] {
2716
2753
  padding: 0;
2717
2754
  }
2718
2755
 
2719
- .e-de-table-border-fill.e-de-rtl {
2720
- margin-left: 15px;
2721
- }
2722
-
2723
- .e-de-table-border-fill:not(.e-de-rtl) {
2724
- margin-right: 15px;
2725
- margin-top: 5px;
2726
- }
2727
-
2728
2756
  .e-de-table-ppty-dlg-tabs {
2729
2757
  height: 280px;
2730
2758
  position: relative;
@@ -2760,7 +2788,6 @@ label[for*=_wholeWord_e-de-rtl] {
2760
2788
  .e-de-tbl-rtl-btn-div {
2761
2789
  font-size: 12px;
2762
2790
  margin-right: 14px;
2763
- width: 140px;
2764
2791
  }
2765
2792
 
2766
2793
  .e-de-tbl-rtl-btn-div.e-de-rtl {
@@ -2770,7 +2797,6 @@ label[for*=_wholeWord_e-de-rtl] {
2770
2797
 
2771
2798
  .e-de-tbl-ltr-btn-div {
2772
2799
  font-size: 12px;
2773
- width: 140px;
2774
2800
  }
2775
2801
 
2776
2802
  .e-de-disabledbutton {
@@ -2802,11 +2828,11 @@ label[for*=_wholeWord_e-de-rtl] {
2802
2828
  width: 90px;
2803
2829
  }
2804
2830
  .e-bigger .e-de-toc-label {
2805
- margin-left: 0;
2831
+ margin-left: 0px;
2806
2832
  }
2807
2833
  .e-bigger .e-de-toc-label-rtl {
2808
2834
  margin-left: 0px;
2809
- margin-right: 0;
2835
+ margin-right: 0px;
2810
2836
  }
2811
2837
  .e-bigger .e-de-outline-rtl {
2812
2838
  width: 173px;
@@ -3095,34 +3121,26 @@ label[for*=_wholeWord_e-de-rtl] {
3095
3121
  }
3096
3122
 
3097
3123
  .e-btn.e-outline.e-de-track-accept-button {
3098
- border-color: #4d841e;
3099
- background-color: transparent;
3100
- color: #4d841e;
3124
+ min-width: 66px;
3101
3125
  padding: 5px 4px;
3102
3126
  text-transform: initial;
3103
3127
  }
3104
3128
 
3105
3129
  .e-btn.e-outline.e-de-track-accept-button:hover {
3106
- border-color: transparent;
3107
- background-color: #0b6a0b;
3108
- color: #fff;
3130
+ min-width: 66px;
3109
3131
  padding: 5px 4px;
3110
3132
  text-transform: initial;
3111
3133
  }
3112
3134
 
3113
3135
  .e-btn.e-outline.e-de-track-reject-button {
3114
- border-color: #d13438;
3115
- background-color: transparent;
3116
- color: #d13438;
3136
+ min-width: 64px;
3117
3137
  padding: 5px 6px;
3118
3138
  margin-left: 8px;
3119
3139
  text-transform: initial;
3120
3140
  }
3121
3141
 
3122
3142
  .e-btn.e-outline.e-de-track-reject-button:hover {
3123
- border-color: transparent;
3124
- background-color: #d13438;
3125
- color: #fff;
3143
+ min-width: 64px;
3126
3144
  padding: 5px 6px;
3127
3145
  margin-left: 8px;
3128
3146
  text-transform: initial;
@@ -3200,13 +3218,13 @@ label[for*=_wholeWord_e-de-rtl] {
3200
3218
  .e-de-track-chng-table {
3201
3219
  border-collapse: collapse;
3202
3220
  border-spacing: 0px;
3203
- height: 20px;
3204
3221
  opacity: 70%;
3205
3222
  width: 100%;
3206
3223
  }
3207
3224
 
3208
3225
  .e-de-tc-tble-cell {
3209
3226
  border: 1px solid;
3227
+ height: 20px;
3210
3228
  }
3211
3229
 
3212
3230
  .e-de-tc-shrink-img {
@@ -3338,7 +3356,7 @@ label[for*=_wholeWord_e-de-rtl] {
3338
3356
 
3339
3357
  .e-de-lock-mark {
3340
3358
  cursor: default;
3341
- color: #000;
3359
+ color: #a19f9d;
3342
3360
  font-size: 13px;
3343
3361
  height: 13px;
3344
3362
  pointer-events: all;
@@ -3347,7 +3365,7 @@ label[for*=_wholeWord_e-de-rtl] {
3347
3365
 
3348
3366
  .e-de-cmt-mark {
3349
3367
  cursor: default;
3350
- color: #000;
3368
+ color: #a19f9d;
3351
3369
  font-size: 13px;
3352
3370
  height: 13px;
3353
3371
  pointer-events: all;
@@ -3490,10 +3508,100 @@ label[for*=_wholeWord_e-de-rtl] {
3490
3508
  margin-top: 3px;
3491
3509
  }
3492
3510
 
3511
+ .e-de-table-dialog-row-height {
3512
+ padding-top: 24px;
3513
+ }
3514
+
3515
+ .e-de-tablecell-dialog-alignment-icon {
3516
+ width: 54px;
3517
+ height: 54px;
3518
+ margin: 2px;
3519
+ }
3520
+
3521
+ .e-de-table-dia-indent-from-left {
3522
+ right: 45px;
3523
+ }
3524
+
3525
+ .e-de-table-dia-align-div {
3526
+ border: 1px solid #a19f9d;
3527
+ display: inline-block;
3528
+ height: 52px;
3529
+ margin-right: 12px;
3530
+ width: 52px;
3531
+ }
3532
+
3533
+ .e-de-table-dialog-alignment-icon {
3534
+ margin: 2px;
3535
+ height: 46px;
3536
+ }
3537
+
3538
+ .e-de-table-border-setting-genral {
3539
+ margin-right: 12px;
3540
+ }
3541
+
3542
+ .e-de-table-border-clr-left-container {
3543
+ padding-right: 19px;
3544
+ }
3545
+
3546
+ .e-de-table-border-clr-heading {
3547
+ font-size: 12px;
3548
+ font-weight: 600;
3549
+ padding-bottom: 6px;
3550
+ }
3551
+
3552
+ .e-de-table-border-icon-container {
3553
+ margin-top: 4px;
3554
+ margin-right: 4px;
3555
+ }
3556
+
3557
+ .e-de-table-border-preview-container {
3558
+ padding-left: 68px;
3559
+ }
3560
+
3561
+ .e-de-table-dlg-alignment-heading {
3562
+ color: #f3f2f1;
3563
+ display: block;
3564
+ font-size: 14px;
3565
+ font-weight: 400;
3566
+ margin-bottom: 4px;
3567
+ }
3568
+
3493
3569
  .e-rtl .e-de-cmt-author-name {
3494
3570
  padding-left: 0%;
3495
3571
  padding-right: 12px;
3496
3572
  }
3573
+ .e-rtl .e-de-ok-button {
3574
+ margin-right: 0;
3575
+ margin-left: 24px;
3576
+ }
3577
+ .e-rtl .e-de-table-dia-align-div.e-de-rtl {
3578
+ margin-left: 12px;
3579
+ margin-right: 0;
3580
+ }
3581
+ .e-rtl .e-de-table-border-clr-left-container {
3582
+ padding-right: 0;
3583
+ padding-left: 19px;
3584
+ }
3585
+ .e-rtl .e-de-table-border-preview-container {
3586
+ padding-right: 68px;
3587
+ padding-left: 0;
3588
+ }
3589
+ .e-rtl .e-de-table-border-setting-genral {
3590
+ margin-right: 0;
3591
+ margin-left: 12px;
3592
+ }
3593
+ .e-rtl .e-de-table-border-icon-container {
3594
+ margin-right: 0;
3595
+ margin-left: 4px;
3596
+ }
3597
+ .e-rtl .e-de-table-border-preview {
3598
+ width: 23px;
3599
+ }
3600
+ .e-rtl .e-de-table-setting-labels-heading {
3601
+ margin-left: 0;
3602
+ margin-right: 10px;
3603
+ }
3604
+
3497
3605
  .e-bigger .e-de-cmt-author-name {
3498
3606
  padding-left: 16px;
3499
3607
  }
@@ -3828,6 +3936,10 @@ label[for*=_wholeWord_e-de-rtl] {
3828
3936
  content: "\e77e";
3829
3937
  }
3830
3938
 
3939
+ .e-de-ctnr-borders::before {
3940
+ content: "\e893";
3941
+ }
3942
+
3831
3943
  .e-de-ctnr-decreaseindent::before {
3832
3944
  content: "\e72a";
3833
3945
  }
@@ -4776,7 +4888,7 @@ label[for*=_wholeWord_e-de-rtl] {
4776
4888
  }
4777
4889
 
4778
4890
  .e-de-list-header-presetmenu .e-de-list-line {
4779
- border-bottom: 1px solid #ccc;
4891
+ border-bottom: 1px solid #a19f9d;
4780
4892
  margin-left: 5px;
4781
4893
  width: 100%;
4782
4894
  }
@@ -4793,7 +4905,6 @@ label[for*=_wholeWord_e-de-rtl] {
4793
4905
  }
4794
4906
 
4795
4907
  .e-de-list-header-presetmenu div span {
4796
- color: #aaa;
4797
4908
  display: inline-block;
4798
4909
  vertical-align: middle;
4799
4910
  }