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