@syncfusion/ej2-angular-documenteditor 21.2.10 → 22.1.34

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 (127) hide show
  1. package/README.md +45 -137
  2. package/esm2020/src/document-editor/documenteditor-all.module.mjs +4 -7
  3. package/esm2020/src/document-editor/documenteditor.component.mjs +4 -11
  4. package/esm2020/src/document-editor-container/documenteditorcontainer.component.mjs +4 -4
  5. package/esm2020/src/index.mjs +2 -2
  6. package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs +10 -20
  7. package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs.map +1 -1
  8. package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs +10 -20
  9. package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs.map +1 -1
  10. package/license +10 -0
  11. package/package.json +18 -8
  12. package/schematics/utils/lib-details.ts +2 -2
  13. package/src/document-editor/documenteditor-all.module.d.ts +0 -1
  14. package/src/document-editor/documenteditor.component.d.ts +1 -2
  15. package/src/document-editor-container/documenteditorcontainer.component.d.ts +1 -2
  16. package/src/index.d.ts +1 -1
  17. package/styles/bootstrap-dark.css +102 -37
  18. package/styles/bootstrap.css +106 -37
  19. package/styles/bootstrap4.css +110 -37
  20. package/styles/bootstrap5-dark.css +102 -37
  21. package/styles/bootstrap5.css +102 -37
  22. package/styles/document-editor/_material3-dark-definition.scss +1 -0
  23. package/styles/document-editor/_material3-definition.scss +560 -0
  24. package/styles/document-editor/_theme.scss +68 -3
  25. package/styles/document-editor/bootstrap-dark.css +6 -0
  26. package/styles/document-editor/bootstrap.css +10 -0
  27. package/styles/document-editor/bootstrap4.css +14 -0
  28. package/styles/document-editor/bootstrap5-dark.css +6 -0
  29. package/styles/document-editor/bootstrap5.css +6 -0
  30. package/styles/document-editor/fabric-dark.css +6 -0
  31. package/styles/document-editor/fabric.css +10 -0
  32. package/styles/document-editor/fluent-dark.css +6 -0
  33. package/styles/document-editor/fluent.css +6 -0
  34. package/styles/document-editor/highcontrast.css +6 -0
  35. package/styles/document-editor/icons/_material3-dark.scss +1 -0
  36. package/styles/document-editor/icons/_material3.scss +6 -6
  37. package/styles/document-editor/material-dark.css +6 -0
  38. package/styles/document-editor/material.css +6 -0
  39. package/styles/document-editor/material3-dark.css +3971 -0
  40. package/styles/document-editor/material3-dark.scss +5 -0
  41. package/styles/document-editor/material3.css +4027 -0
  42. package/styles/document-editor/material3.scss +5 -0
  43. package/styles/document-editor/tailwind-dark.css +6 -0
  44. package/styles/document-editor/tailwind.css +6 -0
  45. package/styles/document-editor-container/_bootstrap-dark-definition.scss +1 -0
  46. package/styles/document-editor-container/_bootstrap-definition.scss +1 -0
  47. package/styles/document-editor-container/_bootstrap4-definition.scss +1 -0
  48. package/styles/document-editor-container/_bootstrap5-definition.scss +1 -0
  49. package/styles/document-editor-container/_fabric-dark-definition.scss +1 -0
  50. package/styles/document-editor-container/_fabric-definition.scss +1 -0
  51. package/styles/document-editor-container/_fluent-definition.scss +1 -0
  52. package/styles/document-editor-container/_fusionnew-definition.scss +1 -0
  53. package/styles/document-editor-container/_highcontrast-definition.scss +1 -0
  54. package/styles/document-editor-container/_highcontrast-light-definition.scss +1 -0
  55. package/styles/document-editor-container/_material-dark-definition.scss +2 -1
  56. package/styles/document-editor-container/_material-definition.scss +1 -0
  57. package/styles/document-editor-container/_material3-dark-definition.scss +1 -0
  58. package/styles/document-editor-container/_material3-definition.scss +163 -0
  59. package/styles/document-editor-container/_tailwind-definition.scss +1 -0
  60. package/styles/document-editor-container/_theme.scss +271 -52
  61. package/styles/document-editor-container/bootstrap-dark.css +96 -37
  62. package/styles/document-editor-container/bootstrap.css +96 -37
  63. package/styles/document-editor-container/bootstrap4.css +96 -37
  64. package/styles/document-editor-container/bootstrap5-dark.css +96 -37
  65. package/styles/document-editor-container/bootstrap5.css +96 -37
  66. package/styles/document-editor-container/fabric-dark.css +96 -37
  67. package/styles/document-editor-container/fabric.css +96 -37
  68. package/styles/document-editor-container/fluent-dark.css +96 -37
  69. package/styles/document-editor-container/fluent.css +96 -37
  70. package/styles/document-editor-container/highcontrast-light.css +96 -37
  71. package/styles/document-editor-container/highcontrast.css +96 -37
  72. package/styles/document-editor-container/icons/_bootstrap-dark.scss +15 -0
  73. package/styles/document-editor-container/icons/_bootstrap.scss +15 -0
  74. package/styles/document-editor-container/icons/_bootstrap4.scss +15 -0
  75. package/styles/document-editor-container/icons/_bootstrap5.scss +15 -0
  76. package/styles/document-editor-container/icons/_fabric-dark.scss +15 -0
  77. package/styles/document-editor-container/icons/_fabric.scss +15 -0
  78. package/styles/document-editor-container/icons/_fluent.scss +15 -0
  79. package/styles/document-editor-container/icons/_fusionnew.scss +15 -0
  80. package/styles/document-editor-container/icons/_highcontrast-light.scss +15 -0
  81. package/styles/document-editor-container/icons/_highcontrast.scss +15 -0
  82. package/styles/document-editor-container/icons/_material-dark.scss +15 -0
  83. package/styles/document-editor-container/icons/_material.scss +15 -0
  84. package/styles/document-editor-container/icons/_material3-dark.scss +1 -0
  85. package/styles/document-editor-container/icons/_material3.scss +29 -15
  86. package/styles/document-editor-container/icons/_tailwind-dark.scss +15 -0
  87. package/styles/document-editor-container/icons/_tailwind.scss +15 -0
  88. package/styles/document-editor-container/material-dark.css +101 -42
  89. package/styles/document-editor-container/material.css +97 -37
  90. package/styles/document-editor-container/material3-dark.css +2178 -0
  91. package/styles/document-editor-container/material3-dark.scss +6 -0
  92. package/styles/document-editor-container/material3.css +2234 -0
  93. package/styles/document-editor-container/material3.scss +6 -0
  94. package/styles/document-editor-container/tailwind-dark.css +95 -36
  95. package/styles/document-editor-container/tailwind.css +95 -36
  96. package/styles/fabric-dark.css +102 -37
  97. package/styles/fabric.css +106 -37
  98. package/styles/fluent-dark.css +102 -37
  99. package/styles/fluent.css +102 -37
  100. package/styles/highcontrast-light.css +96 -37
  101. package/styles/highcontrast.css +102 -37
  102. package/styles/material-dark.css +107 -42
  103. package/styles/material.css +103 -37
  104. package/styles/material3-dark.css +6094 -0
  105. package/styles/material3-dark.scss +4 -0
  106. package/styles/material3.css +6150 -0
  107. package/styles/material3.scss +4 -0
  108. package/styles/tailwind-dark.css +101 -36
  109. package/styles/tailwind.css +101 -36
  110. package/schematics/collection.json +0 -15
  111. package/schematics/generators/documenteditorcontainer-default/index.d.ts +0 -3
  112. package/schematics/generators/documenteditorcontainer-default/index.js +0 -8
  113. package/schematics/generators/documenteditorcontainer-default/sample-details.d.ts +0 -5
  114. package/schematics/generators/documenteditorcontainer-default/sample-details.js +0 -7
  115. package/schematics/generators/documenteditorcontainer-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -3
  116. package/schematics/generators/documenteditorcontainer-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -8
  117. package/schematics/generators/documenteditorcontainer-default/schema.d.ts +0 -3
  118. package/schematics/generators/documenteditorcontainer-default/schema.js +0 -2
  119. package/schematics/generators/documenteditorcontainer-default/schema.json +0 -125
  120. package/schematics/ng-add/index.d.ts +0 -3
  121. package/schematics/ng-add/index.js +0 -9
  122. package/schematics/ng-add/schema.d.ts +0 -13
  123. package/schematics/ng-add/schema.js +0 -2
  124. package/schematics/ng-add/schema.json +0 -34
  125. package/schematics/tsconfig.json +0 -25
  126. package/schematics/utils/lib-details.d.ts +0 -4
  127. package/schematics/utils/lib-details.js +0 -6
