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

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 (146) 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/spreadsheet/_all.scss +2 -0
  34. package/styles/spreadsheet/_bootstrap-dark-definition.scss +216 -0
  35. package/styles/spreadsheet/_bootstrap-definition.scss +215 -0
  36. package/styles/spreadsheet/_bootstrap4-definition.scss +214 -0
  37. package/styles/spreadsheet/_bootstrap5-dark-definition.scss +1 -0
  38. package/styles/spreadsheet/_bootstrap5-definition.scss +219 -0
  39. package/styles/spreadsheet/_fabric-dark-definition.scss +215 -0
  40. package/styles/spreadsheet/_fabric-definition.scss +216 -0
  41. package/styles/spreadsheet/_fluent-dark-definition.scss +1 -0
  42. package/styles/spreadsheet/_fluent-definition.scss +218 -0
  43. package/styles/spreadsheet/_fusionnew-definition.scss +171 -0
  44. package/styles/spreadsheet/_highcontrast-definition.scss +214 -0
  45. package/styles/spreadsheet/_highcontrast-light-definition.scss +213 -0
  46. package/styles/spreadsheet/_layout.scss +3029 -0
  47. package/styles/spreadsheet/_material-dark-definition.scss +216 -0
  48. package/styles/spreadsheet/_material-definition.scss +214 -0
  49. package/styles/spreadsheet/_tailwind-dark-definition.scss +1 -0
  50. package/styles/spreadsheet/_tailwind-definition.scss +224 -0
  51. package/styles/spreadsheet/_theme.scss +1381 -0
  52. package/styles/spreadsheet/bootstrap-dark.scss +23 -1
  53. package/styles/spreadsheet/bootstrap.scss +23 -1
  54. package/styles/spreadsheet/bootstrap4.scss +23 -1
  55. package/styles/spreadsheet/bootstrap5-dark.scss +22 -1
  56. package/styles/spreadsheet/bootstrap5.scss +23 -1
  57. package/styles/spreadsheet/fabric-dark.scss +23 -1
  58. package/styles/spreadsheet/fabric.scss +23 -1
  59. package/styles/spreadsheet/fluent-dark.scss +22 -1
  60. package/styles/spreadsheet/fluent.scss +23 -1
  61. package/styles/spreadsheet/highcontrast-light.scss +22 -1
  62. package/styles/spreadsheet/highcontrast.scss +23 -1
  63. package/styles/spreadsheet/icons/_bootstrap-dark.scss +990 -0
  64. package/styles/spreadsheet/icons/_bootstrap.scss +990 -0
  65. package/styles/spreadsheet/icons/_bootstrap4.scss +994 -0
  66. package/styles/spreadsheet/icons/_bootstrap5-dark.scss +1 -0
  67. package/styles/spreadsheet/icons/_bootstrap5.scss +996 -0
  68. package/styles/spreadsheet/icons/_fabric-dark.scss +990 -0
  69. package/styles/spreadsheet/icons/_fabric.scss +994 -0
  70. package/styles/spreadsheet/icons/_fluent-dark.scss +1 -0
  71. package/styles/spreadsheet/icons/_fluent.scss +996 -0
  72. package/styles/spreadsheet/icons/_fusionnew.scss +996 -0
  73. package/styles/spreadsheet/icons/_highcontrast.scss +990 -0
  74. package/styles/spreadsheet/icons/_material-dark.scss +993 -0
  75. package/styles/spreadsheet/icons/_material.scss +995 -0
  76. package/styles/spreadsheet/icons/_material3.scss +996 -0
  77. package/styles/spreadsheet/icons/_tailwind-dark.scss +996 -0
  78. package/styles/spreadsheet/icons/_tailwind.scss +996 -0
  79. package/styles/spreadsheet/material-dark.scss +23 -1
  80. package/styles/spreadsheet/material.scss +23 -1
  81. package/styles/spreadsheet/tailwind-dark.scss +22 -1
  82. package/styles/spreadsheet/tailwind.scss +23 -1
  83. package/styles/spreadsheet-ribbon/_all.scss +2 -0
  84. package/styles/spreadsheet-ribbon/_bootstrap-dark-definition.scss +15 -0
  85. package/styles/spreadsheet-ribbon/_bootstrap-definition.scss +14 -0
  86. package/styles/spreadsheet-ribbon/_bootstrap4-definition.scss +14 -0
  87. package/styles/spreadsheet-ribbon/_bootstrap5-dark-definition.scss +1 -0
  88. package/styles/spreadsheet-ribbon/_bootstrap5-definition.scss +16 -0
  89. package/styles/spreadsheet-ribbon/_fabric-dark-definition.scss +18 -0
  90. package/styles/spreadsheet-ribbon/_fabric-definition.scss +18 -0
  91. package/styles/spreadsheet-ribbon/_fluent-dark-definition.scss +1 -0
  92. package/styles/spreadsheet-ribbon/_fluent-definition.scss +16 -0
  93. package/styles/spreadsheet-ribbon/_fusionnew-definition.scss +15 -0
  94. package/styles/spreadsheet-ribbon/_highcontrast-definition.scss +16 -0
  95. package/styles/spreadsheet-ribbon/_highcontrast-light-definition.scss +14 -0
  96. package/styles/spreadsheet-ribbon/_layout.scss +240 -0
  97. package/styles/spreadsheet-ribbon/_material-dark-definition.scss +17 -0
  98. package/styles/spreadsheet-ribbon/_material-definition.scss +14 -0
  99. package/styles/spreadsheet-ribbon/_mixin.scss +89 -0
  100. package/styles/spreadsheet-ribbon/_tailwind-dark-definition.scss +1 -0
  101. package/styles/spreadsheet-ribbon/_tailwind-definition.scss +15 -0
  102. package/styles/spreadsheet-ribbon/_theme.scss +154 -0
  103. package/styles/spreadsheet-ribbon/bootstrap-dark.scss +4 -1
  104. package/styles/spreadsheet-ribbon/bootstrap.scss +4 -1
  105. package/styles/spreadsheet-ribbon/bootstrap4.scss +4 -1
  106. package/styles/spreadsheet-ribbon/bootstrap5-dark.scss +4 -1
  107. package/styles/spreadsheet-ribbon/bootstrap5.scss +4 -1
  108. package/styles/spreadsheet-ribbon/fabric-dark.scss +4 -1
  109. package/styles/spreadsheet-ribbon/fabric.scss +4 -1
  110. package/styles/spreadsheet-ribbon/fluent-dark.scss +4 -1
  111. package/styles/spreadsheet-ribbon/fluent.scss +4 -1
  112. package/styles/spreadsheet-ribbon/highcontrast-light.scss +3 -1
  113. package/styles/spreadsheet-ribbon/highcontrast.scss +4 -1
  114. package/styles/spreadsheet-ribbon/icons/_bootstrap-dark.scss +15 -0
  115. package/styles/spreadsheet-ribbon/icons/_bootstrap.scss +15 -0
  116. package/styles/spreadsheet-ribbon/icons/_bootstrap4.scss +9 -0
  117. package/styles/spreadsheet-ribbon/icons/_bootstrap5-dark.scss +1 -0
  118. package/styles/spreadsheet-ribbon/icons/_bootstrap5.scss +15 -0
  119. package/styles/spreadsheet-ribbon/icons/_fabric-dark.scss +9 -0
  120. package/styles/spreadsheet-ribbon/icons/_fabric.scss +9 -0
  121. package/styles/spreadsheet-ribbon/icons/_fluent-dark.scss +1 -0
  122. package/styles/spreadsheet-ribbon/icons/_fluent.scss +15 -0
  123. package/styles/spreadsheet-ribbon/icons/_fusionnew.scss +15 -0
  124. package/styles/spreadsheet-ribbon/icons/_highcontrast.scss +9 -0
  125. package/styles/spreadsheet-ribbon/icons/_material-dark.scss +15 -0
  126. package/styles/spreadsheet-ribbon/icons/_material.scss +15 -0
  127. package/styles/spreadsheet-ribbon/icons/_material3.scss +15 -0
  128. package/styles/spreadsheet-ribbon/icons/_tailwind-dark.scss +15 -0
  129. package/styles/spreadsheet-ribbon/icons/_tailwind.scss +15 -0
  130. package/styles/spreadsheet-ribbon/material-dark.scss +4 -1
  131. package/styles/spreadsheet-ribbon/material.scss +4 -1
  132. package/styles/spreadsheet-ribbon/tailwind-dark.scss +4 -1
  133. package/styles/spreadsheet-ribbon/tailwind.scss +4 -1
  134. package/syncfusion-ej2-angular-spreadsheet.d.ts +5 -0
  135. package/@syncfusion/ej2-angular-spreadsheet.es5.js +0 -989
  136. package/@syncfusion/ej2-angular-spreadsheet.es5.js.map +0 -1
  137. package/@syncfusion/ej2-angular-spreadsheet.js +0 -929
  138. package/@syncfusion/ej2-angular-spreadsheet.js.map +0 -1
  139. package/CHANGELOG.md +0 -1409
  140. package/dist/ej2-angular-spreadsheet.umd.js +0 -1587
  141. package/dist/ej2-angular-spreadsheet.umd.js.map +0 -1
  142. package/dist/ej2-angular-spreadsheet.umd.min.js +0 -11
  143. package/dist/ej2-angular-spreadsheet.umd.min.js.map +0 -1
  144. package/ej2-angular-spreadsheet.d.ts +0 -5
  145. package/ej2-angular-spreadsheet.metadata.json +0 -1
  146. package/postinstall/tagchange.js +0 -18
