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