@@ -0,0 +1,2178 @@
1
+ @import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
2
+ :root {
3
+ --color-sf-black: 0, 0, 0;
4
+ --color-sf-white: 255, 255, 255;
5
+ --color-sf-primary: 208, 188, 255;
6
+ --color-sf-primary-container: 79, 55, 139;
7
+ --color-sf-secondary: 204, 194, 220;
8
+ --color-sf-secondary-container: 74, 68, 88;
9
+ --color-sf-tertiary: 239, 184, 200;
10
+ --color-sf-tertiary-container: 99, 59, 72;
11
+ --color-sf-surface: 28, 27, 31;
12
+ --color-sf-surface-variant: 73, 69, 79;
13
+ --color-sf-background: var(--color-sf-surface);
14
+ --color-sf-on-primary: 55, 30, 115;
15
+ --color-sf-on-primary-container: 234, 221, 255;
16
+ --color-sf-on-secondary: 51, 45, 65;
17
+ --color-sf-on-secondary-container: 232, 222, 248;
18
+ --color-sf-on-tertiary: 73, 37, 50;
19
+ --color-sf-on-tertiary-containe: 255, 216, 228;
20
+ --color-sf-on-surface: 230, 225, 229;
21
+ --color-sf-on-surface-variant: 202, 196, 208;
22
+ --color-sf-on-background: 230, 225, 229;
23
+ --color-sf-outline: 147, 143, 153;
24
+ --color-sf-outline-variant: 68, 71, 70;
25
+ --color-sf-shadow: 0, 0, 0;
26
+ --color-sf-surface-tint-color: 208, 188, 255;
27
+ --color-sf-inverse-surface: 230, 225, 229;
28
+ --color-sf-inverse-on-surface: 49, 48, 51;
29
+ --color-sf-inverse-primary: 103, 80, 164;
30
+ --color-sf-scrim: 0, 0, 0;
31
+ --color-sf-error: 242, 184, 181;
32
+ --color-sf-error-container: 140, 29, 24;
33
+ --color-sf-on-error: 96, 20, 16;
34
+ --color-sf-on-error-container: 249, 222, 220;
35
+ --color-sf-success: 83, 202, 23;
36
+ --color-sf-success-container: 22, 62, 2;
37
+ --color-sf-on-success: 13, 39, 0;
38
+ --color-sf-on-success-container: 183, 250, 150;
39
+ --color-sf-info: 71, 172, 251;
40
+ --color-sf-info-container: 0, 67, 120;
41
+ --color-sf-on-info: 0, 51, 91;
42
+ --color-sf-on-info-container: 173, 219, 255;
43
+ --color-sf-warning: 245, 180, 130;
44
+ --color-sf-warning-container: 123, 65, 0;
45
+ --color-sf-on-warning: 99, 52, 0;
46
+ --color-sf-on-warning-container: 255, 220, 193;
47
+ --color-sf-spreadsheet-gridline: 231, 224, 236;
48
+ --color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
49
+ --color-sf-success-text: 0, 0, 0;
50
+ --color-sf-warning-text: 0, 0, 0;
51
+ --color-sf-info-text: 0, 0, 0;
52
+ --color-sf-danger-text: 0, 0, 0;
53
+ --color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
54
+ --color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
55
+ }
56
+
57
+ .e-de-ctnr-close::before {
58
+ color: rgba(var(--color-sf-on-surface-variant));
59
+ content: "\e7e7";
60
+ font-size: 16px;
61
+ }
62
+
63
+ .e-de-ctnr-linespacing::before {
64
+ content: "\e78d";
65
+ }
66
+
67
+ .e-de-ctnr-undo::before {
68
+ content: "\e713";
69
+ }
70
+
71
+ .e-de-ctnr-find::before {
72
+ content: "\e754";
73
+ }
74
+
75
+ .e-de-ctnr-lock::before {
76
+ content: "\e7ff";
77
+ }
78
+
79
+ .e-de-ctnr-italic::before {
80
+ content: "\e75a";
81
+ }
82
+
83
+ .e-de-selected-spellcheck-item::before {
84
+ color: var(--color-sf-on-surface-variant);
85
+ content: "\e774";
86
+ font-family: "e-icons";
87
+ font-size: 10px;
88
+ }
89
+
90
+ .e-de-selected-underline-item::before {
91
+ color: var(--color-sf-on-surface-variant);
92
+ content: "\e774";
93
+ font-family: "e-icons";
94
+ font-size: 10px;
95
+ }
96
+
97
+ .e-de-ctnr-link::before {
98
+ content: "\e757";
99
+ }
100
+
101
+ .e-de-ctnr-table::before {
102
+ content: "\e7d1";
103
+ }
104
+
105
+ .e-de-ctnr-download::before {
106
+ color: var(--color-sf-on-surface-variant);
107
+ content: "\e7a1";
108
+ }
109
+
110
+ .e-de-ctnr-justify::before {
111
+ content: "\e721";
112
+ }
113
+
114
+ .e-de-ctnr-tableofcontent::before {
115
+ content: "\e73d";
116
+ }
117
+
118
+ .e-de-ctnr-pagenumber::before {
119
+ content: "\e77d";
120
+ }
121
+
122
+ .e-de-ctnr-highlight::before {
123
+ content: "\e739";
124
+ }
125
+
126
+ .e-de-ctnr-new::before {
127
+ content: "\e805";
128
+ }
129
+
130
+ .e-de-ctnr-paste::before {
131
+ content: "\e70b";
132
+ }
133
+
134
+ .e-de-ctnr-bold::before {
135
+ content: "\e737";
136
+ }
137
+
138
+ .e-de-ctnr-subscript::before {
139
+ content: "\e80a";
140
+ }
141
+
142
+ .e-de-ctnr-aligncenter::before {
143
+ content: "\e813";
144
+ }
145
+
146
+ .e-de-ctnr-fontcolor::before {
147
+ content: "\e79f";
148
+ }
149
+
150
+ .e-de-ctnr-change-case::before {
151
+ content: "\e7f5";
152
+ }
153
+
154
+ .e-de-ctnr-pagesetup::before {
155
+ content: "\e794";
156
+ }
157
+
158
+ .e-de-ctnr-strokestyle::before {
159
+ content: "\eb62";
160
+ }
161
+
162
+ .e-de-ctnr-strikethrough::before {
163
+ content: "\e758";
164
+ }
165
+
166
+ .e-de-ctnr-image::before {
167
+ content: "\e786";
168
+ }
169
+
170
+ .e-de-ctnr-redo::before {
171
+ content: "\e755";
172
+ }
173
+
174
+ .e-de-ctnr-bookmark::before {
175
+ content: "\e750";
176
+ }
177
+
178
+ .e-de-ctnr-increaseindent::before {
179
+ content: "\e810";
180
+ }
181
+
182
+ .e-de-ctnr-header::before {
183
+ content: "\e704";
184
+ }
185
+
186
+ .e-de-ctnr-backgroundcolor::before {
187
+ content: "\eb6b";
188
+ }
189
+
190
+ .e-de-ctnr-open::before {
191
+ content: "\e760";
192
+ }
193
+
194
+ .e-de-ctnr-underline::before {
195
+ content: "\e82f";
196
+ }
197
+
198
+ .e-de-ctnr-superscript::before {
199
+ content: "\e7a7";
200
+ }
201
+
202
+ .e-de-ctnr-alignleft::before {
203
+ content: "\e7b8";
204
+ }
205
+
206
+ .e-de-ctnr-numbering::before {
207
+ content: "\e7cb";
208
+ }
209
+
210
+ .e-de-ctnr-bullets::before {
211
+ content: "\e77e";
212
+ }
213
+
214
+ .e-de-ctnr-borders::before {
215
+ content: "\e893";
216
+ }
217
+
218
+ .e-de-ctnr-decreaseindent::before {
219
+ content: "\e72a";
220
+ }
221
+
222
+ .e-de-ctnr-showhide::before {
223
+ content: "\e71a";
224
+ }
225
+
226
+ .e-de-ctnr-print::before {
227
+ content: "\e75d";
228
+ }
229
+
230
+ .e-de-ctnr-alignright::before {
231
+ content: "\e719";
232
+ }
233
+
234
+ .e-de-ctnr-footer::before {
235
+ content: "\e7bb";
236
+ }
237
+
238
+ .e-de-ctnr-clearall::before {
239
+ content: "\e7cc";
240
+ }
241
+
242
+ .e-de-ctnr-outsideborder::before {
243
+ content: "\e7ad";
244
+ }
245
+
246
+ .e-de-ctnr-allborders::before {
247
+ content: "\e7d1";
248
+ }
249
+
250
+ .e-de-ctnr-insideborders::before {
251
+ content: "\e78f";
252
+ }
253
+
254
+ .e-de-ctnr-leftborders::before {
255
+ content: "\e806";
256
+ }
257
+
258
+ .e-de-ctnr-insideverticalborder::before {
259
+ content: "\e792";
260
+ }
261
+
262
+ .e-de-ctnr-rightborder::before {
263
+ content: "\e7ab";
264
+ }
265
+
266
+ .e-de-ctnr-topborder::before {
267
+ content: "\e7e0";
268
+ }
269
+
270
+ .e-de-ctnr-insidehorizondalborder::before {
271
+ content: "\e83b";
272
+ }
273
+
274
+ .e-de-ctnr-bottomborder::before {
275
+ content: "\e766";
276
+ }
277
+
278
+ .e-de-ctnr-strokesize::before {
279
+ content: "\e7bf";
280
+ }
281
+
282
+ .e-de-ctnr-highlightcolor::before {
283
+ content: "\e739";
284
+ }
285
+
286
+ .e-de-ctnr-mergecell::before {
287
+ content: "\e71e";
288
+ }
289
+
290
+ .e-de-ctnr-insertleft::before {
291
+ content: "\e78b";
292
+ }
293
+
294
+ .e-de-ctnr-insertright::before {
295
+ content: "\e70e";
296
+ }
297
+
298
+ .e-de-ctnr-insertabove::before {
299
+ content: "\e836";
300
+ }
301
+
302
+ .e-de-ctnr-insertbelow::before {
303
+ content: "\e801";
304
+ }
305
+
306
+ .e-de-ctnr-deleterows::before {
307
+ content: "\e7f2";
308
+ }
309
+
310
+ .e-de-ctnr-deletecolumns::before {
311
+ content: "\e714";
312
+ }
313
+
314
+ .e-de-ctnr-aligntop::before {
315
+ content: "\e707";
316
+ }
317
+
318
+ .e-de-ctnr-alignbottom::before {
319
+ content: "\e7a0";
320
+ }
321
+
322
+ .e-de-ctnr-aligncenter-table::before {
323
+ content: "\e74f";
324
+ }
325
+
326
+ .e-de-ctnr-cellbg-clr-picker::before {
327
+ content: "\e783";
328
+ }
329
+
330
+ .e-de-ctnr-bullet-none::before {
331
+ color: var(--color-sf-on-surface-variant);
332
+ content: "\e7f3";
333
+ font-size: 20px;
334
+ line-height: 28px;
335
+ }
336
+
337
+ .e-de-ctnr-bullet-dot::before {
338
+ color: var(--color-sf-on-surface-variant);
339
+ content: "\e747";
340
+ font-size: 8px;
341
+ line-height: 28px;
342
+ }
343
+
344
+ .e-de-ctnr-bullet-circle::before {
345
+ color: var(--color-sf-on-surface-variant);
346
+ content: "\e7d0";
347
+ font-size: 8px;
348
+ line-height: 28px;
349
+ }
350
+
351
+ .e-de-ctnr-bullet-square::before {
352
+ color: var(--color-sf-on-surface-variant);
353
+ content: "\e7be";
354
+ font-size: 8px;
355
+ line-height: 28px;
356
+ }
357
+
358
+ .e-de-ctnr-bullet-flower::before {
359
+ color: var(--color-sf-on-surface-variant);
360
+ content: "\e79b";
361
+ line-height: 28px;
362
+ }
363
+
364
+ .e-de-ctnr-bullet-arrow::before {
365
+ color: var(--color-sf-on-surface-variant);
366
+ content: "\e763";
367
+ line-height: 28px;
368
+ }
369
+
370
+ .e-de-ctnr-bullet-tick::before {
371
+ color: var(--color-sf-on-surface-variant);
372
+ content: "\e7fc";
373
+ line-height: 28px;
374
+ }
375
+
376
+ .e-de-selected-item::before {
377
+ color: var(--color-sf-on-surface-variant);
378
+ content: "\e774";
379
+ }
380
+
381
+ .e-de-ctnr-break::before {
382
+ content: "\e7bc";
383
+ }
384
+
385
+ .e-de-ctnr-page-break::before {
386
+ content: "\e742";
387
+ }
388
+
389
+ .e-de-ctnr-section-break::before {
390
+ content: "\e762";
391
+ }
392
+
393
+ .e-de-ctnr-upload::before {
394
+ color: var(--color-sf-on-surface-variant);
395
+ content: "\e712";
396
+ }
397
+
398
+ .e-de-flip {
399
+ transform: scaleX(-1);
400
+ }
401
+
402
+ .e-de-cnt-cmt-add::before {
403
+ content: "\e82c";
404
+ }
405
+
406
+ .e-de-cnt-track::before {
407
+ content: "\e80b";
408
+ }
409
+
410
+ .e-de-printlayout::before {
411
+ content: "\e73a";
412
+ }
413
+
414
+ .e-de-weblayout::before {
415
+ content: "\e7d3";
416
+ }
417
+
418
+ .e-de-textform::before {
419
+ color: var(--color-sf-on-surface-variant);
420
+ content: "\e830";
421
+ font-family: "e-icons";
422
+ }
423
+
424
+ .e-de-formproperties::before {
425
+ color: var(--color-sf-on-surface-variant);
426
+ content: "\e83e";
427
+ font-family: "e-icons";
428
+ }
429
+
430
+ .e-de-clearform::before {
431
+ color: var(--color-sf-on-surface-variant);
432
+ content: "\e7f8";
433
+ font-family: "e-icons";
434
+ }
435
+
436
+ .e-de-dropdownform::before {
437
+ color: var(--color-sf-on-surface-variant);
438
+ content: "\e7a6";
439
+ font-family: "e-icons";
440
+ }
441
+
442
+ .e-de-formfield::before {
443
+ content: "\e7cd";
444
+ font-family: "e-icons";
445
+ }
446
+
447
+ .e-de-checkbox-form::before {
448
+ color: var(--color-sf-on-surface-variant);
449
+ content: "\e7e4";
450
+ font-family: "e-icons";
451
+ }
452
+
453
+ .e-de-arrow-up::before {
454
+ content: "\e776";
455
+ font-family: "e-icons";
456
+ }
457
+
458
+ .e-de-arrow-down::before {
459
+ content: "\e729";
460
+ font-family: "e-icons";
461
+ }
462
+
463
+ .e-de-update-field::before {
464
+ content: "\e828";
465
+ font-family: "e-icons";
466
+ }
467
+
468
+ .e-de-footnote::before {
469
+ content: "\e7af";
470
+ font-family: "e-icons";
471
+ }
472
+
473
+ .e-de-endnote::before {
474
+ content: "\e7af";
475
+ font-family: "e-icons";
476
+ }
477
+
478
+ .e-de-e-paragraph-mark::before {
479
+ content: "\e844";
480
+ font-family: "e-icons";
481
+ }
482
+
483
+ .e-de-e-paragraph-style-mark::before {
484
+ content: "\e844";
485
+ font-family: "e-icons";
486
+ }
487
+
488
+ .e-de-e-character-style-mark::before {
489
+ content: "\e8bf";
490
+ font-family: "e-icons";
491
+ }
492
+
493
+ .e-de-e-linked-style-mark::before {
494
+ content: "\e8c0";
495
+ font-family: "e-icons";
496
+ }
497
+
498
+ .e-de-ctnr-columns::before {
499
+ content: "\e8b4";
500
+ font-family: "e-icons";
501
+ }
502
+
503
+ .e-de-ctnr-page-size::before {
504
+ content: "\e89a";
505
+ font-family: "e-icons";
506
+ }
507
+
508
+ .e-de-ctnr-page-break-column::before {
509
+ content: "\e8b4";
510
+ font-family: "e-icons";
511
+ }
512
+
513
+ .e-de-ctnr-page-break-text-wrapping::before {
514
+ content: "\e972";
515
+ font-family: "e-icons";
516
+ }
517
+
518
+ .e-de-ctnr-section-break-continuous::before {
519
+ content: "\e8b5";
520
+ font-family: "e-icons";
521
+ }
522
+
523
+ .e-de-ctnr-section-break-even-page::before {
524
+ content: "\e8b2";
525
+ font-family: "e-icons";
526
+ }
527
+
528
+ .e-de-ctnr-section-break-odd-page::before {
529
+ content: "\e8b3";
530
+ font-family: "e-icons";
531
+ }
532
+
533
+ .e-de-ctnr-columns-one::before {
534
+ content: "\e8b9";
535
+ font-family: "e-icons";
536
+ font-size: 60px;
537
+ }
538
+
539
+ .e-de-ctnr-columns-two::before {
540
+ content: "\e8ba";
541
+ font-family: "e-icons";
542
+ font-size: 60px;
543
+ }
544
+
545
+ .e-de-ctnr-columns-three::before {
546
+ content: "\e8bb";
547
+ font-family: "e-icons";
548
+ font-size: 60px;
549
+ }
550
+
551
+ .e-de-ctnr-columns-right::before {
552
+ content: "\e8b7";
553
+ font-family: "e-icons";
554
+ font-size: 60px;
555
+ }
556
+
557
+ .e-de-ctnr-columns-left::before {
558
+ content: "\e8b8";
559
+ font-family: "e-icons";
560
+ font-size: 60px;
561
+ }
562
+
563
+ .e-de-toolbar {
564
+ height: 100%;
565
+ }
566
+
567
+ .e-de-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text .e-de-text-wrap {
568
+ height: 0;
569
+ line-height: 0;
570
+ }
571
+
572
+ .e-de-ctnr-file-picker {
573
+ left: -110em;
574
+ position: fixed;
575
+ }
576
+
577
+ .e-de-ctnr-rtl {
578
+ direction: rtl;
579
+ }
580
+
581
+ .e-de-ctnr-hglt-btn {
582
+ border: 0.5px solid transparent;
583
+ display: inline-block;
584
+ height: 25px;
585
+ margin: 3px;
586
+ width: 25px;
587
+ }
588
+
589
+ .e-color-selected,
590
+ .e-de-ctnr-hglt-btn:hover {
591
+ border-color: rgba(var(--color-sf-white));
592
+ outline: rgba(var(--color-sf-black)) 0.5px solid;
593
+ }
594
+
595
+ .e-hglt-no-color {
596
+ height: 30px;
597
+ padding-top: 1px;
598
+ width: 157px;
599
+ }
600
+ .e-hglt-no-color:hover {
601
+ background-color: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
602
+ cursor: pointer;
603
+ }
604
+
605
+ .e-de-ctnr-hglt-no-color {
606
+ font-size: 12px;
607
+ font-weight: normal;
608
+ left: 40px;
609
+ padding-top: 11px;
610
+ position: absolute;
611
+ top: 100px;
612
+ }
613
+
614
+ /* stylelint-disable */
615
+ .e-de-scrollbar-hide::-webkit-scrollbar {
616
+ width: 0;
617
+ }
618
+
619
+ .e-de-scrollbar-hide {
620
+ -ms-overflow-style: none;
621
+ scrollbar-width: none;
622
+ }
623
+
624
+ /* stylelint-enable */
625
+ /* stylelint-disable */
626
+ .e-de-toolbar {
627
+ height: 100%;
628
+ }
629
+
630
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
631
+ box-shadow: none;
632
+ height: 32px;
633
+ }
634
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
635
+ box-shadow: none;
636
+ }
637
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
638
+ box-shadow: none;
639
+ }
640
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
641
+ box-shadow: none;
642
+ }
643
+
644
+ .e-de-ctnr-group-btn-middle button {
645
+ border-radius: 0px;
646
+ }
647
+
648
+ .e-de-review-pane button.e-de-close-icon {
649
+ background: transparent;
650
+ box-shadow: none;
651
+ }
652
+
653
+ .e-de-op-more-less > div:last-child label {
654
+ left: 35px;
655
+ }
656
+
657
+ .e-bigger .e-de-ctn .e-de-bzr-button {
658
+ line-height: 17px;
659
+ padding-top: 12px;
660
+ }
661
+
662
+ .e-de-ctn .e-de-bzr-button {
663
+ box-shadow: none !important;
664
+ }
665
+
666
+ .e-bigger .e-de-ctn .e-de-bzr-button {
667
+ box-shadow: none !important;
668
+ }
669
+
670
+ .e-de-char-fmt-btn-left button:not(:first-child) {
671
+ border: 1px solid transparent;
672
+ border-left: 1px solid rgba(var(--color-sf-outline-variant));
673
+ }
674
+
675
+ .e-de-ctnr-group-btn .e-de-prop-font-button {
676
+ position: relative;
677
+ border: 1px solid transparent rgba(var(--color-sf-outline-variant));
678
+ border-right-width: 1px;
679
+ }
680
+ .e-de-ctnr-group-btn .e-de-prop-font-last-button {
681
+ position: relative;
682
+ border: 1px solid transparent rgba(var(--color-sf-outline-variant));
683
+ border-left-width: 1px;
684
+ }
685
+
686
+ .e-de-ctnr-group-btn .e-de-prop-indent-button {
687
+ position: relative;
688
+ border: 1px solid transparent rgba(var(--color-sf-outline-variant));
689
+ border-right-width: 1px;
690
+ }
691
+ .e-de-ctnr-group-btn .e-de-prop-indent-last-button {
692
+ position: relative;
693
+ border: 1px solid transparent rgba(var(--color-sf-outline-variant));
694
+ border-left-width: 1px;
695
+ }
696
+
697
+ .e-de-grp-btn-ctnr .e-de-ctnr-group-btn-middle {
698
+ margin-bottom: -1px;
699
+ }
700
+ .e-de-grp-btn-ctnr .e-de-ctnr-group-btn-middle > * {
701
+ border-radius: 0px;
702
+ }
703
+
704
+ .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn-middle > * {
705
+ border-radius: 0px;
706
+ }
707
+ .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn-top > * {
708
+ border-bottom-left-radius: 0px;
709
+ border-bottom-right-radius: 0px;
710
+ }
711
+ .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn-bottom > * {
712
+ border-top-left-radius: 0px;
713
+ border-top-right-radius: 0px;
714
+ }
715
+
716
+ .de-tbl-fill-clr .e-dropdown-btn.e-btn {
717
+ box-shadow: none;
718
+ }
719
+
720
+ .e-de-prop-pane .e-de-ctnr-group-btn button,
721
+ .e-de-ctn .e-de-status-bar button {
722
+ box-shadow: none;
723
+ height: 32px;
724
+ }
725
+ .e-de-prop-pane .e-de-ctnr-group-btn button:focus,
726
+ .e-de-ctn .e-de-status-bar button:focus {
727
+ box-shadow: none;
728
+ }
729
+ .e-de-prop-pane .e-de-ctnr-group-btn button:active,
730
+ .e-de-ctn .e-de-status-bar button:active {
731
+ box-shadow: none;
732
+ }
733
+ .e-de-prop-pane .e-de-ctnr-group-btn button:hover,
734
+ .e-de-ctn .e-de-status-bar button:hover {
735
+ box-shadow: none;
736
+ }
737
+
738
+ .e-de-statusbar-pageweb {
739
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
740
+ border: 0;
741
+ box-shadow: none;
742
+ float: right;
743
+ height: 33px;
744
+ width: 33px;
745
+ }
746
+ .e-de-statusbar-pageweb:hover {
747
+ box-shadow: none;
748
+ }
749
+
750
+ .e-split-btn-wrapper.e-de-prop-splitbutton,
751
+ .e-split-btn-wrapper.e-de-btn-hghlclr,
752
+ .e-btn.de-split-button {
753
+ box-shadow: none;
754
+ }
755
+
756
+ .e-de-statusbar-pageweb .e-de-printlayout,
757
+ .e-de-statusbar-pageweb .e-de-weblayout {
758
+ font-size: 16px;
759
+ }
760
+
761
+ .e-de-statusbar-pageweb .e-de-printlayout:hover,
762
+ .e-de-statusbar-pageweb .e-de-weblayout:hover {
763
+ font-size: 16px;
764
+ }
765
+
766
+ .e-bigger .e-btn.e-de-statusbar-pageweb {
767
+ padding: 0;
768
+ }
769
+ .e-bigger .e-de-statusbar-pageweb .e-de-printlayout,
770
+ .e-bigger .e-de-statusbar-pageweb .e-de-weblayout {
771
+ font-size: 18px;
772
+ }
773
+
774
+ .e-listview .e-list-icon {
775
+ height: 24px;
776
+ width: 16px;
777
+ margin-right: 12px;
778
+ }
779
+
780
+ .e-de-listview-icon {
781
+ height: auto;
782
+ width: auto;
783
+ line-height: 22px;
784
+ margin-right: 12px;
785
+ }
786
+
787
+ .e-de-linespacing {
788
+ margin-top: 8px;
789
+ }
790
+
791
+ .e-de-statusbar-zoom {
792
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
793
+ border: 0;
794
+ color: rgba(var(--color-sf-on-secondary-container));
795
+ float: right;
796
+ font-weight: 400;
797
+ height: 33px;
798
+ }
799
+
800
+ .e-de-pagenumber-text {
801
+ border: none !important;
802
+ }
803
+
804
+ .e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group button {
805
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.11), rgba(var(--color-sf-primary), 0.11)), rgba(var(--color-sf-surface));
806
+ }
807
+
808
+ .e-de-font-clr-picker button, .e-de-prop-font-colorpicker button {
809
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.11), rgba(var(--color-sf-primary), 0.11)), rgba(var(--color-sf-surface)) !important;
810
+ }
811
+
812
+ .e-de-style-font-color-picker .e-de-style-icon-button-size button:first-child {
813
+ margin-right: 0px;
814
+ }
815
+
816
+ .e-de-ctnr-group-btn .e-btn-group button,
817
+ .e-documenteditorcontainer.e-lib .e-split-btn-wrapper button,
818
+ .e-documenteditorcontainer.e-lib .e-colorpicker-wrapper .e-split-btn-wrapper .e-split-colorpicker.e-split-btn,
819
+ .e-de-ctnr-segment button,
820
+ .e-de-char-fmt-btn-right button,
821
+ .e-de-border-size-button,
822
+ .e-de-cell-div button,
823
+ .e-de-insert-del-cell button,
824
+ .e-de-align-text button {
825
+ border-radius: 4px;
826
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.11), rgba(var(--color-sf-primary), 0.11)), rgba(var(--color-sf-surface));
827
+ }
828
+
829
+ .e-de-char-fmt-btn-right button:not(:first-child),
830
+ .e-de-char-fmt-btn-left button:not(:first-child),
831
+ .e-de-align-text button:not(:first-child) {
832
+ border-left: 1.7px solid rgba(var(--color-sf-outline-variant));
833
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.11), rgba(var(--color-sf-primary), 0.11)), rgba(var(--color-sf-surface));
834
+ }
835
+
836
+ .e-de-insert-del-cell button:not(:first-child):not(.e-rtl) {
837
+ border-left: 1.7px solid rgba(var(--color-sf-outline-variant));
838
+ }
839
+
840
+ .e-de-ctnr-segment-rtl .e-de-char-fmt-btn-left .e-de-prop-font-last-button,
841
+ .e-de-ctnr-segment-rtl .e-de-char-fmt-btn-left .e-de-prop-indent-last-button,
842
+ .e-de-ctnr-segment-rtl .e-de-char-fmt-btn-right .e-de-prop-font-last-button,
843
+ .e-de-ctnr-segment-rtl .e-de-char-fmt-btn-right .e-de-prop-indent-last-button {
844
+ border-left: 0;
845
+ }
846
+
847
+ .e-rtl .e-de-char-fmt-btn-right button:not(:last-child),
848
+ .e-rtl .e-de-char-fmt-btn-left button:not(:last-child),
849
+ .e-rtl .e-de-insert-del-cell button:not(:last-child),
850
+ .e-rtl .e-de-align-text button:not(:last-child) {
851
+ border-right: 1.7px solid rgba(var(--color-sf-outline-variant));
852
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.11), rgba(var(--color-sf-primary), 0.11)), rgba(var(--color-sf-surface));
853
+ }
854
+
855
+ .e-de-char-fmt-btn-right.e-rtl button:not(:first-child),
856
+ .e-de-char-fmt-btn-left.e-rtl button:not(:first-child),
857
+ .e-de-insert-del-cell .e-rtl button:not(:first-child),
858
+ .e-de-align-text .e-rtl button:not(:first-child) {
859
+ border-right: 1px solid rgba(var(--color-sf-outline-variant)) !important;
860
+ }
861
+
862
+ .e-de-grp-btn-ctnr .e-de-ctnr-group-btn .e-de-prop-font-button {
863
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.11), rgba(var(--color-sf-primary), 0.11)), rgba(var(--color-sf-surface));
864
+ border: 1px solid rgba(var(--color-sf-outline-variant)) !important;
865
+ }
866
+ .e-de-grp-btn-ctnr .e-de-ctnr-group-btn-top {
867
+ margin-bottom: -1px;
868
+ }
869
+
870
+ .e-de-font-clr-picker > *,
871
+ .de-split-button > div:first-child {
872
+ margin-right: 8px;
873
+ }
874
+
875
+ .e-de-pagenumber-input {
876
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.12), rgba(var(--color-sf-primary), 0.12)), rgba(var(--color-sf-surface));
877
+ border: none !important;
878
+ border-radius: 2px;
879
+ color: rgba(var(--color-sf-on-secondary-container));
880
+ padding: 0px;
881
+ text-align: center;
882
+ width: 22px;
883
+ }
884
+
885
+ .e-btn-pageweb-toggle {
886
+ background-color: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.11), rgba(var(--color-sf-primary), 0.11)), rgba(var(--color-sf-surface));
887
+ box-shadow: none;
888
+ outline: rgba(var(--color-sf-white)) 0 solid;
889
+ outline-offset: 0;
890
+ }
891
+
892
+ .e-btn-pageweb-spellcheck {
893
+ border: 0;
894
+ box-shadow: none;
895
+ float: right;
896
+ margin-left: calc(100% - 395px);
897
+ }
898
+
899
+ .e-bigger .e-btn-pageweb-spellcheck {
900
+ margin-left: calc(100% - 430px);
901
+ }
902
+
903
+ .e-de-ctn-title {
904
+ background-color: rgba(var(--color-sf-primary));
905
+ border-bottom: none !important;
906
+ color: rgba(var(--color-sf-on-primary));
907
+ font-size: 14px !important;
908
+ }
909
+ .e-de-ctn-title button {
910
+ font-size: 14px !important;
911
+ height: 36px !important;
912
+ margin: 0 !important;
913
+ }
914
+ .e-de-ctn-title button .e-btn-icon {
915
+ font-size: 16px !important;
916
+ }
917
+
918
+ .e-bigger .e-de-ctn-title {
919
+ font-size: 16px !important;
920
+ height: 40px !important;
921
+ }
922
+ .e-bigger .e-de-ctn-title button {
923
+ font-size: 16px !important;
924
+ height: auto !important;
925
+ margin: 0 !important;
926
+ }
927
+ .e-bigger .e-de-ctn-title button .e-btn-icon {
928
+ font-size: 18px !important;
929
+ }
930
+
931
+ .e-de-tool-ctnr-properties-pane {
932
+ display: -ms-flexbox;
933
+ display: flex;
934
+ height: calc(100% - 117px);
935
+ width: 100%;
936
+ }
937
+
938
+ .e-de-ctnr-properties-pane {
939
+ display: -ms-flexbox;
940
+ display: flex;
941
+ height: calc(100% - 42px);
942
+ width: 100%;
943
+ }
944
+
945
+ .e-de-statusbar-separator {
946
+ border-left: 1px solid rgba(var(--color-sf-outline-variant));
947
+ height: 16px;
948
+ margin-left: 7.5px;
949
+ margin-right: 7.5px;
950
+ margin-top: 6px;
951
+ }
952
+
953
+ .e-bigger .e-de-statusbar-separator {
954
+ border-left: 1px solid rgba(var(--color-sf-outline-variant));
955
+ height: 20px;
956
+ margin-left: 7.5px;
957
+ margin-right: 7.5px;
958
+ margin-top: 8px;
959
+ }
960
+
961
+ .e-de-statusbar-spellcheck {
962
+ border-radius: 2px;
963
+ font-weight: 400;
964
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
965
+ }
966
+
967
+ .e-de-ctn {
968
+ background-color: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
969
+ border: 1px solid rgba(var(--color-sf-outline-variant));
970
+ height: 100%;
971
+ position: relative;
972
+ width: 100%;
973
+ }
974
+
975
+ .e-bigger .e-de-statusbar-spellcheck {
976
+ border-radius: 2px;
977
+ }
978
+
979
+ .e-de-ctnr-toolbar {
980
+ display: -ms-flexbox;
981
+ display: flex;
982
+ height: 85px;
983
+ width: 100%;
984
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
985
+ }
986
+
987
+ .e-de-tlbr-wrapper .e-de-toolbar.e-toolbar,
988
+ .e-de-tlbr-wrapper .e-de-ctnr-properties-pane-btn {
989
+ border: 0;
990
+ }
991
+
992
+ .e-de-pane {
993
+ border-left: 1px solid rgba(var(--color-sf-outline-variant));
994
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
995
+ }
996
+
997
+ .e-de-pane-rtl {
998
+ border-right: 1px solid rgba(var(--color-sf-outline-variant));
999
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
1000
+ }
1001
+
1002
+ .e-de-tool-ctnr-properties-pane,
1003
+ .e-de-ctnr-properties-pane {
1004
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
1005
+ border-bottom: 1px solid rgba(var(--color-sf-outline-variant));
1006
+ border-top: 1px solid rgba(var(--color-sf-outline-variant));
1007
+ }
1008
+
1009
+ .e-de-ctnr-segment {
1010
+ margin-bottom: 8px;
1011
+ }
1012
+
1013
+ .e-de-ctnr-segment > div:first-child:not(.e-rtl),
1014
+ .e-de-ctnr-segment-list > div:last-child:not(.e-rtl),
1015
+ .e-de-ctnr-segment > button:first-child:not(.e-rtl) {
1016
+ margin-right: 12px;
1017
+ }
1018
+
1019
+ .e-de-ctnr-segment.e-de-ctnr-segment-rtl > div:first-child,
1020
+ .e-de-ctnr-segment-list.e-de-ctnr-segment-list-rtl > div:last-child,
1021
+ .e-de-ctnr-segment.e-de-ctnr-segment-rtl > button:first-child {
1022
+ margin-left: 12px;
1023
+ margin-right: 0;
1024
+ }
1025
+
1026
+ .e-de-tlbr-wrapper {
1027
+ background-color: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
1028
+ height: 85px;
1029
+ width: calc(100% - 78px);
1030
+ }
1031
+
1032
+ .e-de-ctnr-prop-label {
1033
+ color: rgba(var(--color-sf-on-secondary-container));
1034
+ display: inline-block;
1035
+ font-size: 12px;
1036
+ font-weight: 500;
1037
+ letter-spacing: 0.3px;
1038
+ margin-bottom: 8px;
1039
+ opacity: 0.87;
1040
+ }
1041
+
1042
+ .e-de-table-prop-label {
1043
+ margin-left: 12px;
1044
+ }
1045
+
1046
+ .e-de-table-prop-label.e-de-rtl {
1047
+ margin-left: 0;
1048
+ margin-right: 12px;
1049
+ }
1050
+
1051
+ .e-de-toolbar.e-toolbar {
1052
+ border-radius: 0;
1053
+ }
1054
+
1055
+ .e-de-ctnr-toolbar .e-toolbar-item.e-de-toolbar-btn-first {
1056
+ margin-left: 0;
1057
+ margin-right: 4px;
1058
+ }
1059
+
1060
+ .e-de-ctnr-toolbar.e-de-ctnr-rtl .e-toolbar-item.e-de-toolbar-btn-first {
1061
+ margin-left: 4px;
1062
+ margin-right: 0;
1063
+ }
1064
+
1065
+ .e-bigger .e-de-ctnr-toolbar .e-toolbar-item.e-de-toolbar-btn-first {
1066
+ margin-left: 0;
1067
+ margin-right: 8px;
1068
+ }
1069
+
1070
+ .e-bigger .e-de-ctnr-toolbar.e-de-ctnr-rtl .e-toolbar-item.e-de-toolbar-btn-first {
1071
+ margin-left: 8px;
1072
+ margin-right: 0;
1073
+ }
1074
+
1075
+ .e-de-ctnr-toolbar .e-toolbar-item.e-de-toolbar-btn-last {
1076
+ margin-left: 4px;
1077
+ margin-right: 0;
1078
+ }
1079
+
1080
+ .e-de-ctnr-toolbar.e-de-ctnr-rtl .e-toolbar-item.e-de-toolbar-btn-last {
1081
+ margin-left: 0;
1082
+ margin-right: 4px;
1083
+ }
1084
+
1085
+ .e-bigger .e-de-ctnr-toolbar .e-toolbar-item.e-de-toolbar-btn-last {
1086
+ margin-left: 8px;
1087
+ margin-right: 0;
1088
+ }
1089
+
1090
+ .e-bigger .e-de-ctnr-toolbar.e-de-ctnr-rtl .e-toolbar-item.e-de-toolbar-btn-last {
1091
+ margin-left: 0;
1092
+ margin-right: 8px;
1093
+ }
1094
+
1095
+ .e-de-toolbar.e-toolbar .e-toolbar-items {
1096
+ height: 85px;
1097
+ }
1098
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
1099
+ height: 59px;
1100
+ margin: 0 8px;
1101
+ }
1102
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
1103
+ margin-left: 8px !important;
1104
+ margin-right: 4px;
1105
+ }
1106
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-middle {
1107
+ margin-left: 4px;
1108
+ margin-right: 4px;
1109
+ }
1110
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-end {
1111
+ margin-left: 4px;
1112
+ margin-right: 8px;
1113
+ }
1114
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-image-focus :focus {
1115
+ background-color: rgba(var(--color-sf-primary-container));
1116
+ }
1117
+
1118
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn {
1119
+ -ms-flex-direction: column;
1120
+ flex-direction: column;
1121
+ height: calc(100% - 10px);
1122
+ padding: 0;
1123
+ padding-bottom: 10px;
1124
+ }
1125
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:focus {
1126
+ padding: 0;
1127
+ padding-bottom: 10px;
1128
+ }
1129
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:active {
1130
+ padding: 0;
1131
+ padding-bottom: 10px;
1132
+ }
1133
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:hover {
1134
+ padding: 0;
1135
+ padding-bottom: 10px;
1136
+ }
1137
+
1138
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text {
1139
+ padding: 0;
1140
+ }
1141
+
1142
+ .e-de-overlay {
1143
+ height: 100%;
1144
+ opacity: 0.5;
1145
+ pointer-events: none;
1146
+ -ms-touch-action: none;
1147
+ touch-action: none;
1148
+ width: 100%;
1149
+ }
1150
+
1151
+ .e-de-ctnr-properties-pane-btn {
1152
+ width: 78px;
1153
+ }
1154
+
1155
+ .e-de-pane-enable-clr.e-de-ctnr-properties-pane-btn .e-btn {
1156
+ color: rgba(var(--color-sf-primary));
1157
+ }
1158
+
1159
+ .e-de-pane-disable-clr.e-de-ctnr-properties-pane-btn .e-btn {
1160
+ color: rgba(var(--color-sf-on-secondary-container));
1161
+ }
1162
+
1163
+ .e-de-ctnr-properties-pane-btn .e-btn {
1164
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
1165
+ border-radius: 0;
1166
+ box-shadow: none;
1167
+ color: rgba(var(--color-sf-primary));
1168
+ min-height: 100%;
1169
+ min-width: 100%;
1170
+ }
1171
+ .e-de-ctnr-properties-pane-btn .e-btn:focus {
1172
+ box-shadow: none;
1173
+ }
1174
+ .e-de-ctnr-properties-pane-btn .e-btn:active {
1175
+ box-shadow: none;
1176
+ }
1177
+ .e-de-ctnr-properties-pane-btn .e-btn:hover {
1178
+ box-shadow: none;
1179
+ }
1180
+
1181
+ .e-de-showhide-btn {
1182
+ border: 0;
1183
+ height: 85px;
1184
+ }
1185
+
1186
+ .e-de-showhide-btn-rtl {
1187
+ border: 0;
1188
+ height: 85px;
1189
+ }
1190
+
1191
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
1192
+ padding: 0;
1193
+ }
1194
+
1195
+ .e-de-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text .e-de-text-wrap {
1196
+ line-height: 0.8;
1197
+ }
1198
+
1199
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
1200
+ display: table;
1201
+ font-size: 12px;
1202
+ margin: 0 6.5px;
1203
+ padding: 0;
1204
+ white-space: normal;
1205
+ }
1206
+
1207
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-btn-icon,
1208
+ .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
1209
+ padding: 0 !important;
1210
+ min-height: 16px;
1211
+ }
1212
+
1213
+ .e-de-hdr-ftr-frst-div {
1214
+ margin-bottom: 12px;
1215
+ }
1216
+
1217
+ .e-de-hdr-ftr-top-div {
1218
+ margin-bottom: 12px;
1219
+ }
1220
+
1221
+ .e-de-cntr-pane-padding {
1222
+ padding: 16px;
1223
+ }
1224
+
1225
+ .e-de-prop-pane {
1226
+ height: 100%;
1227
+ min-height: 200px;
1228
+ overflow: auto;
1229
+ width: 256px;
1230
+ }
1231
+
1232
+ .e-de-review-pane {
1233
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
1234
+ border-left: 1px solid rgba(var(--color-sf-outline-variant));
1235
+ height: 100%;
1236
+ min-height: 200px;
1237
+ overflow: auto;
1238
+ width: 380px;
1239
+ }
1240
+
1241
+ .e-bigger .e-de-cntr-pane-padding {
1242
+ padding: 16px;
1243
+ }
1244
+ .e-bigger .e-de-prop-pane {
1245
+ height: 100%;
1246
+ min-height: 200px;
1247
+ overflow: auto;
1248
+ width: 306px;
1249
+ }
1250
+
1251
+ .e-de-property-div-padding {
1252
+ border-bottom: 1px solid rgba(var(--color-sf-outline-variant));
1253
+ padding: 12px;
1254
+ }
1255
+
1256
+ .e-de-ctnr-dropdown-ftr {
1257
+ border-top: 1px solid rgba(var(--color-sf-outline-variant));
1258
+ color: rgba(var(--color-sf-on-secondary-container));
1259
+ cursor: pointer;
1260
+ display: block;
1261
+ font-size: 12px;
1262
+ line-height: 40px;
1263
+ text-indent: 1.2em;
1264
+ }
1265
+
1266
+ .e-de-char-fmt-btn-left > button,
1267
+ .e-de-insert-del-cell button {
1268
+ width: 36px;
1269
+ }
1270
+
1271
+ .e-de-char-fmt-btn-right > button {
1272
+ width: 36px;
1273
+ }
1274
+
1275
+ .e-de-panel-left-width {
1276
+ width: 151px;
1277
+ }
1278
+
1279
+ .e-bigger .e-de-panel-left-width {
1280
+ width: 169px;
1281
+ }
1282
+ .e-bigger .e-de-char-fmt-btn-left > button,
1283
+ .e-bigger .e-de-insert-del-cell button {
1284
+ width: 44px;
1285
+ }
1286
+
1287
+ .e-de-panel-right-width {
1288
+ width: 73px;
1289
+ }
1290
+
1291
+ .e-de-cntr-highlight-pane {
1292
+ border: 1px solid rgba(var(--color-sf-outline-variant));
1293
+ }
1294
+
1295
+ .e-de-btn-hghlclr > button:first-child {
1296
+ padding: 1px !important;
1297
+ }
1298
+
1299
+ .e-de-ctnr-hglt-color {
1300
+ font-size: 12px;
1301
+ font-weight: 400;
1302
+ height: 20px !important;
1303
+ width: 20px !important;
1304
+ }
1305
+
1306
+ .e-de-font-clr-picker > div div button,
1307
+ .e-de-font-clr-picker > div button,
1308
+ .e-de-font-clr-picker > button {
1309
+ width: 40px;
1310
+ }
1311
+
1312
+ .e-de-floating-menu.e-de-bullets-menu .e-de-floating-menuitem-md {
1313
+ height: 55px;
1314
+ padding: 4px !important;
1315
+ width: 60px;
1316
+ }
1317
+
1318
+ .e-de-floating-menu.e-de-bullets-menu .e-de-floating-menuitem-md:hover {
1319
+ border: 3px solid rgba(var(--color-sf-primary));
1320
+ padding: 2px !important;
1321
+ }
1322
+
1323
+ .e-de-floating-menu.e-de-bullets-menu .e-de-floating-bullet-menuitem-md {
1324
+ height: 38px;
1325
+ padding: 4px !important;
1326
+ width: 38px;
1327
+ }
1328
+
1329
+ .e-de-floating-menu.e-de-bullets-menu .e-de-floating-bullet-menuitem-md:hover {
1330
+ border: 3px solid rgba(var(--color-sf-primary));
1331
+ padding: 2px !important;
1332
+ }
1333
+
1334
+ .e-de-list-header-presetmenu {
1335
+ cursor: pointer;
1336
+ font-size: 11px;
1337
+ line-height: 14px;
1338
+ overflow: hidden;
1339
+ text-align: left;
1340
+ min-width: 50px;
1341
+ white-space: nowrap;
1342
+ width: 100%;
1343
+ }
1344
+
1345
+ .e-de-bullet-list-header-presetmenu {
1346
+ cursor: pointer;
1347
+ font-size: 14px;
1348
+ left: -11px;
1349
+ line-height: 0;
1350
+ min-width: 50px;
1351
+ overflow: hidden;
1352
+ position: relative;
1353
+ white-space: nowrap;
1354
+ width: 100%;
1355
+ }
1356
+
1357
+ .e-rtl .e-de-bullet-list-header-presetmenu {
1358
+ cursor: pointer;
1359
+ font-size: 14px;
1360
+ left: 10px;
1361
+ line-height: 0;
1362
+ min-width: 50px;
1363
+ overflow: hidden;
1364
+ position: relative;
1365
+ white-space: nowrap;
1366
+ width: 100%;
1367
+ }
1368
+
1369
+ .e-de-bullet {
1370
+ font-size: 42px;
1371
+ }
1372
+
1373
+ .e-de-list-header-presetmenu .e-de-list-line {
1374
+ border-bottom: 1px solid rgba(var(--color-sf-on-surface-variant)) !important;
1375
+ margin-left: 5px;
1376
+ width: 100%;
1377
+ }
1378
+
1379
+ .e-de-toc-optionsdiv {
1380
+ margin-bottom: 11.5px;
1381
+ margin-left: 5.5px;
1382
+ margin-top: 15.5px;
1383
+ }
1384
+
1385
+ .e-de-toc-optionsdiv.e-de-rtl {
1386
+ margin-right: 5.5px;
1387
+ margin-left: 0;
1388
+ }
1389
+
1390
+ .e-de-list-header-presetmenu div span {
1391
+ display: inline-block;
1392
+ vertical-align: middle;
1393
+ }
1394
+
1395
+ .e-de-floating-menu .e-de-floating-menuitem,
1396
+ .e-de-floating-menu .e-de-menuitem-none {
1397
+ cursor: pointer;
1398
+ height: 70px;
1399
+ padding: 0 !important;
1400
+ margin: 0 5px 5px 0 !important;
1401
+ width: 70px;
1402
+ }
1403
+
1404
+ .e-de-list-thumbnail .e-de-list-items {
1405
+ float: left;
1406
+ }
1407
+
1408
+ .e-de-list-thumbnail .e-de-list-items {
1409
+ border: 1px solid rgba(var(--color-sf-outline-variant));
1410
+ border-radius: 4px;
1411
+ clear: initial;
1412
+ display: inline-block;
1413
+ height: auto;
1414
+ margin: 5px;
1415
+ padding: 2px;
1416
+ text-align: center;
1417
+ width: auto;
1418
+ }
1419
+
1420
+ .e-de-list-items {
1421
+ cursor: pointer;
1422
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
1423
+ box-sizing: border-box;
1424
+ list-style: none;
1425
+ padding: 7px 10px 7px 10px;
1426
+ position: relative;
1427
+ }
1428
+
1429
+ .e-de-list-item-size {
1430
+ font-size: 14px;
1431
+ }
1432
+
1433
+ .e-de-floating-menuitem.e-de-floating-menuitem-md.e-de-list-items.e-de-list-item-size.de-list-item-selected,
1434
+ .e-de-floating-menuitem.e-de-floating-bullet-menuitem-md.e-de-list-items.e-de-list-item-size.de-list-item-selected {
1435
+ border: 3px solid rgba(var(--color-sf-primary));
1436
+ padding: 2px !important;
1437
+ }
1438
+
1439
+ .e-de-floating-menu {
1440
+ padding: 10px 4px 5px 10px !important;
1441
+ }
1442
+
1443
+ .e-de-list-container {
1444
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
1445
+ box-sizing: border-box;
1446
+ display: inline-block;
1447
+ line-height: normal;
1448
+ margin: 0;
1449
+ outline: 0;
1450
+ padding: 10px 0;
1451
+ position: absolute;
1452
+ width: auto;
1453
+ z-index: 10020;
1454
+ }
1455
+
1456
+ .e-de-ctnr-list {
1457
+ font-size: 12px;
1458
+ vertical-align: top;
1459
+ }
1460
+
1461
+ .e-de-image-property {
1462
+ padding-left: 32px;
1463
+ }
1464
+
1465
+ .e-de-img-prty-span {
1466
+ color: rgba(var(--color-sf-on-secondary-container));
1467
+ left: 12px;
1468
+ position: absolute;
1469
+ top: 8px;
1470
+ }
1471
+
1472
+ .e-btn-toggle {
1473
+ background-color: rgba(var(--color-sf-primary-container)) !important;
1474
+ outline: none;
1475
+ outline-offset: 0;
1476
+ box-shadow: none !important;
1477
+ }
1478
+ .e-btn-toggle:hover {
1479
+ background-color: rgba(var(--color-sf-primary-container)) !important;
1480
+ outline: none;
1481
+ outline-offset: 0;
1482
+ box-shadow: none !important;
1483
+ }
1484
+
1485
+ .e-de-ctnr-group-btn-top > button:first-child {
1486
+ border-radius: 0;
1487
+ border-top-left-radius: 4px;
1488
+ }
1489
+
1490
+ .e-de-ctnr-group-btn-top.e-de-rtl > button:first-child {
1491
+ border-top-left-radius: 0;
1492
+ border-top-right-radius: 4px;
1493
+ }
1494
+
1495
+ .e-de-ctnr-group-btn-top > button:last-child {
1496
+ border-radius: 0;
1497
+ border-top-right-radius: 4px;
1498
+ }
1499
+
1500
+ .e-de-ctnr-group-btn-top.e-de-rtl > button:last-child {
1501
+ border-top-left-radius: 4px;
1502
+ border-top-right-radius: 0;
1503
+ }
1504
+
1505
+ .e-de-ctnr-group-btn-middle > button {
1506
+ border-radius: 0;
1507
+ border-top: 0;
1508
+ border-bottom: 0;
1509
+ }
1510
+
1511
+ .e-de-ctnr-group-btn-bottom > button:first-child {
1512
+ border-radius: 0;
1513
+ border-bottom-left-radius: 4px;
1514
+ }
1515
+
1516
+ .e-de-ctnr-group-btn-bottom.e-de-rtl > button:first-child {
1517
+ border-bottom-left-radius: 0;
1518
+ border-bottom-right-radius: 4px;
1519
+ }
1520
+
1521
+ .e-de-ctnr-group-btn-bottom > button:last-child {
1522
+ border-radius: 0;
1523
+ border-bottom-right-radius: 4px;
1524
+ }
1525
+
1526
+ .e-de-ctnr-group-btn-bottom.e-de-rtl > button:last-child {
1527
+ border-bottom-right-radius: 0;
1528
+ border-bottom-left-radius: 4px;
1529
+ }
1530
+
1531
+ .e-de-toc-template1 {
1532
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
1533
+ border: 1px solid rgba(var(--color-sf-outline-variant));
1534
+ color: rgba(var(--color-sf-on-secondary-container));
1535
+ height: 130px;
1536
+ width: 95px;
1537
+ margin-left: 80px;
1538
+ }
1539
+
1540
+ .e-de-toc-template1.e-de-rtl {
1541
+ margin-left: 0;
1542
+ margin-right: 78px;
1543
+ }
1544
+
1545
+ .e-de-toc-template1-content1 {
1546
+ font-size: 10px;
1547
+ height: 16px;
1548
+ margin-left: 8px;
1549
+ margin-top: 6px;
1550
+ width: 80px;
1551
+ }
1552
+
1553
+ .e-de-toc-template1-content2 {
1554
+ font-size: 8px;
1555
+ height: 9px;
1556
+ margin-left: 23px;
1557
+ margin-top: 6px;
1558
+ width: 66px;
1559
+ }
1560
+
1561
+ .e-de-toc-template1-content3 {
1562
+ font-size: 7px;
1563
+ height: 8px;
1564
+ margin-left: 30px;
1565
+ margin-top: 6px;
1566
+ width: 59px;
1567
+ }
1568
+
1569
+ .e-de-prop-sub-label {
1570
+ color: rgba(var(--color-sf-on-surface));
1571
+ font-size: 12px;
1572
+ margin-bottom: 4px;
1573
+ font-weight: 600;
1574
+ }
1575
+
1576
+ .e-de-toc-checkbox1 {
1577
+ height: 16px;
1578
+ margin-top: 16px;
1579
+ }
1580
+
1581
+ .e-de-toc-checkbox2 {
1582
+ height: 16px;
1583
+ margin-top: 16px;
1584
+ }
1585
+
1586
+ .e-de-toc-checkbox3 {
1587
+ height: 16px;
1588
+ margin-top: 16px;
1589
+ }
1590
+
1591
+ .e-de-status-bar {
1592
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
1593
+ display: -ms-flexbox;
1594
+ display: flex;
1595
+ width: 100%;
1596
+ }
1597
+
1598
+ .e-de-ctnr-pg-no {
1599
+ color: rgba(var(--color-sf-on-secondary-container));
1600
+ display: -ms-inline-flexbox;
1601
+ display: inline-flex;
1602
+ font-size: 14px;
1603
+ height: 100%;
1604
+ padding-top: 7px;
1605
+ }
1606
+ .e-de-ctnr-pg-no span {
1607
+ border: 1px solid transparent;
1608
+ }
1609
+
1610
+ .e-de-ctnr-pg-no-spellout {
1611
+ color: rgba(var(--color-sf-on-secondary-container));
1612
+ display: -ms-inline-flexbox;
1613
+ display: inline-flex;
1614
+ font-size: 14px;
1615
+ height: 100%;
1616
+ padding-top: 7px;
1617
+ width: calc(100% - 169px);
1618
+ }
1619
+ .e-de-ctnr-pg-no-spellout span {
1620
+ border: 1px solid transparent;
1621
+ }
1622
+
1623
+ .e-bigger .e-de-ctnr-pg-no-spellout {
1624
+ color: rgba(var(--color-sf-on-secondary-container));
1625
+ display: -ms-inline-flexbox;
1626
+ display: inline-flex;
1627
+ font-size: 16px;
1628
+ height: 100%;
1629
+ padding-top: 10px;
1630
+ width: calc(100% - 180px);
1631
+ }
1632
+
1633
+ .e-de-statusbar-zoom-spell {
1634
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
1635
+ border: 0;
1636
+ color: rgba(var(--color-sf-on-secondary-container));
1637
+ float: right;
1638
+ height: 34px;
1639
+ margin-left: calc(100% - 395px);
1640
+ }
1641
+
1642
+ .e-bigger .e-de-statusbar-zoom-spell {
1643
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
1644
+ border: 0;
1645
+ color: rgba(var(--color-sf-on-secondary-container));
1646
+ float: right;
1647
+ height: 34px;
1648
+ margin-left: calc(100% - 430px);
1649
+ }
1650
+
1651
+ .e-de-btn-cancel {
1652
+ margin-left: 10px;
1653
+ }
1654
+
1655
+ .e-de-btn-cancel-rtl {
1656
+ margin-left: 0;
1657
+ margin-right: 10px;
1658
+ }
1659
+
1660
+ .e-de-prop-header-label {
1661
+ color: rgba(var(--color-sf-on-secondary-container));
1662
+ display: inline-block;
1663
+ font-size: 12px;
1664
+ font-weight: bold;
1665
+ letter-spacing: 0.05px;
1666
+ opacity: 0.87;
1667
+ }
1668
+
1669
+ .e-de-prop-separator-line {
1670
+ border-bottom: 1px solid rgba(var(--color-sf-outline-variant));
1671
+ }
1672
+
1673
+ .e-de-status-bar > div label {
1674
+ font-weight: 600;
1675
+ }
1676
+
1677
+ .e-de-stylediv {
1678
+ padding-left: 12px;
1679
+ }
1680
+
1681
+ .e-de-stylediv-rtl {
1682
+ padding-left: 0;
1683
+ padding-right: 12px;
1684
+ }
1685
+
1686
+ .e-de-border-size-button {
1687
+ height: 32px;
1688
+ margin-top: 16px;
1689
+ width: 104px;
1690
+ }
1691
+
1692
+ .e-de-color-picker {
1693
+ height: 32px;
1694
+ width: 104px;
1695
+ }
1696
+
1697
+ .e-de-cell-text-box {
1698
+ margin-right: 12px;
1699
+ }
1700
+
1701
+ .e-de-pane-rtl .e-de-cell-text-box {
1702
+ margin-left: 12px;
1703
+ margin-right: 0;
1704
+ }
1705
+
1706
+ .e-de-prop-fill-label {
1707
+ margin-right: 16px;
1708
+ }
1709
+
1710
+ .e-de-prop-fill-label.e-de-rtl {
1711
+ margin-left: 16px;
1712
+ margin-right: 0;
1713
+ }
1714
+
1715
+ .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
1716
+ height: 36px !important;
1717
+ }
1718
+
1719
+ .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
1720
+ height: 42px !important;
1721
+ }
1722
+
1723
+ .e-de-grp-btn-ctnr .e-de-ctnr-group-btn > button {
1724
+ width: 36px;
1725
+ height: 36px;
1726
+ }
1727
+
1728
+ .e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn > button {
1729
+ height: 42px;
1730
+ width: 44px;
1731
+ }
1732
+
1733
+ .e-de-border-clr-picker .e-split-btn-wrapper > button:first-child {
1734
+ width: 64px;
1735
+ }
1736
+
1737
+ .e-documenteditor-optionspane {
1738
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.11), rgba(var(--color-sf-primary), 0.11)), rgba(var(--color-sf-surface));
1739
+ }
1740
+
1741
+ .e-rtl .e-listview .e-list-icon {
1742
+ height: 24px;
1743
+ width: 16px;
1744
+ margin-left: 12px;
1745
+ }
1746
+ .e-rtl .e-de-listview-icon {
1747
+ height: auto;
1748
+ width: auto;
1749
+ line-height: 22px;
1750
+ margin-left: 12px;
1751
+ }
1752
+
1753
+ .e-bigger .de-split-button > div:first-child {
1754
+ margin-right: 16px;
1755
+ }
1756
+ .e-bigger .e-de-border-clr-picker .e-split-btn-wrapper > button:first-child {
1757
+ width: 60px;
1758
+ }
1759
+ .e-bigger .e-de-prop-fill-label {
1760
+ margin-left: 0;
1761
+ margin-right: 9.8px;
1762
+ }
1763
+ .e-bigger .e-de-prop-fill-label.e-de-rtl {
1764
+ margin-left: 9.8px;
1765
+ margin-right: 0px;
1766
+ }
1767
+ .e-bigger .e-rtl .e-de-cell-text-box {
1768
+ margin-left: 16px;
1769
+ margin-right: 0;
1770
+ }
1771
+ .e-bigger .e-de-color-picker {
1772
+ height: 39px;
1773
+ width: 100px;
1774
+ }
1775
+ .e-bigger .e-de-border-size-button {
1776
+ height: 39px;
1777
+ margin-top: 16px;
1778
+ width: 100px;
1779
+ }
1780
+ .e-bigger .e-de-stylediv {
1781
+ padding-left: 16px;
1782
+ }
1783
+ .e-bigger .e-de-stylediv-rtl {
1784
+ padding-right: 16px;
1785
+ }
1786
+ .e-bigger .e-de-tool-ctnr-properties-pane {
1787
+ display: -ms-flexbox;
1788
+ display: flex;
1789
+ height: calc(100% - 128px);
1790
+ min-height: 200px;
1791
+ width: 100%;
1792
+ }
1793
+ .e-bigger .e-de-ctnr-properties-pane {
1794
+ display: -ms-flexbox;
1795
+ display: flex;
1796
+ height: calc(100% - 46px);
1797
+ width: 100%;
1798
+ }
1799
+ .e-bigger .e-de-ctn {
1800
+ background-color: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
1801
+ border: 1px solid rgba(var(--color-sf-outline-variant));
1802
+ height: 100%;
1803
+ position: relative;
1804
+ width: 100%;
1805
+ }
1806
+ .e-bigger .e-de-ctnr-toolbar {
1807
+ display: -ms-flexbox;
1808
+ display: flex;
1809
+ height: 90px;
1810
+ width: 100%;
1811
+ }
1812
+ .e-bigger .e-de-tlbr-wrapper .e-de-toolbar.e-toolbar,
1813
+ .e-bigger .e-de-tlbr-wrapper .e-de-ctnr-properties-pane-btn {
1814
+ border: 0;
1815
+ }
1816
+ .e-bigger .e-de-pane {
1817
+ border-left: 1px solid rgba(var(--color-sf-outline-variant));
1818
+ }
1819
+ .e-bigger .e-de-pane-rtl {
1820
+ border-right: 1px solid rgba(var(--color-sf-outline-variant));
1821
+ }
1822
+ .e-bigger .e-de-ctnr-segment {
1823
+ margin-bottom: 8px;
1824
+ }
1825
+ .e-bigger .e-de-ctnr-segment > div:first-child:not(.e-rtl),
1826
+ .e-bigger .e-de-ctnr-segment-list > div:last-child:not(.e-rtl),
1827
+ .e-bigger .e-de-ctnr-segment > button:first-child:not(.e-rtl) {
1828
+ margin-right: 16px;
1829
+ }
1830
+ .e-bigger .e-de-ctnr-segment.e-de-ctnr-segment-rtl > div:first-child,
1831
+ .e-bigger .e-de-ctnr-segment-list.e-de-ctnr-segment-list-rtl > div:last-child,
1832
+ .e-bigger .e-de-ctnr-segment.e-de-ctnr-segment-rtl > button:first-child {
1833
+ margin-left: 16px;
1834
+ margin-right: 0;
1835
+ }
1836
+ .e-bigger .e-de-tlbr-wrapper {
1837
+ background-color: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
1838
+ height: 90px;
1839
+ width: calc(100% - 78px);
1840
+ }
1841
+ .e-bigger .e-de-ctnr-prop-label {
1842
+ color: rgba(var(--color-sf-on-secondary-container));
1843
+ display: inline-block;
1844
+ font-size: 12px;
1845
+ font-weight: 500;
1846
+ letter-spacing: 0.05px;
1847
+ margin-bottom: 8px;
1848
+ opacity: 0.87;
1849
+ }
1850
+ .e-bigger .e-de-table-prop-label {
1851
+ margin-left: 14.5px;
1852
+ }
1853
+ .e-bigger .e-de-table-prop-label.e-de-rtl {
1854
+ margin-left: 0;
1855
+ margin-right: 14.5px;
1856
+ }
1857
+ .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items {
1858
+ height: 90px;
1859
+ }
1860
+ .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
1861
+ margin: 0 8px;
1862
+ }
1863
+ .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
1864
+ margin-left: 8px !important;
1865
+ margin-right: 8px;
1866
+ }
1867
+ .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-middle {
1868
+ margin-left: 8px;
1869
+ margin-right: 8px;
1870
+ }
1871
+ .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-end {
1872
+ margin-left: 8px;
1873
+ margin-right: 8px;
1874
+ }
1875
+ .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-image-focus :focus {
1876
+ background-color: rgba(var(--color-sf-primary-container));
1877
+ }
1878
+ .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn,
1879
+ .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control {
1880
+ padding: 0;
1881
+ padding-bottom: 10px;
1882
+ }
1883
+ .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:focus,
1884
+ .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:focus {
1885
+ padding: 0;
1886
+ padding-bottom: 10px;
1887
+ }
1888
+ .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:active,
1889
+ .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:active {
1890
+ padding: 0;
1891
+ padding-bottom: 10px;
1892
+ }
1893
+ .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:hover,
1894
+ .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover {
1895
+ padding: 0;
1896
+ padding-bottom: 10px;
1897
+ }
1898
+ .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text {
1899
+ padding: 0 !important;
1900
+ }
1901
+ .e-bigger .e-de-overlay {
1902
+ height: 100%;
1903
+ opacity: 0.5;
1904
+ pointer-events: none;
1905
+ -ms-touch-action: none;
1906
+ touch-action: none;
1907
+ }
1908
+ .e-bigger .e-de-ctnr-properties-pane-btn {
1909
+ width: 78px;
1910
+ }
1911
+ .e-bigger .e-de-ctnr-properties-pane-btn .e-btn {
1912
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
1913
+ border-radius: 0;
1914
+ box-shadow: none;
1915
+ min-height: 100%;
1916
+ min-width: 100%;
1917
+ }
1918
+ .e-bigger .e-de-ctnr-properties-pane-btn .e-btn:focus {
1919
+ box-shadow: none;
1920
+ }
1921
+ .e-bigger .e-de-ctnr-properties-pane-btn .e-btn:active {
1922
+ box-shadow: none;
1923
+ }
1924
+ .e-bigger .e-de-ctnr-properties-pane-btn .e-btn:hover {
1925
+ box-shadow: none;
1926
+ }
1927
+ .e-bigger .e-de-showhide-btn {
1928
+ border: 0;
1929
+ height: 90px;
1930
+ }
1931
+ .e-bigger .e-de-showhide-btn-rtl {
1932
+ border: 0;
1933
+ height: 90px;
1934
+ }
1935
+ .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
1936
+ padding: 0;
1937
+ }
1938
+ .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
1939
+ display: table;
1940
+ font-size: 12px !important;
1941
+ margin: 0 6px;
1942
+ padding: 0;
1943
+ white-space: normal;
1944
+ }
1945
+ .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-btn-icon,
1946
+ .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
1947
+ padding: 0;
1948
+ }
1949
+ .e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
1950
+ box-shadow: none;
1951
+ height: 40px;
1952
+ }
1953
+ .e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
1954
+ box-shadow: none;
1955
+ }
1956
+ .e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
1957
+ box-shadow: none;
1958
+ }
1959
+ .e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
1960
+ box-shadow: none;
1961
+ }
1962
+ .e-bigger .e-de-status-bar button {
1963
+ height: 38px;
1964
+ box-shadow: none;
1965
+ }
1966
+ .e-bigger .e-de-status-bar button:focus {
1967
+ box-shadow: none;
1968
+ }
1969
+ .e-bigger .e-de-status-bar button:active {
1970
+ box-shadow: none;
1971
+ }
1972
+ .e-bigger .e-de-status-bar button:hover {
1973
+ box-shadow: none;
1974
+ }
1975
+ .e-bigger .e-de-ctnr-group-btn button {
1976
+ box-shadow: none;
1977
+ height: 40px;
1978
+ }
1979
+ .e-bigger .e-de-ctnr-group-btn button:focus {
1980
+ box-shadow: none;
1981
+ }
1982
+ .e-bigger .e-de-ctnr-group-btn button:active {
1983
+ box-shadow: none;
1984
+ }
1985
+ .e-bigger .e-de-ctnr-group-btn button:hover {
1986
+ box-shadow: none;
1987
+ }
1988
+ .e-bigger .e-de-property-div-padding {
1989
+ border-bottom: 0.5px solid rgba(var(--color-sf-outline-variant));
1990
+ padding: 16px;
1991
+ }
1992
+ .e-bigger .e-de-font-clr-picker > div button,
1993
+ .e-bigger .e-de-font-clr-picker > button {
1994
+ width: auto;
1995
+ }
1996
+ .e-bigger .e-de-ctnr-dropdown-ftr {
1997
+ border-top: 1px solid rgba(var(--color-sf-outline-variant));
1998
+ color: rgba(var(--color-sf-on-secondary-container));
1999
+ cursor: pointer;
2000
+ display: block;
2001
+ font-size: 12px;
2002
+ line-height: 40px;
2003
+ text-indent: 1.2em;
2004
+ }
2005
+ .e-bigger .e-de-char-fmt-btn > button {
2006
+ width: 38.5px;
2007
+ }
2008
+ .e-bigger .e-de-btn-hghlclr > button:first-child {
2009
+ padding: 0 6px !important;
2010
+ }
2011
+ .e-bigger .e-de-ctnr-hglt-color {
2012
+ font-size: 12px;
2013
+ font-weight: 400;
2014
+ height: 24px !important;
2015
+ width: 24px !important;
2016
+ }
2017
+ .e-bigger .e-de-ctnr-list {
2018
+ font-size: 12px;
2019
+ vertical-align: top;
2020
+ }
2021
+ .e-bigger .e-de-image-property {
2022
+ padding-left: 32px;
2023
+ }
2024
+ .e-bigger .e-de-img-prty-span {
2025
+ color: rgba(var(--color-sf-on-secondary-container));
2026
+ left: 10px;
2027
+ position: absolute;
2028
+ top: 12px;
2029
+ }
2030
+ .e-bigger .e-btn-toggle {
2031
+ background-color: rgba(var(--color-sf-primary-container)) !important;
2032
+ box-shadow: none !important;
2033
+ outline: none;
2034
+ outline-offset: 0;
2035
+ }
2036
+ .e-bigger .e-btn-toggle:hover {
2037
+ background-color: rgba(var(--color-sf-primary-container)) !important;
2038
+ outline: none;
2039
+ outline-offset: 0;
2040
+ box-shadow: none !important;
2041
+ }
2042
+ .e-bigger .e-de-toc-template1 {
2043
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
2044
+ border: 1px solid rgba(var(--color-sf-outline-variant));
2045
+ color: rgba(var(--color-sf-on-secondary-container));
2046
+ height: 129px;
2047
+ margin-left: 78px;
2048
+ width: 94px;
2049
+ }
2050
+ .e-bigger .e-de-toc-template1-content1 {
2051
+ font-size: 10px;
2052
+ height: 11px;
2053
+ margin-left: 5.4px;
2054
+ margin-top: 6.7px;
2055
+ width: 80px;
2056
+ }
2057
+ .e-bigger .e-de-toc-template1-content2 {
2058
+ font-size: 8px;
2059
+ height: 9px;
2060
+ margin-left: 20.4px;
2061
+ margin-top: 5.7px;
2062
+ width: 66px;
2063
+ }
2064
+ .e-bigger .e-de-toc-template1-content3 {
2065
+ font-size: 7px;
2066
+ height: 8px;
2067
+ margin-left: 28.4px;
2068
+ margin-top: 6.7px;
2069
+ width: 59px;
2070
+ }
2071
+ .e-bigger .e-de-toc-optionsdiv {
2072
+ margin-bottom: 11.5px;
2073
+ margin-left: 5.5px;
2074
+ margin-top: 15.5px;
2075
+ }
2076
+ .e-bigger .e-de-toc-optionsdiv.e-de-rtl {
2077
+ margin-right: 5.5px;
2078
+ margin-left: 0;
2079
+ }
2080
+ .e-bigger .e-de-prop-sub-label {
2081
+ font-size: 13px;
2082
+ margin-bottom: 8.5px;
2083
+ }
2084
+ .e-bigger .e-de-btn-cancel {
2085
+ margin-left: 10px;
2086
+ }
2087
+ .e-bigger .e-de-status-bar {
2088
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
2089
+ display: -ms-flexbox;
2090
+ display: flex;
2091
+ width: 100%;
2092
+ }
2093
+ .e-bigger .e-de-statusbar-zoom {
2094
+ border: 0;
2095
+ color: rgba(var(--color-sf-on-secondary-container));
2096
+ float: right;
2097
+ height: 40px;
2098
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
2099
+ }
2100
+ .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
2101
+ line-height: 25px;
2102
+ padding: 0 5px !important;
2103
+ }
2104
+ .e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text .e-de-text-wrap {
2105
+ height: 0;
2106
+ line-height: 0;
2107
+ line-height: 0.8;
2108
+ }
2109
+ .e-bigger .e-listview .e-list-icon {
2110
+ height: 24px;
2111
+ width: 16px;
2112
+ margin-right: 16px;
2113
+ }
2114
+ .e-bigger .e-de-listview-icon {
2115
+ height: auto;
2116
+ width: auto;
2117
+ line-height: 22px;
2118
+ margin-right: 16px;
2119
+ }
2120
+ .e-bigger .e-rtl .e-listview .e-list-icon {
2121
+ height: 24px;
2122
+ width: 16px;
2123
+ margin-left: 16px;
2124
+ }
2125
+ .e-bigger .e-rtl .e-de-listview-icon {
2126
+ height: auto;
2127
+ width: auto;
2128
+ line-height: 22px;
2129
+ margin-left: 16px;
2130
+ }
2131
+
2132
+ .e-de-ctn .e-de-bzr-button:hover {
2133
+ background: linear-gradient(0deg, rgba(var(--color-sf-on-surface), 0.08), rgba(var(--color-sf-on-surface), 0.08)), rgba(var(--color-sf-surface));
2134
+ border: none;
2135
+ border-radius: 4px;
2136
+ color: rgba(var(--color-sf-on-surface));
2137
+ }
2138
+
2139
+ .e-de-ctn .e-de-bzr-button:active {
2140
+ box-shadow: none;
2141
+ background-color: rgba(var(--color-sf-primary-container));
2142
+ border-color: rgba(var(--color-sf-primary-container));
2143
+ color: rgba(var(--color-sf-on-surface));
2144
+ }
2145
+
2146
+ .e-de-ctn .e-de-bzr-button {
2147
+ font-weight: 400;
2148
+ font-size: 14px;
2149
+ border: none;
2150
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
2151
+ height: calc(100% - 10px);
2152
+ line-height: 16px;
2153
+ font-size: 12px !important;
2154
+ }
2155
+
2156
+ .e-de-ctn .e-de-bzr-button:hover {
2157
+ background: linear-gradient(0deg, rgba(var(--color-sf-on-surface), 0.08), rgba(var(--color-sf-on-surface), 0.08)), rgba(var(--color-sf-surface));
2158
+ border: none;
2159
+ border-radius: 4px;
2160
+ color: rgba(var(--color-sf-on-surface));
2161
+ }
2162
+
2163
+ .e-de-ctn .e-de-bzr-button:active {
2164
+ box-shadow: none;
2165
+ background-color: rgba(var(--color-sf-primary-container));
2166
+ border-color: rgba(var(--color-sf-primary-container));
2167
+ color: rgba(var(--color-sf-on-surface));
2168
+ }
2169
+
2170
+ .e-de-ctn .e-de-ctnr-toolbar .e-de-bzr-button .e-btn-icon {
2171
+ font-size: 16px;
2172
+ }
2173
+ .e-bigger .e-de-ctn .e-de-ctnr-toolbar .e-de-bzr-button .e-btn-icon {
2174
+ font-size: 18px;
2175
+ }
2176
+ .e-bigger .e-de-ctn .e-de-ctnr-toolbar .e-de-bzr-break.e-de-bzr-button {
2177
+ padding-top: 11px !important;
2178
+ }