@syncfusion/ej2-angular-spreadsheet 21.2.10 → 22.1.34

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 (100) hide show
  1. package/README.md +67 -144
  2. package/esm2020/src/spreadsheet/cells.directive.mjs +1 -1
  3. package/esm2020/src/spreadsheet/spreadsheet.component.mjs +3 -3
  4. package/fesm2015/syncfusion-ej2-angular-spreadsheet.mjs +2 -2
  5. package/fesm2015/syncfusion-ej2-angular-spreadsheet.mjs.map +1 -1
  6. package/fesm2020/syncfusion-ej2-angular-spreadsheet.mjs +2 -2
  7. package/fesm2020/syncfusion-ej2-angular-spreadsheet.mjs.map +1 -1
  8. package/license +10 -0
  9. package/package.json +23 -9
  10. package/schematics/utils/lib-details.ts +2 -2
  11. package/src/spreadsheet/cells.directive.d.ts +1 -1
  12. package/src/spreadsheet/spreadsheet.component.d.ts +1 -1
  13. package/styles/bootstrap-dark.css +84 -57
  14. package/styles/bootstrap.css +84 -57
  15. package/styles/bootstrap4.css +84 -57
  16. package/styles/bootstrap5-dark.css +85 -67
  17. package/styles/bootstrap5.css +85 -67
  18. package/styles/fabric-dark.css +84 -57
  19. package/styles/fabric.css +84 -57
  20. package/styles/fluent-dark.css +84 -61
  21. package/styles/fluent.css +84 -61
  22. package/styles/highcontrast-light.css +72 -57
  23. package/styles/highcontrast.css +84 -57
  24. package/styles/material-dark.css +84 -59
  25. package/styles/material.css +84 -56
  26. package/styles/material3-dark.css +4507 -0
  27. package/styles/material3-dark.scss +4 -0
  28. package/styles/material3.css +4563 -0
  29. package/styles/material3.scss +4 -0
  30. package/styles/spreadsheet/_bootstrap-dark-definition.scss +7 -0
  31. package/styles/spreadsheet/_bootstrap-definition.scss +7 -0
  32. package/styles/spreadsheet/_bootstrap4-definition.scss +7 -0
  33. package/styles/spreadsheet/_bootstrap5-definition.scss +7 -0
  34. package/styles/spreadsheet/_fabric-dark-definition.scss +7 -0
  35. package/styles/spreadsheet/_fabric-definition.scss +8 -1
  36. package/styles/spreadsheet/_fluent-definition.scss +7 -0
  37. package/styles/spreadsheet/_highcontrast-definition.scss +7 -0
  38. package/styles/spreadsheet/_highcontrast-light-definition.scss +7 -0
  39. package/styles/spreadsheet/_layout.scss +1094 -240
  40. package/styles/spreadsheet/_material-dark-definition.scss +7 -0
  41. package/styles/spreadsheet/_material-definition.scss +7 -0
  42. package/styles/spreadsheet/_material3-dark-definition.scss +1 -0
  43. package/styles/spreadsheet/_material3-definition.scss +246 -0
  44. package/styles/spreadsheet/_tailwind-definition.scss +7 -0
  45. package/styles/spreadsheet/_theme.scss +280 -25
  46. package/styles/spreadsheet/bootstrap-dark.css +84 -57
  47. package/styles/spreadsheet/bootstrap.css +84 -57
  48. package/styles/spreadsheet/bootstrap4.css +84 -57
  49. package/styles/spreadsheet/bootstrap5-dark.css +85 -67
  50. package/styles/spreadsheet/bootstrap5.css +85 -67
  51. package/styles/spreadsheet/fabric-dark.css +84 -57
  52. package/styles/spreadsheet/fabric.css +84 -57
  53. package/styles/spreadsheet/fluent-dark.css +84 -61
  54. package/styles/spreadsheet/fluent.css +84 -61
  55. package/styles/spreadsheet/highcontrast-light.css +72 -57
  56. package/styles/spreadsheet/highcontrast.css +84 -57
  57. package/styles/spreadsheet/icons/_bootstrap-dark.scss +18 -0
  58. package/styles/spreadsheet/icons/_bootstrap.scss +18 -0
  59. package/styles/spreadsheet/icons/_bootstrap4.scss +18 -0
  60. package/styles/spreadsheet/icons/_bootstrap5.scss +18 -0
  61. package/styles/spreadsheet/icons/_fabric-dark.scss +18 -0
  62. package/styles/spreadsheet/icons/_fabric.scss +18 -0
  63. package/styles/spreadsheet/icons/_fluent.scss +18 -0
  64. package/styles/spreadsheet/icons/_fusionnew.scss +18 -0
  65. package/styles/spreadsheet/icons/_highcontrast.scss +18 -0
  66. package/styles/spreadsheet/icons/_material-dark.scss +18 -0
  67. package/styles/spreadsheet/icons/_material.scss +18 -0
  68. package/styles/spreadsheet/icons/_material3-dark.scss +1 -0
  69. package/styles/spreadsheet/icons/_material3.scss +32 -8
  70. package/styles/spreadsheet/icons/_tailwind-dark.scss +18 -0
  71. package/styles/spreadsheet/icons/_tailwind.scss +18 -0
  72. package/styles/spreadsheet/material-dark.css +84 -59
  73. package/styles/spreadsheet/material.css +84 -56
  74. package/styles/spreadsheet/material3-dark.css +4366 -0
  75. package/styles/spreadsheet/material3-dark.scss +23 -0
  76. package/styles/spreadsheet/material3.css +4422 -0
  77. package/styles/spreadsheet/material3.scss +24 -0
  78. package/styles/spreadsheet/tailwind-dark.css +112 -68
  79. package/styles/spreadsheet/tailwind.css +84 -67
  80. package/styles/spreadsheet-ribbon/_layout.scss +64 -9
  81. package/styles/spreadsheet-ribbon/_material3-dark-definition.scss +1 -0
  82. package/styles/spreadsheet-ribbon/_material3-definition.scss +21 -0
  83. package/styles/spreadsheet-ribbon/_mixin.scss +51 -0
  84. package/styles/spreadsheet-ribbon/_theme.scss +22 -3
  85. package/styles/spreadsheet-ribbon/icons/_material3-dark.scss +1 -0
  86. package/styles/spreadsheet-ribbon/material3-dark.css +196 -0
  87. package/styles/spreadsheet-ribbon/material3-dark.scss +5 -0
  88. package/styles/spreadsheet-ribbon/material3.css +252 -0
  89. package/styles/spreadsheet-ribbon/material3.scss +5 -0
  90. package/styles/tailwind-dark.css +112 -68
  91. package/styles/tailwind.css +84 -67
  92. package/schematics/collection.json +0 -10
  93. package/schematics/ng-add/index.d.ts +0 -3
  94. package/schematics/ng-add/index.js +0 -9
  95. package/schematics/ng-add/schema.d.ts +0 -13
  96. package/schematics/ng-add/schema.js +0 -2
  97. package/schematics/ng-add/schema.json +0 -34
  98. package/schematics/tsconfig.json +0 -25
  99. package/schematics/utils/lib-details.d.ts +0 -4
  100. package/schematics/utils/lib-details.js +0 -6
