@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
@@ -138,25 +138,23 @@
138
138
 
139
139
  .e-de-table-border-setting {
140
140
  border: 1px solid #ddd;
141
- height: 48px;
141
+ height: 40px;
142
142
  left: 5px;
143
143
  position: relative;
144
144
  top: 5px;
145
- width: 48px;
145
+ width: 40px;
146
146
  }
147
147
 
148
148
  .e-de-table-border-setting-genral {
149
149
  border: 1px solid #ddd;
150
- display: inline-block;
151
- height: 60px;
152
- width: 60px;
150
+ height: 52px;
151
+ width: 52px;
153
152
  }
154
153
 
155
154
  .e-de-table-border-preview-genral {
156
155
  border: 1px solid #ddd;
157
- display: inline-block;
158
- height: 25px;
159
- width: 25px;
156
+ height: 24px;
157
+ width: 24px;
160
158
  }
161
159
 
162
160
  .e-de-table-border-inside-setting:hover {
@@ -182,13 +180,13 @@
182
180
 
183
181
  .e-de-table-border-none-setting::before {
184
182
  content: "\e507";
185
- font-size: 46px;
183
+ font-size: 38px;
186
184
  position: absolute;
187
185
  }
188
186
 
189
187
  .e-de-table-border-box-setting::before {
190
188
  content: "\e509";
191
- font-size: 42px;
189
+ font-size: 34px;
192
190
  left: 2px;
193
191
  position: absolute;
194
192
  top: 2px;
@@ -196,7 +194,7 @@
196
194
 
197
195
  .e-de-table-border-all-setting::before {
198
196
  content: "\e511";
199
- font-size: 42px;
197
+ font-size: 34px;
200
198
  left: 2px;
201
199
  position: absolute;
202
200
  top: 2px;
@@ -204,7 +202,37 @@
204
202
 
205
203
  .e-de-table-border-custom-setting::before {
206
204
  content: "\e516";
207
- font-size: 42px;
205
+ font-size: 34px;
206
+ left: 2px;
207
+ position: absolute;
208
+ top: 2px;
209
+ }
210
+
211
+ .e-de-para-border-none-setting::before {
212
+ content: "\e93f";
213
+ font-size: 38px;
214
+ position: absolute;
215
+ }
216
+
217
+ .e-de-para-border-box-setting::before {
218
+ content: "\e940";
219
+ font-size: 34px;
220
+ left: 2px;
221
+ position: absolute;
222
+ top: 2px;
223
+ }
224
+
225
+ .e-de-para-border-shadow-setting::before {
226
+ content: "\e942";
227
+ font-size: 34px;
228
+ left: 2px;
229
+ position: absolute;
230
+ top: 2px;
231
+ }
232
+
233
+ .e-de-para-border-custom-setting::before {
234
+ content: "\e946";
235
+ font-size: 34px;
208
236
  left: 2px;
209
237
  position: absolute;
210
238
  top: 2px;
@@ -213,7 +241,7 @@
213
241
  .e-de-table-border-toptop-alignment::before {
214
242
  content: "\e281";
215
243
  font-size: 16px;
216
- left: 4px;
244
+ left: 5px;
217
245
  position: absolute;
218
246
  top: 4px;
219
247
  }
@@ -221,7 +249,7 @@
221
249
  .e-de-table-border-topcenter-alignment::before {
222
250
  content: "\e276";
223
251
  font-size: 16px;
224
- left: 4px;
252
+ left: 5px;
225
253
  position: absolute;
226
254
  top: 4px;
227
255
  }
@@ -229,7 +257,7 @@
229
257
  .e-de-table-border-topbottom-alignment::before {
230
258
  content: "\e298";
231
259
  font-size: 16px;
232
- left: 4px;
260
+ left: 5px;
233
261
  position: absolute;
234
262
  top: 4px;
235
263
  }
@@ -237,7 +265,7 @@
237
265
  .e-de-table-border-diagionalup-alignment::before {
238
266
  content: "\e262";
239
267
  font-size: 16px;
240
- left: 4px;
268
+ left: 5px;
241
269
  position: absolute;
242
270
  top: 4px;
243
271
  }
@@ -245,7 +273,7 @@
245
273
  .e-de-table-border-diagionaldown-alignment::before {
246
274
  content: "\e265";
247
275
  font-size: 16px;
248
- left: 4px;
276
+ left: 5px;
249
277
  position: absolute;
250
278
  top: 4px;
251
279
  }
@@ -253,7 +281,7 @@
253
281
  .e-de-table-border-bottomleft-alignment::before {
254
282
  content: "\e291";
255
283
  font-size: 16px;
256
- left: 4px;
284
+ left: 5px;
257
285
  position: absolute;
258
286
  top: 4px;
259
287
  }
@@ -261,7 +289,7 @@
261
289
  .e-de-table-border-bottomcenter-alignment::before {
262
290
  content: "\e287";
263
291
  font-size: 16px;
264
- left: 4px;
292
+ left: 5px;
265
293
  position: absolute;
266
294
  top: 4px;
267
295
  }
@@ -269,7 +297,7 @@
269
297
  .e-de-table-border-bottomright-alignment::before {
270
298
  content: "\e288";
271
299
  font-size: 16px;
272
- left: 4px;
300
+ left: 5px;
273
301
  position: absolute;
274
302
  top: 4px;
275
303
  }
@@ -708,7 +736,7 @@
708
736
  .e-documenteditor .e-de-op-close-button {
709
737
  left: 267px;
710
738
  position: absolute;
711
- top: 18px;
739
+ top: 8px;
712
740
  }
713
741
  .e-documenteditor .e-de-op-close-button.e-de-rtl {
714
742
  left: 14px;
@@ -946,7 +974,7 @@
946
974
  display: block;
947
975
  font-size: 14px;
948
976
  font-weight: 500;
949
- margin-bottom: 5px !important;
977
+ margin-bottom: 10px;
950
978
  }
951
979
 
952
980
  .e-content-placeholder.e-documenteditor.e-placeholder-documenteditor {
@@ -962,18 +990,18 @@
962
990
  }
963
991
 
964
992
  .e-de-toc-modify-button {
965
- margin-left: 156px;
993
+ margin-left: 150px;
966
994
  margin-top: 10px;
967
995
  }
968
996
 
969
997
  .e-de-toc-modify-button.e-de-rtl {
970
998
  margin-left: 0;
971
- margin-right: 174px;
999
+ margin-right: 150px;
972
1000
  }
973
1001
 
974
1002
  .e-de-toc-dlg-container {
975
1003
  height: 471px;
976
- width: 469px;
1004
+ width: 520px;
977
1005
  }
978
1006
 
979
1007
  .e-de-toc-dlg-sub-container {
@@ -984,15 +1012,12 @@
984
1012
  border: 1px solid #808080;
985
1013
  border-radius: 4px;
986
1014
  font-size: 12px;
987
- height: 194px;
988
- margin-left: 36px;
1015
+ height: 200px;
989
1016
  overflow-y: scroll;
990
- width: 211px;
991
1017
  }
992
1018
 
993
1019
  .e-de-toc-list-view.e-de-rtl {
994
1020
  margin-left: 0;
995
- margin-right: 36px;
996
1021
  }
997
1022
 
998
1023
  .e-de-toc-dlg-sub-heading {
@@ -1182,8 +1207,7 @@
1182
1207
  margin-right: 40px;
1183
1208
  }
1184
1209
 
1185
- .e-de-restrict-pane,
1186
- .e-de-op {
1210
+ .e-de-restrict-pane {
1187
1211
  border-right: 1px solid #616161;
1188
1212
  padding-left: 16px;
1189
1213
  padding-top: 24px;
@@ -1192,6 +1216,14 @@
1192
1216
  width: 300px;
1193
1217
  }
1194
1218
 
1219
+ .e-de-op {
1220
+ border-right: 1px solid #616161;
1221
+ padding-left: 16px;
1222
+ padding-right: 16px;
1223
+ position: relative;
1224
+ width: 300px;
1225
+ }
1226
+
1195
1227
  .e-de-op.e-de-rtl {
1196
1228
  padding-left: 0;
1197
1229
  padding-right: 16px;
@@ -1202,16 +1234,18 @@
1202
1234
  font-family: "Roboto";
1203
1235
  font-size: 15px;
1204
1236
  font-weight: 500;
1205
- margin-bottom: 20px;
1237
+ margin-bottom: 12px;
1238
+ padding-top: 12px;
1206
1239
  }
1207
1240
 
1208
1241
  .e-de-op-header.e-de-rtl {
1209
1242
  direction: rtl;
1243
+ text-align: right;
1210
1244
  }
1211
1245
 
1212
1246
  .e-de-op-tab {
1213
1247
  border: 0;
1214
- height: 36px;
1248
+ height: auto;
1215
1249
  }
1216
1250
 
1217
1251
  .e-de-op-icon {
@@ -1246,7 +1280,6 @@
1246
1280
  }
1247
1281
 
1248
1282
  .e-de-op-replacetabcontentdiv {
1249
- height: 82px;
1250
1283
  margin-top: 14px;
1251
1284
  }
1252
1285
 
@@ -1292,6 +1325,7 @@ label[for*=_wholeWord_e-de-rtl] {
1292
1325
  .e-de-table-setting-labels-heading {
1293
1326
  font-size: 12px;
1294
1327
  font-weight: normal;
1328
+ margin-left: 10px;
1295
1329
  }
1296
1330
 
1297
1331
  .e-de-table-element-subheading {
@@ -1301,13 +1335,15 @@ label[for*=_wholeWord_e-de-rtl] {
1301
1335
 
1302
1336
  .e-de-border-dlg-preview-div {
1303
1337
  border: 1px solid rgba(0, 0, 0, 0.54);
1338
+ width: 80px;
1339
+ height: 80px;
1304
1340
  }
1305
1341
 
1306
1342
  .e-de-border-dlg-preview-inside-divs {
1307
1343
  opacity: 0.54;
1308
1344
  }
1309
1345
 
1310
- .e-de-table-dia-align-div {
1346
+ .e-de-tablecell-dia-align-div {
1311
1347
  border: 1px solid #ddd;
1312
1348
  display: inline-block;
1313
1349
  height: 60px;
@@ -1315,7 +1351,7 @@ label[for*=_wholeWord_e-de-rtl] {
1315
1351
  width: 60px;
1316
1352
  }
1317
1353
 
1318
- .e-de-table-dia-align-div.e-de-rtl {
1354
+ .e-de-tablecell-dia-align-div.e-de-rtl {
1319
1355
  margin-left: 10px;
1320
1356
  margin-right: 0;
1321
1357
  }
@@ -1343,10 +1379,7 @@ label[for*=_wholeWord_e-de-rtl] {
1343
1379
  border: 1px solid #00b0ff;
1344
1380
  }
1345
1381
 
1346
- .e-de-table-dialog-options-label {
1347
- font-size: 14px;
1348
- font-weight: 400;
1349
- padding-bottom: 15px;
1382
+ .e-de-table-dialog-size-label {
1350
1383
  padding-top: 20px !important;
1351
1384
  }
1352
1385
 
@@ -1400,6 +1433,7 @@ label[for*=_wholeWord_e-de-rtl] {
1400
1433
  }
1401
1434
 
1402
1435
  .e-de-tbl-dlg-border-btn.e-de-rtl {
1436
+ float: left;
1403
1437
  margin-right: 0;
1404
1438
  }
1405
1439
 
@@ -1521,7 +1555,7 @@ label[for*=_wholeWord_e-de-rtl] {
1521
1555
  .e-documenteditor .e-de-op-close-button {
1522
1556
  left: 250px;
1523
1557
  position: absolute;
1524
- top: 18px;
1558
+ top: 8px;
1525
1559
  }
1526
1560
 
1527
1561
  .e-de-restrict-pane {
@@ -1529,7 +1563,7 @@ label[for*=_wholeWord_e-de-rtl] {
1529
1563
  }
1530
1564
 
1531
1565
  .e-de-op.e-de-rtl .e-de-search-tab-content {
1532
- margin-left: 1px;
1566
+ margin-left: 12px;
1533
1567
  margin-right: 0;
1534
1568
  }
1535
1569
 
@@ -1892,8 +1926,7 @@ label[for*=_wholeWord_e-de-rtl] {
1892
1926
  }
1893
1927
 
1894
1928
  .e-de-search-tab-content {
1895
- margin-right: 1px;
1896
- margin-top: 1px;
1929
+ margin-top: 12px;
1897
1930
  width: 267px;
1898
1931
  }
1899
1932
 
@@ -1925,23 +1958,37 @@ label[for*=_wholeWord_e-de-rtl] {
1925
1958
  font-weight: normal;
1926
1959
  }
1927
1960
 
1961
+ .e-bigger .e-de-insert-spellchecker {
1962
+ width: 600px;
1963
+ }
1964
+
1928
1965
  .e-de-dlg-spellcheck-listview {
1929
1966
  border: 1px solid #e4e4e4;
1930
1967
  border-radius: 2px !important;
1931
1968
  height: 132px !important;
1969
+ margin-right: 20px;
1932
1970
  margin-top: 8px;
1933
1971
  position: relative;
1934
1972
  float: left;
1935
- width: 343px !important;
1973
+ width: 100%;
1974
+ }
1975
+
1976
+ .e-de-dlg-spellcheck-listview.e-de-rtl {
1977
+ float: right;
1936
1978
  }
1937
1979
 
1938
1980
  .e-de-spellcheck-error-container {
1939
- height: 140px;
1981
+ height: 150px;
1940
1982
  margin-bottom: 25px;
1983
+ display: -ms-flexbox;
1984
+ display: flex;
1941
1985
  }
1942
1986
 
1943
1987
  .e-de-spellcheck-suggestion-container {
1944
- height: 140px;
1988
+ height: 150px;
1989
+ margin-bottom: 25px;
1990
+ display: -ms-flexbox;
1991
+ display: flex;
1945
1992
  }
1946
1993
 
1947
1994
  .e-dlg-spellcheck-listitem {
@@ -1951,13 +1998,17 @@ label[for*=_wholeWord_e-de-rtl] {
1951
1998
  .e-de-spellcheck-btncontainer {
1952
1999
  margin-top: 8px;
1953
2000
  position: relative;
1954
- width: 154px;
2001
+ width: 100%;
1955
2002
  float: right;
1956
2003
  }
1957
2004
 
2005
+ .e-de-spellcheck-btncontainer.e-de-rtl {
2006
+ float: left;
2007
+ }
2008
+
1958
2009
  .e-de-spellcheck-btn {
1959
2010
  margin-bottom: 8px;
1960
- width: 154px;
2011
+ width: 100%;
1961
2012
  }
1962
2013
 
1963
2014
  .e-de-dlg-spellchecker-subheader {
@@ -1984,7 +2035,6 @@ label[for*=_wholeWord_e-de-rtl] {
1984
2035
  }
1985
2036
 
1986
2037
  .e-de-table-border-shading-dlg {
1987
- height: 415px;
1988
2038
  width: 450px;
1989
2039
  }
1990
2040
 
@@ -2141,7 +2191,7 @@ label[for*=_wholeWord_e-de-rtl] {
2141
2191
  .e-de-table-border-bottomcenter-alignment,
2142
2192
  .e-de-table-border-bottomright-alignment {
2143
2193
  left: 48%;
2144
- position: absolute;
2194
+ position: relative;
2145
2195
  top: 48%;
2146
2196
  transform: translate(-50%, -50%);
2147
2197
  }
@@ -2298,8 +2348,7 @@ label[for*=_wholeWord_e-de-rtl] {
2298
2348
 
2299
2349
  .e-de-op-replace-messagediv {
2300
2350
  color: #9e9e9e;
2301
- position: absolute;
2302
- top: 144px;
2351
+ top: auto;
2303
2352
  }
2304
2353
 
2305
2354
  .e-de-font-content-label .e-label,
@@ -2391,16 +2440,6 @@ label[for*=_wholeWord_e-de-rtl] {
2391
2440
  margin-right: 40px;
2392
2441
  }
2393
2442
 
2394
- .e-de-table-ppty-dlg-left-indent-container {
2395
- bottom: 0;
2396
- left: 69px;
2397
- position: relative;
2398
- }
2399
-
2400
- .e-de-table-ppty-dlg-left-indent-container.e-de-rtl {
2401
- right: 69px;
2402
- }
2403
-
2404
2443
  .e-de-table-ppty-dlg-row-height-label {
2405
2444
  float: right;
2406
2445
  margin-right: 161px;
@@ -2506,10 +2545,6 @@ label[for*=_wholeWord_e-de-rtl] {
2506
2545
  margin-right: 36px;
2507
2546
  }
2508
2547
 
2509
- .e-de-toc-dlg-build-table {
2510
- margin-top: 30px;
2511
- }
2512
-
2513
2548
  .e-de-toc-table-div .e-de-toc-dlg-toc-level {
2514
2549
  height: 24px;
2515
2550
  margin-left: 36px;
@@ -2520,7 +2555,8 @@ label[for*=_wholeWord_e-de-rtl] {
2520
2555
  border: 1px solid #808080;
2521
2556
  border-radius: 4px;
2522
2557
  margin-top: 15px;
2523
- width: 213px;
2558
+ width: 100%;
2559
+ height: 200px;
2524
2560
  }
2525
2561
 
2526
2562
  .e-de-toc-dlg-sub-level-heading {
@@ -2530,7 +2566,7 @@ label[for*=_wholeWord_e-de-rtl] {
2530
2566
  .e-de-toc-table-div {
2531
2567
  height: 163px;
2532
2568
  overflow-y: scroll;
2533
- width: 211px;
2569
+ width: 100%;
2534
2570
  }
2535
2571
 
2536
2572
  .e-de-toc-dlg-style-input {
@@ -2676,15 +2712,6 @@ label[for*=_wholeWord_e-de-rtl] {
2676
2712
  padding: 10px 4px 5px 10px;
2677
2713
  }
2678
2714
 
2679
- .e-de-table-border-fill.e-de-rtl {
2680
- margin-left: 15px;
2681
- }
2682
-
2683
- .e-de-table-border-fill:not(.e-de-rtl) {
2684
- margin-right: 15px;
2685
- margin-top: 5px;
2686
- }
2687
-
2688
2715
  .e-de-table-ppty-dlg-tabs {
2689
2716
  height: 320px;
2690
2717
  position: relative;
@@ -2720,7 +2747,6 @@ label[for*=_wholeWord_e-de-rtl] {
2720
2747
  .e-de-tbl-rtl-btn-div {
2721
2748
  font-size: 12px;
2722
2749
  margin-right: 14px;
2723
- width: 140px;
2724
2750
  }
2725
2751
 
2726
2752
  .e-de-tbl-rtl-btn-div.e-de-rtl {
@@ -2730,7 +2756,6 @@ label[for*=_wholeWord_e-de-rtl] {
2730
2756
 
2731
2757
  .e-de-tbl-ltr-btn-div {
2732
2758
  font-size: 12px;
2733
- width: 140px;
2734
2759
  }
2735
2760
 
2736
2761
  .e-de-disabledbutton {
@@ -2762,11 +2787,11 @@ label[for*=_wholeWord_e-de-rtl] {
2762
2787
  width: 72px;
2763
2788
  }
2764
2789
  .e-bigger .e-de-toc-label {
2765
- margin-left: 40px;
2790
+ margin-left: 0px;
2766
2791
  }
2767
2792
  .e-bigger .e-de-toc-label-rtl {
2768
2793
  margin-left: 0px;
2769
- margin-right: 40px;
2794
+ margin-right: 0px;
2770
2795
  }
2771
2796
  .e-bigger .e-de-outline-rtl {
2772
2797
  width: 173px;
@@ -3058,34 +3083,26 @@ label[for*=_wholeWord_e-de-rtl] {
3058
3083
  }
3059
3084
 
3060
3085
  .e-btn.e-outline.e-de-track-accept-button {
3061
- border-color: #4d841e;
3062
- background-color: transparent;
3063
- color: #4d841e;
3086
+ min-width: 66px;
3064
3087
  padding: 5px 6px;
3065
3088
  text-transform: initial;
3066
3089
  }
3067
3090
 
3068
3091
  .e-btn.e-outline.e-de-track-accept-button:hover {
3069
- border-color: transparent;
3070
- background-color: #4d841e;
3071
- color: #fff;
3092
+ min-width: 66px;
3072
3093
  padding: 5px 6px;
3073
3094
  text-transform: initial;
3074
3095
  }
3075
3096
 
3076
3097
  .e-btn.e-outline.e-de-track-reject-button {
3077
- border-color: #d74113;
3078
- background-color: transparent;
3079
- color: #d74113;
3098
+ min-width: 64px;
3080
3099
  padding: 5px 6px;
3081
3100
  margin-left: 8px;
3082
3101
  text-transform: initial;
3083
3102
  }
3084
3103
 
3085
3104
  .e-btn.e-outline.e-de-track-reject-button:hover {
3086
- border-color: transparent;
3087
- background-color: #d74113;
3088
- color: #fff;
3105
+ min-width: 64px;
3089
3106
  padding: 5px 6px;
3090
3107
  margin-left: 8px;
3091
3108
  text-transform: initial;
@@ -3163,13 +3180,13 @@ label[for*=_wholeWord_e-de-rtl] {
3163
3180
  .e-de-track-chng-table {
3164
3181
  border-collapse: collapse;
3165
3182
  border-spacing: 0px;
3166
- height: 20px;
3167
3183
  opacity: 70%;
3168
3184
  width: 100%;
3169
3185
  }
3170
3186
 
3171
3187
  .e-de-tc-tble-cell {
3172
3188
  border: 1px solid;
3189
+ height: 20px;
3173
3190
  }
3174
3191
 
3175
3192
  .e-de-tc-shrink-img {
@@ -3301,7 +3318,7 @@ label[for*=_wholeWord_e-de-rtl] {
3301
3318
 
3302
3319
  .e-de-lock-mark {
3303
3320
  cursor: default;
3304
- color: #000;
3321
+ color: #9e9e9e;
3305
3322
  font-size: 13px;
3306
3323
  height: 13px;
3307
3324
  pointer-events: all;
@@ -3310,7 +3327,7 @@ label[for*=_wholeWord_e-de-rtl] {
3310
3327
 
3311
3328
  .e-de-cmt-mark {
3312
3329
  cursor: default;
3313
- color: #000;
3330
+ color: #9e9e9e;
3314
3331
  font-size: 13px;
3315
3332
  height: 13px;
3316
3333
  pointer-events: all;
@@ -3453,10 +3470,100 @@ label[for*=_wholeWord_e-de-rtl] {
3453
3470
  margin-top: 3px;
3454
3471
  }
3455
3472
 
3473
+ .e-de-table-dialog-row-height {
3474
+ padding-top: 16px;
3475
+ }
3476
+
3477
+ .e-de-tablecell-dialog-alignment-icon {
3478
+ width: 54px;
3479
+ height: 54px;
3480
+ margin: 2px;
3481
+ }
3482
+
3483
+ .e-de-table-dia-indent-from-left {
3484
+ right: 45px;
3485
+ }
3486
+
3487
+ .e-de-table-dia-align-div {
3488
+ border: 1px solid #ddd;
3489
+ display: inline-block;
3490
+ height: 52px;
3491
+ margin-right: 10px;
3492
+ width: 52px;
3493
+ }
3494
+
3495
+ .e-de-table-dialog-alignment-icon {
3496
+ margin: 2px;
3497
+ height: 46px;
3498
+ }
3499
+
3500
+ .e-de-table-border-setting-genral {
3501
+ margin-right: 10px;
3502
+ }
3503
+
3504
+ .e-de-table-border-clr-left-container {
3505
+ padding-right: 19px;
3506
+ }
3507
+
3508
+ .e-de-table-border-clr-heading {
3509
+ font-size: 14px;
3510
+ font-weight: normal;
3511
+ padding-bottom: 6px;
3512
+ }
3513
+
3514
+ .e-de-table-border-icon-container {
3515
+ margin-top: 4px;
3516
+ margin-right: 4px;
3517
+ }
3518
+
3519
+ .e-de-table-border-preview-container {
3520
+ padding-left: 66px;
3521
+ }
3522
+
3523
+ .e-de-table-dlg-alignment-heading {
3524
+ color: #9e9e9e;
3525
+ display: block;
3526
+ font-size: 14px;
3527
+ font-weight: 700;
3528
+ margin-bottom: 4px;
3529
+ }
3530
+
3456
3531
  .e-rtl .e-de-cmt-author-name {
3457
3532
  padding-left: 0%;
3458
3533
  padding-right: 8px;
3459
3534
  }
3535
+ .e-rtl .e-de-ok-button {
3536
+ margin-right: 0;
3537
+ margin-left: 10px;
3538
+ }
3539
+ .e-rtl .e-de-table-dia-align-div.e-de-rtl {
3540
+ margin-left: 10px;
3541
+ margin-right: 0;
3542
+ }
3543
+ .e-rtl .e-de-table-border-clr-left-container {
3544
+ padding-right: 0;
3545
+ padding-left: 19px;
3546
+ }
3547
+ .e-rtl .e-de-table-border-preview-container {
3548
+ padding-right: 66px;
3549
+ padding-left: 0;
3550
+ }
3551
+ .e-rtl .e-de-table-border-setting-genral {
3552
+ margin-right: 0;
3553
+ margin-left: 10px;
3554
+ }
3555
+ .e-rtl .e-de-table-border-icon-container {
3556
+ margin-right: 0;
3557
+ margin-left: 4px;
3558
+ }
3559
+ .e-rtl .e-de-table-border-preview {
3560
+ width: 23px;
3561
+ }
3562
+ .e-rtl .e-de-table-setting-labels-heading {
3563
+ margin-left: 0;
3564
+ margin-right: 10px;
3565
+ }
3566
+
3460
3567
  .e-bigger .e-de-cmt-author-name {
3461
3568
  padding-left: 8px;
3462
3569
  }
@@ -3709,6 +3816,10 @@ label[for*=_wholeWord_e-de-rtl] {
3709
3816
  content: "\eb5b";
3710
3817
  }
3711
3818
 
3819
+ .e-de-ctnr-borders::before {
3820
+ content: "\e93b";
3821
+ }
3822
+
3712
3823
  .e-de-ctnr-showhide::before {
3713
3824
  content: "\eb5d";
3714
3825
  font-size: 16px;
@@ -4638,7 +4749,6 @@ label[for*=_wholeWord_e-de-rtl] {
4638
4749
  }
4639
4750
 
4640
4751
  .e-de-list-header-presetmenu div span {
4641
- color: #aaa;
4642
4752
  display: inline-block;
4643
4753
  vertical-align: middle;
4644
4754
  }