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

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