@@ -8,7 +8,7 @@
8
8
  border-left-color: $find-popup-border-color;
9
9
  border-right-color: $find-popup-border-color;
10
10
  border-top-color: $find-popup-border-top-color;
11
- box-shadow: none;
11
+ box-shadow: $find-popup-box-shadow;
12
12
  }
13
13
 
14
14
  & .e-find-dlg .e-header {
@@ -19,6 +19,133 @@
19
19
  background-color: inherit;
20
20
  }
21
21
 
22
+ & .e-filter-icon {
23
+ @if $sheet-skin == 'Material3' {
24
+ color: $cell-color;
25
+ }
26
+ }
27
+
28
+ & .e-spreadsheet-function-dlg.e-dialog {
29
+ & .e-dlg-content {
30
+ & .e-category-content {
31
+ @if $sheet-skin == 'Material3' {
32
+ color: $spreadsheet-label-font-color;
33
+ }
34
+ }
35
+ & .e-description-content {
36
+ @if $sheet-skin == 'Material3' {
37
+ color: $spreadsheet-label-font-color;
38
+ }
39
+ }
40
+ }
41
+ }
42
+
43
+ & .e-protect-dlg.e-dialog {
44
+ & .e-sheet-password-content,
45
+ & .e-protect-content {
46
+ @if $sheet-skin == 'Material3' {
47
+ color: $spreadsheet-label-font-color;
48
+ }
49
+ }
50
+ }
51
+
52
+ & .e-reenterpwd-dlg.e-dialog {
53
+ & .e-dlg-content {
54
+ & .e-reenterpwd-alert-span {
55
+ color: $dlg-error-color;
56
+ }
57
+
58
+ & .e-reenterpwd-content {
59
+ & .e-header {
60
+ @if $sheet-skin == 'Material3' {
61
+ color: $spreadsheet-label-font-color;
62
+ }
63
+ }
64
+ }
65
+ }
66
+ }
67
+
68
+ & .e-unprotectworksheet-dlg.e-dialog {
69
+ & .e-dlg-content {
70
+ & .e-unprotectsheetpwd-alert-span {
71
+ color: $dlg-error-color;
72
+ }
73
+
74
+ & .e-unprotectsheetpwd-content {
75
+ & .e-header {
76
+ @if $sheet-skin == 'Material3' {
77
+ color: $spreadsheet-label-font-color;
78
+ }
79
+ }
80
+ }
81
+ }
82
+ }
83
+
84
+ & .e-protectworkbook-dlg.e-dialog {
85
+ & .e-dlg-content {
86
+ & .e-pwd-alert-span {
87
+ color: $dlg-error-color;
88
+ }
89
+
90
+ & .e-password-content {
91
+ & .e-header {
92
+ @if $sheet-skin == 'Material3' {
93
+ color: $spreadsheet-label-font-color;
94
+ }
95
+ }
96
+ }
97
+ }
98
+ }
99
+
100
+ & .e-unprotectworkbook-dlg.e-dialog {
101
+ & .e-dlg-content {
102
+ & .e-unprotectpwd-alert-span {
103
+ color: $dlg-error-color;
104
+ }
105
+
106
+ & .e-unprotectpwd-content {
107
+ & .e-header {
108
+ @if $sheet-skin == 'Material3' {
109
+ color: $spreadsheet-label-font-color;
110
+ }
111
+ }
112
+ }
113
+ }
114
+ }
115
+
116
+ & .e-datavalidation-dlg {
117
+ & .e-validation-dlg {
118
+ @if $skin-name == 'Material3' {
119
+ & .e-header {
120
+ color: $spreadsheet-label-font-color;
121
+ }
122
+ }
123
+ }
124
+ }
125
+
126
+ & .e-dlg-content .e-custom-dialog .e-custom-sample,
127
+ & .e-conditionalformatting-dlg .e-dlg-content .e-header {
128
+ @if $skin-name == 'Material3' {
129
+ color: $spreadsheet-label-font-color;
130
+ }
131
+ }
132
+
133
+ & .e-sort-dialog {
134
+ & .e-sort-listwrapper .text {
135
+ @if $skin-name == 'Material3' {
136
+ color: $spreadsheet-label-font-color;
137
+ }
138
+ }
139
+ }
140
+
141
+ & .e-find-dlg.e-dialog {
142
+ & p.e-header {
143
+ @if $skin-name == 'Material3' {
144
+ color: $spreadsheet-label-font-color;
145
+ }
146
+ }
147
+ }
148
+
22
149
  & .e-sheet-tab-panel {
23
150
  background: $sheet-tab-panel-bg-color;
24
151
 
@@ -56,7 +183,9 @@
56
183
  }
