@syncfusion/ej2-angular-spreadsheet 20.2.48-ngcc → 20.2.49

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