@@ -0,0 +1,3029 @@
1
+ @import '../spreadsheet-ribbon/mixin.scss';
2
+ @include export-module('spreadsheet-layout') {
3
+
4
+ /*! spreadsheet layout */
5
+ .e-spreadsheet {
6
+ display: block;
7
+ user-select: none;
8
+
9
+ & .e-delete-sheet-dlg.e-dialog {
10
+ @if $skin-name == 'FluentUI' {
11
+ height: 211px !important; /* stylelint-disable-line declaration-no-important */
12
+ }
13
+ }
14
+
15
+ & .e-protect-dlg.e-dialog {
16
+ height: $protect-dlg-height;
17
+ width: $protect-dlg-width;
18
+
19
+ & .e-sheet-password-content .e-header {
20
+ font-size: $protect-sheet-dlg-password-header-font-size;
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: $unprotect-sheet-dlg-header-font-size;
60
+ line-height: 21px;
61
+ }
62
+
63
+ & .e-dlg-content {
64
+ & .e-unprotectsheetpwd-alert-span {
65
+ color: $dlg-error-color;
66
+ font-size: $unprotectsheet-alert-span-font-size;
67
+ padding-top: 7px;
68
+ }
69
+
70
+ & .e-unprotectsheetpwd-content {
71
+ & .e-header {
72
+ font-size: $unprotectsheet-content-header-font-size;
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: $reenterpwd-dlg-content-header-font-size;
86
+ line-height: 21px;
87
+ }
88
+
89
+ & .e-dlg-content {
90
+ & .e-reenterpwd-alert-span {
91
+ color: $dlg-error-color;
92
+ font-size: $reenterpwd-dlg-alert-span-font-size;
93
+ padding-top: 7px;
94
+ }
95
+
96
+ & .e-reenterpwd-content {
97
+ & .e-header {
98
+ font-size: $reenterpwd-dlg-content-header-font-size;
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' {
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: $protect-checkbox-label-font-size;
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: $protect-content-font-size;
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: $formula-submit-btn-icon-font-size;
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: $name-box-icon-font-size;
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: $formula-bar-drop-icon-font-size;
305
+ }
306
+
307
+ @if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' {
308
+ font-size: $formula-bar-drop-icon-font-size;
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: $header-cell-font-size;
543
+ font-weight: $header-cell-font-weight;
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: $spreadsheet-ribbon-btn-height;
1140
+ }
1141
+
1142
+ &:not(.e-dropdown-btn):not(.e-split-btn) {
1143
+ padding-left: $spreadsheet-ribbon-btn-padding;
1144
+ padding-right: $spreadsheet-ribbon-btn-padding;
1145
+
1146
+ & .e-btn-icon {
1147
+ min-width: $spreadsheet-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: $spreadsheet-ribbon-btn-height;
1158
+ min-height: $spreadsheet-ribbon-btn-height;
1159
+ vertical-align: bottom;
1160
+ }
1161
+
1162
+ &:not(.e-caret) {
1163
+ font-size: $spreadsheet-tbar-btn-icon-font-size;
1164
+ }
1165
+
1166
+ @if $skin-name == 'fabric' or $skin-name == 'highcontrast' or $skin-name == 'fabric-dark' {
1167
+ &.e-wrap-icon {
1168
+ font-size: $toolbar-wrap-icon-font-size;
1169
+ }
1170
+ }
1171
+ }
1172
+ }
1173
+
1174
+ & .e-toolbar .e-toolbar-item .e-btn {
1175
+ @if $skin-name == 'material' or $skin-name == 'bootstrap4' {
1176
+ &.e-tbar-btn .e-icons.e-btn-icon:not(.e-caret) {
1177
+ font-size: $spreadsheet-tbar-btn-icon-font-size;
1178
+ }
1179
+ }
1180
+
1181
+ & .e-chart-icon,
1182
+ & .e-chart-type-icon {
1183
+ font-size: $spreadsheet-chart-icon-font-size !important; /* stylelint-disable-line declaration-no-important */
1184
+ margin-right: 5px;
1185
+ padding: 0 5px;
1186
+ width: 30px;
1187
+ }
1188
+
1189
+ & .e-switch-row-column-icon {
1190
+ font-size: $spreadsheet-switch-row-column-icon-font-size !important; /* stylelint-disable-line declaration-no-important */
1191
+ margin-right: 5px;
1192
+ }
1193
+
1194
+ & .e-addchart-icon {
1195
+ font-size: $spreadsheet-addchart-icon-font-size !important; /* stylelint-disable-line declaration-no-important */
1196
+ margin-right: -5px;
1197
+ }
1198
+
1199
+ &.e-split-colorpicker {
1200
+ line-height: $spreadsheet-ribbon-btn-height - 1;
1201
+ padding-bottom: 1px;
1202
+ padding-left: 0;
1203
+ padding-right: 0;
1204
+ width: $cpicker-btn-width;
1205
+
1206
+ & .e-icons.e-btn-icon:not(.e-caret) {
1207
+ &.e-font-color {
1208
+ font-size: $spreadsheet-cpicker-font-color-font-size;
1209
+ }
1210
+
1211
+ &.e-fill-color {
1212
+ font-size: $spreadsheet-cpicker-fill-color-font-size;
1213
+ }
1214
+ }
1215
+ }
1216
+ }
1217
+
1218
+ & .e-colorpicker-wrapper {
1219
+ & .e-split-btn .e-selected-color {
1220
+ background: none;
1221
+ border-bottom-style: solid;
1222
+ border-bottom-width: 3px;
1223
+ border-radius: 0;
1224
+ height: auto;
1225
+ padding-bottom: 1px;
1226
+ width: auto;
1227
+
1228
+ & .e-split-preview {
1229
+ display: none;
1230
+ }
1231
+ }
1232
+
1233
+ & .e-dropdown-btn {
1234
+ margin-left: 0;
1235
+
1236
+ @if $skin-name == 'bootstrap4' {
1237
+ padding-left: 4px;
1238
+ padding-right: 4px;
1239
+ }
1240
+
1241
+ @if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
1242
+ padding-left: 3px;
1243
+ padding-right: 3px;
1244
+ }
1245
+ }
1246
+ }
1247
+ }
1248
+
1249
+ &.e-mobile-view {
1250
+ & .e-header-toolbar {
1251
+ border: $spreadsheet-border;
1252
+ border-bottom-width: 0;
1253
+
1254
+ &.e-toolbar .e-toolbar-items .e-toolbar-item:last-child {
1255
+ min-width: auto;
1256
+ padding: 0;
1257
+
1258
+ @if $skin-name == 'bootstrap4' or $skin-name == 'bootstrap' {
1259
+ min-height: $right-tbar-height;
1260
+ }
1261
+ }
1262
+ }
1263
+
1264
+ & .e-add-sheet-tab,
1265
+ & .e-sheets-list {
1266
+ height: $msheets-btn-height;
1267
+ width: 40px;
1268
+ }
1269
+
1270
+ & .e-formula-bar-panel {
1271
+ border-top-width: 0;
1272
+
1273
+ & .e-btn.e-css.e-insert-function,
1274
+ & .e-btn.e-css.e-formula-submit {
1275
+ height: $mformula-bar-height - $spreadsheet-border-width;
1276
+ line-height: $mformula-bar-height - $spreadsheet-border-width - 1;
1277
+ padding-left: 9px;
1278
+ padding-right: 9px;
1279
+
1280
+ & .e-btn-icon {
1281
+ font-size: $formula-bar-btn-icon-font-size;
1282
+ line-height: $mformula-bar-height;
1283
+ }
1284
+ }
1285
+
1286
+ & .e-formula-bar {
1287
+ height: $mformula-bar-height - $spreadsheet-border-width;
1288
+ line-height: $mformula-bar-height - $spreadsheet-border-width;
1289
+ white-space: nowrap;
1290
+ width: calc(100% - 36px);
1291
+
1292
+ &::placeholder {
1293
+ font-style: italic;
1294
+ }
1295
+ }
1296
+
1297
+ &.e-focused {
1298
+ & .e-formula-bar {
1299
+ border-right: $spreadsheet-border;
1300
+ width: calc(100% - 72px);
1301
+ }
1302
+ }
1303
+ }
1304
+
1305
+ & .e-menu-wrapper.e-mobile.e-file-menu {
1306
+ height: 100%;
1307
+
1308
+ & ul {
1309
+ height: 100%;
1310
+ padding: 0;
1311
+
1312
+ & .e-menu-item.e-menu-caret-icon {
1313
+ height: 100%;
1314
+ line-height: 1;
1315
+ padding: 0 6px;
1316
+
1317
+ & .e-menu-icon.e-file-menu-icon {
1318
+ align-items: center;
1319
+ display: inline-flex;
1320
+ height: 100%;
1321
+ line-height: 1;
1322
+ margin: 0;
1323
+ width: auto;
1324
+ }
1325
+
1326
+ & .e-caret {
1327
+ display: none;
1328
+ }
1329
+ }
1330
+ }
1331
+
1332
+ &.e-rtl {
1333
+ direction: ltr;
1334
+ }
1335
+ }
1336
+
1337
+ & .e-toolbar-panel {
1338
+ border-top-width: 0;
1339
+ display: none;
1340
+
1341
+ @if $skin-name == 'bootstrap' or $skin-name == 'bootstrap4' {
1342
+ & .e-toolbar {
1343
+ border-color: $spreadsheet-border-color;
1344
+ border-radius: 0;
1345
+ border-top-width: 0;
1346
+ }
1347
+
1348
+ & .e-dropdown-btn.e-btn {
1349
+ border-left-width: 0;
1350
+ border-radius: 0;
1351
+ border-top-width: 0;
1352
+ }
1353
+ }
1354
+ @else {
1355
+ & .e-dropdown-btn.e-btn {
1356
+ border-bottom-width: 0;
1357
+ border-right-width: 0;
1358
+ border-top-width: 0;
1359
+ }
1360
+ }
1361
+
1362
+ & .e-toolbar {
1363
+ & .e-toolbar-items.e-hscroll.e-scroll-device {
1364
+ padding: 0;
1365
+ width: 100%;
1366
+ }
1367
+
1368
+ & .e-scroll-nav {
1369
+ display: none;
1370
+ }
1371
+ }
1372
+ }
1373
+
1374
+ & .e-sheet-tab {
1375
+ max-width: calc(100% - 104px);
1376
+ }
1377
+
1378
+ &.e-mobile-focused {
1379
+ & .e-toolbar-panel {
1380
+ display: flex;
1381
+ }
1382
+
1383
+ & .e-sheet-tab-panel {
1384
+ display: none;
1385
+ }
1386
+ }
1387
+ }
1388
+
1389
+ &.e-mobile-view:not(.e-mobile-focused) {
1390
+ & .e-active-cell,
1391
+ & .e-focused-tick,
1392
+ & .e-formula-bar-panel {
1393
+ display: none;
1394
+ }
1395
+ }
1396
+
1397
+ & .e-sheet-panel.e-rtl {
1398
+ & .e-sheet {
1399
+ & .e-table tr {
1400
+ & .e-cell,
1401
+ & .e-header-cell {
1402
+ border-width: 0 0 1px 1px;
1403
+ }
1404
+ }
1405
+ }
1406
+
1407
+ & .e-select-all-cell {
1408
+ border-width: 0 0 1px 1px;
1409
+ }
1410
+
1411
+ & .e-frozen-row {
1412
+ right: 0;
1413
+ }
1414
+
1415
+ & .e-column-header {
1416
+
1417
+ & .e-table th {
1418
+
1419
+ &.e-header-cell.e-hide-start {
1420
+ border-left-color: transparent;
1421
+
1422
+ &::after {
1423
+ border-left: $spreadsheet-border;
1424
+ border-right: none;
1425
+ left: .5px;
1426
+ }
1427
+ }
1428
+
1429
+ &.e-hide-end.e-header-cell {
1430
+
1431
+ &::before {
1432
+ border-left: none;
1433
+ border-right: $spreadsheet-border;
1434
+ right: .5px;
1435
+ }
1436
+ }
1437
+ }
1438
+ }
1439
+ }
1440
+
1441
+ .e-sheet-panel {
1442
+ & .e-frozen-columns {
1443
+ & .e-selectall-container {
1444
+ position: relative;
1445
+ }
1446
+ }
1447
+
1448
+ & .e-frozen-rows {
1449
+ & .e-selectall-container {
1450
+ position: relative;
1451
+ }
1452
+ }
1453
+
1454
+ &:not(.e-rtl) .e-frozen-row {
1455
+ left: 0;
1456
+ }
1457
+
1458
+ &.e-protected {
1459
+ .e-selection,
1460
+ .e-active-cell {
1461
+ display: none;
1462
+ }
1463
+ }
1464
+ }
1465
+
1466
+ & .e-colresize-handler {
1467
+ border-right: 1px solid;
1468
+ cursor: col-resize;
1469
+ pointer-events: none;
1470
+ position: absolute;
1471
+ z-index: 1;
1472
+ }
1473
+
1474
+ & .e-rowresize-handler {
1475
+ border-top: 1px solid;
1476
+ cursor: row-resize;
1477
+ pointer-events: none;
1478
+ position: absolute;
1479
+ z-index: 1;
1480
+ }
1481
+
1482
+ & .e-validation-list {
1483
+ float: right;
1484
+ height: 18px;
1485
+ padding: 0;
1486
+ position: relative;
1487
+ right: 0;
1488
+ text-align: initial;
1489
+ width: 20px;
1490
+ z-index: 2;
1491
+
1492
+ .e-input-group {
1493
+ border: 0;
1494
+ box-shadow: none !important; /* stylelint-disable-line declaration-no-important */
1495
+ }
1496
+
1497
+ & .e-ddl-icon {
1498
+ bottom: 5px;
1499
+
1500
+ @if $skin-name != 'material' {
1501
+ height: 18px;
1502
+ min-height: 0;
1503
+ min-width: 0;
1504
+ width: 20px;
1505
+ }
1506
+
1507
+ @if $sheet-skin == 'tailwind' or $sheet-skin == 'tailwind-dark' {
1508
+ padding: 0;
1509
+ }
1510
+ }
1511
+ }
1512
+
1513
+ .e-rtl {
1514
+ .e-spreadsheet-edit {
1515
+ direction: ltr;
1516
+ text-align: left;
1517
+ }
1518
+ }
1519
+
1520
+ & .e-customsort-dlg.e-dialog {
1521
+ @if $skin-name == 'material' {
1522
+ height: 360px !important; /* stylelint-disable-line declaration-no-important */
1523
+ }
1524
+
1525
+ @if $sheet-skin == 'tailwind' or $sheet-skin == 'tailwind-dark' {
1526
+ & .e-dlg-header-content {
1527
+ padding: 18px;
1528
+ }
1529
+ }
1530
+
1531
+ @if $skin-name == 'bootstrap5' {
1532
+ & .e-dlg-header-content {
1533
+ padding: 12px;
1534
+ }
1535
+ }
1536
+
1537
+ & .e-dlg-content {
1538
+ padding-bottom: 0;
1539
+ padding-left: 0;
1540
+ padding-right: 0;
1541
+
1542
+ @if $sheet-skin == 'tailwind' or $sheet-skin == 'tailwind-dark' {
1543
+ & .e-sort-dialog {
1544
+ padding-top: 15px;
1545
+ }
1546
+ }
1547
+
1548
+ & .e-sort-listsection {
1549
+ padding-top: $dlg-content-padding;
1550
+
1551
+ & .e-input-group {
1552
+ min-width: 220px;
1553
+ }
1554
+ }
1555
+ }
1556
+
1557
+ & .e-footer-content {
1558
+ & .e-sort-addbtn {
1559
+ float: left;
1560
+ margin-left: 0;
1561
+ }
1562
+ }
1563
+ }
1564
+
1565
+ & .e-conditionalformatting-dlg {
1566
+ & .e-input,
1567
+ & .e-input-group {
1568
+ height: 34px;
1569
+ @if $skin-name == 'FlunetUI' {
1570
+ height: 40px;
1571
+ }
1572
+ }
1573
+
1574
+ & .e-cfmain {
1575
+ margin-bottom: 22px;
1576
+ }
1577
+
1578
+ & .e-header {
1579
+ display: block;
1580
+ margin-bottom: 6px;
1581
+ }
1582
+
1583
+ & .e-header-2 {
1584
+ margin-top: 10px;
1585
+ }
1586
+
1587
+ & .e-top-header {
1588
+ font-weight: $cf-dlg-content-font-weight;
1589
+ }
1590
+
1591
+ @if $sheet-skin == 'tailwind' or $sheet-skin == 'tailwind-dark' {
1592
+ & .e-cf-dlg {
1593
+ padding-top: 10px;
1594
+ }
1595
+ }
1596
+ }
1597
+
1598
+ & .e-title-dlg {
1599
+ & .e-title-dlg-content {
1600
+ & .e-top-header {
1601
+ font-size: $title-dlg-content-header-font-size;
1602
+ }
1603
+
1604
+ & .e-input {
1605
+ font-size: $title-dlg-content-input-font-size;
1606
+ line-height: 30px;
1607
+ }
1608
+ }
1609
+ }
1610
+
1611
+ & .e-datavalidation-dlg {
1612
+ @if $sheet-skin == 'tailwind' or $sheet-skin == 'tailwind-dark' {
1613
+ & .e-dlg-header-content {
1614
+ padding: 18px;
1615
+ }
1616
+ }
1617
+ @if $skin-name == 'bootstrap5' {
1618
+ & .e-dlg-header-content {
1619
+ padding: 12px;
1620
+ }
1621
+ }
1622
+
1623
+ & .e-validation-dlg {
1624
+ margin-top: 14px;
1625
+
1626
+ & .e-cellrange {
1627
+ margin-bottom: 24px;
1628
+
1629
+ & .e-header {
1630
+ font-size: $validation-dlg-content-header-font-size;
1631
+ line-height: 16px;
1632
+ }
1633
+
1634
+ & .e-input {
1635
+ font-size: $validation-dlg-content-input-font-size;
1636
+ height: 32px;
1637
+ margin-top: 5px;
1638
+ }
1639
+ }
1640
+
1641
+ & .e-allowdata {
1642
+ margin-bottom: 24px;
1643
+
1644
+ & .e-allow {
1645
+ display: inline-block;
1646
+ padding-right: 12px;
1647
+ width: 50%;
1648
+
1649
+ & .e-header {
1650
+ font-size: $validation-dlg-content-header-font-size;
1651
+ line-height: 16px;
1652
+ }
1653
+
1654
+ & .e-valid-input {
1655
+ height: 34px;
1656
+ margin-top: 5px;
1657
+ }
1658
+ }
1659
+
1660
+ & .e-data {
1661
+ display: inline-block;
1662
+ padding-left: 12px;
1663
+ width: 50%;
1664
+
1665
+ & .e-header {
1666
+ font-size: $validation-dlg-content-header-font-size;
1667
+ line-height: 16px;
1668
+ }
1669
+
1670
+ & .e-valid-input {
1671
+ height: 34px;
1672
+ margin-top: 5px;
1673
+ }
1674
+ }
1675
+ }
1676
+
1677
+ & .e-values {
1678
+ margin-bottom: 24px;
1679
+
1680
+ & .e-minimum {
1681
+ display: inline-block;
1682
+ padding-right: 12px;
1683
+ width: 50%;
1684
+
1685
+ & .e-header {
1686
+ font-size: $validation-dlg-content-header-font-size;
1687
+ line-height: 16px;
1688
+ }
1689
+
1690
+ & .e-input {
1691
+ font-size: $validation-dlg-content-input-font-size;
1692
+ height: 32px;
1693
+ margin-top: 5px;
1694
+ }
1695
+ }
1696
+
1697
+ & .e-maximum {
1698
+ display: inline-block;
1699
+ padding-left: 12px;
1700
+ width: 50%;
1701
+
1702
+ & .e-header {
1703
+ font-size: $validation-dlg-content-header-font-size;
1704
+ line-height: 16px;
1705
+ }
1706
+
1707
+ & .e-input {
1708
+ font-size: $validation-dlg-content-input-font-size;
1709
+ height: 32px;
1710
+ margin-top: 5px;
1711
+ }
1712
+ }
1713
+
1714
+ & .e-dlg-error {
1715
+ font-size: $validation-dlg-error-font-size;
1716
+ padding-top: 10px;
1717
+ }
1718
+
1719
+ & .e-header {
1720
+ font-size: $validation-dlg-content-header-font-size;
1721
+ line-height: 16px;
1722
+ }
1723
+
1724
+ & .e-input {
1725
+ font-size: $validation-dlg-content-input-font-size;
1726
+ height: 32px;
1727
+ }
1728
+ }
1729
+
1730
+ & .e-ignoreblank {
1731
+ margin-bottom: 5px;
1732
+ }
1733
+ }
1734
+
1735
+ & .e-footer-content .e-clearall-btn {
1736
+ float: left;
1737
+ }
1738
+ }
1739
+
1740
+ & .e-validation-error-dlg .e-dlg-content {
1741
+ font-size: $validationerror-dlg-content-font-size;
1742
+ line-height: 28px;
1743
+ }
1744
+
1745
+ & .e-hyperlink-dlg.e-dialog,
1746
+ .e-edithyperlink-dlg.e-dialog {
1747
+ max-height: 640px !important; /* stylelint-disable-line declaration-no-important */
1748
+
1749
+ & .e-dlg-header-content {
1750
+ @if $skin-name == 'FluentUI' {
1751
+ padding: 14px 24px;
1752
+ }
1753
+ @else {
1754
+ padding: 24px 24px 16px;
1755
+ }
1756
+
1757
+ & .e-dlg-header {
1758
+ font-size: $hyperlink-dlg-header-content-font-size;
1759
+ line-height: 21px;
1760
+ }
1761
+ }
1762
+
1763
+ & .e-dlg-content {
1764
+ padding-bottom: 0;
1765
+ padding-left: 0;
1766
+ padding-right: 0;
1767
+
1768
+ & .e-link-dialog {
1769
+ & .e-tab-header {
1770
+ @if $skin-name == 'bootstrap5' {
1771
+ padding: 0 12px;
1772
+ }
1773
+ @else {
1774
+ padding: 0 24px 0 25px;
1775
+ }
1776
+
1777
+ & .e-toolbar-items {
1778
+ height: 100%;
1779
+ }
1780
+
1781
+ & .e-toolbar-item {
1782
+ text-align: center;
1783
+ width: 136px;
1784
+ }
1785
+ }
1786
+
1787
+ & .e-content {
1788
+ @if $skin-name == 'bootstrap5' {
1789
+ padding-top: 12px;
1790
+ }
1791
+ @else {
1792
+ padding-top: 24px;
1793
+ }
1794
+
1795
+ & .e-cont {
1796
+ @if $skin-name == 'bootstrap5' {
1797
+ margin: 12px 12px 15.5px;
1798
+ }
1799
+ @else if $skin-name == 'FluentUI' {
1800
+ margin: 0 0 12px 24px;
1801
+ }
1802
+ @else {
1803
+ margin: 0 0 15.5px 24px;
1804
+ }
1805
+
1806
+ & .e-header {
1807
+ font-size: $hyperlink-dlg-content-header-font-size;
1808
+ line-height: 16px;
1809
+ }
1810
+
1811
+ & .e-text {
1812
+ @if $skin-name != 'material' and $skin-name != 'material-dark' {
1813
+ margin-top: 8px;
1814
+ }
1815
+ font-size: $hyperlink-dlg-content-text-font-size;
1816
+ height: 32px;
1817
+ line-height: 16px;
1818
+ width: 275px;
1819
+ @if $skin-name == 'FluentUI' {
1820
+ padding-bottom: 4px;
1821
+ }
1822
+ }
1823
+
1824
+ & .e-text.e-disabled {
1825
+ border-bottom-width: 2px;
1826
+ }
1827
+
1828
+ & .e-refcont {
1829
+ border: 1px solid $hyper-doc-border-color;
1830
+ height: 165px;
1831
+ margin: 8px 24px 0 0;
1832
+ overflow: auto;
1833
+ width: 273px;
1834
+ }
1835
+ }
1836
+ }
1837
+ }
1838
+ }
1839
+
1840
+ & .e-footer-content {
1841
+ margin: 4px 0;
1842
+ }
1843
+ }
1844
+
1845
+ & .e-open-dlg.e-dialog {
1846
+ width: $open-dlg-width;
1847
+
1848
+ & .e-dlg-content {
1849
+ @if $skin-name == 'bootstrap4' {
1850
+ & .e-input-group-icon {
1851
+ padding-left: 4px;
1852
+ padding-right: 4px;
1853
+ }
1854
+ }
1855
+
1856
+ & .e-file-alert-span {
1857
+ color: $dlg-error-color;
1858
+ font-size: $open-dlg-file-alert-span-font-size;
1859
+ padding-top: 7px;
1860
+ }
1861
+ }
1862
+ }
1863
+
1864
+ & .e-find-dlg.e-dialog {
1865
+ height: auto;
1866
+ width: $find-dlg-width;
1867
+
1868
+ & .e-dlg-content {
1869
+ & .e-find-alert-span {
1870
+ color: $dlg-error-color;
1871
+ font-size: $find-dlg-alert-span-font-size;
1872
+ padding-top: 7px;
1873
+ }
1874
+
1875
+ & .e-replace-alert-span {
1876
+ color: $dlg-error-color;
1877
+ font-size: $find-dlg-alert-span-font-size;
1878
+ padding-top: 7px;
1879
+ }
1880
+
1881
+ & .e-findnreplace-casecheckbox {
1882
+ padding-right: 12px;
1883
+ }
1884
+
1885
+ & .e-findnreplace-exactmatchcheckbox {
1886
+ padding: 12px 0;
1887
+ }
1888
+ }
1889
+
1890
+ & p.e-header {
1891
+ margin: 0;
1892
+ padding-bottom: 8px;
1893
+ padding-top: 12px;
1894
+ }
1895
+
1896
+ & .e-footer-content {
1897
+ text-align: left;
1898
+ }
1899
+ }
1900
+
1901
+ & .e-protectworkbook-dlg.e-dialog {
1902
+ & .e-dlg-header-content .e-dlg-header {
1903
+ font-size: $protectworkbook-dlg-header-font-size;
1904
+ line-height: 31px;
1905
+ }
1906
+
1907
+ & .e-dlg-content {
1908
+ & .e-pwd-alert-span {
1909
+ color: $dlg-error-color;
1910
+ font-size: $protectworkbook-dlg-alert-span-font-size;
1911
+ padding-top: 12px;
1912
+ }
1913
+
1914
+ & .e-password-content {
1915
+ padding-top: 12px;
1916
+
1917
+ & .e-header {
1918
+ font-size: $protectworkbook-dlg-content-header-font-size;
1919
+ line-height: 24px;
1920
+ margin-bottom: 4px;
1921
+ }
1922
+ }
1923
+ }
1924
+ }
1925
+
1926
+ & .e-unprotectworkbook-dlg.e-dialog {
1927
+ & .e-dlg-header-content .e-dlg-header {
1928
+ font-size: $protectworkbook-dlg-header-font-size;
1929
+ line-height: 21px;
1930
+ }
1931
+
1932
+ & .e-dlg-content {
1933
+ & .e-unprotectpwd-alert-span {
1934
+ color: $dlg-error-color;
1935
+ font-size: $protectworkbook-dlg-alert-span-font-size;
1936
+ padding-top: 7px;
1937
+ }
1938
+
1939
+ & .e-unprotectpwd-content {
1940
+ & .e-header {
1941
+ font-size: $unprotectworkbook-dlg-content-header-font-size;
1942
+ line-height: 16px;
1943
+ }
1944
+
1945
+ & .e-input {
1946
+ margin-top: 10px;
1947
+ }
1948
+ }
1949
+ }
1950
+ }
1951
+
1952
+ & .e-importprotectworkbook-dlg.e-dialog {
1953
+ & .e-dlg-header-content .e-dlg-header {
1954
+ font-size: $protectworkbook-dlg-header-font-size;
1955
+ line-height: 21px;
1956
+ }
1957
+
1958
+ & .e-dlg-content {
1959
+ & .e-importprotectpwd-alert-span {
1960
+ color: $dlg-error-color;
1961
+ font-size: $protectworkbook-dlg-alert-span-font-size;
1962
+ padding-top: 7px;
1963
+ }
1964
+
1965
+ & .e-importprotectpwd-content {
1966
+ & .e-header {
1967
+ font-size: $importprotectworkbook-dlg-content-header-font-size;
1968
+ line-height: 16px;
1969
+ }
1970
+
1971
+ & .e-input {
1972
+ margin-top: 10px;
1973
+ }
1974
+ }
1975
+ }
1976
+ }
1977
+
1978
+ & .e-filter-icon {
1979
+ margin-bottom: $filter-icon-margin-bottom;
1980
+ @if $skin-name == 'FluentUI' {
1981
+ margin-top: -9px;
1982
+ }
1983
+ @if $sheet-skin == 'tailwind' or $sheet-skin == 'tailwind-dark' {
1984
+ font-size: $filter-icon-font-size;
1985
+ }
1986
+
1987
+ &::before {
1988
+ font-size: $filter-icon-before-font-size;
1989
+ margin-left: -3px;
1990
+ }
1991
+ }
1992
+
1993
+ & .e-btn.e-icon-btn.e-filter-btn {
1994
+ bottom: 0;
1995
+ float: right;
1996
+ height: 18px;
1997
+ margin-right: -1px;
1998
+ padding: 0;
1999
+ position: relative;
2000
+ right: 0;
2001
+ width: 20px;
2002
+ z-index: 2;
2003
+ @if $sheet-skin == 'tailwind' or $sheet-skin == 'tailwind-dark' {
2004
+ bottom: 1px;
2005
+ }
2006
+ }
2007
+ }
2008
+
2009
+ .e-colorpicker-wrapper.e-border-colorpicker {
2010
+ display: none;
2011
+
2012
+ & .e-container {
2013
+ box-shadow: none;
2014
+ width: 270px !important; /* stylelint-disable-line declaration-no-important */
2015
+
2016
+ & .e-selected-value {
2017
+ display: flex;
2018
+ }
2019
+ }
2020
+ }
2021
+
2022
+ .e-spreadsheet.e-col-resizing {
2023
+ cursor: col-resize;
2024
+ }
2025
+
2026
+ .e-spreadsheet.e-row-resizing {
2027
+ cursor: row-resize;
2028
+ }
2029
+
2030
+ .e-dropdown-popup {
2031
+ &.e-numformat-ddb ul {
2032
+ max-width: initial;
2033
+
2034
+ & .e-numformat-preview-text {
2035
+ font-size: $numformat-ddb-preview-font-size;
2036
+ max-width: 200px;
2037
+ overflow: hidden;
2038
+ text-align: right;
2039
+ text-overflow: ellipsis;
2040
+ }
2041
+ }
2042
+
2043
+ &.e-font-size-ddb ul {
2044
+ min-width: 60px;
2045
+ }
2046
+
2047
+ &.e-align-ddb ul {
2048
+ min-width: auto;
2049
+ padding: $align-ddb-ul-padding;
2050
+
2051
+ & .e-item {
2052
+ display: inline-flex;
2053
+ height: $align-ddb-item-height;
2054
+ line-height: $align-ddb-item-height;
2055
+ margin: $align-ddb-item-margin;
2056
+ padding: $align-ddb-item-padding;
2057
+
2058
+ & .e-menu-icon {
2059
+ line-height: $align-ddb-item-height;
2060
+ margin-right: 0;
2061
+ }
2062
+ }
2063
+ }
2064
+
2065
+ &.e-colorpicker-popup {
2066
+ & .e-container {
2067
+ & .e-custom-palette .e-palette {
2068
+ padding: 0;
2069
+ }
2070
+
2071
+ & .e-switch-ctrl-btn {
2072
+ padding-top: $ctrl-btn-padding;
2073
+ }
2074
+ }
2075
+ }
2076
+
2077
+ &.e-font-family ul .e-item {
2078
+ @for $i from 0 to length($font-family-collection) {
2079
+ &:nth-child(#{$i+1}) {
2080
+ font-family: nth($font-family-collection, $i+1);
2081
+ }
2082
+ }
2083
+ }
2084
+
2085
+ &.e-aggregate-list {
2086
+ font-size: $aggregate-list-font-size;
2087
+ margin-left: auto;
2088
+ }
2089
+
2090
+ &.e-borders-ddb .e-menu-wrapper {
2091
+ border: 0;
2092
+
2093
+ & ul .e-menu-item .e-menu-icon {
2094
+ font-size: $aggregate-list-font-size;
2095
+ }
2096
+ }
2097
+
2098
+ &.e-popup.e-aggregate-list ul {
2099
+ font-size: $aggregate-list-font-size;
2100
+ }
2101
+ }
2102
+
2103
+ .e-menu-wrapper {
2104
+ &.e-file-menu ul .e-menu-item div {
2105
+ display: flex;
2106
+ width: 100%;
2107
+
2108
+ & .e-extension {
2109
+ font-size: $file-menu-extension-font-size;
2110
+ margin-left: auto;
2111
+ opacity: .7;
2112
+ padding-left: $menu-extension-padding;
2113
+ }
2114
+ }
2115
+
2116
+ & .e-border-style {
2117
+ & .e-menu-item {
2118
+ align-items: center;
2119
+ display: flex;
2120
+
2121
+ &::after {
2122
+ content: '';
2123
+ width: 135px;
2124
+ }
2125
+
2126
+ $border-style-collection: solid solid solid dashed dotted double;
2127
+ $border-width-collection: thin medium thick thin thin medium;
2128
+ @for $i from 0 to length($border-style-collection) {
2129
+ &:nth-child(#{$i+1})::after {
2130
+ border-bottom-style: nth($border-style-collection, $i+1);
2131
+ border-bottom-width: nth($border-width-collection, $i+1);
2132
+ }
2133
+ }
2134
+ }
2135
+ }
2136
+
2137
+ &.e-databars .e-ul,
2138
+ &.e-colorscales .e-ul {
2139
+ overflow: visible;
2140
+ padding: 0;
2141
+
2142
+ & .e-menu-item {
2143
+ height: auto;
2144
+ line-height: 0;
2145
+ padding: 0;
2146
+
2147
+ & .e-cf-icon {
2148
+ display: inline-block;
2149
+ height: 40px;
2150
+ width: 40px;
2151
+ }
2152
+ }
2153
+ }
2154
+
2155
+ &.e-databars .e-ul {
2156
+ min-width: 110px;
2157
+ }
2158
+
2159
+ &.e-colorscales .e-ul {
2160
+ min-width: 150px;
2161
+ }
2162
+
2163
+ &.e-popup.e-menu-popup.e-iconsets ul {
2164
+ min-width: 250px;
2165
+ overflow: visible;
2166
+ padding: 0;
2167
+
2168
+ & .e-menu-item {
2169
+ height: auto;
2170
+ line-height: 0;
2171
+ padding: 0;
2172
+
2173
+ & .e-is {
2174
+ height: 550px;
2175
+ width: auto;
2176
+
2177
+ & .e-is1,
2178
+ & .e-is3,
2179
+ & .e-is5,
2180
+ & .e-is7 {
2181
+ height: 6%;
2182
+ padding: 18px 16px;
2183
+ }
2184
+
2185
+ & .e-iconsetspan {
2186
+ display: inline-block;
2187
+ height: 100%;
2188
+ width: 20%;
2189
+ }
2190
+
2191
+ & .e-is2 {
2192
+ height: 25.3%;
2193
+
2194
+ & .e-3arrows,
2195
+ & .e-3arrowsgray,
2196
+ & .e-3triangles,
2197
+ & .e-4arrowsgray,
2198
+ & .e-4arrows,
2199
+ & .e-5arrowsgray,
2200
+ & .e-5arrows {
2201
+ float: left;
2202
+ height: 25%;
2203
+ padding: 2px 12px;
2204
+ width: 50%;
2205
+ }
2206
+ }
2207
+
2208
+ & .e-is4 {
2209
+ height: 19%;
2210
+
2211
+ & .e-3trafficlights,
2212
+ & .e-3rafficlights2,
2213
+ & .e-3signs,
2214
+ & .e-4trafficlights,
2215
+ & .e-4redtoblack {
2216
+ float: left;
2217
+ height: 33%;
2218
+ padding: 2px 12px;
2219
+ width: 50%;
2220
+ }
2221
+ }
2222
+
2223
+ & .e-is6 {
2224
+ height: 12.6%;
2225
+
2226
+ & .e-3symbols,
2227
+ & .e-3symbols2,
2228
+ & .e-3flags {
2229
+ float: left;
2230
+ height: 50%;
2231
+ padding: 2px 12px;
2232
+ width: 50%;
2233
+ }
2234
+ }
2235
+
2236
+ & .e-is8 {
2237
+ height: 19%;
2238
+
2239
+ & .e-3stars,
2240
+ & .e-4rating,
2241
+ & .e-5quarters,
2242
+ & .e-5rating,
2243
+ & .e-5boxes {
2244
+ float: left;
2245
+ height: 33%;
2246
+ width: 50%;
2247
+ }
2248
+ }
2249
+ }
2250
+ }
2251
+ }
2252
+
2253
+ &.e-popup.e-menu-popup.e-border-color ul {
2254
+ min-width: 270px;
2255
+ overflow: visible;
2256
+ padding: 0;
2257
+
2258
+ & .e-menu-item {
2259
+ height: auto;
2260
+ line-height: 0;
2261
+ padding: 0;
2262
+
2263
+ &.e-ripple,
2264
+ &.e-ripple-style {
2265
+ overflow: visible;
2266
+
2267
+ & .e-ripple-element {
2268
+ display: none;
2269
+ }
2270
+ }
2271
+
2272
+ & .e-container .e-slider-preview .e-colorpicker-slider .e-slider-container {
2273
+ display: block;
2274
+ }
2275
+ }
2276
+ }
2277
+
2278
+ &.e-popup.e-menu-popup.e-addchart-menu ul {
2279
+ @if $sheet-skin == 'bootstrap' or $sheet-skin == 'bootstrap4' or $sheet-skin == 'bootstrap5' or $sheet-skin == 'bootstrap-dark' or $sheet-skin == 'bootstrap5-dark' {
2280
+ & .e-menu-item {
2281
+ height: 35px;
2282
+ }
2283
+ }
2284
+ }
2285
+
2286
+ &.e-popup.e-menu-popup.e-chart-menu ul,
2287
+ &.e-popup.e-menu-popup.e-chart-type-menu ul {
2288
+ min-width: 165px;
2289
+ overflow: visible;
2290
+ padding: 0;
2291
+
2292
+ & .e-menu-item {
2293
+ height: auto;
2294
+ line-height: 0;
2295
+ padding: 0;
2296
+
2297
+ & .e-column-main,
2298
+ & .e-bar-main {
2299
+ height: 90px;
2300
+
2301
+ & .e-column1-text,
2302
+ & .e-bar1-text {
2303
+ height: 40%;
2304
+ padding: 18px 16px;
2305
+ }
2306
+
2307
+ & .e-column1-cont,
2308
+ & .e-bar1-cont {
2309
+ height: 60%;
2310
+
2311
+ & .e-clusteredcolumn,
2312
+ & .e-stackedcolumn,
2313
+ & .e-stackedcolumn100,
2314
+ & .e-clusteredcolumn3d,
2315
+ & .e-stackedcolumn3d,
2316
+ & .e-stackedcolumn1003d,
2317
+ & .e-clusteredbar,
2318
+ & .e-stackedbar,
2319
+ & .e-stackedbar100,
2320
+ & .e-clusteredbar3d,
2321
+ & .e-stackedbar3d,
2322
+ & .e-stackedbar1003d {
2323
+ display: inline-block;
2324
+ font-size: 40px;
2325
+ height: 100%;
2326
+ margin: 0;
2327
+ padding: 10px;
2328
+ width: 55px;
2329
+ }
2330
+ }
2331
+ }
2332
+ }
2333
+ }
2334
+
2335
+ &.e-popup.e-menu-popup.e-chart-menu ul,
2336
+ &.e-popup.e-menu-popup.e-chart-type-menu ul {
2337
+ min-width: 110px;
2338
+ overflow: visible;
2339
+ padding: 0;
2340
+
2341
+ & .e-menu-item {
2342
+ height: auto;
2343
+ line-height: 0;
2344
+ padding: 0;
2345
+
2346
+ & .e-pie-main,
2347
+ & .e-radar-main {
2348
+ height: 90px;
2349
+
2350
+ & .e-pie-text,
2351
+ & .e-radar-text {
2352
+ height: 40%;
2353
+ padding: 18px 16px;
2354
+ }
2355
+
2356
+ & .e-pie-cont,
2357
+ & .e-radar-cont {
2358
+ height: 60%;
2359
+
2360
+ & .e-pie,
2361
+ & .e-doughnut,
2362
+ & .e-radar,
2363
+ & .e-radar-markers {
2364
+ display: inline-block;
2365
+ font-size: 40px;
2366
+ height: 60px;
2367
+ margin: 0;
2368
+ padding: 10px;
2369
+ width: 55px;
2370
+ }
2371
+ }
2372
+ }
2373
+ }
2374
+ }
2375
+
2376
+ &.e-popup.e-menu-popup.e-chart-menu ul,
2377
+ &.e-popup.e-menu-popup.e-chart-type-menu ul {
2378
+ min-width: 165px;
2379
+ overflow: visible;
2380
+ padding: 0;
2381
+
2382
+ & .e-menu-item {
2383
+ height: auto;
2384
+ line-height: 0;
2385
+ padding: 0;
2386
+
2387
+ & .e-line-main,
2388
+ & .e-area-main {
2389
+ height: 90px;
2390
+
2391
+ & .e-line-text,
2392
+ & .e-area-text {
2393
+ height: 40%;
2394
+ padding: 18px 16px;
2395
+ }
2396
+
2397
+ & .e-line-cont,
2398
+ & .e-area-cont {
2399
+ height: 60%;
2400
+
2401
+ & .e-area,
2402
+ & .e-stackedarea,
2403
+ & .e-stackedarea100,
2404
+ & .e-line,
2405
+ & .e-stackedline,
2406
+ & .e-stackedline100 {
2407
+ display: inline-block;
2408
+ font-size: 40px;
2409
+ height: 60px;
2410
+ margin: 0;
2411
+ padding: 10px;
2412
+ width: 55px;
2413
+ }
2414
+ }
2415
+ }
2416
+ }
2417
+ }
2418
+
2419
+ &.e-popup.e-menu-popup.e-chart-menu ul,
2420
+ &.e-popup.e-menu-popup.e-chart-type-menu ul {
2421
+ min-width: 60px;
2422
+ overflow: visible;
2423
+ padding: 0;
2424
+
2425
+ & .e-menu-item {
2426
+ height: auto;
2427
+ line-height: 0;
2428
+ padding: 0;
2429
+
2430
+ & .e-scatter-main {
2431
+ height: 90px;
2432
+
2433
+ & .e-scatter-text {
2434
+ height: 40%;
2435
+ padding: 18px 16px;
2436
+ }
2437
+
2438
+ & .e-scatter-cont {
2439
+ height: 60%;
2440
+
2441
+ & .e-scatter {
2442
+ display: inline-block;
2443
+ font-size: 60px;
2444
+ height: 60px;
2445
+ margin: 0;
2446
+ padding: 10px;
2447
+ width: 100%;
2448
+ }
2449
+ }
2450
+ }
2451
+ }
2452
+ }
2453
+ }
2454
+
2455
+ .e-spreadsheet-function-dlg.e-dialog {
2456
+ min-height: $dlg-min-height;
2457
+ user-select: none;
2458
+
2459
+ & .e-dlg-header-content {
2460
+ @if $skin-name == 'bootstrap5' {
2461
+ padding: 12px;
2462
+ }
2463
+ @else {
2464
+ padding: 18px;
2465
+ }
2466
+
2467
+ & .e-dlg-header {
2468
+ font-size: $function-dlg-header-content-font-size;
2469
+ font-weight: normal;
2470
+ }
2471
+ }
2472
+
2473
+ & .e-dlg-content {
2474
+ overflow: hidden;
2475
+ padding-left: $dlg-content-padding;
2476
+ padding-right: $dlg-content-padding;
2477
+
2478
+ & .e-category-content {
2479
+ font-size: $dlg-category-content-font-size;
2480
+ font-weight: $dlg-category-content-font-weight;
2481
+ margin-bottom: $dlg-category-margin-bottom;
2482
+
2483
+ @if $sheet-skin == 'tailwind' or $sheet-skin == 'tailwind-dark' {
2484
+ padding: 10px 0;
2485
+ }
2486
+ }
2487
+
2488
+ & .e-formula-description {
2489
+ margin-left: -4px;
2490
+ margin-top: 5px;
2491
+ padding: 4px;
2492
+ }
2493
+
2494
+ & .e-description-content {
2495
+ font-size: $dlg-description-content-font-size;
2496
+ font-weight: $dlg-description-font-weight;
2497
+ padding-top: 10px;
2498
+ }
2499
+
2500
+ & .e-formula-list {
2501
+ border: $dlg-list-border;
2502
+ cursor: default;
2503
+ margin-top: 6px;
2504
+ overflow-y: auto;
2505
+ }
2506
+ }
2507
+ }
2508
+
2509
+ .e-xlflmenu {
2510
+ @if $sheet-skin == 'tailwind' or $sheet-skin == 'tailwind-dark' {
2511
+ & .e-xlfl-maindiv {
2512
+ padding-top: 10px;
2513
+ }
2514
+ }
2515
+
2516
+ & .e-xlfl-maindiv .e-xlfl-radiodiv {
2517
+ width: auto;
2518
+ }
2519
+ }
2520
+
2521
+ .e-name-box {
2522
+ & .e-dropdownbase .e-list-item {
2523
+ line-height: 25px;
2524
+ min-height: 25px;
2525
+ text-indent: 10px;
2526
+ }
2527
+ }
2528
+
2529
+ .e-spreadsheet:not(.e-mobile-view) {
2530
+ & .e-formula-bar-panel {
2531
+ border-bottom-width: 0;
2532
+
2533
+ & .e-btn.e-css.e-insert-function {
2534
+ border-left: $spreadsheet-border;
2535
+ height: 23px;
2536
+
2537
+ & .e-btn-icon {
2538
+ line-height: 24px;
2539
+ }
2540
+ }
2541
+
2542
+ & .e-formula-bar {
2543
+ height: 23px;
2544
+ line-height: 23px;
2545
+ width: $formula-textarea-width;
2546
+ }
2547
+
2548
+ &.e-expanded {
2549
+ & .e-formula-bar,
2550
+ & .e-btn.e-css.e-insert-function {
2551
+ height: 71px;
2552
+ }
2553
+
2554
+ & .e-btn.e-css.e-insert-function {
2555
+ line-height: 71px;
2556
+ }
2557
+
2558
+ & .e-drop-icon {
2559
+ transform: rotate(180deg);
2560
+ }
2561
+
2562
+ & .e-separator {
2563
+ height: 60px;
2564
+ }
2565
+ }
2566
+ }
2567
+
2568
+ & .e-sheet-tab {
2569
+ max-width: 60%;
2570
+
2571
+ & .e-hscroll-bar {
2572
+ margin-left: -40px;
2573
+ margin-right: 40px;
2574
+ }
2575
+ }
2576
+
2577
+ & .e-add-sheet-tab.e-btn.e-icon-btn.e-css,
2578
+ & .e-sheets-list.e-dropdown-btn {
2579
+ height: 32px;
2580
+ padding: 0;
2581
+ width: 32px;
2582
+
2583
+ & .e-btn-icon {
2584
+ line-height: 33px;
2585
+ margin-top: 0;
2586
+ }
2587
+ }
2588
+
2589
+ & .e-aggregate-list {
2590
+ font-size: $aggregate-list-font-size;
2591
+ margin-left: auto;
2592
+ }
2593
+
2594
+ & .e-ribbon {
2595
+ border-bottom-width: 0;
2596
+ }
2597
+ }
2598
+
2599
+ .e-bigger .e-spreadsheet,
2600
+ .e-bigger.e-spreadsheet {
2601
+ @if $skin-name == 'FluentUI' {
2602
+ & .e-protect-dlg.e-dialog {
2603
+ height: 790px !important; /* stylelint-disable-line declaration-no-important */
2604
+ }
2605
+
2606
+ & .e-delete-sheet-dlg.e-dialog {
2607
+ height: 240px !important; /* stylelint-disable-line declaration-no-important */
2608
+ }
2609
+
2610
+ & .e-merge-alert-dlg.e-dialog {
2611
+ height: 215px;
2612
+
2613
+ .e-dlg-content {
2614
+ padding-bottom: 0;
2615
+ }
2616
+ }
2617
+
2618
+ .e-validation-error-dlg .e-dlg-content {
2619
+ padding-bottom: 0;
2620
+ }
2621
+
2622
+ .e-spreadsheet-function-dlg.e-dialog {
2623
+ height: 515px !important; /* stylelint-disable-line declaration-no-important */
2624
+ }
2625
+ }
2626
+
2627
+ @if $sheet-skin == 'tailwind' or $sheet-skin == 'tailwind-dark' or $skin-name == 'FluentUI' {
2628
+ & .e-validation-list .e-ddl-icon {
2629
+ min-height: 0;
2630
+ min-width: 0;
2631
+ padding: 0;
2632
+ }
2633
+
2634
+ & .e-findtool-dlg .e-dlg-content .e-find-toolbar .e-input {
2635
+ width: calc(100% - 70px);
2636
+ }
2637
+ }
2638
+
2639
+ & .e-ribbon {
2640
+ & .e-toolbar .e-btn:not(.e-tbar-btn) {
2641
+ &:not(.e-split-colorpicker) {
2642
+ line-height: $bigger-spreadsheet-ribbon-btn-height;
2643
+ }
2644
+
2645
+ &.e-split-colorpicker {
2646
+ line-height: $bigger-spreadsheet-ribbon-btn-height - 2;
2647
+ padding-bottom: 2px;
2648
+ width: $bigger-cpicker-btn-width;
2649
+ }
2650
+
2651
+ &:not(.e-dropdown-btn):not(.e-split-btn) {
2652
+ padding-left: $bigger-spreadsheet-ribbon-btn-padding;
2653
+ padding-right: $bigger-spreadsheet-ribbon-btn-padding;
2654
+ }
2655
+
2656
+ &:not(.e-split-colorpicker) .e-btn-icon {
2657
+ line-height: $bigger-spreadsheet-ribbon-btn-height;
2658
+ min-height: $bigger-spreadsheet-ribbon-btn-height;
2659
+
2660
+ &:not(.e-caret) {
2661
+ font-size: $bigger-spreadsheet-tbar-btn-icon-font-size;
2662
+ }
2663
+
2664
+ @if $skin-name == 'fabric' or $skin-name == 'highcontrast' or $skin-name == 'fabric-dark' {
2665
+ &.e-wrap-icon {
2666
+ font-size: $bigger-toolbar-wrap-icon-font-size;
2667
+ }
2668
+ }
2669
+ }
2670
+ }
2671
+
2672
+ & .e-toolbar .e-toolbar-item .e-btn {
2673
+ &.e-tbar-btn .e-icons.e-btn-icon:not(.e-caret) {
2674
+ font-size: $bigger-spreadsheet-tbar-btn-icon-font-size;
2675
+ }
2676
+ }
2677
+
2678
+ & .e-dropdown-btn.e-font-size-ddb {
2679
+ width: $bigger-fontsize-btn-width;
2680
+ }
2681
+
2682
+ & .e-colorpicker-wrapper .e-split-btn-wrapper .e-split-colorpicker.e-split-btn .e-selected-color {
2683
+ height: auto;
2684
+ width: auto;
2685
+ }
2686
+
2687
+ & .e-content .e-hscroll-bar {
2688
+ height: auto;
2689
+ overflow: hidden;
2690
+ }
2691
+ }
2692
+
2693
+ & .e-formula-bar-panel {
2694
+ & .e-input-group.e-control-wrapper.e-ddl.e-name-box .e-input-group-icon {
2695
+ font-size: $bigger-name-box-ddl-icon-font-size;
2696
+ margin: 0;
2697
+ }
2698
+
2699
+ // Need to remove the below properties & its variable once touch support provided by UX team
2700
+ & .e-css.e-btn.e-icon-btn {
2701
+ padding-left: $normal-btn-padding;
2702
+ padding-right: $normal-btn-padding;
2703
+ }
2704
+ }
2705
+
2706
+ & .e-add-sheet-tab.e-btn.e-icon-btn.e-css,
2707
+ & .e-sheets-list.e-dropdown-btn {
2708
+ height: 39px;
2709
+ width: 39px;
2710
+
2711
+ & .e-btn-icon {
2712
+ line-height: 39px;
2713
+ }
2714
+ }
2715
+
2716
+ & .e-sheet-tab-panel {
2717
+ @include bigger-tab-header-layout;
2718
+ }
2719
+
2720
+ & .e-sheet-tab .e-tab-header .e-toolbar-item {
2721
+ & .e-tab-wrap {
2722
+ padding: 0 16px;
2723
+ }
2724
+ }
2725
+
2726
+ @if $skin-name != 'bootstrap' and $skin-name != 'bootstrap4' {
2727
+ & .e-drop-icon {
2728
+ font-size: $spreadsheet-drop-icon-font-size;
2729
+ margin-right: 5px;
2730
+ }
2731
+ }
2732
+
2733
+ &:not(.e-mobile-view) .e-formula-bar-panel {
2734
+ & .e-btn.e-css.e-insert-function {
2735
+ height: 29px;
2736
+
2737
+ & .e-btn-icon {
2738
+ font-size: $bigger-insert-function-btn-icon-font-size;
2739
+ line-height: 30px;
2740
+ }
2741
+ }
2742
+
2743
+ & .e-input-group.e-control-wrapper.e-ddl.e-name-box input.e-input {
2744
+ height: 29px;
2745
+ }
2746
+
2747
+ & .e-drop-icon {
2748
+ line-height: 29px;
2749
+
2750
+ @if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' {
2751
+ font-size: $bigger-formula-bar-drop-icon-font-size;
2752
+ line-height: 38px;
2753
+ }
2754
+ }
2755
+
2756
+ & .e-separator {
2757
+ height: 15px;
2758
+ }
2759
+
2760
+ & .e-formula-bar {
2761
+ font-size: $bigger-formula-bar-font-size;
2762
+ height: 29px;
2763
+ line-height: 29px;
2764
+ }
2765
+
2766
+ &.e-expanded {
2767
+ & .e-formula-bar,
2768
+ & .e-btn.e-css.e-insert-function {
2769
+ height: 89px;
2770
+ line-height: 89px;
2771
+ }
2772
+
2773
+ & .e-separator {
2774
+ height: 78px;
2775
+ }
2776
+ }
2777
+ }
2778
+
2779
+ & .e-dlg-content .e-custom-dialog .e-input.e-dialog-input {
2780
+ float: left;
2781
+ margin-right: 2.8%;
2782
+ width: 77%;
2783
+ @if $skin-name == 'FluentUI' {
2784
+ height: 40px;
2785
+ }
2786
+ }
2787
+
2788
+ & .e-customsort-dlg.e-dialog {
2789
+ width: 590px !important; /* stylelint-disable-line declaration-no-important */
2790
+ @if $sheet-skin == 'tailwind' or $sheet-skin == 'tailwind-dark' or $skin-name == 'FluentUI' {
2791
+ width: 630px !important; /* stylelint-disable-line declaration-no-important */
2792
+ }
2793
+ }
2794
+
2795
+ .e-sort-dialog .e-sort-template .e-list-item {
2796
+ height: auto;
2797
+ line-height: 1;
2798
+ }
2799
+
2800
+ & .e-filter-icon {
2801
+ margin-bottom: $filter-icon-bigger-margin-bottom;
2802
+ @if $sheet-skin == 'tailwind' or $sheet-skin == 'tailwind-dark' {
2803
+ font-size: $bigger-filter-icon-font-size;
2804
+ margin-top: -3px;
2805
+ }
2806
+ }
2807
+
2808
+ & .e-find-dlg .e-footer-content .e-btn {
2809
+ font-size: $bigger-find-dlg-btn-font-size;
2810
+ margin-top: 6px;
2811
+ }
2812
+
2813
+ & .e-findtool-dlg {
2814
+ height: $bigger-find-tool-dlg-height;
2815
+ width: $bigger-find-tool-dlg-width;
2816
+ }
2817
+
2818
+ & .e-goto-dlg.e-dialog {
2819
+ height: auto;
2820
+
2821
+ & .e-btn {
2822
+ font-size: $goto-dlg-btn-font-size;
2823
+ }
2824
+ }
2825
+
2826
+ & .e-protectworkbook-dlg.e-dialog .e-dlg-content {
2827
+ & .e-pwd-alert-span {
2828
+ color: $dlg-error-color;
2829
+ font-size: $protectworkbook-dlg-pwd-alert-span-font-size;
2830
+ padding-top: 16px;
2831
+ }
2832
+
2833
+ & .e-password-content {
2834
+ padding-top: 16px;
2835
+
2836
+ & .e-header {
2837
+ font-size: $protectworkbook-dlg-pwd-content-font-size;
2838
+ line-height: 28px;
2839
+ margin-bottom: 4px;
2840
+ }
2841
+ }
2842
+ }
2843
+
2844
+ & .e-excelfilter {
2845
+ & .e-spreadsheet-ftrchk {
2846
+ padding-left: $filter-selectall-bigger-padding;
2847
+ }
2848
+
2849
+ &.e-rtl .e-spreadsheet-ftrchk {
2850
+ padding-left: 0;
2851
+ padding-right: $filter-selectall-bigger-padding;
2852
+ }
2853
+ }
2854
+
2855
+ & .e-checkboxtree {
2856
+ ul {
2857
+ padding-left: 0;
2858
+ }
2859
+
2860
+ &.e-rtl ul {
2861
+ padding-right: 0;
2862
+ }
2863
+ }
2864
+
2865
+ & .e-validation-list {
2866
+
2867
+ @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' {
2868
+ width: $bigger-validation-list-width;
2869
+ }
2870
+
2871
+ & .e-ddl-icon.e-search-icon {
2872
+
2873
+ @if $skin-name == 'material' or $skin-name == 'material-dark' {
2874
+ bottom: $bigger-validation-list-icon-bottom;
2875
+ }
2876
+
2877
+ @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' {
2878
+ min-height: $bigger-validation-list-icon-height-width;
2879
+ min-width: $bigger-validation-list-icon-height-width;
2880
+ }
2881
+ }
2882
+ }
2883
+ }
2884
+
2885
+ .e-bigger.e-dropdown-popup,
2886
+ .e-bigger .e-dropdown-popup {
2887
+ &.e-font-size-ddb ul {
2888
+ min-width: 70px;
2889
+ }
2890
+
2891
+ @if $sheet-skin == 'tailwind' or $sheet-skin == 'tailwind-dark' or $skin-name == 'FluentUI' {
2892
+ &.e-dragfill-ddb ul,
2893
+ &.e-numformat-ddb ul {
2894
+ max-width: initial;
2895
+ }
2896
+ }
2897
+ }
2898
+
2899
+ .e-bigger .e-spreadsheet .e-hyperlink-dlg.e-dialog {
2900
+ @if $skin-name == 'FluentUI' {
2901
+ & .e-dlg-content .e-link-dialog .e-content .e-cont {
2902
+ margin: 0 0 16px 24px;
2903
+ }
2904
+
2905
+ & .e-dlg-header-content {
2906
+ padding: 24px 24px 16px;
2907
+ }
2908
+ }
2909
+ }
2910
+
2911
+ .e-sort-dialog {
2912
+ height: 100%;
2913
+ position: relative;
2914
+
2915
+ & .e-sort-listsection {
2916
+ @if $skin-name != 'FluentUI' {
2917
+ height: calc(100% - 28px);
2918
+ }
2919
+ margin: 0 auto;
2920
+ overflow: auto;
2921
+ width: 100%;
2922
+ }
2923
+
2924
+ & .e-sort-listwrapper {
2925
+ padding-left: 2px;
2926
+ }
2927
+
2928
+ & .e-sort-listwrapper .text {
2929
+ font-size: $sort-dlg-listwrapper-text-font-size;
2930
+ padding: 10px 0 5px;
2931
+ }
2932
+
2933
+ & .e-list-sort {
2934
+ height: 100%;
2935
+ }
2936
+
2937
+ & .e-sort-row {
2938
+ align-items: center;
2939
+ display: flex;
2940
+ padding: 5px 0 10px;
2941
+ }
2942
+
2943
+ & .e-sort-error,
2944
+ & .e-sort-header,
2945
+ & .e-sort-casecheckbox,
2946
+ & .e-sort-listsection {
2947
+ padding-left: $dlg-content-padding;
2948
+ padding-right: $dlg-content-padding;
2949
+ }
2950
+
2951
+ & .e-sort-error {
2952
+ bottom: 0;
2953
+ display: none;
2954
+ font-size: $sort-dlg-error-font-size;
2955
+ height: 20px;
2956
+ line-height: 20px;
2957
+ position: absolute;
2958
+ width: 100%;
2959
+ }
2960
+
2961
+ & .e-sort-template {
2962
+ border: 0;
2963
+
2964
+ & .e-list-item {
2965
+ height: auto;
2966
+ line-height: unset;
2967
+
2968
+ &:not(:first-child) {
2969
+ padding: 5px 0 0;
2970
+ }
2971
+
2972
+ &:first-child {
2973
+ padding: 0;
2974
+ }
2975
+ }
2976
+
2977
+ & .e-content {
2978
+ height: 100%;
2979
+ overflow: auto;
2980
+ }
2981
+ }
2982
+
2983
+ & .e-sort-field {
2984
+ width: auto;
2985
+ }
2986
+
2987
+ & .e-radio-wrapper {
2988
+ margin-left: 16px;
2989
+ }
2990
+
2991
+ & li:first-of-type .e-sort-delete {
2992
+ display: none;
2993
+ }
2994
+
2995
+ & .e-sort-delete {
2996
+ border-left-style: solid;
2997
+ border-left-width: 1px;
2998
+ line-height: 32px;
2999
+ margin-left: auto;
3000
+ margin-right: 5px;
3001
+ padding-left: 22px;
3002
+ vertical-align: middle;
3003
+
3004
+ &::before {
3005
+ cursor: pointer;
3006
+ }
3007
+ }
3008
+ }
3009
+
3010
+ @if $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5-dark' {
3011
+ .e-spreadsheet .e-ribbon .e-tab .e-tab-header .e-toolbar-item {
3012
+ & .e-tab-wrap:focus .e-text-wrap {
3013
+ height: 32px;
3014
+ }
3015
+
3016
+ &:not(.e-separator) .e-text-wrap {
3017
+ height: 32px;
3018
+ }
3019
+
3020
+ &:not(.e-separator) .e-tab-wrap {
3021
+ height: 35px;
3022
+ }
3023
+
3024
+ &.e-active {
3025
+ margin: 0;
3026
+ }
3027
+ }
3028
+ }
3029
+ }