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

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