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