57
184
 
58
185
  & .e-indicator {
59
- background: $sheet-tab-indicator-color;
186
+ @if $sheet-skin != 'material-dark' {
187
+ background: $sheet-tab-indicator-color;
188
+ }
60
189
  }
61
190
  }
62
191
 
@@ -100,10 +229,16 @@
100
229
  color: $btn-color;
101
230
  }
102
231
  }
232
+ @if $skin-name == 'Material3' {
233
+ & .e-btn-icon {
234
+ color: $btn-color;
235
+ border-radius: 8px;
236
+ }
237
+ }
103
238
  }
104
239
 
105
240
  &:disabled {
106
- @if $skin-name == 'bootstrap5' {
241
+ @if $skin-name == 'bootstrap5' or $skin-name == 'Material3' {
107
242
  & .e-btn-icon {
108
243
  color: $btn-disabled-color;
109
244
  }
@@ -111,6 +246,13 @@
111
246
  }
112
247
  }
113
248
 
249
+ & .e-btn.e-flat.e-active {
250
+ @if $skin-name == 'Material3' {
251
+ border-radius: 8px;
252
+ background: $sheet-tab-button-active-bg-color;
253
+ }
254
+ }
255
+
114
256
  & .e-aggregate-list-countonly {
115
257
  pointer-events: none;
116
258
  }
@@ -126,17 +268,24 @@
126
268
  }
