@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,3971 @@
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-documenteditor .e-close::before {
58
+ color: var(--color-sf-on-surface-variant);
59
+ content: "\e7e7";
60
+ font-family: "e-icons";
61
+ font-size: 14px;
62
+ }
63
+ .e-documenteditor .e-de-op-search-icon::before {
64
+ content: "\e754";
65
+ font-family: "e-icons";
66
+ }
67
+ .e-documenteditor .e-arrow-up::before {
68
+ content: "\e87a";
69
+ font-family: "e-icons";
70
+ }
71
+ .e-documenteditor .e-arrow-down::before {
72
+ content: "\e70d";
73
+ font-family: "e-icons";
74
+ }
75
+ .e-documenteditor .e-de-op .e-de-op-close-icon {
76
+ height: 20px;
77
+ }
78
+ .e-documenteditor .e-de-op-close-icon::before {
79
+ content: "\e7e7";
80
+ font-family: "e-icons";
81
+ }
82
+ .e-documenteditor .e-de-op-search-close-icon::before {
83
+ color: var(--color-sf-on-surface-variant);
84
+ content: "\e7e7";
85
+ font-family: "e-icons";
86
+ }
87
+ .e-documenteditor .e-de-new-cmt::before {
88
+ content: "\e805";
89
+ font-family: "e-icons";
90
+ }
91
+ .e-documenteditor .e-de-menu-icon::before {
92
+ content: "\e770";
93
+ font-family: "e-icons";
94
+ }
95
+ .e-documenteditor .e-de-cmt-mark-icon::before {
96
+ color: var(--color-sf-on-surface-variant);
97
+ content: "\e733";
98
+ font-family: "e-icons";
99
+ font-size: 13px;
100
+ }
101
+ .e-documenteditor .e-de-multi-cmt-mark::before {
102
+ color: var(--color-sf-on-surface-variant);
103
+ content: "\e8bc";
104
+ font-family: "e-icons";
105
+ font-size: 14px;
106
+ }
107
+ .e-documenteditor .e-de-cmt-post::before {
108
+ content: "\e71d";
109
+ font-family: "e-icons";
110
+ }
111
+ .e-documenteditor .e-de-cmt-rply-icon::before {
112
+ color: var(--color-sf-on-surface-variant);
113
+ content: "\e85e";
114
+ font-family: "e-icons";
115
+ }
116
+ .e-documenteditor .e-de-cmt-cancel::before {
117
+ content: "\e7e7";
118
+ font-family: "e-icons";
119
+ }
120
+ .e-documenteditor .e-de-cmt-delete::before {
121
+ content: "\e820";
122
+ font-family: "e-icons";
123
+ }
124
+ .e-documenteditor .e-de-cmt-reopen::before {
125
+ content: "\e782";
126
+ font-family: "e-icons";
127
+ }
128
+ .e-documenteditor .e-de-nav-up::before {
129
+ content: "\e7dd";
130
+ font-family: "e-icons";
131
+ }
132
+ .e-documenteditor .e-de-nav-right-arrow::before {
133
+ content: "\e748";
134
+ font-family: "e-icons";
135
+ }
136
+ .e-documenteditor .e-de-nav-left-arrow::before {
137
+ content: "\e765";
138
+ font-family: "e-icons";
139
+ }
140
+ .e-documenteditor .e-de-save-icon::before {
141
+ content: "\e774";
142
+ font-family: "e-icons";
143
+ }
144
+ .e-documenteditor .e-de-cancel-icon::before {
145
+ content: "\e7e7";
146
+ font-family: "e-icons";
147
+ }
148
+
149
+ .e-de-ctn-title-print::before {
150
+ content: "\e75d";
151
+ }
152
+
153
+ .e-de-acceptchange::before {
154
+ color: var(--color-sf-on-surface-variant);
155
+ content: "\e7a8";
156
+ font-family: "e-icons";
157
+ }
158
+
159
+ .e-de-rejectchange::before {
160
+ color: var(--color-sf-on-surface-variant);
161
+ content: "\e815";
162
+ font-family: "e-icons";
163
+ }
164
+
165
+ .e-de-ctn-title-download::before {
166
+ content: "\e7a1";
167
+ }
168
+
169
+ .e-de-table-properties-alignment:hover {
170
+ border-color: rgba(var(--color-sf-primary));
171
+ }
172
+
173
+ .e-de-table-properties-alignment {
174
+ border: 1px solid transparent;
175
+ }
176
+
177
+ .e-de-tablecell-alignment {
178
+ border: 1px solid transparent;
179
+ }
180
+
181
+ .e-de-tablecell-alignment:hover {
182
+ border-color: rgba(var(--color-sf-primary));
183
+ }
184
+
185
+ .e-de-table-left-alignment::before {
186
+ color: var(--color-sf-on-surface-variant);
187
+ content: "\e7f6";
188
+ font-size: 42px;
189
+ }
190
+
191
+ .e-de-table-center-alignment::before {
192
+ color: var(--color-sf-on-surface-variant);
193
+ content: "\e7f1";
194
+ font-size: 42px;
195
+ }
196
+
197
+ .e-de-table-right-alignment::before {
198
+ color: var(--color-sf-on-surface-variant);
199
+ content: "\e703";
200
+ font-size: 42px;
201
+ }
202
+
203
+ .e-de-tablecell-top-alignment::before {
204
+ color: var(--color-sf-on-surface-variant);
205
+ content: "\e775";
206
+ font-family: "e-icons";
207
+ font-size: 42px;
208
+ }
209
+
210
+ .e-de-tablecell-center-alignment::before {
211
+ color: var(--color-sf-on-surface-variant);
212
+ content: "\e7e5";
213
+ font-family: "e-icons";
214
+ font-size: 42px;
215
+ }
216
+
217
+ .e-de-tablecell-bottom-alignment::before {
218
+ color: var(--color-sf-on-surface-variant);
219
+ content: "\e7d9";
220
+ font-family: "e-icons";
221
+ font-size: 42px;
222
+ }
223
+
224
+ .e-de-table-border-setting {
225
+ border: 1px solid rgba(var(--color-sf-outline-variant));
226
+ height: 52px;
227
+ left: 3px;
228
+ position: relative;
229
+ top: 3px;
230
+ width: 52px;
231
+ }
232
+
233
+ .e-de-table-border-setting-genral {
234
+ border: 1px solid rgba(var(--color-sf-outline-variant));
235
+ height: 60px;
236
+ width: 60px;
237
+ }
238
+
239
+ .e-de-table-border-preview-genral {
240
+ border: 1px solid rgba(var(--color-sf-on-surface-variant));
241
+ height: 24px;
242
+ width: 24px;
243
+ }
244
+
245
+ .e-de-table-border-inside-setting:hover {
246
+ border: 1px solid rgba(var(--color-sf-primary));
247
+ }
248
+
249
+ .e-de-table-border-preview {
250
+ height: 24px;
251
+ width: 24px;
252
+ }
253
+
254
+ .e-de-table-border-inside-preview:hover {
255
+ border: 1px solid rgba(var(--color-sf-primary));
256
+ }
257
+
258
+ .e-de-table-border-inside-setting-click {
259
+ border: 1px solid rgba(var(--color-sf-primary));
260
+ }
261
+
262
+ .e-de-table-border-inside-preview-click {
263
+ border: 1px solid rgba(var(--color-sf-primary));
264
+ }
265
+
266
+ .e-de-table-border-none-setting::before {
267
+ color: var(--color-sf-on-surface-variant);
268
+ content: "\e7eb";
269
+ font-size: 46px;
270
+ position: absolute;
271
+ }
272
+
273
+ .e-de-table-border-box-setting::before {
274
+ color: var(--color-sf-on-surface-variant);
275
+ content: "\e834";
276
+ font-size: 46px;
277
+ left: 2px;
278
+ position: absolute;
279
+ top: 2px;
280
+ }
281
+
282
+ .e-de-table-border-all-setting::before {
283
+ color: var(--color-sf-on-surface-variant);
284
+ content: "\e7e8";
285
+ font-family: "e-icons";
286
+ font-size: 46px;
287
+ left: 2px;
288
+ position: absolute;
289
+ top: 2px;
290
+ }
291
+
292
+ .e-de-table-border-custom-setting::before {
293
+ color: var(--color-sf-on-surface-variant);
294
+ content: "\e7d5";
295
+ font-size: 46px;
296
+ left: 2px;
297
+ position: absolute;
298
+ top: 2px;
299
+ }
300
+
301
+ .e-de-para-border-none-setting::before {
302
+ color: var(--color-sf-on-surface-variant);
303
+ content: "\e890";
304
+ font-size: 46px;
305
+ position: absolute;
306
+ }
307
+
308
+ .e-de-para-border-box-setting::before {
309
+ color: var(--color-sf-on-surface-variant);
310
+ content: "\e891";
311
+ font-size: 46px;
312
+ left: 2px;
313
+ position: absolute;
314
+ top: 2px;
315
+ }
316
+
317
+ .e-de-para-border-shadow-setting::before {
318
+ color: var(--color-sf-on-surface-variant);
319
+ content: "\e892";
320
+ font-size: 46px;
321
+ left: 2px;
322
+ position: absolute;
323
+ top: 2px;
324
+ }
325
+
326
+ .e-de-para-border-custom-setting::before {
327
+ color: var(--color-sf-on-surface-variant);
328
+ content: "\e88f";
329
+ font-size: 46px;
330
+ left: 2px;
331
+ position: absolute;
332
+ top: 2px;
333
+ }
334
+
335
+ .e-de-table-border-toptop-alignment::before {
336
+ color: var(--color-sf-on-surface-variant);
337
+ content: "\e7e0";
338
+ font-family: "e-icons";
339
+ font-size: 16px;
340
+ left: 5px;
341
+ position: absolute;
342
+ top: 2px;
343
+ }
344
+
345
+ .e-de-table-border-topcenter-alignment::before {
346
+ color: var(--color-sf-on-surface-variant);
347
+ content: "\e83b";
348
+ font-size: 16px;
349
+ left: 5px;
350
+ position: absolute;
351
+ top: 2px;
352
+ }
353
+
354
+ .e-de-table-border-topbottom-alignment::before {
355
+ color: var(--color-sf-on-surface-variant);
356
+ content: "\e766";
357
+ font-size: 16px;
358
+ left: 5px;
359
+ position: absolute;
360
+ top: 2px;
361
+ }
362
+
363
+ .e-de-table-border-diagionalup-alignment::before {
364
+ color: var(--color-sf-on-surface-variant);
365
+ content: "\e79d";
366
+ font-size: 16px;
367
+ left: 5px;
368
+ position: absolute;
369
+ top: 2px;
370
+ }
371
+
372
+ .e-de-table-border-diagionaldown-alignment::before {
373
+ color: var(--color-sf-on-surface-variant);
374
+ content: "\e784";
375
+ font-size: 16px;
376
+ left: 5px;
377
+ position: absolute;
378
+ top: 2px;
379
+ }
380
+
381
+ .e-de-table-border-bottomleft-alignment::before {
382
+ color: var(--color-sf-on-surface-variant);
383
+ content: "\e806";
384
+ font-size: 16px;
385
+ left: 5px;
386
+ position: absolute;
387
+ top: 2px;
388
+ }
389
+
390
+ .e-de-table-border-bottomcenter-alignment::before {
391
+ color: var(--color-sf-on-surface-variant);
392
+ content: "\e792";
393
+ font-size: 16px;
394
+ left: 5px;
395
+ position: absolute;
396
+ top: 2px;
397
+ }
398
+
399
+ .e-de-table-border-bottomright-alignment::before {
400
+ color: var(--color-sf-on-surface-variant);
401
+ content: "\e7ab";
402
+ font-size: 16px;
403
+ left: 5px;
404
+ position: absolute;
405
+ top: 2px;
406
+ }
407
+
408
+ .e-de-columns-presets-genral {
409
+ height: 62px;
410
+ width: 62px;
411
+ margin-right: 33px;
412
+ margin-bottom: 12px;
413
+ }
414
+
415
+ .e-de-columns-padding-alignment {
416
+ padding-top: 24px;
417
+ }
418
+
419
+ .e-de-column-dlg-preview-div {
420
+ border: 1px solid rgba(var(--color-sf-outline-variant));
421
+ height: 120px;
422
+ width: 120px;
423
+ }
424
+
425
+ .e-de-padding-col-prev {
426
+ padding-left: 15px;
427
+ }
428
+
429
+ .e-width-space-div {
430
+ width: 320px;
431
+ }
432
+
433
+ .e-de-columns-presets-genral.e-de-rtl {
434
+ margin-left: 33px;
435
+ }
436
+
437
+ .e-de-padding-col-prev.e-de-rtl {
438
+ padding-right: 15px;
439
+ }
440
+
441
+ .e-de-column-dlg-preview-div.e-de-rtl {
442
+ border: 1px solid rgba(var(--color-sf-outline-variant));
443
+ height: 120px;
444
+ width: 120px;
445
+ }
446
+
447
+ .e-menu-item .e-de-cmt-add::before {
448
+ content: "\e82c";
449
+ }
450
+
451
+ .e-menu-item .e-de-cut::before {
452
+ content: "\e7fb";
453
+ }
454
+
455
+ .e-menu-item .e-de-spellcheck::before {
456
+ content: "\e7f0";
457
+ }
458
+
459
+ .e-menu-item .e-de-copy::before {
460
+ content: "\e77c";
461
+ }
462
+
463
+ .e-menu-item .e-de-paste::before {
464
+ content: "\e70b";
465
+ }
466
+
467
+ .e-menu-item .e-de-continue-numbering::before {
468
+ content: "\e718";
469
+ }
470
+
471
+ .e-menu-item .e-de-restart-at::before {
472
+ content: "\e715";
473
+ }
474
+
475
+ .e-menu-item .e-de-insertlink::before {
476
+ content: "\e757";
477
+ }
478
+
479
+ .e-menu-item .e-de-open-hyperlink::before {
480
+ content: "\e797";
481
+ }
482
+
483
+ .e-menu-item .e-de-copy-hyperlink::before {
484
+ content: "\e745";
485
+ }
486
+
487
+ .e-menu-item .e-de-open-properties::before {
488
+ content: "\e77e";
489
+ }
490
+
491
+ .e-menu-item .e-de-edit-hyperlink::before {
492
+ content: "\e722";
493
+ }
494
+
495
+ .e-menu-item .e-de-remove-hyperlink::before {
496
+ content: "\e80c";
497
+ }
498
+
499
+ .e-menu-item .e-de-fonts::before {
500
+ content: "\e76f";
501
+ }
502
+
503
+ .e-menu-item .e-de-paragraph::before {
504
+ content: "\e7b8";
505
+ }
506
+
507
+ .e-menu-item .e-de-table::before {
508
+ content: "\e7d1";
509
+ }
510
+
511
+ .e-menu-item .e-de-insertabove::before {
512
+ content: "\e836";
513
+ }
514
+
515
+ .e-menu-item .e-de-insertbelow::before {
516
+ content: "\e801";
517
+ }
518
+
519
+ .e-menu-item .e-de-insertleft::before {
520
+ content: "\e78b";
521
+ }
522
+
523
+ .e-menu-item .e-de-insertright::before {
524
+ content: "\e70e";
525
+ }
526
+
527
+ .e-menu-item .e-de-delete-table::before {
528
+ content: "\e811";
529
+ }
530
+
531
+ .e-menu-item .e-de-deleterow::before {
532
+ content: "\e7f2";
533
+ }
534
+
535
+ .e-menu-item .e-de-deletecolumn::before {
536
+ content: "\e714";
537
+ }
538
+
539
+ .e-de-bold::before {
540
+ content: "\e737";
541
+ font-family: "e-icons";
542
+ }
543
+
544
+ .e-de-italic::before {
545
+ content: "\e75a";
546
+ font-family: "e-icons";
547
+ }
548
+
549
+ .e-de-underline::before {
550
+ content: "\e82f";
551
+ font-family: "e-icons";
552
+ }
553
+
554
+ .e-de-indent::before {
555
+ content: "\e72a";
556
+ font-family: "e-icons";
557
+ }
558
+
559
+ .e-de-outdent::before {
560
+ content: "\e810";
561
+ font-family: "e-icons";
562
+ }
563
+
564
+ .e-de-align-left::before {
565
+ content: "\e7b8";
566
+ font-family: "e-icons";
567
+ }
568
+
569
+ .e-de-align-center::before {
570
+ content: "\e813";
571
+ font-family: "e-icons";
572
+ }
573
+
574
+ .e-de-align-right::before {
575
+ content: "\e719";
576
+ font-family: "e-icons";
577
+ }
578
+
579
+ .e-de-justify::before {
580
+ content: "\e721";
581
+ font-family: "e-icons";
582
+ }
583
+
584
+ .e-de-single-spacing::before {
585
+ content: "\e771";
586
+ font-family: "e-icons";
587
+ }
588
+
589
+ .e-de-double-spacing::before {
590
+ content: "\e7c4";
591
+ font-family: "e-icons";
592
+ }
593
+
594
+ .e-de-one-point-five-spacing::before {
595
+ content: "\e725";
596
+ font-family: "e-icons";
597
+ }
598
+
599
+ .e-de-before-spacing::before {
600
+ content: "\e7b5";
601
+ font-family: "e-icons";
602
+ }
603
+
604
+ .e-de-after-spacing::before {
605
+ content: "\e767";
606
+ font-family: "e-icons";
607
+ }
608
+
609
+ .e-de-icon-bullet-list-dot::before {
610
+ content: "\e747";
611
+ font-family: "e-icons";
612
+ font-size: 8px;
613
+ line-height: 28px;
614
+ }
615
+
616
+ .e-de-icon-bullet-list-circle::before {
617
+ content: "\e7d0";
618
+ font-family: "e-icons";
619
+ font-size: 8px;
620
+ line-height: 28px;
621
+ }
622
+
623
+ .e-de-icon-bullet-list-square::before {
624
+ content: "\e7be";
625
+ font-family: "e-icons";
626
+ font-size: 8px;
627
+ line-height: 28px;
628
+ }
629
+
630
+ .e-de-icon-bullet-list-tick::before {
631
+ content: "\e7fc";
632
+ font-family: "e-icons";
633
+ font-size: 12px;
634
+ }
635
+
636
+ .e-de-icon-bullet-list-flower::before {
637
+ content: "\e79b";
638
+ font-family: "e-icons";
639
+ font-size: 12px;
640
+ }
641
+
642
+ .e-de-icon-bullet-list-arrow::before {
643
+ content: "\e763";
644
+ font-family: "e-icons";
645
+ font-size: 12px;
646
+ }
647
+
648
+ .e-de-icon-bullet-list-none::before {
649
+ content: "\e7f3";
650
+ font-family: "e-icons";
651
+ font-size: 24px;
652
+ }
653
+
654
+ .e-de-icon-autofit::before {
655
+ content: "\e74a";
656
+ font-family: "e-icons";
657
+ }
658
+
659
+ .e-de-icon-fixed-columnwidth::before {
660
+ content: "\e785";
661
+ font-family: "e-icons";
662
+ }
663
+
664
+ .e-de-icon-auto-fitwindow::before {
665
+ content: "\e759";
666
+ font-family: "e-icons";
667
+ }
668
+
669
+ .e-item .e-de-paste-text::before {
670
+ content: "\e70f";
671
+ font-family: "e-icons";
672
+ }
673
+
674
+ .e-item .e-de-paste-source::before {
675
+ content: "\e842";
676
+ font-family: "e-icons";
677
+ }
678
+
679
+ .e-item .e-de-paste-merge::before {
680
+ content: "\e752";
681
+ font-family: "e-icons";
682
+ }
683
+
684
+ .e-btn-icon .e-de-paste::before,
685
+ .e-icon-btn .e-de-paste::before {
686
+ content: "\e70b";
687
+ font-family: "e-icons";
688
+ }
689
+
690
+ .e-item .e-de-paste-column::before {
691
+ content: "\e885";
692
+ }
693
+
694
+ .e-item .e-de-paste-row::before {
695
+ content: "\e884";
696
+ }
697
+
698
+ .e-item .e-de-paste-overwrite-cells::before {
699
+ content: "\e886";
700
+ }
701
+
702
+ .e-item .e-de-paste-nested-table::before {
703
+ content: "\e883";
704
+ }
705
+
706
+ .e-item .e-de-paste-merge-table::before {
707
+ content: "\e882";
708
+ }
709
+
710
+ .e-de-preset-container {
711
+ width: 95px;
712
+ }
713
+
714
+ .e-de-preset-container.e-de-rtl {
715
+ width: 85px;
716
+ }
717
+
718
+ .e-de-dlg-container {
719
+ padding-bottom: 16px;
720
+ }
721
+
722
+ .e-de-dlg-row {
723
+ display: -ms-flexbox;
724
+ display: flex;
725
+ }
726
+
727
+ .e-de-container-row {
728
+ display: -ms-flexbox;
729
+ display: flex;
730
+ padding-bottom: 16px;
731
+ }
732
+
733
+ .e-de-subcontainer-left {
734
+ padding-right: 10px;
735
+ width: 50%;
736
+ }
737
+
738
+ .e-de-subcontainer-right {
739
+ padding-left: 10px;
740
+ width: 50%;
741
+ }
742
+
743
+ .e-de-dlg-tab-first-child {
744
+ padding-top: 10px;
745
+ }
746
+
747
+ .e-de-dlg-heading {
748
+ display: block;
749
+ font-size: 14px;
750
+ font-weight: 600;
751
+ margin-bottom: 6px;
752
+ }
753
+
754
+ .e-rtl .e-de-subcontainer-left {
755
+ padding-left: 10px;
756
+ padding-right: 0;
757
+ }
758
+ .e-rtl .e-de-subcontainer-right {
759
+ padding-left: 0;
760
+ padding-right: 10px;
761
+ width: 50%;
762
+ }
763
+
764
+ .e-bigger .e-de-dlg-container {
765
+ padding-bottom: 20px;
766
+ }
767
+ .e-bigger .e-de-container-row {
768
+ padding-bottom: 20px;
769
+ }
770
+ .e-bigger .e-de-subcontainer-left {
771
+ padding-right: 10px;
772
+ width: 50%;
773
+ }
774
+ .e-bigger .e-de-subcontainer-right {
775
+ padding-left: 10px;
776
+ width: 50%;
777
+ }
778
+ .e-bigger .e-de-dlg-tab-first-child {
779
+ padding-top: 10px;
780
+ }
781
+ .e-bigger .e-rtl .e-de-subcontainer-left {
782
+ padding-left: 10px;
783
+ padding-right: 0;
784
+ }
785
+ .e-bigger .e-rtl .e-de-subcontainer-right {
786
+ padding-left: 0;
787
+ padding-right: 10px;
788
+ width: 50%;
789
+ }
790
+
791
+ .e-de-blink-cursor {
792
+ border-left: 1px solid rgba(var(--color-sf-black));
793
+ pointer-events: none;
794
+ position: absolute;
795
+ z-index: 3;
796
+ }
797
+
798
+ .e-de-cursor-animation {
799
+ animation-duration: 1s;
800
+ animation-iteration-count: infinite;
801
+ animation-name: FadeInFadeOut;
802
+ }
803
+
804
+ @keyframes FadeInFadeOut {
805
+ from {
806
+ opacity: 1;
807
+ }
808
+ 13% {
809
+ opacity: 0;
810
+ }
811
+ 50% {
812
+ opacity: 0;
813
+ }
814
+ 63% {
815
+ opacity: 1;
816
+ }
817
+ to {
818
+ opacity: 1;
819
+ }
820
+ }
821
+ .e-de-text-target {
822
+ border: 0;
823
+ height: 1px;
824
+ opacity: 0;
825
+ outline-style: none;
826
+ overflow: hidden;
827
+ pointer-events: none;
828
+ position: absolute;
829
+ top: -10000px;
830
+ width: 625px;
831
+ }
832
+
833
+ .e-de-txt-form .e-de-txt-field {
834
+ display: block;
835
+ }
836
+ .e-de-txt-form .e-de-num-field {
837
+ display: none;
838
+ }
839
+ .e-de-txt-form .e-de-date-field {
840
+ display: none;
841
+ }
842
+ .e-de-txt-form .e-de-ddl-field {
843
+ display: none;
844
+ }
845
+
846
+ .e-de-num-form .e-de-txt-field {
847
+ display: none;
848
+ }
849
+ .e-de-num-form .e-de-num-field {
850
+ display: block;
851
+ }
852
+ .e-de-num-form .e-de-date-field {
853
+ display: none;
854
+ }
855
+ .e-de-num-form .e-de-ddl-field {
856
+ display: none;
857
+ }
858
+
859
+ .e-de-date-form .e-de-txt-field {
860
+ display: none;
861
+ }
862
+ .e-de-date-form .e-de-num-field {
863
+ display: none;
864
+ }
865
+ .e-de-date-form .e-de-date-field {
866
+ display: block;
867
+ }
868
+ .e-de-date-form .e-de-ddl-field {
869
+ display: none;
870
+ }
871
+
872
+ .e-de-ddl-form .e-de-txt-field {
873
+ display: none;
874
+ }
875
+ .e-de-ddl-form .e-de-num-field {
876
+ display: none;
877
+ }
878
+ .e-de-ddl-form .e-de-date-field {
879
+ display: none;
880
+ }
881
+ .e-de-ddl-form .e-de-ddl-field {
882
+ display: block;
883
+ }
884
+
885
+ .e-documenteditor .e-de-op-close-button {
886
+ left: 267px;
887
+ position: absolute;
888
+ top: 8px;
889
+ }
890
+ .e-documenteditor .e-de-op-close-button.e-de-rtl {
891
+ left: 14px;
892
+ }
893
+
894
+ /* stylelint-disable */
895
+ .e-de-background {
896
+ background-color: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
897
+ }
898
+
899
+ .e-de-column-label {
900
+ font-size: 13;
901
+ font-weight: 500;
902
+ padding-left: 20px;
903
+ padding-right: 20px;
904
+ }
905
+
906
+ .e-de-column-label.e-de-rtl {
907
+ font-size: 13;
908
+ font-weight: 500;
909
+ padding-left: 50px;
910
+ padding-right: 50px;
911
+ }
912
+
913
+ .e-de-ff-sub-header {
914
+ display: block;
915
+ font-size: 12px;
916
+ font-weight: 400;
917
+ margin-top: 6px;
918
+ }
919
+
920
+ .e-de-check-exactnumbr-width {
921
+ width: 130px !important;
922
+ }
923
+
924
+ .e-de-ff-dlg-heading {
925
+ display: block;
926
+ font-weight: 600;
927
+ margin-bottom: 6px;
928
+ font-size: 14px;
929
+ }
930
+
931
+ .e-de-ff-dlg-heading-small {
932
+ display: block;
933
+ font-weight: 600;
934
+ margin-bottom: 4px;
935
+ }
936
+
937
+ .e-de-ff-dlg-drpdwn-heading {
938
+ display: block;
939
+ font-size: 14px;
940
+ font-weight: 600;
941
+ margin-bottom: 8px;
942
+ }
943
+
944
+ .e-de-ff-dlg-check {
945
+ display: block;
946
+ font-size: 14px;
947
+ font-weight: 600;
948
+ margin-bottom: -2px;
949
+ }
950
+
951
+ .e-de-div-seperate-dlg {
952
+ display: -ms-inline-flexbox;
953
+ display: inline-flex;
954
+ margin-bottom: 12px;
955
+ width: 100%;
956
+ }
957
+
958
+ .e-de-ff-radio-div {
959
+ display: -ms-inline-flexbox;
960
+ display: inline-flex;
961
+ margin-right: 16px;
962
+ }
963
+
964
+ .e-de-ff-radio-div.e-de-rtl {
965
+ margin-left: 16px;
966
+ margin-right: 0;
967
+ }
968
+
969
+ .e-de-ff-radio-scnd-div {
970
+ display: -ms-inline-flexbox;
971
+ display: inline-flex;
972
+ margin-bottom: 0;
973
+ margin-right: 16px;
974
+ }
975
+
976
+ .e-de-ff-radio-scnd-div.e-de-rtl {
977
+ margin-left: 16px;
978
+ margin-right: 0;
979
+ }
980
+
981
+ .e-de-ff-dlg-lft-hlf {
982
+ margin-right: 12px;
983
+ width: 50.5%;
984
+ }
985
+
986
+ .e-de-ff-dlg-lft-hlf.e-de-rtl {
987
+ margin-left: 12px;
988
+ margin-right: 0;
989
+ }
990
+
991
+ .e-de-ff-chck-exact {
992
+ margin-left: 15px;
993
+ margin-top: -6px;
994
+ }
995
+
996
+ .e-de-ff-chck-exact.e-de-rtl {
997
+ margin-left: 0;
998
+ margin-right: 15px;
999
+ }
1000
+
1001
+ .e-de-ff-dlg-rght-hlf {
1002
+ width: 47.5%;
1003
+ }
1004
+
1005
+ .e-de-ff-drpdwn-dlg-scndiv {
1006
+ display: -ms-inline-flexbox;
1007
+ display: inline-flex;
1008
+ height: 168px;
1009
+ margin-bottom: 4px;
1010
+ width: 100%;
1011
+ }
1012
+
1013
+ .e-de-cmt-avatar {
1014
+ -ms-flex-align: center;
1015
+ align-items: center;
1016
+ display: -ms-flexbox;
1017
+ display: flex;
1018
+ width: 95%;
1019
+ }
1020
+
1021
+ .e-de-ff-cmt-avatar {
1022
+ -ms-flex-align: center;
1023
+ align-items: center;
1024
+ border-radius: 50%;
1025
+ color: rgba(var(--color-sf-white));
1026
+ display: -ms-flexbox;
1027
+ display: flex;
1028
+ font-size: 12px;
1029
+ height: 24px;
1030
+ -ms-flex-pack: center;
1031
+ justify-content: center;
1032
+ letter-spacing: 0;
1033
+ line-height: 12px;
1034
+ opacity: 100%;
1035
+ -webkit-user-select: none;
1036
+ -ms-user-select: none;
1037
+ user-select: none;
1038
+ width: 24px;
1039
+ z-index: 1;
1040
+ }
1041
+
1042
+ .e-de-ff-drpdwn-listview {
1043
+ margin-right: 12px;
1044
+ width: 100%;
1045
+ }
1046
+
1047
+ .e-de-ff-drpdwn-listview.e-de-rtl {
1048
+ margin-left: 12px;
1049
+ margin-right: 0;
1050
+ }
1051
+
1052
+ .e-de-ff-drpdwn-mvup {
1053
+ margin-right: 8px;
1054
+ }
1055
+
1056
+ .e-de-ff-drpdwn-mvup.e-de-rtl {
1057
+ margin-left: 8px;
1058
+ margin-right: 0;
1059
+ }
1060
+
1061
+ .e-de-drp-dwn-frst-div {
1062
+ margin-bottom: 8px;
1063
+ width: 47.5%;
1064
+ }
1065
+
1066
+ .e-de-result-list-block .e-de-search-result-hglt {
1067
+ background: transparent;
1068
+ border-bottom: 2px solid rgba(var(--color-sf-primary));
1069
+ cursor: default;
1070
+ padding: 12px 1px 12px 5px;
1071
+ }
1072
+
1073
+ .e-de-result-list-block .e-de-op-search-txt .e-de-op-search-word-text {
1074
+ color: rgba(var(--color-sf-primary));
1075
+ }
1076
+
1077
+ .e-de-search-result-item {
1078
+ cursor: default;
1079
+ padding: 12px 1px 12px 5px;
1080
+ word-break: break-word;
1081
+ }
1082
+
1083
+ .e-de-search-result-item:hover {
1084
+ border-bottom: 1px solid rgba(var(--color-sf-primary));
1085
+ cursor: default;
1086
+ }
1087
+
1088
+ .e-de-search-result-item:focus {
1089
+ border-bottom: 2px solid rgba(var(--color-sf-primary));
1090
+ cursor: default;
1091
+ padding: 12px 1px 12px 5px;
1092
+ }
1093
+
1094
+ .e-de-search-tab-content .e-input-group .e-de-op-search-icon:focus {
1095
+ border: 1px solid rgba(var(--color-sf-on-surface-variant));
1096
+ }
1097
+
1098
+ .e-de-op-search-icon:hover {
1099
+ background: rgba(var(--color-sf-outline-variant));
1100
+ }
1101
+
1102
+ .e-de-search-tab-content .e-input-group .e-de-op-search-close-icon:focus {
1103
+ border: 1px solid rgba(var(--color-sf-on-surface-variant));
1104
+ border-right-width: 0;
1105
+ }
1106
+
1107
+ .e-de-op-search-close-icon:hover {
1108
+ background: rgba(var(--color-sf-outline-variant));
1109
+ }
1110
+
1111
+ .e-spin-down:focus {
1112
+ border: 1px solid rgba(var(--color-sf-outline-variant));
1113
+ border-right-width: 0;
1114
+ }
1115
+
1116
+ .e-spin-down:hover {
1117
+ background: rgba(var(--color-sf-outline-variant));
1118
+ }
1119
+
1120
+ .e-spin-up:focus {
1121
+ border: 1px solid rgba(var(--color-sf-outline-variant));
1122
+ border-right-width: 0;
1123
+ }
1124
+
1125
+ .e-spin-up:hover {
1126
+ background: rgba(var(--color-sf-outline-variant));
1127
+ }
1128
+
1129
+ .e-de-toc-dlg-heading {
1130
+ color: rgba(var(--color-sf-on-surface-variant));
1131
+ display: block;
1132
+ font-size: 14px;
1133
+ font-weight: 600;
1134
+ margin-bottom: 8px;
1135
+ }
1136
+
1137
+ .e-de-toc-dlg-main-heading {
1138
+ color: rgba(var(--color-sf-on-surface-variant));
1139
+ display: block;
1140
+ font-size: 14px;
1141
+ font-weight: 600;
1142
+ margin-bottom: 8px;
1143
+ }
1144
+
1145
+ .e-content-placeholder.e-documenteditor.e-placeholder-documenteditor {
1146
+ background-size: 100%;
1147
+ }
1148
+
1149
+ .e-de-toc-reset-button {
1150
+ margin-top: 10px;
1151
+ }
1152
+
1153
+ .e-de-toc-reset-button.e-de-rtl {
1154
+ margin-right: 0;
1155
+ }
1156
+
1157
+ .e-de-toc-modify-button {
1158
+ margin-left: 156px;
1159
+ margin-top: 10px;
1160
+ }
1161
+
1162
+ .e-de-toc-modify-button.e-de-rtl {
1163
+ margin-left: 0;
1164
+ margin-right: 156px;
1165
+ }
1166
+
1167
+ .e-de-toc-dlg-container {
1168
+ height: 454px;
1169
+ width: 550px;
1170
+ }
1171
+
1172
+ .e-de-toc-dlg-sub-container {
1173
+ margin-bottom: 8px;
1174
+ }
1175
+
1176
+ .e-de-toc-list-view {
1177
+ border: 1px solid rgba(var(--color-sf-outline));
1178
+ border-radius: 3px;
1179
+ font-size: 12px;
1180
+ height: 186px;
1181
+ overflow-y: scroll;
1182
+ }
1183
+
1184
+ .e-de-toc-list-view.e-de-rtl {
1185
+ margin-left: 0;
1186
+ }
1187
+
1188
+ .e-de-toc-dlg-sub-heading {
1189
+ color: rgba(var(--color-sf-on-surface-variant));
1190
+ display: block;
1191
+ font-size: 14px;
1192
+ font-weight: 600;
1193
+ margin: 5px 15px 5px 15px;
1194
+ }
1195
+
1196
+ .e-de-toc-dlg-style-label {
1197
+ margin-left: 42px;
1198
+ margin-top: 35px;
1199
+ }
1200
+
1201
+ .e-de-toc-dlg-style-label .e-de-rtl {
1202
+ margin-left: 0;
1203
+ margin-right: 42px;
1204
+ }
1205
+
1206
+ .e-de-pagesetup-dlg-container {
1207
+ height: auto;
1208
+ width: 380px;
1209
+ }
1210
+
1211
+ .e-de-page-setup-ppty-tab {
1212
+ border: 0;
1213
+ }
1214
+
1215
+ .e-de-page-setup-dlg-sub-container {
1216
+ margin-bottom: 12px;
1217
+ }
1218
+
1219
+ .e-de-page-setup-dlg-left-sub-container {
1220
+ float: left;
1221
+ position: relative;
1222
+ top: 0;
1223
+ }
1224
+
1225
+ .e-de-page-setup-dlg-left-sub-container.e-de-rtl {
1226
+ float: right;
1227
+ }
1228
+
1229
+ .e-de-page-setup-dlg-right-sub-container {
1230
+ float: right;
1231
+ position: relative;
1232
+ top: 0;
1233
+ }
1234
+
1235
+ .e-de-page-setup-dlg-right-sub-container.e-de-rtl {
1236
+ float: left;
1237
+ }
1238
+
1239
+ .e-de-page-setup-dlg-sub-header {
1240
+ display: block;
1241
+ font-size: 12px;
1242
+ font-weight: 400;
1243
+ margin-bottom: 2px;
1244
+ margin-top: 16px;
1245
+ }
1246
+
1247
+ .e-de-page-setup-dlg-sub-title-header {
1248
+ display: block;
1249
+ font-size: 12px;
1250
+ font-weight: 400;
1251
+ margin-bottom: 2px;
1252
+ margin-top: 12px;
1253
+ }
1254
+
1255
+ .e-de-page-setup-dlg-sub-container-port {
1256
+ height: auto;
1257
+ margin-bottom: 0;
1258
+ }
1259
+
1260
+ .e-de-page-setup-dlg-sub-label {
1261
+ font-size: 14px;
1262
+ font-weight: 600;
1263
+ }
1264
+
1265
+ .e-de-page-setup-dlg-orientation-prop {
1266
+ margin-top: 6px;
1267
+ }
1268
+
1269
+ .e-de-page-setup-dlg-sub-size-container {
1270
+ height: 73px;
1271
+ margin-bottom: 12px;
1272
+ }
1273
+
1274
+ .e-de-page-setup-dlg-layout-sub-container {
1275
+ height: auto;
1276
+ margin-bottom: 12px;
1277
+ position: relative;
1278
+ top: 12px;
1279
+ }
1280
+
1281
+ .e-de-page-setup-dlg-first-page-prop {
1282
+ margin-bottom: 8px;
1283
+ }
1284
+
1285
+ .e-de-page-setup-dlg-first-page-prop .e-label,
1286
+ .e-de-page-setup-dlg-odd-or-even-prop .e-label {
1287
+ font-size: 12px;
1288
+ }
1289
+
1290
+ .e-de-page-setup-dlg-first-page-prop .e-frame,
1291
+ .e-de-page-setup-dlg-odd-or-even-prop .e-frame {
1292
+ height: 18px;
1293
+ line-height: 1.5;
1294
+ width: 18px;
1295
+ }
1296
+
1297
+ .e-de-page-setup-dlg-left-layout-container {
1298
+ float: left;
1299
+ position: relative;
1300
+ top: 0;
1301
+ }
1302
+
1303
+ .e-de-page-setup-dlg-left-layout-container.e-de-rtl {
1304
+ float: right;
1305
+ }
1306
+
1307
+ .e-de-page-setup-dlg-right-layout-container {
1308
+ float: right;
1309
+ position: relative;
1310
+ top: 0;
1311
+ }
1312
+
1313
+ .e-de-page-setup-dlg-right-layout-container.e-de-rtl {
1314
+ float: left;
1315
+ }
1316
+
1317
+ .e-de-dlg-footer .e-btn {
1318
+ margin-left: 10px;
1319
+ }
1320
+
1321
+ .e-de-hyperlink-dlg-title {
1322
+ font-size: 12px;
1323
+ font-weight: 400;
1324
+ margin-bottom: 3px;
1325
+ margin-top: 0;
1326
+ }
1327
+
1328
+ .e-de-hyperlink .e-de-hyperlink-dlg-input {
1329
+ height: 32px;
1330
+ margin-bottom: 8px;
1331
+ width: 240px;
1332
+ }
1333
+
1334
+ .e-de-font-dlg-header {
1335
+ display: -ms-flexbox;
1336
+ display: flex;
1337
+ font-size: 12px;
1338
+ font-weight: 400;
1339
+ margin-bottom: 4px;
1340
+ }
1341
+
1342
+ .e-de-font-dlg-header-effects,
1343
+ .e-de-font-dlg-header-font-color {
1344
+ display: -ms-flexbox;
1345
+ display: flex;
1346
+ font-size: 12px;
1347
+ font-weight: 400;
1348
+ margin-bottom: 0;
1349
+ }
1350
+
1351
+ .e-de-font-dlg-main-header {
1352
+ color: rgba(var(--color-sf-on-surface-variant));
1353
+ font-size: 14px;
1354
+ font-weight: 400;
1355
+ margin-right: 17px;
1356
+ }
1357
+
1358
+ .e-de-font-dlg-cb-right {
1359
+ margin-left: 12px;
1360
+ }
1361
+
1362
+ .e-de-font-dlg-cb-right.e-de-rtl {
1363
+ margin-left: 0;
1364
+ margin-right: 12px;
1365
+ }
1366
+
1367
+ .e-de-font-dlg-cb-right-div {
1368
+ margin-left: 20px;
1369
+ }
1370
+
1371
+ .e-de-dropdown {
1372
+ margin-right: 20px;
1373
+ }
1374
+
1375
+ .e-de-restrict-pane {
1376
+ border-right: 1px solid rgba(var(--color-sf-outline-variant));
1377
+ padding-left: 12px;
1378
+ padding-top: 12px;
1379
+ padding-right: 12px;
1380
+ position: relative;
1381
+ width: 300px;
1382
+ }
1383
+
1384
+ .e-de-op {
1385
+ border-right: 1px solid rgba(var(--color-sf-outline-variant));
1386
+ padding-left: 12px;
1387
+ padding-right: 12px;
1388
+ position: relative;
1389
+ width: 300px;
1390
+ }
1391
+
1392
+ .e-de-op.e-de-rtl {
1393
+ padding-left: 0;
1394
+ padding-right: 12px;
1395
+ }
1396
+
1397
+ .e-de-op-header {
1398
+ color: rgba(var(--color-sf-on-surface));
1399
+ font-family: inherit;
1400
+ font-size: 15px;
1401
+ font-weight: 600;
1402
+ margin-bottom: 1px;
1403
+ padding-top: 12px;
1404
+ }
1405
+
1406
+ .e-de-op-header.e-de-rtl {
1407
+ direction: rtl;
1408
+ text-align: right;
1409
+ }
1410
+
1411
+ .e-de-op-tab {
1412
+ border: 0;
1413
+ height: auto;
1414
+ }
1415
+
1416
+ .e-de-op-icon {
1417
+ color: rgba(var(--color-sf-on-surface-variant));
1418
+ height: 20px;
1419
+ width: 20px;
1420
+ }
1421
+
1422
+ .e-de-op-close-icon {
1423
+ color: rgba(var(--color-sf-on-surface-variant));
1424
+ }
1425
+
1426
+ .e-de-op-nav-btn {
1427
+ height: 20px;
1428
+ width: 20px;
1429
+ }
1430
+
1431
+ .e-de-op-search-txt {
1432
+ border-bottom: 1px solid rgba(var(--color-sf-outline-variant));
1433
+ color: rgba(var(--color-sf-on-surface-variant));
1434
+ font-size: 14px;
1435
+ }
1436
+
1437
+ .e-de-op-search-txt .e-de-op-search-word {
1438
+ color: rgba(var(--color-sf-primary));
1439
+ }
1440
+
1441
+ .e-de-op-more-less {
1442
+ display: -ms-inline-flexbox;
1443
+ display: inline-flex;
1444
+ margin-top: 16px;
1445
+ }
1446
+
1447
+ .e-de-op-replacetabcontentdiv {
1448
+ margin-top: 16px;
1449
+ }
1450
+
1451
+ label[for*=_wholeWord_e-de-ltr] {
1452
+ left: 35px;
1453
+ }
1454
+
1455
+ label[for*=_wholeWord_e-de-rtl] {
1456
+ right: 35px;
1457
+ }
1458
+
1459
+ .e-de-cell-dia-label-common {
1460
+ display: inline-block;
1461
+ font-size: 12px;
1462
+ font-weight: 400;
1463
+ margin-bottom: 4px;
1464
+ margin-top: 0;
1465
+ width: 150px;
1466
+ }
1467
+
1468
+ .e-de-cell-dia-options-label {
1469
+ font-weight: 600;
1470
+ }
1471
+
1472
+ .e-de-table-border-heading {
1473
+ font-size: 14px;
1474
+ font-weight: 500;
1475
+ padding-bottom: 16px;
1476
+ }
1477
+
1478
+ .e-de-table-setting-heading {
1479
+ font-size: 12px;
1480
+ font-weight: 500;
1481
+ padding-bottom: 4px;
1482
+ }
1483
+
1484
+ .e-de-layout-setting-heading {
1485
+ font-size: 12px;
1486
+ font-weight: 500;
1487
+ padding-bottom: 4px;
1488
+ }
1489
+
1490
+ .e-de-table-setting-labels-heading {
1491
+ font-size: 13;
1492
+ font-weight: 500;
1493
+ margin-left: 62px;
1494
+ }
1495
+
1496
+ .e-de-table-element-subheading {
1497
+ font-size: 13;
1498
+ font-weight: 500;
1499
+ }
1500
+
1501
+ .e-de-border-dlg-preview-div {
1502
+ border: 1px solid rgba(0, 0, 0, 0.54);
1503
+ width: 80px;
1504
+ height: 80px;
1505
+ }
1506
+
1507
+ .e-de-border-dlg-preview-inside-divs {
1508
+ opacity: 0.54;
1509
+ }
1510
+
1511
+ .e-de-tablecell-dia-align-div {
1512
+ border: 1px solid rgba(var(--color-sf-outline));
1513
+ display: inline-block;
1514
+ height: 60px;
1515
+ margin-right: 11px;
1516
+ width: 60px;
1517
+ }
1518
+
1519
+ .e-de-tablecell-dia-align-div.e-de-rtl {
1520
+ margin-left: 11px;
1521
+ margin-right: 0;
1522
+ }
1523
+
1524
+ .e-de-table-dia-align-label {
1525
+ display: inline-block;
1526
+ font-size: 12px;
1527
+ margin-left: 62px;
1528
+ margin-top: 4px;
1529
+ }
1530
+
1531
+ .e-de-table-dialog-separator-line {
1532
+ background-color: rgba(var(--color-sf-outline));
1533
+ bottom: 59px;
1534
+ display: none;
1535
+ height: 1px;
1536
+ left: 1px;
1537
+ margin-top: 5px;
1538
+ position: absolute;
1539
+ width: 100%;
1540
+ }
1541
+
1542
+ .e-de-table-alignment-active {
1543
+ border: 1px solid rgba(var(--color-sf-primary));
1544
+ }
1545
+
1546
+ .e-de-table-dialog-options-label {
1547
+ font-size: 12px;
1548
+ font-weight: 600;
1549
+ padding-bottom: 8px;
1550
+ }
1551
+
1552
+ .e-de-table-dialog-size-label {
1553
+ padding-top: 16px !important;
1554
+ font-weight: 600;
1555
+ font-size: 12px;
1556
+ }
1557
+
1558
+ .e-de-list-ddl-header {
1559
+ font-size: 14px;
1560
+ font-weight: 600;
1561
+ margin-bottom: 8px;
1562
+ margin-top: 12px;
1563
+ }
1564
+
1565
+ .e-de-list-ddl-header-list-level {
1566
+ font-size: 14px;
1567
+ font-weight: 600;
1568
+ margin-bottom: 8px;
1569
+ }
1570
+
1571
+ .e-de-tbl-dlg-footer {
1572
+ padding-top: 23px;
1573
+ }
1574
+
1575
+ .e-de-row-ht-top,
1576
+ .e-de-cell-ht-top {
1577
+ padding: 0 12px;
1578
+ width: 160px;
1579
+ }
1580
+
1581
+ .e-de-ht-wdth-type {
1582
+ margin-top: -22px;
1583
+ width: 120px;
1584
+ }
1585
+
1586
+ .e-de-row-ht-top.e-de-rtl,
1587
+ .e-de-cell-ht-top.e-de-rtl {
1588
+ margin-left: 0;
1589
+ margin-right: 12px;
1590
+ }
1591
+
1592
+ .e-de-cell-width-top {
1593
+ margin-left: 20px;
1594
+ margin-top: -23px;
1595
+ }
1596
+
1597
+ .e-de-cell-width-top.e-de-rtl {
1598
+ margin-left: 0;
1599
+ margin-right: 20px;
1600
+ }
1601
+
1602
+ .e-de-tbl-dlg-border-btn {
1603
+ float: right;
1604
+ margin-top: 24px;
1605
+ }
1606
+
1607
+ .e-de-tbl-dlg-border-btn.e-de-rtl {
1608
+ float: left;
1609
+ margin-right: 0;
1610
+ }
1611
+
1612
+ .e-de-table-border-setting.e-de-rtl {
1613
+ right: 5px;
1614
+ }
1615
+
1616
+ .e-de-tbl-dlg-op-btn {
1617
+ left: 440px;
1618
+ position: absolute;
1619
+ top: 285px;
1620
+ }
1621
+
1622
+ .e-de-insert-table-dlg-sub-header {
1623
+ display: block;
1624
+ font-size: 12px;
1625
+ font-weight: 400;
1626
+ margin-bottom: 4px;
1627
+ margin-top: 0;
1628
+ }
1629
+
1630
+ .e-de-insert-footnote-dlg-sub-header,
1631
+ .e-de-insert-footnote-dlg-header {
1632
+ display: block;
1633
+ font-size: 12px;
1634
+ font-weight: 400;
1635
+ margin-bottom: 4px;
1636
+ margin-top: 0;
1637
+ }
1638
+
1639
+ .e-de-insert-footnote-dlg-header {
1640
+ margin-bottom: 12px;
1641
+ }
1642
+
1643
+ .e-de-insert-table-dlg-input {
1644
+ margin-bottom: 16px;
1645
+ }
1646
+
1647
+ .e-de-list-ddl-subheader,
1648
+ .e-de-list-ddl-subheaderbottom {
1649
+ font-size: 12px;
1650
+ font-weight: 600;
1651
+ margin-bottom: 4px;
1652
+ margin-top: 12px;
1653
+ }
1654
+
1655
+ .e-de-list-dlg-subdiv {
1656
+ float: right;
1657
+ margin-top: 40px;
1658
+ position: relative;
1659
+ }
1660
+
1661
+ .e-de-list-dlg-subdiv.e-de-rtl {
1662
+ float: left;
1663
+ margin-top: -121px;
1664
+ }
1665
+
1666
+ .e-de-list-dlg-div {
1667
+ float: right;
1668
+ margin-top: 36px;
1669
+ position: relative;
1670
+ }
1671
+
1672
+ .e-de-list-dlg-div.e-de-rtl {
1673
+ float: left;
1674
+ margin-top: -125px;
1675
+ }
1676
+
1677
+ .e-de-ok-button {
1678
+ margin-right: 8px;
1679
+ }
1680
+
1681
+ .e-de-ok-button.e-de-rtl {
1682
+ margin-left: 8px;
1683
+ }
1684
+
1685
+ .e-de-options-setter {
1686
+ left: 339px;
1687
+ }
1688
+
1689
+ .e-de-op-close-icon:hover {
1690
+ color: rgba(0, 0, 0, 0.75);
1691
+ }
1692
+
1693
+ .e-de-tooltip {
1694
+ background-color: rgba(var(--color-sf-surface));
1695
+ box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.26);
1696
+ color: rgba(var(--color-sf-on-surface));
1697
+ cursor: text;
1698
+ display: table;
1699
+ max-width: 200px;
1700
+ padding: 5px;
1701
+ word-wrap: break-word;
1702
+ }
1703
+
1704
+ .e-de-form-popup {
1705
+ background-color: rgba(var(--color-sf-surface));
1706
+ box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.26);
1707
+ color: rgba(var(--color-sf-on-surface));
1708
+ cursor: text;
1709
+ max-width: 350px;
1710
+ min-width: 300px;
1711
+ padding: 16px;
1712
+ position: absolute;
1713
+ width: fit-content;
1714
+ word-wrap: break-word;
1715
+ }
1716
+
1717
+ .e-de-save,
1718
+ .e-de-cancel {
1719
+ margin-left: 8px;
1720
+ }
1721
+
1722
+ .e-btn.e-de-op-icon-btn {
1723
+ background-color: transparent;
1724
+ border-color: transparent;
1725
+ }
1726
+
1727
+ .e-documenteditor .e-de-op-close-button {
1728
+ left: 250px;
1729
+ position: absolute;
1730
+ top: 8px;
1731
+ }
1732
+
1733
+ .e-de-restrict-pane {
1734
+ color: rgba(var(--color-sf-on-surface));
1735
+ }
1736
+
1737
+ .e-de-op.e-de-rtl .e-de-search-tab-content {
1738
+ margin-left: 12px;
1739
+ margin-right: 0;
1740
+ }
1741
+
1742
+ .e-documenteditor .e-de-op-close-button.e-de-rtl {
1743
+ right: 255px;
1744
+ }
1745
+
1746
+ .e-de-table-measure-lbl {
1747
+ font-size: 12px;
1748
+ font-weight: 400;
1749
+ display: block;
1750
+ margin-bottom: 4px;
1751
+ }
1752
+
1753
+ .e-de-tbl-indent-lbl {
1754
+ font-weight: 400;
1755
+ font-size: 12px;
1756
+ position: relative;
1757
+ display: block;
1758
+ margin-bottom: 0;
1759
+ top: 6px;
1760
+ }
1761
+
1762
+ .e-btn.e-de-op-close-button:hover {
1763
+ background-color: transparent;
1764
+ border-color: transparent;
1765
+ color: rgba(0, 0, 0, 0.75);
1766
+ }
1767
+
1768
+ .e-btn.e-de-op-close-button:focus {
1769
+ background-color: transparent;
1770
+ border-color: transparent;
1771
+ color: rgba(0, 0, 0, 0.75);
1772
+ }
1773
+
1774
+ .e-btn.e-de-op-close-button:active {
1775
+ background-color: transparent;
1776
+ border-color: transparent;
1777
+ color: rgba(var(--color-sf-on-surface-variant), 0.5);
1778
+ }
1779
+
1780
+ .e-documenteditor .e-input {
1781
+ font-size: 14px;
1782
+ }
1783
+
1784
+ .e-de-dlg-target .e-footer-content .e-control.e-btn.e-flat:not(.e-icon-btn) {
1785
+ height: 32px;
1786
+ }
1787
+
1788
+ .e-de-tbl-dlg-border-btn .e-control.e-btn.e-flat:not(.e-icon-btn) {
1789
+ height: auto;
1790
+ }
1791
+
1792
+ .e-de-op-result-container {
1793
+ margin-top: 12px;
1794
+ }
1795
+
1796
+ .e-de-restrict-pane,
1797
+ .e-de-op {
1798
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
1799
+ }
1800
+
1801
+ .e-de-restrict-pane .e-tab-header .e-toolbar-items,
1802
+ .e-de-op .e-tab-header .e-toolbar-items {
1803
+ margin-bottom: 0;
1804
+ margin-top: 0;
1805
+ }
1806
+
1807
+ .e-de-font-dlg-color {
1808
+ border: 1px linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
1809
+ border-radius: 4px;
1810
+ font-size: 12px;
1811
+ height: 16px;
1812
+ margin-left: 15px;
1813
+ width: 25px;
1814
+ }
1815
+
1816
+ .e-de-icon-table-row-above {
1817
+ top: 10px;
1818
+ }
1819
+
1820
+ .e-de-icon-table-row-below {
1821
+ top: 49px;
1822
+ }
1823
+
1824
+ .e-de-icon-table-column-left {
1825
+ top: 89px;
1826
+ }
1827
+
1828
+ .e-de-icon-table-column-right {
1829
+ top: 127px;
1830
+ }
1831
+
1832
+ .e-de-icon-table-delete {
1833
+ top: 10px;
1834
+ }
1835
+
1836
+ .e-de-icon-table-row-delete {
1837
+ top: 49px;
1838
+ }
1839
+
1840
+ .e-de-icon-table-column-delete {
1841
+ top: 89px;
1842
+ }
1843
+
1844
+ .e-de-list-bullet-none {
1845
+ height: 40px;
1846
+ width: 40px;
1847
+ }
1848
+
1849
+ .e-de-list-bullet-dot {
1850
+ height: 40px;
1851
+ width: 40px;
1852
+ }
1853
+
1854
+ .e-de-list-bullet-circle {
1855
+ height: 40px;
1856
+ width: 40px;
1857
+ }
1858
+
1859
+ .e-de-list-bullet-square {
1860
+ height: 40px;
1861
+ width: 40px;
1862
+ }
1863
+
1864
+ .e-de-list-bullet-flower {
1865
+ height: 40px;
1866
+ width: 40px;
1867
+ }
1868
+
1869
+ .e-de-list-bullet-arrow {
1870
+ height: 40px;
1871
+ width: 40px;
1872
+ }
1873
+
1874
+ .e-de-list-bullet-tick {
1875
+ height: 40px;
1876
+ width: 40px;
1877
+ }
1878
+
1879
+ .e-de-bullet:hover {
1880
+ background: rgba(0, 0, 0, 0.12);
1881
+ }
1882
+
1883
+ .e-de-list-numbered-none {
1884
+ height: 80px;
1885
+ width: 80px;
1886
+ }
1887
+
1888
+ .e-de-list-numbered-number-dot {
1889
+ height: 80px;
1890
+ width: 80px;
1891
+ }
1892
+
1893
+ .e-de-list-numbered-number-brace {
1894
+ height: 80px;
1895
+ width: 80px;
1896
+ }
1897
+
1898
+ .e-de-list-numbered-up-roman {
1899
+ height: 80px;
1900
+ width: 80px;
1901
+ }
1902
+
1903
+ .e-de-list-numbered-up-letter {
1904
+ height: 80px;
1905
+ width: 80px;
1906
+ }
1907
+
1908
+ .e-de-list-numbered-low-letter-brace {
1909
+ height: 80px;
1910
+ width: 80px;
1911
+ }
1912
+
1913
+ .e-de-numbered-low-letter-dot {
1914
+ height: 80px;
1915
+ width: 80px;
1916
+ }
1917
+
1918
+ .e-de-list-numbered-low-roman {
1919
+ height: 80px;
1920
+ width: 80px;
1921
+ }
1922
+
1923
+ .e-de-numbered:hover {
1924
+ background: rgba(0, 0, 0, 0.12);
1925
+ }
1926
+
1927
+ .e-de-list-multilevel-none {
1928
+ height: 80px;
1929
+ width: 80px;
1930
+ }
1931
+
1932
+ .e-de-list-multilevel-list-normal {
1933
+ height: 80px;
1934
+ width: 80px;
1935
+ }
1936
+
1937
+ .e-de-list-multilevel-list-multilevel {
1938
+ height: 80px;
1939
+ width: 80px;
1940
+ }
1941
+
1942
+ .e-de-list-multilevel-list-bullets {
1943
+ height: 80px;
1944
+ width: 80px;
1945
+ }
1946
+
1947
+ .e-de-multilevel-list:hover {
1948
+ background: rgba(0, 0, 0, 0.12);
1949
+ }
1950
+
1951
+ .e-de-list-dialog-open:hover {
1952
+ background: rgba(0, 0, 0, 0.12);
1953
+ }
1954
+
1955
+ .e-de-cell-options {
1956
+ left: 336px;
1957
+ top: 272px;
1958
+ }
1959
+
1960
+ .e-de-cell-options.e-de-rtl {
1961
+ left: 123px;
1962
+ }
1963
+
1964
+ .e-de-font-color-label {
1965
+ margin-bottom: 8px;
1966
+ margin-right: 12px;
1967
+ margin-top: 12px;
1968
+ }
1969
+
1970
+ .e-de-font-content-label {
1971
+ width: 125px;
1972
+ }
1973
+
1974
+ .e-de-font-color-margin {
1975
+ margin-right: 8px;
1976
+ margin-top: 5px;
1977
+ }
1978
+
1979
+ .e-de-font-color-margin.e-de-rtl {
1980
+ margin-left: 8px;
1981
+ margin-right: 0;
1982
+ }
1983
+
1984
+ .e-de-font-content-checkbox-label {
1985
+ margin-left: 46px;
1986
+ }
1987
+
1988
+ .e-de-font-content-checkbox-label-rtl {
1989
+ margin-right: 41px;
1990
+ }
1991
+
1992
+ .e-bigger .e-de-font-content-checkbox-label {
1993
+ margin-left: 64px;
1994
+ }
1995
+ .e-bigger .e-de-font-content-checkbox-label-rtl {
1996
+ margin-right: 64px;
1997
+ }
1998
+ .e-bigger .e-de-font-content-label {
1999
+ width: 154px;
2000
+ }
2001
+
2002
+ .e-de-font-checkbox {
2003
+ margin-top: 8px;
2004
+ }
2005
+
2006
+ .e-de-font-checkbox-transform {
2007
+ margin-left: 58px;
2008
+ }
2009
+
2010
+ .e-de-font-checkbox-transform.e-de-rtl {
2011
+ margin-left: 0;
2012
+ margin-right: 58px;
2013
+ }
2014
+
2015
+ .e-de-font-checkbox-transform-label {
2016
+ margin-bottom: 8px;
2017
+ margin-top: 8px;
2018
+ }
2019
+
2020
+ .e-de-font-checkbox.e-de-rtl {
2021
+ margin-left: 0;
2022
+ margin-right: 58px;
2023
+ }
2024
+
2025
+ .e-de-font-checkbox.e-de-rtl {
2026
+ margin-left: 0;
2027
+ margin-right: 58px;
2028
+ }
2029
+
2030
+ .e-de-font-clr-div {
2031
+ margin-top: 12px;
2032
+ }
2033
+
2034
+ .e-de-font-dlg-padding {
2035
+ margin-top: 12px;
2036
+ }
2037
+
2038
+ .e-de-table-container-div {
2039
+ margin-top: 11px;
2040
+ }
2041
+
2042
+ .e-de-table-header-div {
2043
+ padding-top: 0;
2044
+ }
2045
+
2046
+ .e-de-table-subheader-div {
2047
+ float: right;
2048
+ margin-right: 140px;
2049
+ margin-top: -40px;
2050
+ }
2051
+
2052
+ .e-de-table-subheader-div.e-de-rtl {
2053
+ float: left;
2054
+ margin-left: 140px;
2055
+ margin-right: 0;
2056
+ }
2057
+
2058
+ .e-de-table-cell-header-div {
2059
+ padding-top: 0;
2060
+ }
2061
+
2062
+ .e-de-table-cell-subheader-div {
2063
+ top: 57px;
2064
+ }
2065
+
2066
+ .e-de-cell-margin-header {
2067
+ left: -26px;
2068
+ top: 274px;
2069
+ }
2070
+
2071
+ .e-de-font-dlg-display {
2072
+ display: -ms-inline-flexbox;
2073
+ display: inline-flex;
2074
+ }
2075
+
2076
+ .e-de-tbl-margin-sub-header {
2077
+ margin-top: 10px;
2078
+ }
2079
+
2080
+ .e-de-tbl-btn-separator {
2081
+ width: 60%;
2082
+ }
2083
+
2084
+ .e-de-op-msg {
2085
+ color: rgba(var(--color-sf-on-surface));
2086
+ top: 79px;
2087
+ }
2088
+
2089
+ .e-de-save-dlg-file-name {
2090
+ height: 25px;
2091
+ margin-bottom: 8px;
2092
+ }
2093
+
2094
+ .e-de-save-dlg-format-type {
2095
+ height: 25px;
2096
+ margin-bottom: 8px;
2097
+ padding-top: 1px;
2098
+ }
2099
+
2100
+ .e-de-search-tab-content {
2101
+ margin-top: 12px;
2102
+ width: 275px;
2103
+ }
2104
+
2105
+ .e-de-font-dlg {
2106
+ width: max-content;
2107
+ padding: 8px;
2108
+ }
2109
+
2110
+ .e-de-hyperlink {
2111
+ width: 240px;
2112
+ }
2113
+
2114
+ .e-de-table-border-shading-dlg .e-de-dlg-row .e-de-dlg-row label {
2115
+ margin-left: 10px;
2116
+ }
2117
+
2118
+ .e-de-table-setting-heading {
2119
+ line-height: 22px;
2120
+ letter-spacing: 0.3000000119px;
2121
+ }
2122
+
2123
+ .e-de-rp-btn-enforce {
2124
+ border-radius: 4px !important;
2125
+ }
2126
+
2127
+ .e-de-track-toolbar .e-de-track-pane-drop-btn, #e-de-menu-option {
2128
+ background: none;
2129
+ }
2130
+
2131
+ .e-bigger .e-de-hyperlink {
2132
+ width: 320px;
2133
+ }
2134
+
2135
+ .e-de-insert-table {
2136
+ height: auto;
2137
+ width: auto;
2138
+ }
2139
+
2140
+ .e-de-insert-footnote {
2141
+ height: auto;
2142
+ width: 280px;
2143
+ }
2144
+
2145
+ .e-de-insert-spellchecker {
2146
+ height: 360px;
2147
+ width: 513px;
2148
+ font-weight: 400;
2149
+ }
2150
+
2151
+ .e-bigger .e-de-insert-spellchecker {
2152
+ width: 600px;
2153
+ }
2154
+
2155
+ .e-de-dlg-spellcheck-listview {
2156
+ border: 1px solid rgba(var(--color-sf-outline-variant));
2157
+ border-radius: 2px !important;
2158
+ height: 122px !important;
2159
+ margin-right: 12px;
2160
+ margin-top: 8px;
2161
+ position: relative;
2162
+ float: left;
2163
+ width: 100%;
2164
+ }
2165
+
2166
+ .e-de-dlg-spellcheck-listview.e-de-rtl {
2167
+ float: right;
2168
+ }
2169
+
2170
+ .e-de-spellcheck-error-container {
2171
+ height: 140px;
2172
+ margin-bottom: 16px;
2173
+ display: -ms-flexbox;
2174
+ display: flex;
2175
+ }
2176
+
2177
+ .e-de-spellcheck-suggestion-container {
2178
+ height: 140px;
2179
+ margin-bottom: 16px;
2180
+ display: -ms-flexbox;
2181
+ display: flex;
2182
+ }
2183
+
2184
+ .e-dlg-spellcheck-listitem {
2185
+ font-size: 15px !important;
2186
+ }
2187
+
2188
+ .e-de-spellcheck-btncontainer {
2189
+ margin-top: 8px;
2190
+ position: relative;
2191
+ width: 100%;
2192
+ float: right;
2193
+ }
2194
+
2195
+ .e-de-spellcheck-btncontainer.e-de-rtl {
2196
+ float: left;
2197
+ }
2198
+
2199
+ .e-de-spellcheck-btn {
2200
+ margin-bottom: 10px;
2201
+ width: 100%;
2202
+ }
2203
+
2204
+ .e-de-dlg-spellchecker-subheader {
2205
+ margin-top: 8px;
2206
+ font-size: 15px;
2207
+ }
2208
+
2209
+ .e-de-dlg-spellchecker-subheaderbtm {
2210
+ font-size: 15px;
2211
+ }
2212
+
2213
+ .e-de-list-dlg {
2214
+ height: 405px;
2215
+ width: 400px;
2216
+ }
2217
+
2218
+ .e-de-save-dlg {
2219
+ height: 135px;
2220
+ width: 230px;
2221
+ }
2222
+
2223
+ .e-de-table-properties-dlg {
2224
+ padding: 0px 8px;
2225
+ width: 430px;
2226
+ }
2227
+
2228
+ .e-de-table-border-shading-dlg {
2229
+ width: 440px;
2230
+ height: 400px;
2231
+ }
2232
+
2233
+ .e-de-table-cell-margin-dlg {
2234
+ height: auto;
2235
+ width: 412px;
2236
+ padding: 0px 8px;
2237
+ }
2238
+
2239
+ .e-de-table-options-dlg {
2240
+ height: auto;
2241
+ width: 395px;
2242
+ }
2243
+
2244
+ .e-de-table-border-none {
2245
+ position: absolute;
2246
+ top: 30px;
2247
+ }
2248
+
2249
+ .e-de-table-border-box {
2250
+ position: absolute;
2251
+ top: 95px;
2252
+ }
2253
+
2254
+ .e-de-table-border-all {
2255
+ position: absolute;
2256
+ top: 165px;
2257
+ }
2258
+
2259
+ .e-de-table-border-custom {
2260
+ position: absolute;
2261
+ top: 235px;
2262
+ }
2263
+
2264
+ .e-de-table-shading-preview {
2265
+ top: 385px;
2266
+ }
2267
+
2268
+ .e-de-font-label span.e-label {
2269
+ color: rgba(var(--color-sf-on-surface));
2270
+ }
2271
+
2272
+ .e-de-font-content-label:hover .e-label,
2273
+ .e-css.e-de-font-content-label:hover .e-label {
2274
+ color: rgba(var(--color-sf-on-surface));
2275
+ }
2276
+
2277
+ .e-de-font-label:hover .e-label,
2278
+ .e-css.e-de-font-label:hover .e-label {
2279
+ color: rgba(var(--color-sf-on-surface));
2280
+ }
2281
+
2282
+ .e-de-op-dlg-footer {
2283
+ margin-top: 18px;
2284
+ }
2285
+
2286
+ .e-de-op-dlg-footer .e-btn {
2287
+ padding-left: 6px;
2288
+ padding-right: 6px;
2289
+ }
2290
+
2291
+ .e-de-search-tab-content .e-input-group .e-de-search-input {
2292
+ width: 204px;
2293
+ }
2294
+
2295
+ .e-de-op-replacewith {
2296
+ width: 98%;
2297
+ }
2298
+
2299
+ .e-de-table-ppty-tab {
2300
+ border: 0;
2301
+ }
2302
+
2303
+ .e-de-list-format-info {
2304
+ border-radius: 50% !important;
2305
+ cursor: default;
2306
+ font-size: 12px !important;
2307
+ height: 15px;
2308
+ line-height: 1px;
2309
+ padding: 3px 0 0 0 !important;
2310
+ text-transform: lowercase;
2311
+ width: 16px;
2312
+ }
2313
+
2314
+ .e-button-custom {
2315
+ height: 32px;
2316
+ width: 100%;
2317
+ }
2318
+
2319
+ .e-bigger .e-button-custom {
2320
+ height: 37px;
2321
+ width: 100%;
2322
+ }
2323
+
2324
+ .e-styles-listview,
2325
+ .e-bookmark-listview {
2326
+ border: 1px solid rgba(var(--color-sf-outline));
2327
+ border-radius: 4px;
2328
+ height: 150px;
2329
+ overflow-y: scroll;
2330
+ }
2331
+
2332
+ .e-bookmark-gotobutton,
2333
+ .e-bookmark-addbutton,
2334
+ .e-styles-addbutton,
2335
+ .e-bookmark-deletebutton {
2336
+ margin-bottom: 12px;
2337
+ }
2338
+
2339
+ .e-bookmark-list {
2340
+ float: left;
2341
+ margin-right: 12px;
2342
+ width: 250px;
2343
+ }
2344
+
2345
+ .e-bookmark-list.e-de-rtl {
2346
+ margin-left: 12px;
2347
+ margin-right: 0;
2348
+ }
2349
+
2350
+ .e-bookmark-textboxdiv {
2351
+ margin-bottom: 8px;
2352
+ }
2353
+
2354
+ .e-bookmark-listview .e-list-item {
2355
+ font-size: 13px;
2356
+ height: 30px;
2357
+ line-height: 27px;
2358
+ }
2359
+
2360
+ .e-bookmark-common {
2361
+ display: -ms-flexbox;
2362
+ display: flex;
2363
+ }
2364
+
2365
+ .e-bookmark-button {
2366
+ position: relative;
2367
+ top: 0;
2368
+ }
2369
+
2370
+ .e-font {
2371
+ float: left;
2372
+ }
2373
+
2374
+ .e-font-rtl {
2375
+ float: right;
2376
+ }
2377
+
2378
+ .e-de-table-border-toptop-alignment,
2379
+ .e-de-table-border-topcenter-alignment,
2380
+ .e-de-table-border-topbottom-alignment,
2381
+ .e-de-table-border-diagionalup-alignment,
2382
+ .e-de-table-border-diagionaldown-alignment,
2383
+ .e-de-table-border-bottomleft-alignment,
2384
+ .e-de-table-border-bottomcenter-alignment,
2385
+ .e-de-table-border-bottomright-alignment {
2386
+ left: 48%;
2387
+ position: relative;
2388
+ top: 59%;
2389
+ transform: translate(-50%, -50%);
2390
+ }
2391
+
2392
+ .e-de-style-properties,
2393
+ .e-de-style-formatting {
2394
+ font-size: 14px;
2395
+ font-weight: 600;
2396
+ color: rgba(var(--color-sf-on-surface-variant));
2397
+ }
2398
+
2399
+ .e-de-style-formatting {
2400
+ margin-bottom: 8px;
2401
+ }
2402
+
2403
+ .e-de-style-paragraph-indent-group-button .e-btn,
2404
+ .e-de-style-paragraph-group-button .e-btn,
2405
+ .e-de-style-font-group-button .e-btn {
2406
+ box-shadow: none;
2407
+ }
2408
+
2409
+ .e-de-table-options-dlg-div {
2410
+ height: auto;
2411
+ position: relative;
2412
+ margin-bottom: 14px;
2413
+ width: 504px;
2414
+ }
2415
+
2416
+ .e-de-style-paragraph-indent-group-button .e-btn.e-active,
2417
+ .e-de-style-paragraph-group-button .e-btn.e-active,
2418
+ .e-de-style-font-group-button .e-btn.e-active {
2419
+ background-color: rgba(var(--color-sf-primary-container));
2420
+ border-color: rgba(var(--color-sf-primary-container));
2421
+ box-shadow: none;
2422
+ color: rgba(var(--color-sf-on-surface));
2423
+ }
2424
+
2425
+ .e-de-style-properties {
2426
+ margin-bottom: 12px;
2427
+ }
2428
+
2429
+ .e-de-style-nametype-div {
2430
+ margin-bottom: 20px;
2431
+ }
2432
+
2433
+ .e-de-style-based-para-div {
2434
+ margin-bottom: 12px;
2435
+ }
2436
+
2437
+ .e-de-style-name,
2438
+ .e-de-style-styletype,
2439
+ .e-de-style-style-based-on,
2440
+ .e-de-style-style-paragraph {
2441
+ font-weight: 400;
2442
+ margin-bottom: 8px;
2443
+ font-size: 12px;
2444
+ width: 180px;
2445
+ }
2446
+
2447
+ .e-de-style-left-div {
2448
+ margin-right: 20px;
2449
+ }
2450
+
2451
+ .e-de-style-left-div.e-de-rtl {
2452
+ margin-left: 20px;
2453
+ margin-right: 0;
2454
+ }
2455
+
2456
+ .e-de-style-font-color-picker,
2457
+ .e-de-style-icon-button-size,
2458
+ .e-de-style-icon-button-first-size,
2459
+ .e-de-style-icon-button-last-size {
2460
+ height: 31px;
2461
+ }
2462
+
2463
+ .e-bigger .e-de-style-font-color-picker,
2464
+ .e-bigger .e-de-style-icon-button-size,
2465
+ .e-bigger .e-de-style-icon-button-first-size,
2466
+ .e-bigger .e-de-style-icon-button-last-size {
2467
+ height: 35px;
2468
+ }
2469
+ .e-bigger .e-de-style-bold-button-size {
2470
+ margin-left: 8px;
2471
+ }
2472
+
2473
+ .e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-group-button button,
2474
+ .e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-style-paragraph button {
2475
+ height: 40px !important;
2476
+ width: 44px !important;
2477
+ }
2478
+ .e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
2479
+ height: 40px !important;
2480
+ width: auto !important;
2481
+ }
2482
+
2483
+ .e-bigger .e-rtl .e-de-style-font-group-button button,
2484
+ .e-bigger .e-rtl .e-de-style-paragraph-indent-group-button button,
2485
+ .e-bigger .e-rtl .e-de-style-paragraph-group-button button {
2486
+ height: 40px !important;
2487
+ width: 44px !important;
2488
+ }
2489
+ .e-bigger .e-de-style-font-group-button button,
2490
+ .e-bigger .e-de-style-paragraph-indent-group-button button,
2491
+ .e-bigger .e-de-style-paragraph-group-button button {
2492
+ height: 40px !important;
2493
+ width: 44px !important;
2494
+ }
2495
+
2496
+ .e-de-style-font-group-button button,
2497
+ .e-de-style-paragraph-indent-group-button button,
2498
+ .e-de-style-paragraph-group-button button {
2499
+ width: 36px;
2500
+ border-radius: 4px;
2501
+ margin-right: 5px;
2502
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.11), rgba(var(--color-sf-primary), 0.11)), rgba(var(--color-sf-surface));
2503
+ }
2504
+
2505
+ .e-de-style-bold-button-size {
2506
+ margin-left: 8px;
2507
+ margin-right: 8px;
2508
+ height: 31px;
2509
+ }
2510
+
2511
+ .e-de-style-format-dropdwn .e-btn-icon {
2512
+ margin-left: 8px;
2513
+ }
2514
+
2515
+ .e-de-style-font-color-picker,
2516
+ .e-de-style-icon-button-size {
2517
+ margin-right: 8px;
2518
+ }
2519
+
2520
+ .e-de-style-icon-button-first-size {
2521
+ margin-left: 8px;
2522
+ margin-right: 3px;
2523
+ }
2524
+
2525
+ .e-de-style-icon-button-last-size {
2526
+ margin-right: 8px;
2527
+ }
2528
+
2529
+ .e-de-style-font-color-picker {
2530
+ margin-left: 8px;
2531
+ }
2532
+
2533
+ .e-style-font-fmaily-right {
2534
+ margin-right: 8px;
2535
+ }
2536
+
2537
+ .e-style-font {
2538
+ margin-left: 20px;
2539
+ margin-right: 20px;
2540
+ }
2541
+
2542
+ .e-de-style-dlg-name-input {
2543
+ height: 32px;
2544
+ }
2545
+
2546
+ .e-style-list {
2547
+ margin-left: 20px;
2548
+ }
2549
+
2550
+ .e-de-style-dialog .e-de-style-only-this-document {
2551
+ margin-top: 25px;
2552
+ }
2553
+
2554
+ .e-de-style-format-dropdwn {
2555
+ width: 135px;
2556
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.11), rgba(var(--color-sf-primary), 0.11)), rgba(var(--color-sf-surface));
2557
+ border-radius: 2px;
2558
+ }
2559
+
2560
+ .e-de-style-options-div,
2561
+ .e-de-style-options-div > div:first-child {
2562
+ margin-bottom: 12px !important;
2563
+ }
2564
+
2565
+ .e-de-op-replace-messagediv {
2566
+ color: rgba(var(--color-sf-on-surface));
2567
+ top: auto;
2568
+ }
2569
+
2570
+ .e-de-font-content-label .e-label,
2571
+ .e-de-font-dlg-cb-right .e-label,
2572
+ .e-de-font-checkbox .e-label {
2573
+ font-size: 14px;
2574
+ }
2575
+
2576
+ .e-de-font-content-label .e-frame,
2577
+ .e-de-font-dlg-cb-right .e-frame,
2578
+ .e-de-font-checkbox .e-frame,
2579
+ .e-de-font-content-label-caps .e-frame,
2580
+ .e-de-cntr-pane-padding .e-frame {
2581
+ height: 18px;
2582
+ line-height: 1.5;
2583
+ width: 18px;
2584
+ }
2585
+
2586
+ .e-de-op-input-group,
2587
+ .e-de-op-replacewith {
2588
+ height: auto;
2589
+ }
2590
+
2591
+ .e-bigger .e-de-op-input-group,
2592
+ .e-bigger .e-de-op-replacewith {
2593
+ height: 40px;
2594
+ }
2595
+
2596
+ .e-de-hyperlink-bookmark-check {
2597
+ margin-top: 8px;
2598
+ }
2599
+
2600
+ .e-de-table-container-div .e-checkbox-wrapper .e-frame,
2601
+ .e-de-table-header-div .e-checkbox-wrapper .e-frame,
2602
+ .e-de-table-ppty-options-break .e-checkbox-wrapper .e-frame,
2603
+ .e-de-table-ppty-options-header-row .e-checkbox-wrapper .e-frame,
2604
+ .e-de-table-cell-header-div .e-checkbox-wrapper .e-frame,
2605
+ .e-de-tbl-btn-separator .e-checkbox-wrapper .e-frame,
2606
+ .e-de-hyperlink-bookmark-check .e-checkbox-wrapper .e-frame,
2607
+ .e-de-tbl-margin-sub-header .e-frame {
2608
+ height: 18px;
2609
+ line-height: 1.5;
2610
+ width: 18px;
2611
+ }
2612
+
2613
+ .e-de-table-container-div .e-checkbox-wrapper .e-label,
2614
+ .e-de-table-header-div .e-checkbox-wrapper .e-label,
2615
+ .e-de-table-ppty-options-break .e-checkbox-wrapper .e-label,
2616
+ .e-de-table-ppty-options-header-row .e-checkbox-wrapper .e-label,
2617
+ .e-de-table-cell-header-div .e-checkbox-wrapper .e-label,
2618
+ .e-de-tbl-btn-separator .e-checkbox-wrapper .e-label,
2619
+ .e-de-hyperlink-bookmark-check .e-checkbox-wrapper .e-label,
2620
+ .e-de-tbl-margin-sub-header .e-label {
2621
+ font-size: 14px;
2622
+ }
2623
+
2624
+ .e-de-table-container-div .e-checkbox-wrapper .e-label,
2625
+ .e-de-table-header-div .e-checkbox-wrapper .e-label,
2626
+ .e-de-table-ppty-options-break .e-checkbox-wrapper .e-label,
2627
+ .e-de-table-ppty-options-header-row .e-checkbox-wrapper .e-label,
2628
+ .e-de-table-cell-header-div .e-checkbox-wrapper .e-label,
2629
+ .e-de-tbl-btn-separator .e-checkbox-wrapper .e-label,
2630
+ .e-de-hyperlink-bookmark-check .e-checkbox-wrapper .e-label,
2631
+ .e-de-tbl-margin-sub-header .e-label {
2632
+ font-size: 14px;
2633
+ }
2634
+
2635
+ .e-de-table-ppty-dlg-measure-div {
2636
+ float: right;
2637
+ margin-left: 12px;
2638
+ margin-top: -18px;
2639
+ }
2640
+
2641
+ .e-de-table-ppty-dlg-measure-div.e-de-rtl {
2642
+ float: left;
2643
+ margin-left: 0;
2644
+ margin-right: 12px;
2645
+ }
2646
+
2647
+ .e-de-table-ppty-dlg-measure-drop-down-div {
2648
+ float: right;
2649
+ margin-left: 12px;
2650
+ margin-top: 6px;
2651
+ width: 120px;
2652
+ }
2653
+
2654
+ .e-de-table-ppty-dlg-measure-drop-down-div.e-de-rtl {
2655
+ margin-left: 0;
2656
+ margin-right: 12px;
2657
+ }
2658
+
2659
+ .e-de-table-ppty-dlg-left-indent-container {
2660
+ bottom: 5px;
2661
+ left: 46px;
2662
+ position: relative;
2663
+ }
2664
+
2665
+ .e-de-table-ppty-dlg-left-indent-container.e-de-rtl {
2666
+ right: 46px;
2667
+ }
2668
+
2669
+ .e-de-table-ppty-dlg-row-height-label {
2670
+ float: right;
2671
+ margin-right: 184px;
2672
+ margin-top: -62px;
2673
+ }
2674
+
2675
+ .e-de-table-ppty-dlg-row-height-label.e-de-rtl {
2676
+ float: left;
2677
+ margin-left: 184px;
2678
+ margin-right: 0;
2679
+ }
2680
+
2681
+ .e-de-table-ppty-dlg-preferred-width-div {
2682
+ float: right;
2683
+ margin-left: 12px;
2684
+ margin-top: 6px;
2685
+ width: 120px;
2686
+ }
2687
+
2688
+ .e-de-table-ppty-dlg-preferred-width-div.e-de-rtl {
2689
+ margin-left: 0;
2690
+ margin-right: 12px;
2691
+ width: 120px;
2692
+ }
2693
+
2694
+ .e-de-table-ppty-options-break {
2695
+ margin-bottom: 8px;
2696
+ }
2697
+
2698
+ .e-de-table-cell-subheader-div {
2699
+ margin-right: 125px;
2700
+ margin-top: -37px;
2701
+ }
2702
+
2703
+ .e-de-table-cell-subheader-div.e-de-rtl {
2704
+ margin-left: 125px;
2705
+ margin-right: 0;
2706
+ }
2707
+
2708
+ .e-de-table-ppty-dlg-cell-tab-measure-label {
2709
+ float: right;
2710
+ margin-right: 190px;
2711
+ margin-top: -58px;
2712
+ }
2713
+
2714
+ .e-tab .e-tab-header .e-toolbar-item .e-de-table-ppty-dlg-row-header {
2715
+ padding-left: 12px;
2716
+ padding-right: 12px;
2717
+ }
2718
+
2719
+ .e-tab .e-tab-header .e-toolbar-item .e-de-table-ppty-dlg-cell-header {
2720
+ padding-left: 12px;
2721
+ padding-right: 12px;
2722
+ }
2723
+
2724
+ .e-tab .e-tab-header .e-toolbar-item .e-de-page-setup-dlg-margin-tab-header {
2725
+ padding-left: 15px;
2726
+ padding-right: 12px;
2727
+ }
2728
+
2729
+ .e-styles-list {
2730
+ float: left;
2731
+ margin-right: 12px;
2732
+ width: 250px;
2733
+ }
2734
+
2735
+ .e-styles-textboxdiv {
2736
+ padding-bottom: 15px;
2737
+ }
2738
+
2739
+ .e-styles-listview .e-list-item {
2740
+ font-size: 13px;
2741
+ height: 30px;
2742
+ line-height: 27px;
2743
+ }
2744
+
2745
+ .e-styles-common {
2746
+ padding-top: 5px;
2747
+ }
2748
+
2749
+ .e-styles-button {
2750
+ float: right;
2751
+ }
2752
+
2753
+ .e-de-toc-dlg-right-sub-container.e-de-rtl {
2754
+ margin-left: 2px;
2755
+ margin-right: 2px;
2756
+ }
2757
+
2758
+ .e-de-toc-dlg-styles {
2759
+ margin-bottom: 11px;
2760
+ margin-left: 38px;
2761
+ margin-top: 12px;
2762
+ }
2763
+
2764
+ .e-de-toc-dlg-styles.e-de-rtl {
2765
+ margin-left: 0;
2766
+ margin-right: 38px;
2767
+ }
2768
+
2769
+ .e-de-toc-dlg-style-input.e-de-rtl {
2770
+ margin-left: 0;
2771
+ margin-right: 38px;
2772
+ }
2773
+
2774
+ .e-de-toc-table-div .e-de-toc-dlg-toc-level {
2775
+ height: 24px;
2776
+ margin-left: 36px;
2777
+ width: 44px;
2778
+ }
2779
+
2780
+ .e-de-toc-styles-table-div {
2781
+ border: 1px solid rgba(var(--color-sf-outline));
2782
+ border-radius: 3px;
2783
+ margin-top: 10px;
2784
+ width: 100%;
2785
+ height: 183px;
2786
+ }
2787
+
2788
+ .e-de-toc-dlg-sub-level-heading {
2789
+ font-size: 12px;
2790
+ }
2791
+
2792
+ .e-de-toc-table-div {
2793
+ height: 143px;
2794
+ overflow-y: scroll;
2795
+ width: 100%;
2796
+ }
2797
+
2798
+ .e-de-toc-dlg-style-input {
2799
+ margin-bottom: 3px;
2800
+ margin-left: 38px;
2801
+ width: 210px;
2802
+ }
2803
+
2804
+ .e-de-toc-dlg-outline-levels {
2805
+ margin-top: 15px;
2806
+ width: 150px;
2807
+ }
2808
+
2809
+ .e-bookmark-textboxdiv .e-bookmark-textbox-input {
2810
+ height: 32px;
2811
+ }
2812
+
2813
+ .e-styles-dlgfields {
2814
+ font-weight: 400;
2815
+ margin-bottom: 6px;
2816
+ }
2817
+
2818
+ .e-tab .e-tab-header .e-toolbar-item .e-de-op-find-tab-header {
2819
+ padding-left: 15px;
2820
+ padding-right: 12px;
2821
+ }
2822
+
2823
+ .e-tab .e-tab-header .e-toolbar-item .e-de-op-replace-tab-header {
2824
+ padding-left: 15px;
2825
+ padding-right: 12px;
2826
+ }
2827
+
2828
+ .e-de-dlg-target .e-footer-content .e-list-dlg-font {
2829
+ margin-left: 1px;
2830
+ }
2831
+
2832
+ .e-bookmark-dlgfields {
2833
+ font-weight: 400;
2834
+ font-size: 12px;
2835
+ margin-bottom: 4px;
2836
+ }
2837
+
2838
+ .e-de-ui-wfloating-menu.e-de-ui-bullets-menu .e-de-ui-wfloating-menuitem-md {
2839
+ height: 64px;
2840
+ padding: 8px 10px 8px 10px;
2841
+ width: 64px;
2842
+ }
2843
+
2844
+ .e-de-ui-wfloating-menu.e-de-ui-bullets-menu .e-de-ui-wfloating-bullet-menuitem-md {
2845
+ height: 45px;
2846
+ width: 45px;
2847
+ }
2848
+
2849
+ .e-de-bullet-icon-size {
2850
+ height: 45px;
2851
+ width: 45px;
2852
+ }
2853
+
2854
+ .e-de-ui-list-header-presetmenu {
2855
+ cursor: pointer;
2856
+ font-size: 11px;
2857
+ line-height: 14px;
2858
+ min-width: 40px;
2859
+ overflow: hidden;
2860
+ text-align: left;
2861
+ white-space: nowrap;
2862
+ width: 100%;
2863
+ }
2864
+
2865
+ .e-de-number-bullet-dlg .e-tab .e-content .e-item {
2866
+ padding: 0px;
2867
+ }
2868
+
2869
+ .e-de-number-bullet-dlg {
2870
+ width: 300px;
2871
+ }
2872
+
2873
+ .e-de-style-numbered-list,
2874
+ .e-de-ui-bullet-list-header-presetmenu {
2875
+ height: 172px;
2876
+ }
2877
+
2878
+ .e-de-ui-bullet {
2879
+ font-size: 42px;
2880
+ }
2881
+
2882
+ .e-de-ui-list-header-presetmenu .e-de-ui-list-line {
2883
+ border-bottom: 1px solid rgba(var(--color-sf-on-surface-variant));
2884
+ margin-left: 5px;
2885
+ width: 100%;
2886
+ }
2887
+
2888
+ .e-de-ui-list-header-presetmenu div span {
2889
+ color: rgba(var(--color-sf-on-surface-variant));
2890
+ display: inline-block;
2891
+ vertical-align: middle;
2892
+ }
2893
+
2894
+ .e-de-ui-wfloating-menu .e-de-ui-wfloating-menuitem,
2895
+ .e-de-ui-wfloating-menu .e-de-ui-menuitem-none {
2896
+ border: 0;
2897
+ box-shadow: inset 0 0 0 1px rgba(var(--color-sf-outline));
2898
+ cursor: pointer;
2899
+ height: 70px;
2900
+ margin: 0 8px 8px 0;
2901
+ padding: 0;
2902
+ width: 70px;
2903
+ }
2904
+
2905
+ .e-de-ui-wfloating-menu {
2906
+ padding: 0;
2907
+ }
2908
+
2909
+ .e-de-list-thumbnail .e-de-list-items {
2910
+ float: left;
2911
+ }
2912
+
2913
+ .e-de-list-thumbnail .e-de-list-items {
2914
+ background: rgba(var(--color-sf-surface));
2915
+ border: 1px solid transparent;
2916
+ clear: initial;
2917
+ display: inline-block;
2918
+ height: auto;
2919
+ margin: 5px;
2920
+ text-align: center;
2921
+ width: auto;
2922
+ }
2923
+
2924
+ .e-de-list-items {
2925
+ background: rgba(var(--color-sf-surface));
2926
+ box-sizing: border-box;
2927
+ cursor: pointer;
2928
+ list-style: none;
2929
+ padding: 7px 10px;
2930
+ position: relative;
2931
+ }
2932
+
2933
+ .e-de-list-item-size {
2934
+ font-size: 14px;
2935
+ }
2936
+
2937
+ .e-de-ui-wfloating-menu {
2938
+ padding: 0;
2939
+ }
2940
+
2941
+ .e-de-table-ppty-dlg-tabs {
2942
+ height: 280px;
2943
+ position: relative;
2944
+ }
2945
+
2946
+ .e-de-ui-bullet-list-header-presetmenu .e-de-list-thumbnail .e-de-list-active,
2947
+ .e-de-style-numbered-list .e-de-list-thumbnail .e-de-list-active {
2948
+ border-color: rgba(var(--color-sf-primary));
2949
+ }
2950
+
2951
+ .e-de-rp-sub-content-div {
2952
+ line-height: 1.5;
2953
+ font-size: 12px;
2954
+ margin-bottom: 8px;
2955
+ }
2956
+
2957
+ .e-de-bullet-icons {
2958
+ left: 50%;
2959
+ position: absolute;
2960
+ top: 50%;
2961
+ transform: translate(-50%, -50%);
2962
+ }
2963
+
2964
+ .e-de-header-footer-list {
2965
+ color: rgba(var(--color-sf-primary));
2966
+ }
2967
+
2968
+ .e-de-ltr-btn-div {
2969
+ font-size: 12px;
2970
+ width: 100px;
2971
+ }
2972
+
2973
+ .e-de-tbl-rtl-btn-div {
2974
+ font-size: 12px;
2975
+ margin-right: 14px;
2976
+ }
2977
+
2978
+ .e-de-tbl-rtl-btn-div.e-de-rtl {
2979
+ margin-left: 14px;
2980
+ margin-right: 0;
2981
+ }
2982
+
2983
+ .e-de-tbl-ltr-btn-div {
2984
+ font-size: 12px;
2985
+ }
2986
+
2987
+ .e-de-disabledbutton {
2988
+ opacity: 0.4;
2989
+ pointer-events: none;
2990
+ }
2991
+
2992
+ .e-bigger .e-de-insert-table {
2993
+ height: auto;
2994
+ width: auto;
2995
+ }
2996
+ .e-bigger .e-de-insert-footnote {
2997
+ height: auto;
2998
+ width: auto;
2999
+ }
3000
+ .e-bigger .e-de-dlg-target .e-footer-content .e-control.e-btn.e-flat:not(.e-icon-btn) {
3001
+ height: auto;
3002
+ }
3003
+ .e-bigger .e-de-font-dlg {
3004
+ width: max-content;
3005
+ }
3006
+ .e-bigger .e-para-dlg-sub-height {
3007
+ height: 170px;
3008
+ }
3009
+ .e-bigger .e-de-toc-table-div .e-de-toc-dlg-toc-level.e-de-rtl {
3010
+ margin-right: 36px;
3011
+ }
3012
+ .e-bigger .e-de-font-content-label-width {
3013
+ width: 90px;
3014
+ }
3015
+ .e-bigger .e-de-toc-label {
3016
+ margin-left: 0px;
3017
+ }
3018
+ .e-bigger .e-de-toc-label-rtl {
3019
+ margin-left: 0px;
3020
+ margin-right: 0px;
3021
+ }
3022
+ .e-bigger .e-de-outline-rtl {
3023
+ width: 173px;
3024
+ }
3025
+ .e-bigger .e-de-rp-header {
3026
+ font-size: 16px;
3027
+ width: 75%;
3028
+ }
3029
+
3030
+ .e-de-restrict-format {
3031
+ margin-top: 16px;
3032
+ }
3033
+
3034
+ .e-de-rp-format {
3035
+ font-size: 14px;
3036
+ margin-bottom: 12px;
3037
+ opacity: 0.65;
3038
+ font-weight: 400;
3039
+ }
3040
+
3041
+ .e-de-rp-checkbox {
3042
+ font-size: 12px;
3043
+ }
3044
+
3045
+ .e-de-rp-border {
3046
+ margin-bottom: 12px;
3047
+ margin-top: 12px;
3048
+ }
3049
+
3050
+ .e-de-rp-header {
3051
+ font-size: 15px;
3052
+ font-weight: 400;
3053
+ opacity: 0.87;
3054
+ color: rgba(var(--color-sf-on-surface));
3055
+ width: 75%;
3056
+ }
3057
+
3058
+ .e-de-rp-user .e-checkbox-wrapper {
3059
+ width: auto;
3060
+ }
3061
+
3062
+ .e-de-rp-nav-btn,
3063
+ .e-de-rp-btn-enforce {
3064
+ background: "";
3065
+ font-size: 13px;
3066
+ opacity: 0.87;
3067
+ border-radius: 2px;
3068
+ box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
3069
+ }
3070
+
3071
+ .e-bigger .e-de-rp-btn-enforce {
3072
+ padding-left: 10px;
3073
+ padding-right: 10px;
3074
+ }
3075
+
3076
+ .e-de-rp-nav-btn {
3077
+ width: auto;
3078
+ }
3079
+
3080
+ .e-de-rp-btn-stop-enforce {
3081
+ background: "";
3082
+ font-size: 13px;
3083
+ opacity: 0.87;
3084
+ border-radius: 2px;
3085
+ box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
3086
+ }
3087
+
3088
+ .e-de-rp-sub-div {
3089
+ border-bottom: 1px solid rgba(var(--color-sf-outline-variant));
3090
+ padding: 12px;
3091
+ }
3092
+
3093
+ .e-de-restrict-pane {
3094
+ padding-left: 0;
3095
+ padding-top: 0;
3096
+ padding-right: 0;
3097
+ }
3098
+
3099
+ .e-de-rp-whole-header {
3100
+ padding: 12px;
3101
+ }
3102
+
3103
+ .e-de-rp-user {
3104
+ background: rgba(var(--color-sf-surface));
3105
+ border: 1px solid rgba(var(--color-sf-outline-variant));
3106
+ border-radius: 2px;
3107
+ font-size: 12px;
3108
+ height: 110px;
3109
+ }
3110
+
3111
+ .e-de-rp-enforce {
3112
+ padding: 12px;
3113
+ }
3114
+
3115
+ .e-de-rp-enforce-nav {
3116
+ margin: 0 12px 12px 12px;
3117
+ }
3118
+
3119
+ .e-de-enforce-dlg-title {
3120
+ font-size: 12px;
3121
+ font-weight: 400;
3122
+ margin-bottom: 3px;
3123
+ }
3124
+
3125
+ .e-de-enforce .e-de-enforce-dlg-input {
3126
+ height: 32px;
3127
+ width: 300px;
3128
+ }
3129
+
3130
+ .e-de-user-add-btn {
3131
+ background: rgba(var(--color-sf-outline-variant));
3132
+ border-radius: 2px;
3133
+ width: 74px;
3134
+ }
3135
+
3136
+ .e-de-user-dlg .e-de-user-dlg-textbox-input {
3137
+ margin-right: 24px;
3138
+ width: 304px;
3139
+ }
3140
+
3141
+ .e-de-user-dlg-list.e-de-rtl .e-de-user-dlg-textbox-input {
3142
+ margin-right: 0;
3143
+ margin-left: 24px;
3144
+ }
3145
+
3146
+ .e-de-user-dlg-list {
3147
+ margin-bottom: 12px;
3148
+ display: -ms-inline-flexbox;
3149
+ display: inline-flex;
3150
+ }
3151
+
3152
+ .e-de-user-listview {
3153
+ border: 1px solid rgba(var(--color-sf-outline-variant));
3154
+ border-radius: 2px;
3155
+ height: 106px;
3156
+ }
3157
+
3158
+ .e-de-user-dlg-user {
3159
+ margin-bottom: 8px;
3160
+ }
3161
+
3162
+ .e-user-delete {
3163
+ float: left;
3164
+ }
3165
+
3166
+ .e-de-unprotect-dlg-title {
3167
+ font-size: 12px;
3168
+ margin-bottom: 4px;
3169
+ }
3170
+
3171
+ .e-de-rp-stop-div1 {
3172
+ opacity: 0.87;
3173
+ padding: 12px 12px 6px 12px;
3174
+ font-weight: 500;
3175
+ border-bottom: 1px solid #e0e0e0;
3176
+ }
3177
+
3178
+ .e-de-rp-stop-div2 {
3179
+ padding: 12px 12px 24px;
3180
+ }
3181
+
3182
+ .e-de-rp-close-icon {
3183
+ float: right;
3184
+ position: relative;
3185
+ top: -5px;
3186
+ right: -12px;
3187
+ }
3188
+
3189
+ .e-de-restrict-pane {
3190
+ height: 100%;
3191
+ overflow: auto;
3192
+ overflow-x: hidden;
3193
+ width: 280px;
3194
+ }
3195
+
3196
+ .e-de-rp-nav-lbl {
3197
+ font-size: 13px;
3198
+ margin: 0 12px;
3199
+ }
3200
+
3201
+ .e-documenteditor-optionspane {
3202
+ height: 100%;
3203
+ }
3204
+
3205
+ .e-de-cmt-pane {
3206
+ background-color: inherit;
3207
+ color: rgba(var(--color-sf-on-surface));
3208
+ }
3209
+
3210
+ .e-de-cp-whole-header {
3211
+ padding: 12px;
3212
+ }
3213
+
3214
+ .e-de-cp-header {
3215
+ font-size: 13px;
3216
+ font-weight: 500;
3217
+ opacity: 0.87;
3218
+ width: 75%;
3219
+ }
3220
+
3221
+ .e-de-cmt-container {
3222
+ height: auto;
3223
+ padding: 0 8px;
3224
+ overflow: auto;
3225
+ }
3226
+
3227
+ .e-de-cmt-sub-container {
3228
+ background-color: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
3229
+ margin: 0;
3230
+ padding: 8px;
3231
+ }
3232
+
3233
+ .e-de-cmt-view {
3234
+ cursor: default;
3235
+ }
3236
+
3237
+ .e-de-cmt-sub-container.e-de-cmt-selection {
3238
+ border-left: 3px solid rgba(var(--color-sf-primary));
3239
+ padding-left: 10px;
3240
+ }
3241
+
3242
+ .e-de-tc-outer {
3243
+ border-bottom: 1px solid #d8d8d8;
3244
+ }
3245
+
3246
+ .e-de-tc-pane {
3247
+ color: rgba(var(--color-sf-on-surface));
3248
+ }
3249
+
3250
+ .e-de-trckchanges-inner {
3251
+ cursor: default;
3252
+ margin: 0;
3253
+ padding-left: 8px;
3254
+ padding-right: 16px;
3255
+ padding-bottom: 8px;
3256
+ }
3257
+
3258
+ .e-de-trckchanges-inner:hover {
3259
+ border-left: 2px solid rgba(var(--color-sf-primary));
3260
+ cursor: default;
3261
+ margin: 0;
3262
+ padding-left: 6px;
3263
+ padding-right: 16px;
3264
+ padding-bottom: 8px;
3265
+ }
3266
+
3267
+ .e-de-trckchanges-inner.e-de-trckchanges-inner-select {
3268
+ border-left: 3px solid rgba(var(--color-sf-primary));
3269
+ cursor: default;
3270
+ margin: 0;
3271
+ padding-left: 5px;
3272
+ padding-right: 16px;
3273
+ padding-bottom: 8px;
3274
+ }
3275
+
3276
+ .e-de-tc-no-chng {
3277
+ color: rgba(var(--color-sf-on-surface));
3278
+ font-size: 14px;
3279
+ opacity: 65%;
3280
+ margin: 60px 0;
3281
+ text-align: center;
3282
+ }
3283
+
3284
+ .e-tc-btn-bg-clr.e-btn:not(:hover):not(.e-active) {
3285
+ background-color: inherit;
3286
+ border-color: transparent;
3287
+ color: inherit;
3288
+ }
3289
+
3290
+ .e-tc-nvgte.e-icon-btn {
3291
+ text-align: center;
3292
+ vertical-align: middle;
3293
+ }
3294
+
3295
+ .e-de-track-span-user {
3296
+ display: -ms-inline-flexbox;
3297
+ display: inline-flex;
3298
+ overflow: hidden;
3299
+ width: 110px;
3300
+ }
3301
+
3302
+ .e-de-track-span-view {
3303
+ display: -ms-inline-flexbox;
3304
+ display: inline-flex;
3305
+ overflow: hidden;
3306
+ width: 50px;
3307
+ }
3308
+
3309
+ .e-btn.e-outline.e-de-track-accept-button {
3310
+ min-width: 66px;
3311
+ padding: 5px 4px;
3312
+ text-transform: initial;
3313
+ }
3314
+
3315
+ .e-btn.e-outline.e-de-track-accept-button:hover {
3316
+ min-width: 66px;
3317
+ padding: 5px 4px;
3318
+ text-transform: initial;
3319
+ }
3320
+
3321
+ .e-btn.e-outline.e-de-track-reject-button {
3322
+ min-width: 64px;
3323
+ padding: 5px 6px;
3324
+ margin-left: 8px;
3325
+ text-transform: initial;
3326
+ }
3327
+
3328
+ .e-btn.e-outline.e-de-track-reject-button:hover {
3329
+ min-width: 64px;
3330
+ padding: 5px 6px;
3331
+ margin-left: 8px;
3332
+ text-transform: initial;
3333
+ }
3334
+
3335
+ .e-de-track-chngs-count {
3336
+ font-size: 12px;
3337
+ margin-left: 6px;
3338
+ opacity: 0.87;
3339
+ padding-top: 7px;
3340
+ white-space: nowrap;
3341
+ }
3342
+
3343
+ .e-de-track-insert {
3344
+ color: rgba(var(--color-sf-success));
3345
+ font-size: 13px;
3346
+ opacity: 100%;
3347
+ }
3348
+
3349
+ .e-de-track-delete {
3350
+ color: rgba(var(--color-sf-error));
3351
+ font-size: 13px;
3352
+ opacity: 100%;
3353
+ }
3354
+
3355
+ .e-de-track-toolbar {
3356
+ border-bottom: 1px solid #d8d8d8;
3357
+ border-top: 1px solid #d8d8d8;
3358
+ padding-bottom: 3px;
3359
+ }
3360
+
3361
+ .e-de-track-pane-drop-btn {
3362
+ padding-left: 0px;
3363
+ padding-right: 0px;
3364
+ padding-top: 10px !important;
3365
+ font-size: 13px;
3366
+ font-weight: 400;
3367
+ }
3368
+
3369
+ .e-toolbar-item.e-de-track-toolbar-overlay.e-template.e-overlay {
3370
+ opacity: 1;
3371
+ font-weight: 400;
3372
+ font-size: 14px;
3373
+ }
3374
+
3375
+ .e-de-track-date {
3376
+ font-size: 12px;
3377
+ margin-top: 4px;
3378
+ opacity: 0.67;
3379
+ }
3380
+
3381
+ .e-de-track-usernme-div {
3382
+ -ms-flex-pack: justify;
3383
+ justify-content: space-between;
3384
+ padding-top: 8px;
3385
+ }
3386
+
3387
+ .e-de-track-user-nme {
3388
+ font-size: 14px;
3389
+ font-weight: 500;
3390
+ padding-left: 8px;
3391
+ }
3392
+
3393
+ .e-de-track-chngs-text {
3394
+ line-height: 19.5px;
3395
+ overflow: hidden;
3396
+ word-wrap: break-word;
3397
+ text-overflow: ellipsis;
3398
+ font-size: 14px;
3399
+ min-height: 20px;
3400
+ padding-top: 8px;
3401
+ margin-bottom: 16px;
3402
+ }
3403
+
3404
+ .e-de-track-chng-table {
3405
+ border-collapse: collapse;
3406
+ border-spacing: 0px;
3407
+ opacity: 70%;
3408
+ width: 100%;
3409
+ }
3410
+
3411
+ .e-de-tc-tble-cell {
3412
+ border: 1px solid;
3413
+ height: 20px;
3414
+ }
3415
+
3416
+ .e-de-tc-shrink-img {
3417
+ height: 30px;
3418
+ margin: 0 4px;
3419
+ vertical-align: middle;
3420
+ width: 50px;
3421
+ }
3422
+
3423
+ .e-de-tc-field {
3424
+ background-color: rgb(206, 205, 205);
3425
+ margin: 0 2px;
3426
+ }
3427
+
3428
+ .e-de-tc-pmark {
3429
+ font-size: 14px;
3430
+ font-family: Roboto-Regular;
3431
+ font-weight: 600;
3432
+ color: rgb(1, 22, 119);
3433
+ margin: 0 2px;
3434
+ }
3435
+
3436
+ .e-de-cmt-sub-container:not(.e-de-cmt-selection):not(.e-de-cmt-reply):hover {
3437
+ border-left: 2px solid rgba(var(--color-sf-primary));
3438
+ padding-left: 11px;
3439
+ }
3440
+
3441
+ .e-de-cmt-author {
3442
+ -ms-flex-align: center;
3443
+ align-items: center;
3444
+ margin-bottom: 8px;
3445
+ }
3446
+
3447
+ .e-de-cmt-author-name {
3448
+ font-size: 14px;
3449
+ font-weight: 400;
3450
+ padding-left: 8px;
3451
+ width: 90%;
3452
+ }
3453
+
3454
+ .e-de-cp-option.e-btn.e-icon-btn {
3455
+ background-color: inherit;
3456
+ border: none;
3457
+ color: inherit;
3458
+ float: right;
3459
+ height: 18px;
3460
+ padding: 0px;
3461
+ width: 18px;
3462
+ }
3463
+
3464
+ .e-de-cp-option.e-btn.e-icon-btn span {
3465
+ margin-top: 0px;
3466
+ background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
3467
+ }
3468
+
3469
+ .e-de-cmt-view:hover .e-de-cp-option {
3470
+ display: block;
3471
+ }
3472
+
3473
+ .e-de-cmt-readonly {
3474
+ font-size: 14px;
3475
+ padding-top: 4px;
3476
+ word-break: break-word;
3477
+ }
3478
+
3479
+ .e-de-cmt-date {
3480
+ font-size: 12px;
3481
+ margin-top: 8px;
3482
+ opacity: 0.67;
3483
+ }
3484
+
3485
+ .e-de-cmt-sub-container.e-de-cmt-reply {
3486
+ border: none;
3487
+ border-top: 1px solid rgba(var(--color-sf-outline-variant));
3488
+ border-radius: 0px;
3489
+ margin: 12px 8px 0 8px;
3490
+ padding: 0px;
3491
+ }
3492
+ .e-de-cmt-sub-container.e-de-cmt-reply .e-de-cmt-view {
3493
+ margin-top: 12px;
3494
+ }
3495
+
3496
+ .e-de-cmt-textarea.e-input {
3497
+ color: rgba(var(--color-sf-on-surface));
3498
+ font-size: 13px;
3499
+ line-height: normal;
3500
+ min-height: 30px;
3501
+ overflow: hidden;
3502
+ padding-top: 7px;
3503
+ resize: none;
3504
+ }
3505
+
3506
+ .e-bigger .e-de-cmt-textarea.e-input {
3507
+ padding-top: 4px;
3508
+ }
3509
+
3510
+ .e-de-cmt-action-button {
3511
+ text-align: right;
3512
+ margin-top: 8px;
3513
+ }
3514
+
3515
+ .e-de-cmt-post-btn.e-btn.e-flat,
3516
+ .e-de-cmt-cancel-btn.e-btn.e-flat {
3517
+ height: 32px;
3518
+ margin-left: 8px;
3519
+ width: 38px;
3520
+ }
3521
+
3522
+ .e-de-cmt-resolved .e-de-cmt-author-name,
3523
+ .e-de-cmt-resolved .e-de-cmt-readonly,
3524
+ .e-de-cmt-resolved e-de-cmt-date {
3525
+ opacity: 0.67;
3526
+ }
3527
+ .e-de-cmt-resolved .e-de-cmt-rply-view {
3528
+ display: none;
3529
+ }
3530
+ .e-de-cmt-resolved .e-de-cmt-resolve-btn {
3531
+ display: block;
3532
+ margin-top: 8px;
3533
+ text-align: right;
3534
+ }
3535
+
3536
+ .e-de-cmt-sub-container.e-de-cmt-resolved.e-de-cmt-selection {
3537
+ border-left: 3px solid rgba(var(--color-sf-primary)), 0.5;
3538
+ }
3539
+
3540
+ .e-de-cmt-sub-container.e-de-cmt-resolved:not(.e-de-cmt-selection):not(.e-de-cmt-reply):hover {
3541
+ border-left: 2px solid rgba(var(--color-sf-primary)), 0.5;
3542
+ }
3543
+
3544
+ .e-de-lock-mark {
3545
+ cursor: default;
3546
+ color: rgba(var(--color-sf-on-surface-variant));
3547
+ font-size: 13px;
3548
+ height: 13px;
3549
+ pointer-events: all;
3550
+ width: 13px;
3551
+ }
3552
+
3553
+ .e-de-cmt-mark {
3554
+ cursor: default;
3555
+ color: rgba(var(--color-sf-on-surface-variant));
3556
+ font-size: 13px;
3557
+ height: 13px;
3558
+ pointer-events: all;
3559
+ width: 13px;
3560
+ }
3561
+ .e-de-cmt-mark :hover {
3562
+ color: rgba(var(--color-sf-primary));
3563
+ }
3564
+
3565
+ .e-de-cmt-mark.e-de-cmt-mark-selected,
3566
+ .e-de-cmt-mark.e-de-cmt-mark-hover {
3567
+ color: rgba(var(--color-sf-primary));
3568
+ }
3569
+
3570
+ .e-de-cmt-no-cmt {
3571
+ margin-left: 6px;
3572
+ margin-top: 24px;
3573
+ font-size: 13px;
3574
+ }
3575
+
3576
+ .e-de-cmt-drawer-cnt {
3577
+ font-size: 13px;
3578
+ height: 20px;
3579
+ margin-top: 8px;
3580
+ }
3581
+
3582
+ .e-de-cmt-drawer {
3583
+ cursor: pointer;
3584
+ float: right;
3585
+ opacity: 0.54;
3586
+ margin-right: 4px;
3587
+ margin-top: 4px;
3588
+ }
3589
+
3590
+ .e-de-cmt-rply-view {
3591
+ margin-top: 12px;
3592
+ }
3593
+
3594
+ .e-de-cmt-resolve-btn {
3595
+ display: none;
3596
+ }
3597
+
3598
+ .e-rtl .e-de-cmt-pane {
3599
+ border-left: none;
3600
+ border-right: 1px solid rgba(var(--color-sf-outline-variant));
3601
+ }
3602
+ .e-rtl .e-de-rp-close-icon {
3603
+ float: left;
3604
+ right: 12px;
3605
+ }
3606
+ .e-rtl .e-de-cp-option.e-btn.e-icon-btn {
3607
+ float: left;
3608
+ }
3609
+ .e-rtl .e-de-cmt-sub-container.e-de-cmt-selection {
3610
+ border-left: 1px solid rgba(var(--color-sf-outline-variant));
3611
+ border-right: 3px solid rgba(var(--color-sf-primary));
3612
+ padding-left: 8px;
3613
+ padding-right: 10px;
3614
+ }
3615
+ .e-rtl .e-de-cmt-sub-container:not(.e-de-cmt-selection):not(.e-de-cmt-reply):hover {
3616
+ border-left: 1px solid rgba(var(--color-sf-outline-variant));
3617
+ border-right: 2px solid rgba(var(--color-sf-primary));
3618
+ padding-left: 8px;
3619
+ padding-right: 11px;
3620
+ }
3621
+ .e-rtl .e-de-cmt-sub-container.e-de-cmt-resolved.e-de-cmt-selection {
3622
+ border-right: 3px solid rgba(var(--color-sf-primary)), 0.5;
3623
+ }
3624
+ .e-rtl .e-de-cmt-sub-container.e-de-cmt-resolved:not(.e-de-cmt-selection):not(.e-de-cmt-reply):hover {
3625
+ border-right: 2px solid rgba(var(--color-sf-primary)), 0.5;
3626
+ }
3627
+ .e-rtl .e-de-cmt-action-button {
3628
+ text-align: left;
3629
+ }
3630
+ .e-rtl .e-de-cmt-no-cmt {
3631
+ margin-left: auto;
3632
+ margin-right: 6px;
3633
+ }
3634
+ .e-rtl .e-de-cmt-drawer {
3635
+ float: left;
3636
+ margin-left: 8px;
3637
+ margin-right: auto;
3638
+ }
3639
+ .e-rtl .e-de-cmt-resolve-btn {
3640
+ text-align: left;
3641
+ }
3642
+
3643
+ .e-bigger .e-de-cmt-post-btn.e-btn.e-flat,
3644
+ .e-bigger .e-de-cmt-cancel-btn.e-btn.e-flat {
3645
+ height: auto;
3646
+ margin-left: 12px;
3647
+ width: 50px;
3648
+ }
3649
+ .e-bigger .e-de-cp-whole-header {
3650
+ height: 56px;
3651
+ padding: 16px;
3652
+ padding-right: 8px;
3653
+ }
3654
+ .e-bigger .e-de-rp-close-icon {
3655
+ float: right;
3656
+ position: relative;
3657
+ top: -9px;
3658
+ right: -17px;
3659
+ }
3660
+ .e-bigger .e-rtl .e-de-cmt-post-btn.e-btn.e-flat,
3661
+ .e-bigger .e-rtl .e-de-cmt-cancel-btn.e-btn.e-flat {
3662
+ margin-right: 12px;
3663
+ }
3664
+
3665
+ .e-de-close-icon.e-btn {
3666
+ background-color: transparent !important;
3667
+ border-color: transparent !important;
3668
+ border-radius: 50%;
3669
+ color: rgba(var(--color-sf-on-surface-variant));
3670
+ border: none;
3671
+ }
3672
+ .e-de-close-icon.e-btn:active {
3673
+ background-color: transparent !important;
3674
+ border-color: transparent !important;
3675
+ box-shadow: none;
3676
+ }
3677
+ .e-de-close-icon.e-btn:hover {
3678
+ background-color: transparent !important;
3679
+ box-shadow: none;
3680
+ color: rgba(var(--color-sf-on-surface));
3681
+ cursor: default;
3682
+ border: none;
3683
+ }
3684
+
3685
+ .e-btn.e-de-close-icon:hover span {
3686
+ cursor: pointer;
3687
+ color: rgba(var(--color-sf-on-surface));
3688
+ }
3689
+
3690
+ .e-de-para-dlg-right-sub-container-blazor {
3691
+ top: 0;
3692
+ }
3693
+
3694
+ .e-de-rp-mu-btn {
3695
+ margin-top: 3px;
3696
+ }
3697
+
3698
+ .e-de-table-dialog-row-height {
3699
+ padding-top: 24px;
3700
+ }
3701
+
3702
+ .e-de-tablecell-dialog-alignment-icon {
3703
+ width: 54px;
3704
+ height: 54px;
3705
+ margin: 2px;
3706
+ }
3707
+
3708
+ .e-de-table-dia-indent-from-left {
3709
+ right: 45px;
3710
+ }
3711
+
3712
+ .e-de-table-dia-align-div {
3713
+ border: 1px solid rgba(var(--color-sf-outline));
3714
+ display: inline-block;
3715
+ height: 60px;
3716
+ margin-right: 11px;
3717
+ width: 60px;
3718
+ }
3719
+
3720
+ .e-de-table-dialog-alignment-icon {
3721
+ margin: 2px;
3722
+ height: 52px;
3723
+ }
3724
+
3725
+ .e-de-table-border-setting-genral {
3726
+ margin-right: 11px;
3727
+ }
3728
+
3729
+ .e-de-table-border-clr-left-container {
3730
+ padding-right: 19px;
3731
+ }
3732
+
3733
+ .e-de-table-border-clr-heading {
3734
+ font-size: 12px;
3735
+ font-weight: 500;
3736
+ padding-bottom: 6px;
3737
+ }
3738
+
3739
+ .e-de-table-border-icon-container {
3740
+ margin-top: 4px;
3741
+ margin-right: 4px;
3742
+ }
3743
+
3744
+ .e-de-table-border-preview-container {
3745
+ padding-left: 50px;
3746
+ }
3747
+
3748
+ .e-de-table-dlg-alignment-heading {
3749
+ color: rgba(var(--color-sf-on-surface-variant));
3750
+ display: block;
3751
+ font-size: 14px;
3752
+ font-weight: 500;
3753
+ margin-bottom: 3px;
3754
+ }
3755
+
3756
+ .e-rtl .e-de-cmt-author-name {
3757
+ padding-left: 0%;
3758
+ padding-right: 8px;
3759
+ }
3760
+ .e-rtl .e-de-ok-button {
3761
+ margin-right: 0;
3762
+ margin-left: 8px;
3763
+ }
3764
+ .e-rtl .e-de-table-dia-align-div.e-de-rtl {
3765
+ margin-left: 11px;
3766
+ margin-right: 0;
3767
+ }
3768
+ .e-rtl .e-de-table-border-clr-left-container {
3769
+ padding-right: 0;
3770
+ padding-left: 19px;
3771
+ }
3772
+ .e-rtl .e-de-table-border-preview-container {
3773
+ padding-right: 50px;
3774
+ padding-left: 0;
3775
+ }
3776
+ .e-rtl .e-de-table-border-setting-genral {
3777
+ margin-right: 0;
3778
+ margin-left: 11px;
3779
+ }
3780
+ .e-rtl .e-de-table-border-icon-container {
3781
+ margin-right: 0;
3782
+ margin-left: 4px;
3783
+ }
3784
+ .e-rtl .e-de-table-border-preview {
3785
+ width: 23px;
3786
+ }
3787
+ .e-rtl .e-de-table-setting-labels-heading {
3788
+ margin-left: 0;
3789
+ margin-right: 10px;
3790
+ }
3791
+
3792
+ .e-bigger .e-de-cmt-author-name {
3793
+ padding-left: 12px;
3794
+ }
3795
+ .e-bigger .e-de-cmt-rply-view {
3796
+ margin-top: 16px;
3797
+ }
3798
+ .e-bigger .e-de-cmt-sub-container {
3799
+ padding: 12px;
3800
+ }
3801
+ .e-bigger .e-de-cmt-sub-container.e-de-cmt-selection {
3802
+ padding-left: 14px;
3803
+ }
3804
+ .e-bigger .e-de-cmt-sub-container:not(.e-de-cmt-selection):not(.e-de-cmt-reply):hover {
3805
+ padding-left: 15px;
3806
+ }
3807
+ .e-bigger .e-de-cmt-sub-container.e-de-cmt-reply {
3808
+ padding: 0%;
3809
+ }
3810
+ .e-bigger .e-de-rp-nav-btn {
3811
+ width: auto;
3812
+ }
3813
+ .e-bigger .e-de-rp-whole-header {
3814
+ padding: 12px;
3815
+ }
3816
+ .e-bigger .e-de-rp-sub-div {
3817
+ border-bottom: 1px solid rgba(var(--color-sf-outline-variant));
3818
+ padding: 12px;
3819
+ }
3820
+ .e-bigger .e-de-rp-enforce {
3821
+ padding: 12px;
3822
+ }
3823
+ .e-bigger .e-de-enforce .e-de-enforce-dlg-input:not(.e-de-enforce .e-de-enforce-dlg-input:last-child) {
3824
+ width: 300px;
3825
+ }
3826
+ .e-bigger .e-rtl .e-de-cmt-author-name {
3827
+ padding-left: 0%;
3828
+ padding-right: 12px;
3829
+ }
3830
+ .e-bigger .e-rtl .e-de-cmt-sub-container.e-de-cmt-selection {
3831
+ padding-left: 12px;
3832
+ padding-right: 14px;
3833
+ }
3834
+ .e-bigger .e-rtl .e-de-cmt-sub-container:not(.e-de-cmt-selection):not(.e-de-cmt-reply):hover {
3835
+ padding-left: 12px;
3836
+ padding-right: 15px;
3837
+ }
3838
+ .e-bigger .e-rtl .e-de-rp-close-icon {
3839
+ float: left;
3840
+ right: 17px;
3841
+ }
3842
+
3843
+ .e-bigger {
3844
+ /* stylelint-disable */
3845
+ /* stylelint-enable */
3846
+ }
3847
+ .e-bigger .e-de-para-dlg-container .e-checkbox-wrapper .e-label,
3848
+ .e-bigger .e-de-table-options-dlg .e-checkbox-wrapper .e-label {
3849
+ font-size: 14px;
3850
+ }
3851
+ .e-bigger .e-de-para-dlg-container .e-input-group {
3852
+ width: 192px !important;
3853
+ }
3854
+ .e-bigger .e-de-para-dlg-heading {
3855
+ color: rgba(var(--color-sf-on-surface-variant));
3856
+ display: block;
3857
+ font-size: 14px;
3858
+ font-weight: 500;
3859
+ margin-bottom: 10px;
3860
+ }
3861
+ .e-bigger .e-de-para-dlg-container .e-checkbox-wrapper .e-label,
3862
+ .e-bigger .e-de-table-options-dlg .e-checkbox-wrapper .e-label {
3863
+ font-size: 12px;
3864
+ }
3865
+ .e-bigger .e-de-para-dlg-container {
3866
+ height: auto;
3867
+ width: auto;
3868
+ }
3869
+ .e-bigger .e-de-para-dlg-cs-check-box {
3870
+ margin-bottom: 0;
3871
+ margin-top: 12px;
3872
+ }
3873
+ .e-bigger .e-de-para-dlg-spacing-div {
3874
+ margin-left: 20px;
3875
+ }
3876
+ .e-bigger .e-de-para-dlg-spacing-div.e-de-rtl {
3877
+ margin-left: 0;
3878
+ margin-right: 20px;
3879
+ }
3880
+ .e-bigger .e-de-para-dlg-sub-container .e-input-group {
3881
+ margin-bottom: 4px;
3882
+ }
3883
+ .e-bigger .e-de-para-dlg-sub-container {
3884
+ margin-bottom: 20px;
3885
+ }
3886
+ .e-bigger .e-de-para-dlg-right-sub-container {
3887
+ top: 0;
3888
+ }
3889
+ .e-bigger .e-de-dlg-sub-header {
3890
+ display: block;
3891
+ font-size: 12px;
3892
+ font-weight: 400;
3893
+ margin-bottom: 10px;
3894
+ }
3895
+ .e-bigger .e-de-rtl-btn-div {
3896
+ font-size: 12px;
3897
+ margin-right: 24px;
3898
+ width: 100px;
3899
+ }
3900
+ .e-bigger .e-de-rtl-btn-div.e-de-rtl {
3901
+ margin-left: 20px;
3902
+ margin-right: 0;
3903
+ }
3904
+
3905
+ .e-de-para-dlg-heading {
3906
+ color: rgba(var(--color-sf-on-surface-variant));
3907
+ display: block;
3908
+ font-size: 14px;
3909
+ font-weight: 500;
3910
+ margin-bottom: 10px;
3911
+ opacity: 87%;
3912
+ }
3913
+
3914
+ .e-de-para-dlg-container .e-checkbox-wrapper .e-label,
3915
+ .e-de-table-options-dlg .e-checkbox-wrapper .e-label {
3916
+ font-size: 12px;
3917
+ }
3918
+
3919
+ .e-de-para-dlg-container {
3920
+ padding: 8px;
3921
+ height: auto;
3922
+ width: auto;
3923
+ }
3924
+
3925
+ .e-de-para-dlg-cs-check-box {
3926
+ margin-bottom: 0;
3927
+ margin-top: 12px;
3928
+ }
3929
+
3930
+ .e-de-para-dlg-spacing-div {
3931
+ margin-left: 40px;
3932
+ }
3933
+
3934
+ .e-de-para-dlg-spacing-div.e-de-rtl {
3935
+ margin-left: 0;
3936
+ margin-right: 40px;
3937
+ }
3938
+
3939
+ .e-de-para-dlg-sub-container .e-input-group {
3940
+ margin-bottom: 4px;
3941
+ }
3942
+
3943
+ .e-de-para-dlg-sub-container {
3944
+ margin-bottom: 20px;
3945
+ }
3946
+
3947
+ .e-de-para-dlg-right-sub-container {
3948
+ top: 0;
3949
+ }
3950
+
3951
+ .e-de-dlg-sub-header {
3952
+ display: block;
3953
+ font-size: 12px;
3954
+ font-weight: 400;
3955
+ margin-bottom: 10px;
3956
+ }
3957
+
3958
+ .e-de-rtl-btn-div {
3959
+ font-size: 12px;
3960
+ margin-right: 14px;
3961
+ width: 200px;
3962
+ }
3963
+
3964
+ .e-de-rtl-btn-div.e-de-rtl {
3965
+ margin-left: 14px;
3966
+ margin-right: 0;
3967
+ }
3968
+
3969
+ .e-para-dlg-sub-height {
3970
+ height: 145px;
3971
+ }