@syncfusion/ej2-angular-spreadsheet 23.2.6-ngcc → 23.2.6

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