127
269
 
128
270
  & .e-dragfill-ddb {
129
- box-shadow: none;
130
-
131
- @if $skin-name != 'highcontrast' and $skin-name != 'bootstrap5' {
132
- &:focus {
133
- background: $hdr-hover-bg-color;
134
- }
271
+ @if $skin-name == 'Material3' {
272
+ box-shadow: none;
273
+ background: $hdr-hover-bg-color;
274
+ border-radius: 4px;
275
+ padding: 8px 12px;
135
276
  }
136
-
137
- @if $skin-name == 'bootstrap4' or $skin-name == 'bootstrap' {
138
- &:focus {
139
- background: $tbar-focus-bg;
277
+ @else {
278
+ box-shadow: none;
279
+ @if $skin-name != 'highcontrast' and $skin-name != 'bootstrap5' {
280
+ &:focus {
281
+ background: $hdr-hover-bg-color;
282
+ }
283
+ }
284
+
285
+ @if $skin-name == 'bootstrap4' or $skin-name == 'bootstrap' {
286
+ &:focus {
287
+ background: $tbar-focus-bg;
288
+ }
140
289
  }
141
290
  }
142
291
  }
@@ -157,6 +306,10 @@
157
306
  background: $tbar-hover-bg;
158
307
  border-color: $spreadsheet-ribbon-item-hover-border-color;
159
308
 
309
+ @if $skin-name == 'Material3' {
310
+ border-radius: 4px;
311
+ }
312
+
160
313
  @if $skin-name == 'bootstrap4' {
161
314
  color: $tbar-hover-font;
162
315
 
@@ -180,6 +333,9 @@
180
333
  @if $skin-name != 'highcontrast' {
181
334
  background: $tbar-focus-bg;
182
335
  border-color: $spreadsheet-ribbon-item-active-border-color;
336
+ @if $skin-name == 'Material3' {
337
+ border-radius: 4px;
338
+ }
183
339
  }
184
340
  }
185
341
 
@@ -212,16 +368,44 @@
212
368
  }
213
369
 
214
370
  & .e-ribbon .e-toolbar .e-btn {
371
+ &:not(.e-tbar-btn) {
372
+ &:focus.e-active {
373
+ @if $skin-name == 'Material3' {
374
+ background: $spreadsheet-ribbon-item-active-background-color;
375
+ border-color: $spreadsheet-ribbon-item-active-border-color;
376
+ border-radius: 4px;
377
+ }
378
+ }
379
+ &:focus-visible.e-active {
380
+ @if $skin-name == 'Material3' {
381
+ box-shadow: $spreadsheet-ribbon-item-focus-shadow;
382
+ }
383
+ }
384
+ &:focus:not(.e-active) {
385
+ @if $skin-name == 'Material3' {
386
+ border-radius: 4px;
387
+ }
388
+ }
389
+ }
215
390
  &:not(:focus):not(.e-tbar-btn) {
216
- background-color: transparent;
391
+ @if $skin-name == 'Material3' {
392
+ background: transparent;
393
+ }
217
394
  border-color: transparent;
218
395
  box-shadow: $tbar-btn-box-shadow;
219
- color: $tbar-default-font;
396
+ @if $skin-name != 'Material3' {
397
+ background-color: transparent;
398
+ color: $tbar-default-font;
399
+ }
220
400
 
221
401
  &:hover:not(.e-active) {
222
402
  background: $tbar-hover-bg;
223
403
  border-color: $spreadsheet-ribbon-item-hover-border-color;
224
404
 
405
+ @if $skin-name == 'Material3' {
406
+ border-radius: 4px;
407
+ }
408
+
225
409
  @if $skin-name == 'bootstrap5' {
226
410
  color: $tbar-active-icon-color;
227
411
 
@@ -243,8 +427,11 @@
243
427
 
244
428
  &.e-active {
245
429
  @if $skin-name != 'highcontrast' {
246
- background: $tbar-focus-bg;
430
+ background: $spreadsheet-ribbon-item-active-background-color;
247
431
  border-color: $spreadsheet-ribbon-item-active-border-color;
432
+ @if $skin-name == 'Material3' {
433
+ border-radius: 4px;
434
+ }
248
435
  }
249
436
 
250
437
  @if $skin-name == 'bootstrap5' {
@@ -255,6 +442,14 @@
255
442
  color: $tbar-hover-font;
256
443
  }
257
444
  }
445
+
446
+ &:hover.e-active {
447
+ @if $skin-name == 'Material3' {
448
+ background: $spreadsheet-ribbon-item-active-background-color;
449
+ border-color: $spreadsheet-ribbon-item-active-border-color;
450
+ border-radius: 4px;
451
+ }
452
+ }
258
453
  }
259
454
 
260
455
  @if $skin-name == 'highcontrast' {
@@ -335,7 +530,20 @@
335
530
  & .e-row-header .e-header-cell,
336
531
  & .e-column-header .e-header-cell,
337
532
  & .e-selectall-container .e-header-cell {
338
- background-color: $header-cell-bg-color;
533
+ @if $skin-name == 'Material3' {
534
+ background: $header-cell-bg-color;
535
+ }
536
+ @else {
537
+ background-color: $header-cell-bg-color;
538
+ }
539
+ }
540
+
541
+ & .e-sheet .e-spreadsheet-edit::selection,
542
+ & .e-formula-bar::selection {
543
+ @if $skin-name == 'Material3' {
544
+ background: $select-all-active-bg-color;
545
+ color: $spreadsheet-edit-selection-font-color;
546
+ }
339
547
  }
340
548
 
341
549
  & .e-sheet .e-spreadsheet-edit {
@@ -345,7 +553,9 @@
345
553
 
346
554
  & .e-main-panel,
347
555
  & .e-header-panel {
348
- background-color: $cell-background;
556
+ @if $skin-name != 'Material3' {
557
+ background-color: $cell-background;
558
+ }
349
559
  }
350
560
 
351
561
  & .e-column-header {
@@ -365,6 +575,9 @@
365
575
  & .e-header-panel thead .e-header-cell,
366
576
  & .e-select-all-cell {
367
577
  border-bottom-color: $spreadsheet-border-color;
578
+ @if $skin-name == 'Material3' {
579
+ border-bottom-color: $hdr-cell-border-color;
580
+ }
368
581
  }
369
582
 
370
583
  & .e-row-header .e-header-cell,
@@ -412,6 +625,9 @@
412
625
  & .e-select-all-cell,
413
626
  & .e-selectall-container tbody .e-header-cell {
414
627
  border-right-color: $spreadsheet-border-color;
628
+ @if $skin-name == 'Material3' {
629
+ border-right-color: $hdr-cell-border-color;
630
+ }
415
631
  }
416
632
 
417
633
  & .e-hide-gridlines .e-cell {
@@ -466,6 +682,9 @@
466
682
  & .e-select-all-cell,
467
683
  & .e-selectall-container .e-header-cell {
468
684
  border-left-color: $spreadsheet-border-color;
685
+ @if $skin-name == 'Material3' {
686
+ border-left-color: $hdr-cell-border-color;
687
+ }
469
688
  }
470
689
 
471
690
  & .e-hide-gridlines .e-cell {
@@ -555,13 +774,23 @@
555
774
  .e-row-header .e-header-cell:hover,
556
775
  .e-column-header .e-header-cell:hover,
557
776
  .e-selectall-container .e-header-cell:hover {
558
- background-color: $hdr-hover-bg-color;
777
+ @if $skin-name == 'Material3' {
778
+ background: $hdr-hover-bg-color;
779
+ }
780
+ @else {
781
+ background-color: $hdr-hover-bg-color;
782
+ }
559
783
  }
560
784
 
561
785
  .e-row-header .e-header-cell.e-highlight,
562
786
  .e-column-header .e-header-cell.e-highlight,
563
787
  .e-selectall-container .e-header-cell.e-highlight {
564
- background-color: $hdr-selection-bg-color;
788
+ @if $skin-name == 'Material3' {
789
+ background: $hdr-selection-bg-color;
790
+ }
791
+ @else {
792
+ background-color: $hdr-selection-bg-color;
793
+ }
565
794
  color: $hdr-selection-color;
566
795
  }
567
796
 
@@ -631,14 +860,14 @@
631
860
 
632
861
  & .e-frozen-column {
633
862
  background-color: $freezepane-color;
634
- @if $sheet-skin == 'tailwind' or $sheet-skin == 'bootstrap5' {
863
+ @if $sheet-skin == 'tailwind' or $sheet-skin == 'bootstrap5' or $sheet-skin == 'Material3' {
635
864
  border-right: 3px solid $freezepane-color;
636
865
  }
637
866
  }
638
867
 
639
868
  & .e-frozen-row {
640
869
  border-bottom: 1px solid $freezepane-color;
641
- @if $sheet-skin == 'tailwind' or $sheet-skin == 'bootstrap5' {
870
+ @if $sheet-skin == 'tailwind' or $sheet-skin == 'bootstrap5' or $sheet-skin == 'Material3' {
642
871
  border-bottom: 3px solid $freezepane-color;
643
872
  }
644
873
  }
@@ -651,6 +880,20 @@
651
880
  @if $sheet-skin == 'bootstrap-dark' or $sheet-skin == 'fabric-dark' or $sheet-skin == 'material-dark' or $sheet-skin == 'tailwind' or $sheet-skin == 'bootstrap5' {
652
881
  background-color: $dark-ele-color;
653
882
  }
883
+
884
+ & .e-input-group.e-ddl.e-control-wrapper:not(.e-disabled) {
885
+ & .e-input-group-icon.e-ddl-icon:hover {
886
+ @if $sheet-skin == 'Material3' {
887
+ color: $cell-color;
888
+ }
889
+ }
890
+ }
891
+
892
+ & .e-ddl-icon {
893
+ @if $sheet-skin == 'Material3' {
894
+ color: $cell-color;
895
+ }
896
+ }
654
897
  }
655
898
 
656
899
  & .e-datavalidation-dlg .e-dlg-error {
@@ -833,7 +1076,9 @@
833
1076
  & .e-is4,
834
1077
  & .e-is6,
835
1078
  & .e-is8 {
836
- background-color: $cell-background;
1079
+ @if $skin-name != 'Material3' {
1080
+ background-color: $cell-background;
1081
+ }
837
1082
  @if $sheet-skin == 'bootstrap-dark' or $sheet-skin == 'fabric-dark' or $sheet-skin == 'material-dark' or $sheet-skin == 'tailwind' or $sheet-skin == 'bootstrap5' {
838
1083
  background-color: $dark-ele-color;
839
1084
  }
@@ -1258,7 +1503,9 @@
1258
1503
  & .e-radar-cont,
1259
1504
  & .e-area-cont,
1260
1505
  & .e-scatter-cont {
1261
- background-color: $cell-background;
1506
+ @if $sheet-skin != 'Material3' {
1507
+ background-color: $cell-background;
1508
+ }
1262
1509
  @if $sheet-skin == 'bootstrap-dark' or $sheet-skin == 'fabric-dark' or $sheet-skin == 'material-dark' or $sheet-skin == 'tailwind-dark' or $sheet-skin == 'bootstrap5' {
1263
1510
  background-color: $dark-ele-color;
1264
1511
  }
@@ -1279,8 +1526,11 @@
1279
1526
  & .e-stackedbar3d,
1280
1527
  & .e-stackedbar1003d,
1281
1528
  & .e-line,
1529
+ & .e-line-marker,
1282
1530
  & .e-stackedline,
1531
+ & .e-stackedline-marker,
1283
1532
  & .e-stackedline100,
1533
+ & .e-stackedline100-marker,
1284
1534
  & .e-pie,
1285
1535
  & .e-doughnut,
1286
1536
  & .e-radar,
@@ -1307,8 +1557,11 @@
1307
1557
  & .e-stackedbar3d:hover,
1308
1558
  & .e-stackedbar1003d:hover,
1309
1559
  & .e-line:hover,
1560
+ & .e-line-marker:hover,
1310
1561
  & .e-stackedline:hover,
1562
+ & .e-stackedline-marker:hover,
1311
1563
  & .e-stackedline100:hover,
1564
+ & .e-stackedline100-marker:hover,
1312
1565
  & .e-pie:hover,
1313
1566
  & .e-doughnut:hover,
1314
1567
  & .e-radar:hover,
@@ -1364,7 +1617,9 @@
1364
1617
 
1365
1618
  .e-sort-dialog {
1366
1619
  & .e-sort-listwrapper {
1367
- border-bottom: 1px dashed $spreadsheet-border-color;
1620
+ @if $skin-name != 'Material3' {
1621
+ border-bottom: 1px dashed $spreadsheet-border-color;
1622
+ }
1368
1623
  }
1369
1624
 
1370
1625
  & .e-sort-error {