@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
@@ -13,18 +13,28 @@
13
13
  }
14
14
 
15
15
  & .e-protect-dlg.e-dialog {
16
- height: $protect-dlg-height;
16
+ @if $skin-name != 'Material3' {
17
+ height: $protect-dlg-height;
18
+ }
17
19
  width: $protect-dlg-width;
18
20
 
19
- & .e-sheet-password-content .e-header {
21
+ & .e-sheet-password-content {
20
22
  font-size: $protect-sheet-dlg-password-header-font-size;
21
- line-height: 28px;
22
- margin-bottom: 4px;
23
+
24
+ @if $sheet-skin == 'Material3' {
25
+ padding: 4px 0 16px;
26
+ }
27
+ & .e-header {
28
+ @if $sheet-skin != 'Material3' {
29
+ line-height: 28px;
30
+ margin-bottom: 4px;
31
+ }
32
+ }
23
33
  }
24
34
  }
25
35
 
26
36
  & .e-custom-format-dlg.e-dialog {
27
- @if $sheet-skin != 'material' {
37
+ @if $sheet-skin != 'material' and $sheet-skin != 'Material3' {
28
38
  height: 510px !important; /* stylelint-disable-line declaration-no-important */
29
39
  width: 530px !important; /* stylelint-disable-line declaration-no-important */
30
40
  }
@@ -35,7 +45,9 @@
35
45
 
36
46
  & .e-dlg-content {
37
47
  display: inline-table;
38
- padding-top: 3px;
48
+ @if $sheet-skin != 'Material3' {
49
+ padding-top: 3px;
50
+ }
39
51
  }
40
52
  }
41
53
 
@@ -43,64 +55,61 @@
43
55
  display: inline;
44
56
  }
45
57
 
46
- @if $sheet-skin == 'tailwind' or $sheet-skin == 'tailwind-dark' {
47
- & .e-dlg-header-content {
48
- padding: 18px;
49
- }
50
- }
51
- @if $skin-name == 'bootstrap5' {
52
- & .e-dlg-header-content {
53
- padding: 12px;
54
- }
55
- }
56
-
57
58
  & .e-unprotectworksheet-dlg.e-dialog {
58
- & .e-dlg-header-content .e-dlg-header {
59
- font-size: $unprotect-sheet-dlg-header-font-size;
60
- line-height: 21px;
61
- }
62
-
63
59
  & .e-dlg-content {
64
60
  & .e-unprotectsheetpwd-alert-span {
65
61
  color: $dlg-error-color;
66
62
  font-size: $unprotectsheet-alert-span-font-size;
67
63
  padding-top: 7px;
64
+ @if $sheet-skin == 'Material3' {
65
+ display: block;
66
+ padding-top: 4px;
67
+ }
68
68
  }
69
69
 
70
70
  & .e-unprotectsheetpwd-content {
71
71
  & .e-header {
72
72
  font-size: $unprotectsheet-content-header-font-size;
73
73
  line-height: 16px;
74
+ @if $sheet-skin == 'Material3' {
75
+ padding-top: 4px;
76
+ }
74
77
  }
75
78
 
76
79
  & .e-input {
77
- margin-top: 10px;
80
+ @if $sheet-skin != 'Material3' {
81
+ margin-top: 10px;
82
+ }
78
83
  }
79
84
  }
80
85
  }
81
86
  }
82
87
 
83
88
  & .e-reenterpwd-dlg.e-dialog {
84
- & .e-dlg-header-content .e-dlg-header {
85
- font-size: $reenterpwd-dlg-content-header-font-size;
86
- line-height: 21px;
87
- }
88
-
89
89
  & .e-dlg-content {
90
90
  & .e-reenterpwd-alert-span {
91
91
  color: $dlg-error-color;
92
92
  font-size: $reenterpwd-dlg-alert-span-font-size;
93
93
  padding-top: 7px;
94
+ @if $sheet-skin == 'Material3' {
95
+ display: block;
96
+ padding-top: 4px;
97
+ }
94
98
  }
95
99
 
96
100
  & .e-reenterpwd-content {
97
101
  & .e-header {
98
102
  font-size: $reenterpwd-dlg-content-header-font-size;
99
103
  line-height: 16px;
104
+ @if $sheet-skin == 'Material3' {
105
+ padding-top: 4px;
106
+ }
100
107
  }
101
108
 
102
109
  & .e-input {
103
- margin-top: 10px;
110
+ @if $sheet-skin != 'Material3' {
111
+ margin-top: 10px;
112
+ }
104
113
  }
105
114
  }
106
115
  }
@@ -125,14 +134,35 @@
125
134
 
126
135
  & .e-findtool-dlg {
127
136
  border: 1px solid;
128
- height: $find-tool-dlg-height;
137
+ @if $sheet-skin != 'Material3' {
138
+ height: $find-tool-dlg-height;
139
+ }
129
140
  width: $find-tool-dlg-width;
130
141
 
142
+ &.e-rtl .e-find-toolbar {
143
+ & .e-toolbar-items:not(.e-tbar-pos):not(.e-toolbar-multirow) .e-toolbar-item:first-child {
144
+ @if $sheet-skin == 'Material3' {
145
+ margin-left: 0;
146
+ margin-right: 16px;
147
+ }
148
+ }
149
+
150
+ & .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-item:last-child {
151
+ @if $sheet-skin == 'Material3' {
152
+ margin-left: 16px;
153
+ margin-right: 0;
154
+ }
155
+ }
156
+ }
157
+
131
158
  & .e-dlg-content {
132
159
  padding: 0%;
133
160
  @if $sheet-skin == 'tailwind' or $sheet-skin == 'tailwind-dark' {
134
161
  border-radius: 5px;
135
162
  }
163
+ @else if $sheet-skin == 'Material3' {
164
+ border-radius: 8px;
165
+ }
136
166
 
137
167
  @if $skin-name == 'FluentUI' {
138
168
  margin-bottom: $bigger-find-tool-margin-bottom;
@@ -140,8 +170,13 @@
140
170
 
141
171
  & .e-input-group {
142
172
  width: 170px;
143
-
173
+ @if $sheet-skin == 'Material3' {
174
+ background: $sheet-tab-active-bg-color;
175
+ }
144
176
  & .e-input-group-icon {
177
+ @if $sheet-skin == 'Material3' {
178
+ font-size: $find-tool-dlg-icon-size;
179
+ }
145
180
  width: 70px;
146
181
  }
147
182
  }
@@ -161,38 +196,57 @@
161
196
  @if $sheet-skin == 'tailwind' or $sheet-skin == 'tailwind-dark' {
162
197
  margin-top: 10px;
163
198
  }
199
+ @if $sheet-skin == 'Material3' {
200
+ margin-top: 0;
201
+ }
164
202
  }
165
203
 
166
204
  & .e-protect-checkbox {
167
- height: 30px;
168
- padding-top: 20px;
205
+ @if $sheet-skin != 'Material3' {
206
+ height: 30px;
207
+ margin-top: 20px;
208
+ }
169
209
 
170
210
  & .e-label {
171
- font-size: $protect-checkbox-label-font-size;
211
+ @if $sheet-skin != 'Material3' {
212
+ font-size: $protect-checkbox-label-font-size;
213
+ }
172
214
  }
173
215
  }
174
216
 
175
- & .e-dlg-content .e-custom-dialog .e-input.e-dialog-input {
176
- float: left;
177
- @if $sheet-skin == 'bootstrap5' {
178
- margin-right: 4.8%;
179
- }
180
- @else if $sheet-skin == 'FluentUI' {
181
- margin-right: 6.8%;
182
- }
183
- @else {
184
- margin-right: 2.8%;
217
+ & .e-dlg-content .e-custom-dialog {
218
+ & .e-input.e-dialog-input {
219
+ float: left;
220
+ width: 80%;
221
+ @if $sheet-skin == 'bootstrap5' {
222
+ margin-right: 4.8%;
223
+ }
224
+ @else if $sheet-skin == 'FluentUI' {
225
+ margin-right: 6.8%;
226
+ }
227
+ @else if $sheet-skin == 'Material3' {
228
+ margin-right: 24px;
229
+ width: 74%;
230
+ }
231
+ @else {
232
+ margin-right: 2.8%;
233
+ }
185
234
  }
186
- width: 80%;
187
235
  }
188
236
 
189
237
  & .e-dlg-content .e-custom-dialog .e-custom-sample {
190
238
  margin: 10px 10px 10px 0;
239
+ @if $sheet-skin == 'Material3' {
240
+ font-size: $find-dialog-header-font-size;
241
+ margin: 20px 0 4px;
242
+ }
191
243
  }
192
244
 
193
245
  & .e-dlg-content .e-custom-dialog .e-custom-listview {
194
- border: 1px solid $custom-listview-color;
195
- border-radius: 3px;
246
+ @if $sheet-skin != 'Material3' {
247
+ border: 1px solid $custom-listview-color;
248
+ border-radius: 3px;
249
+ }
196
250
  height: 300px;
197
251
  }
198
252
 
@@ -201,6 +255,10 @@
201
255
  height: 37px;
202
256
  padding-top: 20px;
203
257
  width: 100%;
258
+ @if $sheet-skin == 'Material3' {
259
+ height: auto;
260
+ padding: 20px 0 4px;
261
+ }
204
262
  }
205
263
 
206
264
  & .e-formula-bar-panel {
@@ -253,14 +311,17 @@
253
311
  width: $name-box-width;
254
312
 
255
313
  & input.e-input {
256
- height: 23px;
314
+ height: $define-name-input-height;
257
315
  min-height: 15px;
258
- padding: 0 0 0 8px;
316
+ padding: $define-name-input-padding;
259
317
  }
260
318
 
261
319
  @if $skin-name != 'bootstrap4' {
262
320
  & .e-input-group-icon {
263
321
  font-size: $namebox-icon-size;
322
+ @if $skin-name == 'Material3' {
323
+ margin-right: 5px;
324
+ }
264
325
  }
265
326
  }
266
327
  }
@@ -268,6 +329,10 @@
268
329
  &.e-input-group.e-control-wrapper.e-name-box .e-input-group-icon {
269
330
  border-left-width: 0;
270
331
  min-height: 15px;
332
+ @if $skin-name == 'Material3' {
333
+ min-height: 14px;
334
+ min-width: 14px;
335
+ }
271
336
 
272
337
  @if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' {
273
338
  font-size: $name-box-icon-font-size;
@@ -287,6 +352,9 @@
287
352
  font-size: $formula-bar-font-size;
288
353
  overflow: auto;
289
354
  padding: 0 4px;
355
+ @if $skin-name == 'Material3' {
356
+ padding: 0 8px;
357
+ }
290
358
  resize: none;
291
359
  }
292
360
 
@@ -358,15 +426,18 @@
358
426
  line-height: normal;
359
427
  outline: none;
360
428
  overflow-wrap: break-word;
361
- padding: 0 1px;
362
429
  position: absolute;
363
430
  user-select: text;
364
431
  vertical-align: bottom;
365
432
  white-space: pre-wrap;
366
433
  z-index: 2;
434
+ padding: 0 1px;
367
435
 
368
436
  &.e-right-align {
369
437
  text-align: right;
438
+ @if $skin-name == 'Material3' {
439
+ padding: 0 1.2px;
440
+ }
370
441
  }
371
442
  }
372
443
 
@@ -461,7 +532,7 @@
461
532
  & .e-cell {
462
533
  font-family: 'Calibri';
463
534
  font-size: 11pt;
464
- padding: 0 2px;
535
+ padding: $content-cell-padding;
465
536
  position: relative;
466
537
  text-align: left;
467
538
  vertical-align: bottom;
@@ -661,6 +732,10 @@
661
732
  transform: translate(-50%, -50%);
662
733
  }
663
734
 
735
+ & .e-sheet-panel.e-rtl .e-ss-overlay-active .e-ss-overlay-l {
736
+ left: 0;
737
+ }
738
+
664
739
  & .e-header-panel .e-table tr .e-header-cell.e-colresize {
665
740
  cursor: col-resize;
666
741
  }
@@ -759,6 +834,9 @@
759
834
 
760
835
  &::after {
761
836
  border-top: $spreadsheet-border;
837
+ @if $skin-name == 'Material3' {
838
+ border-top: $spreadsheet-hidden-row-column-border;
839
+ }
762
840
  bottom: .5px;
763
841
  }
764
842
  }
@@ -768,6 +846,9 @@
768
846
 
769
847
  &::before {
770
848
  border-bottom: $spreadsheet-border;
849
+ @if $skin-name == 'Material3' {
850
+ border-bottom: $spreadsheet-hidden-row-column-border;
851
+ }
771
852
  top: .5px;
772
853
  }
773
854
  }
@@ -798,6 +879,9 @@
798
879
 
799
880
  &::after {
800
881
  border-right: $spreadsheet-border;
882
+ @if $skin-name == 'Material3' {
883
+ border-right: $spreadsheet-hidden-row-column-border;
884
+ }
801
885
  right: .5px;
802
886
  }
803
887
  }
@@ -808,6 +892,9 @@
808
892
 
809
893
  &::before {
810
894
  border-left: $spreadsheet-border;
895
+ @if $skin-name == 'Material3' {
896
+ border-left: $spreadsheet-hidden-row-column-border;
897
+ }
811
898
  left: .5px;
812
899
  }
813
900
  }
@@ -903,6 +990,14 @@
903
990
  transition: none;
904
991
  }
905
992
 
993
+ & .e-toolbar-item.e-active {
994
+ & .e-text-wrap::before {
995
+ @if $skin-name == 'Material3' {
996
+ border: none;
997
+ }
998
+ }
999
+ }
1000
+
906
1001
  @if $skin-name == 'bootstrap4' or $skin-name == 'bootstrap' {
907
1002
  &::before {
908
1003
  border-bottom-width: 0;
@@ -931,6 +1026,12 @@
931
1026
  @if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' {
932
1027
  padding: 0;
933
1028
  }
1029
+
1030
+ &.e-active {
1031
+ @if $skin-name == 'Material3' {
1032
+ background: $sheet-tab-selected-bg-color;
1033
+ }
1034
+ }
934
1035
  }
935
1036
  }
936
1037
 
@@ -943,6 +1044,12 @@
943
1044
  box-shadow: none;
944
1045
  min-width: 20px;
945
1046
  padding: 0;
1047
+ @if $skin-name == 'Material3' {
1048
+ font-weight: 500;
1049
+ height: 32px;
1050
+ letter-spacing: .24px;
1051
+ line-height: 32px;
1052
+ }
946
1053
  }
947
1054
 
948
1055
  & .e-tab-wrap {
@@ -1106,14 +1213,21 @@
1106
1213
  text-align: left;
1107
1214
  text-overflow: ellipsis;
1108
1215
  white-space: nowrap;
1109
- width: 80px;
1216
+ @if $skin-name == 'Material3' {
1217
+ width: 50px;
1218
+ }
1219
+ @else {
1220
+ width: 80px;
1221
+ }
1110
1222
  }
1111
1223
 
1112
1224
  &.e-font-size-ddb {
1113
1225
  align-items: center;
1114
1226
  display: inline-flex;
1115
1227
  justify-content: left;
1116
- width: $fontsize-btn-width;
1228
+ @if $skin-name != 'Material3' {
1229
+ width: $fontsize-btn-width;
1230
+ }
1117
1231
 
1118
1232
  & .e-caret {
1119
1233
  flex: 1;
@@ -1126,6 +1240,9 @@
1126
1240
  font-weight: normal;
1127
1241
  padding-bottom: 0;
1128
1242
  padding-top: 0;
1243
+ @if $skin-name =='Material3' {
1244
+ font-size: 14px;
1245
+ }
1129
1246
 
1130
1247
  @if $skin-name == 'highcontrast' {
1131
1248
  border-width: 2px;
@@ -1139,6 +1256,12 @@
1139
1256
  line-height: $spreadsheet-ribbon-btn-height;
1140
1257
  }
1141
1258
 
1259
+ &:not(.e-split-btn) {
1260
+ @if $skin-name == 'Material3' {
1261
+ border: none;
1262
+ }
1263
+ }
1264
+
1142
1265
  &:not(.e-dropdown-btn):not(.e-split-btn) {
1143
1266
  padding-left: $spreadsheet-ribbon-btn-padding;
1144
1267
  padding-right: $spreadsheet-ribbon-btn-padding;
@@ -1153,7 +1276,7 @@
1153
1276
  }
1154
1277
 
1155
1278
  &:not(.e-split-colorpicker) .e-btn-icon {
1156
- @if $skin-name != 'bootstrap5' {
1279
+ @if $skin-name != 'bootstrap5'and $skin-name != 'Material3' {
1157
1280
  line-height: $spreadsheet-ribbon-btn-height;
1158
1281
  min-height: $spreadsheet-ribbon-btn-height;
1159
1282
  vertical-align: bottom;
@@ -1187,13 +1310,17 @@
1187
1310
  }
1188
1311
 
1189
1312
  & .e-switch-row-column-icon {
1190
- font-size: $spreadsheet-switch-row-column-icon-font-size !important; /* stylelint-disable-line declaration-no-important */
1191
- margin-right: 5px;
1313
+ @if $skin-name != 'Material3' {
1314
+ font-size: $spreadsheet-switch-row-column-icon-font-size !important; /* stylelint-disable-line declaration-no-important */
1315
+ margin-right: 5px;
1316
+ }
1192
1317
  }
1193
1318
 
1194
1319
  & .e-addchart-icon {
1195
1320
  font-size: $spreadsheet-addchart-icon-font-size !important; /* stylelint-disable-line declaration-no-important */
1196
- margin-right: -5px;
1321
+ @if $skin-name != 'Material3' {
1322
+ margin-right: -5px;
1323
+ }
1197
1324
  }
1198
1325
 
1199
1326
  &.e-split-colorpicker {
@@ -1202,7 +1329,11 @@
1202
1329
  padding-left: 0;
1203
1330
  padding-right: 0;
1204
1331
  width: $cpicker-btn-width;
1205
-
1332
+ @if $skin-name == 'Material3' {
1333
+ background: transparent;
1334
+ line-height: $spreadsheet-ribbon-btn-height - 2;
1335
+ padding-bottom: 0;
1336
+ }
1206
1337
  & .e-icons.e-btn-icon:not(.e-caret) {
1207
1338
  &.e-font-color {
1208
1339
  font-size: $spreadsheet-cpicker-font-color-font-size;
@@ -1216,6 +1347,11 @@
1216
1347
  }
1217
1348
 
1218
1349
  & .e-colorpicker-wrapper {
1350
+ & .e-dropdown-btn {
1351
+ @if $skin-name == 'Material3' {
1352
+ background: transparent;
1353
+ }
1354
+ }
1219
1355
  & .e-split-btn .e-selected-color {
1220
1356
  background: none;
1221
1357
  border-bottom-style: solid;
@@ -1421,6 +1557,9 @@
1421
1557
 
1422
1558
  &::after {
1423
1559
  border-left: $spreadsheet-border;
1560
+ @if $skin-name == 'Material3' {
1561
+ border-left: $spreadsheet-hidden-row-column-border;
1562
+ }
1424
1563
  border-right: none;
1425
1564
  left: .5px;
1426
1565
  }
@@ -1431,6 +1570,9 @@
1431
1570
  &::before {
1432
1571
  border-left: none;
1433
1572
  border-right: $spreadsheet-border;
1573
+ @if $skin-name == 'Material3' {
1574
+ border-right: $spreadsheet-hidden-row-column-border;
1575
+ }
1434
1576
  right: .5px;
1435
1577
  }
1436
1578
  }
@@ -1439,6 +1581,7 @@
1439
1581
  }
1440
1582
 
1441
1583
  .e-sheet-panel {
1584
+
1442
1585
  & .e-frozen-columns {
1443
1586
  & .e-selectall-container {
1444
1587
  position: relative;
@@ -1503,6 +1646,12 @@
1503
1646
  min-width: 0;
1504
1647
  width: 20px;
1505
1648
  }
1649
+ @if $skin-name == 'Material3' {
1650
+ bottom: 1px;
1651
+ height: 20px;
1652
+ min-height: 20px;
1653
+ min-width: 20px;
1654
+ }
1506
1655
 
1507
1656
  @if $sheet-skin == 'tailwind' or $sheet-skin == 'tailwind-dark' {
1508
1657
  padding: 0;
@@ -1522,22 +1671,12 @@
1522
1671
  height: 360px !important; /* stylelint-disable-line declaration-no-important */
1523
1672
  }
1524
1673
 
1525
- @if $sheet-skin == 'tailwind' or $sheet-skin == 'tailwind-dark' {
1526
- & .e-dlg-header-content {
1527
- padding: 18px;
1528
- }
1529
- }
1530
-
1531
- @if $skin-name == 'bootstrap5' {
1532
- & .e-dlg-header-content {
1533
- padding: 12px;
1534
- }
1535
- }
1536
-
1537
1674
  & .e-dlg-content {
1538
- padding-bottom: 0;
1539
- padding-left: 0;
1540
- padding-right: 0;
1675
+ @if $skin-name != 'Material3' {
1676
+ padding-bottom: 0;
1677
+ padding-left: 0;
1678
+ padding-right: 0;
1679
+ }
1541
1680
 
1542
1681
  @if $sheet-skin == 'tailwind' or $sheet-skin == 'tailwind-dark' {
1543
1682
  & .e-sort-dialog {
@@ -1565,23 +1704,47 @@
1565
1704
  & .e-conditionalformatting-dlg {
1566
1705
  & .e-input,
1567
1706
  & .e-input-group {
1568
- height: 34px;
1569
- @if $skin-name == 'FlunetUI' {
1570
- height: 40px;
1707
+ @if $skin-name != 'Material3' {
1708
+ height: 34px;
1709
+ @if $skin-name == 'FlunetUI' {
1710
+ height: 40px;
1711
+ }
1571
1712
  }
1572
1713
  }
1573
1714
 
1574
1715
  & .e-cfmain {
1575
- margin-bottom: 22px;
1716
+ & .e-header {
1717
+ font-size: $cfmain-header-font-size;
1718
+ }
1719
+ @if $skin-name == 'Material3' {
1720
+ margin: 6px 0 20px;
1721
+ }
1722
+ @else {
1723
+ margin-bottom: 22px;
1724
+ }
1725
+ }
1726
+
1727
+ & .e-cfsub {
1728
+ & .e-header {
1729
+ font-size: $cfmain-header-font-size;
1730
+ }
1731
+ @if $skin-name == 'Material3' {
1732
+ margin-bottom: 12px;
1733
+ }
1576
1734
  }
1577
1735
 
1578
1736
  & .e-header {
1579
1737
  display: block;
1580
- margin-bottom: 6px;
1738
+ @if $skin-name != 'Material3' {
1739
+ margin-bottom: 6px;
1740
+ }
1581
1741
  }
1582
1742
 
1583
1743
  & .e-header-2 {
1584
1744
  margin-top: 10px;
1745
+ @if $skin-name == 'Material3' {
1746
+ margin-top: 16px;
1747
+ }
1585
1748
  }
1586
1749
 
1587
1750
  & .e-top-header {
@@ -1609,22 +1772,19 @@
1609
1772
  }
1610
1773
 
1611
1774
  & .e-datavalidation-dlg {
1612
- @if $sheet-skin == 'tailwind' or $sheet-skin == 'tailwind-dark' {
1613
- & .e-dlg-header-content {
1614
- padding: 18px;
1615
- }
1616
- }
1617
- @if $skin-name == 'bootstrap5' {
1618
- & .e-dlg-header-content {
1619
- padding: 12px;
1620
- }
1621
- }
1622
-
1623
1775
  & .e-validation-dlg {
1624
- margin-top: 14px;
1776
+ @if $skin-name != 'Material3' {
1777
+ margin-top: 14px;
1778
+ }
1625
1779
 
1626
1780
  & .e-cellrange {
1627
- margin-bottom: 24px;
1781
+ @if $skin-name != 'Material3' {
1782
+ margin-bottom: 24px;
1783
+ }
1784
+
1785
+ @if $skin-name == 'Material3' {
1786
+ padding-top: 4px;
1787
+ }
1628
1788
 
1629
1789
  & .e-header {
1630
1790
  font-size: $validation-dlg-content-header-font-size;
@@ -1632,14 +1792,21 @@
1632
1792
  }
1633
1793
 
1634
1794
  & .e-input {
1635
- font-size: $validation-dlg-content-input-font-size;
1636
- height: 32px;
1637
- margin-top: 5px;
1795
+ @if $skin-name != 'Material3' {
1796
+ height: 32px;
1797
+ margin-top: 5px;
1798
+ font-size: $validation-dlg-content-input-font-size;
1799
+ }
1638
1800
  }
1639
1801
  }
1640
1802
 
1641
1803
  & .e-allowdata {
1642
- margin-bottom: 24px;
1804
+ @if $skin-name == 'Material3' {
1805
+ padding-top: 20px;
1806
+ }
1807
+ @else {
1808
+ margin-bottom: 24px;
1809
+ }
1643
1810
 
1644
1811
  & .e-allow {
1645
1812
  display: inline-block;
@@ -1652,8 +1819,10 @@
1652
1819
  }
1653
1820
 
1654
1821
  & .e-valid-input {
1655
- height: 34px;
1656
- margin-top: 5px;
1822
+ @if $skin-name != 'Material3' {
1823
+ height: 34px;
1824
+ margin-top: 5px;
1825
+ }
1657
1826
  }
1658
1827
  }
1659
1828
 
@@ -1668,14 +1837,21 @@
1668
1837
  }
1669
1838
 
1670
1839
  & .e-valid-input {
1671
- height: 34px;
1672
- margin-top: 5px;
1840
+ @if $skin-name != 'Material3' {
1841
+ height: 34px;
1842
+ margin-top: 5px;
1843
+ }
1673
1844
  }
1674
1845
  }
1675
1846
  }
1676
1847
 
1677
1848
  & .e-values {
1678
- margin-bottom: 24px;
1849
+ @if $skin-name == 'Material3' {
1850
+ padding-top: 20px;
1851
+ }
1852
+ @else {
1853
+ margin-bottom: 24px;
1854
+ }
1679
1855
 
1680
1856
  & .e-minimum {
1681
1857
  display: inline-block;
@@ -1688,9 +1864,11 @@
1688
1864
  }
1689
1865
 
1690
1866
  & .e-input {
1691
- font-size: $validation-dlg-content-input-font-size;
1692
- height: 32px;
1693
- margin-top: 5px;
1867
+ @if $skin-name != 'Material3' {
1868
+ font-size: $validation-dlg-content-input-font-size;
1869
+ height: 32px;
1870
+ margin-top: 5px;
1871
+ }
1694
1872
  }
1695
1873
  }
1696
1874
 
@@ -1705,15 +1883,22 @@
1705
1883
  }
1706
1884
 
1707
1885
  & .e-input {
1708
- font-size: $validation-dlg-content-input-font-size;
1709
- height: 32px;
1710
- margin-top: 5px;
1886
+ @if $skin-name != 'Material3' {
1887
+ font-size: $validation-dlg-content-input-font-size;
1888
+ height: 32px;
1889
+ margin-top: 5px;
1890
+ }
1711
1891
  }
1712
1892
  }
1713
1893
 
1714
1894
  & .e-dlg-error {
1715
1895
  font-size: $validation-dlg-error-font-size;
1716
- padding-top: 10px;
1896
+ @if $skin-name == 'Material3' {
1897
+ padding-top: 4px;
1898
+ }
1899
+ @else {
1900
+ padding-top: 10px;
1901
+ }
1717
1902
  }
1718
1903
 
1719
1904
  & .e-header {
@@ -1722,18 +1907,26 @@
1722
1907
  }
1723
1908
 
1724
1909
  & .e-input {
1725
- font-size: $validation-dlg-content-input-font-size;
1726
- height: 32px;
1910
+ @if $skin-name != 'Material3' {
1911
+ font-size: $validation-dlg-content-input-font-size;
1912
+ height: 32px;
1913
+ }
1727
1914
  }
1728
1915
  }
1729
1916
 
1730
1917
  & .e-ignoreblank {
1731
1918
  margin-bottom: 5px;
1919
+ @if $skin-name == 'Material3' {
1920
+ padding-top: 20px;
1921
+ }
1732
1922
  }
1733
1923
  }
1734
1924
 
1735
1925
  & .e-footer-content .e-clearall-btn {
1736
1926
  float: left;
1927
+ @if $skin-name == 'Material3' {
1928
+ margin-left: 0;
1929
+ }
1737
1930
  }
1738
1931
  }
1739
1932
 
@@ -1744,33 +1937,22 @@
1744
1937
 
1745
1938
  & .e-hyperlink-dlg.e-dialog,
1746
1939
  .e-edithyperlink-dlg.e-dialog {
1747
- max-height: 640px !important; /* stylelint-disable-line declaration-no-important */
1748
-
1749
- & .e-dlg-header-content {
1750
- @if $skin-name == 'FluentUI' {
1751
- padding: 14px 24px;
1752
- }
1753
- @else {
1754
- padding: 24px 24px 16px;
1755
- }
1756
-
1757
- & .e-dlg-header {
1758
- font-size: $hyperlink-dlg-header-content-font-size;
1759
- line-height: 21px;
1760
- }
1940
+ @if $skin-name != 'Material3' {
1941
+ max-height: 640px !important; /* stylelint-disable-line declaration-no-important */
1761
1942
  }
1762
-
1763
1943
  & .e-dlg-content {
1764
- padding-bottom: 0;
1765
- padding-left: 0;
1766
- padding-right: 0;
1944
+ @if $skin-name != 'Material3' {
1945
+ padding-bottom: 0;
1946
+ padding-left: 0;
1947
+ padding-right: 0;
1948
+ }
1767
1949
 
1768
1950
  & .e-link-dialog {
1769
1951
  & .e-tab-header {
1770
1952
  @if $skin-name == 'bootstrap5' {
1771
1953
  padding: 0 12px;
1772
1954
  }
1773
- @else {
1955
+ @else if $skin-name != 'Material3' {
1774
1956
  padding: 0 24px 0 25px;
1775
1957
  }
1776
1958
 
@@ -1780,7 +1962,9 @@
1780
1962
 
1781
1963
  & .e-toolbar-item {
1782
1964
  text-align: center;
1783
- width: 136px;
1965
+ @if $skin-name != 'Material3' {
1966
+ width: 136px;
1967
+ }
1784
1968
  }
1785
1969
  }
1786
1970
 
@@ -1788,6 +1972,9 @@
1788
1972
  @if $skin-name == 'bootstrap5' {
1789
1973
  padding-top: 12px;
1790
1974
  }
1975
+ @else if $skin-name == 'Material3' {
1976
+ padding-top: 20px;
1977
+ }
1791
1978
  @else {
1792
1979
  padding-top: 24px;
1793
1980
  }
@@ -1799,6 +1986,9 @@
1799
1986
  @else if $skin-name == 'FluentUI' {
1800
1987
  margin: 0 0 12px 24px;
1801
1988
  }
1989
+ @else if $skin-name == 'Material3' {
1990
+ margin: 0 0 20px;
1991
+ }
1802
1992
  @else {
1803
1993
  margin: 0 0 15.5px 24px;
1804
1994
  }
@@ -1809,13 +1999,16 @@
1809
1999
  }
1810
2000
 
1811
2001
  & .e-text {
1812
- @if $skin-name != 'material' and $skin-name != 'material-dark' {
1813
- margin-top: 8px;
2002
+ @if $skin-name != 'Material3' {
2003
+ font-size: $hyperlink-dlg-content-text-font-size;
2004
+ height: 32px;
2005
+ line-height: 16px;
2006
+ width: 275px;
2007
+ @if $skin-name != 'material' or $skin-name != 'material-dark' {
2008
+ margin-top: 8px;
2009
+ }
1814
2010
  }
1815
- font-size: $hyperlink-dlg-content-text-font-size;
1816
- height: 32px;
1817
- line-height: 16px;
1818
- width: 275px;
2011
+
1819
2012
  @if $skin-name == 'FluentUI' {
1820
2013
  padding-bottom: 4px;
1821
2014
  }
@@ -1831,15 +2024,15 @@
1831
2024
  margin: 8px 24px 0 0;
1832
2025
  overflow: auto;
1833
2026
  width: 273px;
2027
+ @if $skin-name == 'Material3' {
2028
+ border: 0;
2029
+ margin: 0 16px 0 0;
2030
+ }
1834
2031
  }
1835
2032
  }
1836
2033
  }
1837
2034
  }
1838
2035
  }
1839
-
1840
- & .e-footer-content {
1841
- margin: 4px 0;
1842
- }
1843
2036
  }
1844
2037
 
1845
2038
  & .e-open-dlg.e-dialog {
@@ -1857,6 +2050,10 @@
1857
2050
  color: $dlg-error-color;
1858
2051
  font-size: $open-dlg-file-alert-span-font-size;
1859
2052
  padding-top: 7px;
2053
+ @if $skin-name == 'Material3' {
2054
+ display: block;
2055
+ padding-top: 4px;
2056
+ }
1860
2057
  }
1861
2058
  }
1862
2059
  }
@@ -1865,32 +2062,58 @@
1865
2062
  height: auto;
1866
2063
  width: $find-dlg-width;
1867
2064
 
2065
+ & .e-dlg-header-content {
2066
+ @if $skin-name == 'Material3' {
2067
+ padding-bottom: 4px;
2068
+ }
2069
+ }
2070
+
1868
2071
  & .e-dlg-content {
1869
2072
  & .e-find-alert-span {
1870
2073
  color: $dlg-error-color;
1871
2074
  font-size: $find-dlg-alert-span-font-size;
1872
2075
  padding-top: 7px;
2076
+ @if $skin-name == 'Material3' {
2077
+ display: block;
2078
+ }
1873
2079
  }
1874
2080
 
1875
2081
  & .e-replace-alert-span {
1876
2082
  color: $dlg-error-color;
1877
2083
  font-size: $find-dlg-alert-span-font-size;
1878
2084
  padding-top: 7px;
2085
+ @if $skin-name == 'Material3' {
2086
+ display: block;
2087
+ }
1879
2088
  }
1880
2089
 
1881
2090
  & .e-findnreplace-casecheckbox {
1882
2091
  padding-right: 12px;
2092
+ @if $skin-name == 'Material3' {
2093
+ padding-bottom: 8px;
2094
+ padding-top: 20px;
2095
+ }
1883
2096
  }
1884
2097
 
1885
2098
  & .e-findnreplace-exactmatchcheckbox {
1886
2099
  padding: 12px 0;
2100
+ @if $skin-name == 'Material3' {
2101
+ padding: 20px 0 8px;
2102
+ }
1887
2103
  }
1888
2104
  }
1889
2105
 
1890
2106
  & p.e-header {
1891
2107
  margin: 0;
1892
- padding-bottom: 8px;
1893
2108
  padding-top: 12px;
2109
+ @if $skin-name == 'Material3' {
2110
+ font-size: $find-dialog-header-font-size;
2111
+ padding-bottom: 0;
2112
+ padding-top: 16px;
2113
+ }
2114
+ @else {
2115
+ padding-bottom: 8px;
2116
+ }
1894
2117
  }
1895
2118
 
1896
2119
  & .e-footer-content {
@@ -1899,41 +2122,57 @@
1899
2122
  }
1900
2123
 
1901
2124
  & .e-protectworkbook-dlg.e-dialog {
1902
- & .e-dlg-header-content .e-dlg-header {
1903
- font-size: $protectworkbook-dlg-header-font-size;
1904
- line-height: 31px;
1905
- }
1906
-
1907
2125
  & .e-dlg-content {
2126
+ @if $skin-name == 'Material3' {
2127
+ & .e-password-content {
2128
+ padding: 4px 0 0;
2129
+ }
2130
+ & .e-password-content + .e-password-content {
2131
+ padding: 16px 0 0;
2132
+ }
2133
+ }
1908
2134
  & .e-pwd-alert-span {
1909
2135
  color: $dlg-error-color;
1910
2136
  font-size: $protectworkbook-dlg-alert-span-font-size;
1911
- padding-top: 12px;
2137
+ @if $skin-name == 'Material3' {
2138
+ display: block;
2139
+ padding-top: 4px;
2140
+ }
2141
+ @else {
2142
+ padding-top: 12px;
2143
+ }
1912
2144
  }
1913
2145
 
1914
2146
  & .e-password-content {
1915
- padding-top: 12px;
1916
-
2147
+ @if $skin-name != 'Material3' {
2148
+ padding-top: 12px;
2149
+ }
1917
2150
  & .e-header {
1918
2151
  font-size: $protectworkbook-dlg-content-header-font-size;
1919
- line-height: 24px;
1920
- margin-bottom: 4px;
2152
+ @if $skin-name != 'Material3' {
2153
+ line-height: 24px;
2154
+ margin-bottom: 4px;
2155
+ }
2156
+ @else {
2157
+ line-height: 16px;
2158
+ }
1921
2159
  }
1922
2160
  }
1923
2161
  }
1924
2162
  }
1925
2163
 
1926
2164
  & .e-unprotectworkbook-dlg.e-dialog {
1927
- & .e-dlg-header-content .e-dlg-header {
1928
- font-size: $protectworkbook-dlg-header-font-size;
1929
- line-height: 21px;
1930
- }
1931
-
1932
2165
  & .e-dlg-content {
1933
2166
  & .e-unprotectpwd-alert-span {
1934
2167
  color: $dlg-error-color;
1935
2168
  font-size: $protectworkbook-dlg-alert-span-font-size;
1936
- padding-top: 7px;
2169
+ @if $skin-name == 'Material3' {
2170
+ display: block;
2171
+ padding-top: 4px;
2172
+ }
2173
+ @else {
2174
+ padding-top: 7px;
2175
+ }
1937
2176
  }
1938
2177
 
1939
2178
  & .e-unprotectpwd-content {
@@ -1943,23 +2182,24 @@
1943
2182
  }
1944
2183
 
1945
2184
  & .e-input {
1946
- margin-top: 10px;
2185
+ @if $skin-name != 'Material3' {
2186
+ margin-top: 10px;
2187
+ }
1947
2188
  }
1948
2189
  }
1949
2190
  }
1950
2191
  }
1951
2192
 
1952
2193
  & .e-importprotectworkbook-dlg.e-dialog {
1953
- & .e-dlg-header-content .e-dlg-header {
1954
- font-size: $protectworkbook-dlg-header-font-size;
1955
- line-height: 21px;
1956
- }
1957
-
1958
2194
  & .e-dlg-content {
1959
2195
  & .e-importprotectpwd-alert-span {
1960
2196
  color: $dlg-error-color;
1961
2197
  font-size: $protectworkbook-dlg-alert-span-font-size;
1962
2198
  padding-top: 7px;
2199
+ @if $skin-name == 'Material3' {
2200
+ display: block;
2201
+ padding-top: 6px;
2202
+ }
1963
2203
  }
1964
2204
 
1965
2205
  & .e-importprotectpwd-content {
@@ -1975,18 +2215,37 @@
1975
2215
  }
1976
2216
  }
1977
2217
 
1978
- & .e-filter-icon {
1979
- margin-bottom: $filter-icon-margin-bottom;
1980
- @if $skin-name == 'FluentUI' {
1981
- margin-top: -9px;
1982
- }
1983
- @if $sheet-skin == 'tailwind' or $sheet-skin == 'tailwind-dark' {
2218
+ @if $skin-name =='Material3' {
2219
+ & .e-open-dlg.e-dialog {
2220
+ & .e-open-dialog {
2221
+ & .e-open-head .e-header {
2222
+ color: $spreadsheet-label-font-color;
2223
+ font-size: $open-dialog-header-font-size;
2224
+ margin-top: 0;
2225
+ margin-bottom: 0;
2226
+ }
2227
+
2228
+ & .e-input-group .e-input-group-icon:hover {
2229
+ background: none;
2230
+ }
2231
+ }
2232
+ }
2233
+ }
2234
+
2235
+ & .e-filter-icon {
2236
+ margin-bottom: $filter-icon-margin-bottom;
2237
+ @if $skin-name == 'FluentUI' {
2238
+ margin-top: -9px;
2239
+ }
2240
+ @if $sheet-skin == 'tailwind' or $sheet-skin == 'tailwind-dark'or $sheet-skin == 'Material3' {
1984
2241
  font-size: $filter-icon-font-size;
1985
2242
  }
1986
2243
 
1987
2244
  &::before {
1988
2245
  font-size: $filter-icon-before-font-size;
1989
- margin-left: -3px;
2246
+ @if $skin-name != 'Material3' {
2247
+ margin-left: -3px;
2248
+ }
1990
2249
  }
1991
2250
  }
1992
2251
 
@@ -2003,6 +2262,12 @@
2003
2262
  @if $sheet-skin == 'tailwind' or $sheet-skin == 'tailwind-dark' {
2004
2263
  bottom: 1px;
2005
2264
  }
2265
+ @if $sheet-skin == 'Material3' {
2266
+ background-color: $cell-background;
2267
+ border-color: $cell-border-color;
2268
+ box-shadow: none;
2269
+ width: 22px;
2270
+ }
2006
2271
  }
2007
2272
  }
2008
2273
 
@@ -2011,7 +2276,12 @@
2011
2276
 
2012
2277
  & .e-container {
2013
2278
  box-shadow: none;
2014
- width: 270px !important; /* stylelint-disable-line declaration-no-important */
2279
+ @if $skin-name == 'Material3' {
2280
+ width: 330px !important; /* stylelint-disable-line declaration-no-important */
2281
+ }
2282
+ @else {
2283
+ width: 270px !important; /* stylelint-disable-line declaration-no-important */
2284
+ }
2015
2285
 
2016
2286
  & .e-selected-value {
2017
2287
  display: flex;
@@ -2049,6 +2319,9 @@
2049
2319
  padding: $align-ddb-ul-padding;
2050
2320
 
2051
2321
  & .e-item {
2322
+ @if $sheet-skin == 'Material3' {
2323
+ border-radius: $align-ddb-item-border-radius;
2324
+ }
2052
2325
  display: inline-flex;
2053
2326
  height: $align-ddb-item-height;
2054
2327
  line-height: $align-ddb-item-height;
@@ -2062,14 +2335,24 @@
2062
2335
  }
2063
2336
  }
2064
2337
 
2065
- &.e-colorpicker-popup {
2338
+ &.e-spreadsheet-color-popup {
2066
2339
  & .e-container {
2067
2340
  & .e-custom-palette .e-palette {
2068
- padding: 0;
2341
+ @if $sheet-skin != 'Material3' {
2342
+ padding: 0;
2343
+ }
2069
2344
  }
2070
2345
 
2071
2346
  & .e-switch-ctrl-btn {
2072
- padding-top: $ctrl-btn-padding;
2347
+ @if $sheet-skin != 'Material3' {
2348
+ padding-top: $ctrl-btn-padding;
2349
+ }
2350
+ }
2351
+
2352
+ & .e-custom-palette + .e-switch-ctrl-btn {
2353
+ @if $sheet-skin == 'Material3' {
2354
+ padding: 2px 8px 12px;
2355
+ }
2073
2356
  }
2074
2357
  }
2075
2358
  }
@@ -2386,7 +2669,7 @@
2386
2669
 
2387
2670
  & .e-line-main,
2388
2671
  & .e-area-main {
2389
- height: 90px;
2672
+ height: auto;
2390
2673
 
2391
2674
  & .e-line-text,
2392
2675
  & .e-area-text {
@@ -2403,7 +2686,10 @@
2403
2686
  & .e-stackedarea100,
2404
2687
  & .e-line,
2405
2688
  & .e-stackedline,
2406
- & .e-stackedline100 {
2689
+ & .e-stackedline100,
2690
+ & .e-line-marker,
2691
+ & .e-stackedline-marker,
2692
+ & .e-stackedline100-marker {
2407
2693
  display: inline-block;
2408
2694
  font-size: 40px;
2409
2695
  height: 60px;
@@ -2455,30 +2741,23 @@
2455
2741
  .e-spreadsheet-function-dlg.e-dialog {
2456
2742
  min-height: $dlg-min-height;
2457
2743
  user-select: none;
2458
-
2459
- & .e-dlg-header-content {
2460
- @if $skin-name == 'bootstrap5' {
2461
- padding: 12px;
2462
- }
2463
- @else {
2464
- padding: 18px;
2465
- }
2466
-
2467
- & .e-dlg-header {
2468
- font-size: $function-dlg-header-content-font-size;
2469
- font-weight: normal;
2470
- }
2471
- }
2472
-
2473
2744
  & .e-dlg-content {
2474
- overflow: hidden;
2475
- padding-left: $dlg-content-padding;
2476
- padding-right: $dlg-content-padding;
2745
+ @if $sheet-skin != 'Material3' {
2746
+ overflow: hidden;
2747
+ padding-left: $dlg-content-padding;
2748
+ padding-right: $dlg-content-padding;
2749
+ }
2477
2750
 
2478
2751
  & .e-category-content {
2479
2752
  font-size: $dlg-category-content-font-size;
2480
- font-weight: $dlg-category-content-font-weight;
2481
- margin-bottom: $dlg-category-margin-bottom;
2753
+ @if $sheet-skin != 'Material3' {
2754
+ font-weight: $dlg-category-content-font-weight;
2755
+ margin-bottom: $dlg-category-margin-bottom;
2756
+ }
2757
+
2758
+ @if $sheet-skin == 'Material3' {
2759
+ padding: 4px 0 0;
2760
+ }
2482
2761
 
2483
2762
  @if $sheet-skin == 'tailwind' or $sheet-skin == 'tailwind-dark' {
2484
2763
  padding: 10px 0;
@@ -2486,20 +2765,35 @@
2486
2765
  }
2487
2766
 
2488
2767
  & .e-formula-description {
2489
- margin-left: -4px;
2490
- margin-top: 5px;
2491
- padding: 4px;
2768
+ @if $sheet-skin != 'Material3' {
2769
+ margin-left: -4px;
2770
+ margin-top: 5px;
2771
+ padding: 4px;
2772
+ }
2773
+
2774
+ @if $sheet-skin == 'Material3' {
2775
+ padding: 4px 0;
2776
+ }
2492
2777
  }
2493
2778
 
2494
2779
  & .e-description-content {
2495
- font-size: $dlg-description-content-font-size;
2496
- font-weight: $dlg-description-font-weight;
2497
- padding-top: 10px;
2780
+ @if $sheet-skin != 'Material3' {
2781
+ font-size: $dlg-description-content-font-size;
2782
+ font-weight: $dlg-description-font-weight;
2783
+ padding-top: 10px;
2784
+ }
2785
+
2786
+ @if $sheet-skin == 'Material3' {
2787
+ font-size: $dlg-description-content-font-size;
2788
+ padding-top: 16px;
2789
+ }
2498
2790
  }
2499
2791
 
2500
2792
  & .e-formula-list {
2501
- border: $dlg-list-border;
2502
2793
  cursor: default;
2794
+ @if $sheet-skin != 'Material3' {
2795
+ border: $dlg-list-border;
2796
+ }
2503
2797
  margin-top: 6px;
2504
2798
  overflow-y: auto;
2505
2799
  }
@@ -2533,15 +2827,28 @@
2533
2827
  & .e-btn.e-css.e-insert-function {
2534
2828
  border-left: $spreadsheet-border;
2535
2829
  height: 23px;
2830
+ @if $skin-name == 'Material3' {
2831
+ padding-left: 6px;
2832
+ padding-right: 6px;
2833
+ }
2536
2834
 
2537
2835
  & .e-btn-icon {
2538
- line-height: 24px;
2836
+ @if $skin-name == 'Material3' {
2837
+ line-height: 23px;
2838
+ }
2839
+ @else {
2840
+ line-height: 24px;
2841
+ }
2539
2842
  }
2540
2843
  }
2541
2844
 
2542
2845
  & .e-formula-bar {
2543
2846
  height: 23px;
2544
2847
  line-height: 23px;
2848
+ @if $skin-name == 'Material3' {
2849
+ height: 22px;
2850
+ line-height: 22px;
2851
+ }
2545
2852
  width: $formula-textarea-width;
2546
2853
  }
2547
2854
 
@@ -2549,6 +2856,9 @@
2549
2856
  & .e-formula-bar,
2550
2857
  & .e-btn.e-css.e-insert-function {
2551
2858
  height: 71px;
2859
+ @if $skin-name == 'Material3' {
2860
+ line-height: 24px;
2861
+ }
2552
2862
  }
2553
2863
 
2554
2864
  & .e-btn.e-css.e-insert-function {
@@ -2582,6 +2892,9 @@
2582
2892
 
2583
2893
  & .e-btn-icon {
2584
2894
  line-height: 33px;
2895
+ @if $skin-name == 'Material3' {
2896
+ line-height: 32px;
2897
+ }
2585
2898
  margin-top: 0;
2586
2899
  }
2587
2900
  }
@@ -2636,15 +2949,39 @@
2636
2949
  }
2637
2950
  }
2638
2951
 
2952
+ .e-spreadsheet-function-dlg.e-dialog {
2953
+ & .e-dlg-content {
2954
+ & .e-description-content {
2955
+ @if $sheet-skin == 'Material3' {
2956
+ padding-top: 16px;
2957
+ }
2958
+ }
2959
+ }
2960
+ }
2961
+
2639
2962
  & .e-ribbon {
2963
+
2640
2964
  & .e-toolbar .e-btn:not(.e-tbar-btn) {
2641
2965
  &:not(.e-split-colorpicker) {
2642
2966
  line-height: $bigger-spreadsheet-ribbon-btn-height;
2967
+ @if $sheet-skin == 'Material3' {
2968
+ font-size: $function-dlg-header-content-font-size;
2969
+ }
2970
+ }
2971
+
2972
+ &.e-chart-ddb {
2973
+ @if $sheet-skin == 'Material3' {
2974
+ padding-left: 26px;
2975
+ }
2643
2976
  }
2644
2977
 
2645
2978
  &.e-split-colorpicker {
2646
2979
  line-height: $bigger-spreadsheet-ribbon-btn-height - 2;
2647
2980
  padding-bottom: 2px;
2981
+ @if $sheet-skin == 'Material3' {
2982
+ line-height: $bigger-spreadsheet-ribbon-btn-height - 4;
2983
+ padding-bottom: 0;
2984
+ }
2648
2985
  width: $bigger-cpicker-btn-width;
2649
2986
  }
2650
2987
 
@@ -2657,6 +2994,11 @@
2657
2994
  line-height: $bigger-spreadsheet-ribbon-btn-height;
2658
2995
  min-height: $bigger-spreadsheet-ribbon-btn-height;
2659
2996
 
2997
+ @if $sheet-skin == 'Material3' {
2998
+ line-height: $bigger-spreadsheet-ribbon-btn-height - 4;
2999
+ min-height: $bigger-spreadsheet-ribbon-btn-height - 4;
3000
+ }
3001
+
2660
3002
  &:not(.e-caret) {
2661
3003
  font-size: $bigger-spreadsheet-tbar-btn-icon-font-size;
2662
3004
  }
@@ -2675,8 +3017,35 @@
2675
3017
  }
2676
3018
  }
2677
3019
 
3020
+ @if $skin-name == 'Material3' {
3021
+ & .e-toolbar .e-toolbar-item .e-btn {
3022
+
3023
+ & .e-chart-icon,
3024
+ & .e-chart-type-icon {
3025
+ font-size: $bigger-spreadsheet-chart-icon-size !important; /* stylelint-disable-line declaration-no-important */
3026
+ margin-right: 0;
3027
+ padding: 0;
3028
+ width: 36px;
3029
+ }
3030
+
3031
+ &.e-split-colorpicker {
3032
+ & .e-icons.e-btn-icon:not(.e-caret) {
3033
+ &.e-font-color {
3034
+ font-size: $bigger-spreadsheet-cpicker-font-color-font-size;
3035
+ }
3036
+
3037
+ &.e-fill-color {
3038
+ font-size: $bigger-spreadsheet-tbar-btn-icon-font-size;
3039
+ }
3040
+ }
3041
+ }
3042
+ }
3043
+ }
3044
+
2678
3045
  & .e-dropdown-btn.e-font-size-ddb {
2679
- width: $bigger-fontsize-btn-width;
3046
+ @if $skin-name != 'Material3' {
3047
+ width: $bigger-fontsize-btn-width;
3048
+ }
2680
3049
  }
2681
3050
 
2682
3051
  & .e-colorpicker-wrapper .e-split-btn-wrapper .e-split-colorpicker.e-split-btn .e-selected-color {
@@ -2693,7 +3062,13 @@
2693
3062
  & .e-formula-bar-panel {
2694
3063
  & .e-input-group.e-control-wrapper.e-ddl.e-name-box .e-input-group-icon {
2695
3064
  font-size: $bigger-name-box-ddl-icon-font-size;
2696
- margin: 0;
3065
+ @if $skin-name != 'Material3' {
3066
+ margin: 0;
3067
+ }
3068
+
3069
+ @if $skin-name == 'Material3' {
3070
+ margin: 10px;
3071
+ }
2697
3072
  }
2698
3073
 
2699
3074
  // Need to remove the below properties & its variable once touch support provided by UX team
@@ -2705,11 +3080,30 @@
2705
3080
 
2706
3081
  & .e-add-sheet-tab.e-btn.e-icon-btn.e-css,
2707
3082
  & .e-sheets-list.e-dropdown-btn {
2708
- height: 39px;
2709
- width: 39px;
3083
+ @if $skin-name == 'Material3' {
3084
+ height: 48px;
3085
+ padding: 0;
3086
+ width: 48px;
3087
+ }
3088
+ @else {
3089
+ height: 39px;
3090
+ width: 39px;
3091
+ }
2710
3092
 
2711
3093
  & .e-btn-icon {
2712
- line-height: 39px;
3094
+ @if $skin-name == 'Material3' {
3095
+ line-height: 48px;
3096
+ }
3097
+ @else {
3098
+ line-height: 39px;
3099
+ }
3100
+ }
3101
+ }
3102
+
3103
+ @if $skin-name == 'Material3' {
3104
+ & .e-add-sheet-tab,
3105
+ & .e-sheets-list {
3106
+ margin-left: 9px;
2713
3107
  }
2714
3108
  }
2715
3109
 
@@ -2732,21 +3126,38 @@
2732
3126
 
2733
3127
  &:not(.e-mobile-view) .e-formula-bar-panel {
2734
3128
  & .e-btn.e-css.e-insert-function {
2735
- height: 29px;
3129
+ @if $skin-name == 'Material3' {
3130
+ height: 31px;
3131
+ }
3132
+ @else {
3133
+ height: 29px;
3134
+ }
2736
3135
 
2737
3136
  & .e-btn-icon {
2738
3137
  font-size: $bigger-insert-function-btn-icon-font-size;
2739
- line-height: 30px;
3138
+ @if $skin-name == 'Material3' {
3139
+ line-height: 31px;
3140
+ }
3141
+ @else {
3142
+ line-height: 30px;
3143
+ }
2740
3144
  }
2741
3145
  }
2742
3146
 
2743
3147
  & .e-input-group.e-control-wrapper.e-ddl.e-name-box input.e-input {
2744
3148
  height: 29px;
3149
+ @if $skin-name == 'Material3' {
3150
+ height: 22px;
3151
+ padding: 5px 0 5px 8px;
3152
+ font-size: $bigger-name-box-ddl-icon-font-size;
3153
+ }
2745
3154
  }
2746
3155
 
2747
3156
  & .e-drop-icon {
2748
3157
  line-height: 29px;
2749
-
3158
+ @if $skin-name == 'Material3' {
3159
+ line-height: 32px;
3160
+ }
2750
3161
  @if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' {
2751
3162
  font-size: $bigger-formula-bar-drop-icon-font-size;
2752
3163
  line-height: 38px;
@@ -2754,20 +3165,39 @@
2754
3165
  }
2755
3166
 
2756
3167
  & .e-separator {
2757
- height: 15px;
3168
+ height: 18px;
2758
3169
  }
2759
3170
 
2760
3171
  & .e-formula-bar {
2761
3172
  font-size: $bigger-formula-bar-font-size;
2762
- height: 29px;
2763
- line-height: 29px;
3173
+ @if $skin-name == 'Material3' {
3174
+ height: 32px;
3175
+ line-height: 32px;
3176
+ }
3177
+ @else {
3178
+ height: 29px;
3179
+ line-height: 29px;
3180
+ }
2764
3181
  }
2765
3182
 
2766
3183
  &.e-expanded {
2767
- & .e-formula-bar,
3184
+ & .e-formula-bar {
3185
+ height: 89px;
3186
+ }
2768
3187
  & .e-btn.e-css.e-insert-function {
2769
3188
  height: 89px;
2770
3189
  line-height: 89px;
3190
+
3191
+ @if $skin-name == 'Material3' {
3192
+ height: 87px;
3193
+ line-height: 87px;
3194
+ }
3195
+ }
3196
+
3197
+ & .e-formula-bar {
3198
+ @if $skin-name == 'Material3' {
3199
+ line-height: 34px;
3200
+ }
2771
3201
  }
2772
3202
 
2773
3203
  & .e-separator {
@@ -2776,20 +3206,44 @@
2776
3206
  }
2777
3207
  }
2778
3208
 
2779
- & .e-dlg-content .e-custom-dialog .e-input.e-dialog-input {
2780
- float: left;
2781
- margin-right: 2.8%;
2782
- width: 77%;
2783
- @if $skin-name == 'FluentUI' {
2784
- height: 40px;
3209
+ & .e-dlg-content {
3210
+ @if $skin-name == 'Material3' {
3211
+ margin-top: 0;
3212
+ }
3213
+ .e-custom-dialog {
3214
+ & .e-input.e-dialog-input {
3215
+ float: left;
3216
+ @if $skin-name == 'Material3' {
3217
+ margin-right: 16px;
3218
+ width: 74%;
3219
+ }
3220
+ @else {
3221
+ margin-right: 2.8%;
3222
+ width: 77%;
3223
+ }
3224
+
3225
+ @if $skin-name == 'FluentUI' {
3226
+ height: 40px;
3227
+ }
3228
+ }
3229
+ & .e-custom-sample {
3230
+ @if $skin-name == 'Material3' {
3231
+ margin-top: 8px;
3232
+ }
3233
+ }
2785
3234
  }
2786
3235
  }
2787
3236
 
2788
3237
  & .e-customsort-dlg.e-dialog {
2789
- width: 590px !important; /* stylelint-disable-line declaration-no-important */
2790
3238
  @if $sheet-skin == 'tailwind' or $sheet-skin == 'tailwind-dark' or $skin-name == 'FluentUI' {
2791
3239
  width: 630px !important; /* stylelint-disable-line declaration-no-important */
2792
3240
  }
3241
+ @else if $sheet-skin == 'Material3' {
3242
+ width: 625px !important; /* stylelint-disable-line declaration-no-important */
3243
+ }
3244
+ @else {
3245
+ width: 590px !important; /* stylelint-disable-line declaration-no-important */
3246
+ }
2793
3247
  }
2794
3248
 
2795
3249
  .e-sort-dialog .e-sort-template .e-list-item {
@@ -2803,6 +3257,9 @@
2803
3257
  font-size: $bigger-filter-icon-font-size;
2804
3258
  margin-top: -3px;
2805
3259
  }
3260
+ @if $sheet-skin == 'Material3' {
3261
+ font-size: $bigger-filter-icon-font-size;
3262
+ }
2806
3263
  }
2807
3264
 
2808
3265
  & .e-find-dlg .e-footer-content .e-btn {
@@ -2811,8 +3268,10 @@
2811
3268
  }
2812
3269
 
2813
3270
  & .e-findtool-dlg {
2814
- height: $bigger-find-tool-dlg-height;
2815
- width: $bigger-find-tool-dlg-width;
3271
+ @if $sheet-skin != 'Material3'{
3272
+ height: $bigger-find-tool-dlg-height;
3273
+ width: $bigger-find-tool-dlg-width;
3274
+ }
2816
3275
  }
2817
3276
 
2818
3277
  & .e-goto-dlg.e-dialog {
@@ -2826,17 +3285,49 @@
2826
3285
  & .e-protectworkbook-dlg.e-dialog .e-dlg-content {
2827
3286
  & .e-pwd-alert-span {
2828
3287
  color: $dlg-error-color;
2829
- font-size: $protectworkbook-dlg-pwd-alert-span-font-size;
2830
- padding-top: 16px;
3288
+ @if $skin-name == 'Material3' {
3289
+ padding-top: 6px;
3290
+ }
3291
+ @else {
3292
+ font-size: $protectworkbook-dlg-pwd-alert-span-font-size;
3293
+ padding-top: 16px;
3294
+ }
2831
3295
  }
2832
3296
 
2833
3297
  & .e-password-content {
2834
- padding-top: 16px;
3298
+ @if $sheet-skin != 'Material3'{
3299
+ padding-top: 16px;
3300
+ margin-bottom: 8px;
3301
+ }
2835
3302
 
2836
3303
  & .e-header {
2837
- font-size: $protectworkbook-dlg-pwd-content-font-size;
2838
- line-height: 28px;
2839
- margin-bottom: 4px;
3304
+ @if $skin-name != 'Material3' {
3305
+ font-size: $protectworkbook-dlg-pwd-content-font-size;
3306
+ line-height: 28px;
3307
+ margin-bottom: 4px;
3308
+ }
3309
+ }
3310
+ }
3311
+ }
3312
+
3313
+ & .e-validation-dlg {
3314
+ & .e-cellrange {
3315
+ @if $skin-name == 'Material3' {
3316
+ margin-bottom: 8px;
3317
+ }
3318
+ }
3319
+
3320
+ & .e-allowdata {
3321
+ & .e-allow {
3322
+ @if $skin-name == 'Material3' {
3323
+ margin-bottom: 12px;
3324
+ }
3325
+ }
3326
+ }
3327
+
3328
+ & .e-values {
3329
+ @if $skin-name == 'Material3' {
3330
+ margin-bottom: 8px;
2840
3331
  }
2841
3332
  }
2842
3333
  }
@@ -2897,13 +3388,14 @@
2897
3388
  }
2898
3389
 
2899
3390
  .e-bigger .e-spreadsheet .e-hyperlink-dlg.e-dialog {
2900
- @if $skin-name == 'FluentUI' {
2901
- & .e-dlg-content .e-link-dialog .e-content .e-cont {
2902
- margin: 0 0 16px 24px;
3391
+ & .e-dlg-content .e-link-dialog .e-content {
3392
+ @if $skin-name == 'Material3' {
3393
+ padding-top: 24px;
2903
3394
  }
2904
-
2905
- & .e-dlg-header-content {
2906
- padding: 24px 24px 16px;
3395
+ @if $skin-name == 'FluentUI' {
3396
+ & .e-cont {
3397
+ margin: 0 0 16px 24px;
3398
+ }
2907
3399
  }
2908
3400
  }
2909
3401
  }
@@ -2912,6 +3404,12 @@
2912
3404
  height: 100%;
2913
3405
  position: relative;
2914
3406
 
3407
+ @if $skin-name == 'Material3' {
3408
+ & .e-sort-header {
3409
+ border-bottom: 1px solid $spreadsheet-customsrt-line-color;
3410
+ }
3411
+ }
3412
+
2915
3413
  & .e-sort-listsection {
2916
3414
  @if $skin-name != 'FluentUI' {
2917
3415
  height: calc(100% - 28px);
@@ -2927,7 +3425,9 @@
2927
3425
 
2928
3426
  & .e-sort-listwrapper .text {
2929
3427
  font-size: $sort-dlg-listwrapper-text-font-size;
2930
- padding: 10px 0 5px;
3428
+ @if $skin-name != 'Material3' {
3429
+ padding: 10px 0 5px;
3430
+ }
2931
3431
  }
2932
3432
 
2933
3433
  & .e-list-sort {
@@ -2938,14 +3438,37 @@
2938
3438
  align-items: center;
2939
3439
  display: flex;
2940
3440
  padding: 5px 0 10px;
3441
+ @if $skin-name == 'Material3' {
3442
+ padding: 6px 0 10px;
3443
+ }
2941
3444
  }
2942
3445
 
2943
3446
  & .e-sort-error,
2944
3447
  & .e-sort-header,
2945
3448
  & .e-sort-casecheckbox,
2946
3449
  & .e-sort-listsection {
2947
- padding-left: $dlg-content-padding;
2948
- padding-right: $dlg-content-padding;
3450
+ @if $skin-name != 'Material3' {
3451
+ padding-left: $dlg-content-padding;
3452
+ padding-right: $dlg-content-padding;
3453
+ padding-bottom: $dlg-content-padding-bottom;
3454
+ }
3455
+ }
3456
+
3457
+ @if $skin-name == 'Material3' {
3458
+ & .e-sort-header {
3459
+ padding-bottom: 20px;
3460
+ padding-top: 6px;
3461
+ }
3462
+
3463
+ & .e-sort-casecheckbox {
3464
+ padding-left: 24px;
3465
+ padding-right: 24px;
3466
+ }
3467
+
3468
+ & .e-sort-listsection {
3469
+ padding-bottom: 14px;
3470
+ padding-top: 16px;
3471
+ }
2949
3472
  }
2950
3473
 
2951
3474
  & .e-sort-error {
@@ -2985,7 +3508,15 @@
2985
3508
  }
2986
3509
 
2987
3510
  & .e-radio-wrapper {
2988
- margin-left: 16px;
3511
+ @if $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5-dark' or $skin-name == 'Material3' {
3512
+ margin-left: 20px;
3513
+ }
3514
+ @else {
3515
+ margin-left: 16px;
3516
+ }
3517
+ @if $skin-name == 'Material3' {
3518
+ padding: 8px 0;
3519
+ }
2989
3520
  }
2990
3521
 
2991
3522
  & li:first-of-type .e-sort-delete {
@@ -3026,4 +3557,327 @@
3026
3557
  }
3027
3558
  }
3028
3559
  }
3560
+
3561
+ @if $skin-name == 'Material3' {
3562
+ .e-spreadsheet .e-ribbon .e-tab .e-tab-header .e-toolbar-item {
3563
+ &.e-active {
3564
+ margin: 0;
3565
+ }
3566
+ }
3567
+ }
3568
+
3569
+ .e-bigger .e-spreadsheet,
3570
+ .e-bigger.e-spreadsheet {
3571
+ @if $skin-name =='Material3' {
3572
+
3573
+ & .e-sheet-tab {
3574
+ & .e-tab-header {
3575
+ & .e-toolbar-item {
3576
+ & input.e-input.e-sheet-rename {
3577
+ height: 48px;
3578
+ line-height: 48px;
3579
+ margin-bottom: 0;
3580
+ }
3581
+ }
3582
+ }
3583
+ }
3584
+
3585
+ & .e-validation-list {
3586
+ & .e-ddl-icon {
3587
+ bottom: 0;
3588
+ font-size: $spreadsheet-drop-icon-font-size;
3589
+ height: 20px;
3590
+ min-height: 20px;
3591
+ min-width: 20px;
3592
+ width: 20px;
3593
+ }
3594
+ }
3595
+
3596
+ & .e-open-dlg.e-dialog {
3597
+ & .e-open-dialog {
3598
+ & .e-open-head .e-header {
3599
+ font-size: $bigger-spreadsheet-dlg-label-font-size;
3600
+ }
3601
+ }
3602
+
3603
+ & .e-dlg-content {
3604
+ & .e-file-alert-span {
3605
+ font-size: $bigger-spreadsheet-dlg-error-font-size;
3606
+ padding-top: 6px;
3607
+ }
3608
+ }
3609
+ }
3610
+
3611
+ & .e-dlg-content .e-custom-dialog .e-custom-sample {
3612
+ font-size: $bigger-spreadsheet-dlg-label-font-size;
3613
+ margin: 20px 0 4px;
3614
+ }
3615
+
3616
+ & .e-conditionalformatting-dlg {
3617
+ & .e-cfmain {
3618
+ & .e-header {
3619
+ font-size: $bigger-spreadsheet-dlg-label-font-size;
3620
+ }
3621
+ margin: 8px 0 20px;
3622
+ }
3623
+
3624
+ & .e-cfsub {
3625
+ & .e-header {
3626
+ font-size: $bigger-spreadsheet-dlg-label-font-size;
3627
+ }
3628
+ margin-bottom: 12px;
3629
+ }
3630
+
3631
+ & .e-header-2 {
3632
+ margin-top: 20px;
3633
+ }
3634
+ }
3635
+ & .e-sort-dialog {
3636
+ & .e-sort-listwrapper .text {
3637
+ font-size: $bigger-spreadsheet-dlg-label-font-size;
3638
+ }
3639
+
3640
+ & .e-sort-error {
3641
+ font-size: $bigger-spreadsheet-dlg-error-font-size;
3642
+ }
3643
+ }
3644
+
3645
+ & .e-find-dlg.e-dialog {
3646
+ & .e-dlg-header-content {
3647
+ @if $skin-name == 'Material3' {
3648
+ padding-bottom: 8px;
3649
+ }
3650
+ }
3651
+ & .e-dlg-content {
3652
+ & .e-find-alert-span {
3653
+ font-size: $bigger-spreadsheet-dlg-error-font-size;
3654
+ padding-top: 7px;
3655
+ }
3656
+
3657
+ & .e-replace-alert-span {
3658
+ font-size: $bigger-spreadsheet-dlg-error-font-size;
3659
+ padding-top: 7px;
3660
+ }
3661
+
3662
+ & .e-findnreplace-casecheckbox {
3663
+ padding-bottom: 10px;
3664
+ padding-top: 20px;
3665
+ }
3666
+
3667
+ & .e-findnreplace-exactmatchcheckbox {
3668
+ padding: 20px 0 10px;
3669
+ }
3670
+ }
3671
+
3672
+ & p.e-header {
3673
+ font-size: $bigger-spreadsheet-dlg-label-font-size;
3674
+ padding-bottom: 0;
3675
+ padding-top: 16px;
3676
+ }
3677
+ }
3678
+
3679
+ & .e-hyperlink-dlg.e-dialog,
3680
+ .e-edithyperlink-dlg.e-dialog {
3681
+ & .e-dlg-content {
3682
+
3683
+ & .e-link-dialog {
3684
+
3685
+ & .e-content {
3686
+ padding-top: 24px;
3687
+
3688
+ & .e-cont {
3689
+ margin: 0 0 24px;
3690
+
3691
+ & .e-header {
3692
+ font-size: $bigger-spreadsheet-dlg-label-font-size;
3693
+ line-height: 20px;
3694
+ }
3695
+
3696
+ & .e-refcont {
3697
+ border: 0;
3698
+ margin: 0 16px 0 0;
3699
+ }
3700
+ }
3701
+ }
3702
+ }
3703
+ }
3704
+ }
3705
+ & .e-spreadsheet-function-dlg.e-dialog {
3706
+ & .e-dlg-content {
3707
+ & .e-category-content {
3708
+ font-size: $bigger-spreadsheet-dlg-label-font-size;
3709
+ padding: 4px 0 0;
3710
+ }
3711
+
3712
+ & .e-formula-description {
3713
+ padding: 4px 0;
3714
+ }
3715
+
3716
+ & .e-description-content {
3717
+ font-size: $bigger-spreadsheet-dlg-label-font-size;
3718
+ padding-top: 20px;
3719
+ }
3720
+ }
3721
+ }
3722
+ & .e-protect-dlg.e-dialog {
3723
+ & .e-sheet-password-content {
3724
+ font-size: $bigger-spreadsheet-dlg-label-font-size;
3725
+ padding: 4px 0 20px;
3726
+
3727
+ & .e-header {
3728
+ line-height: 20px;
3729
+ }
3730
+ }
3731
+
3732
+ & .e-protect-content {
3733
+ font-size: $bigger-spreadsheet-dlg-label-font-size;
3734
+ line-height: 20px;
3735
+ padding: 20px 0 4px;
3736
+ }
3737
+ }
3738
+
3739
+ & .e-reenterpwd-dlg.e-dialog {
3740
+ & .e-dlg-content {
3741
+ & .e-reenterpwd-alert-span {
3742
+ font-size: $bigger-spreadsheet-dlg-error-font-size;
3743
+ padding-top: 6px;
3744
+ }
3745
+
3746
+ & .e-reenterpwd-content {
3747
+ & .e-header {
3748
+ font-size: $bigger-spreadsheet-dlg-label-font-size;
3749
+ line-height: 20px;
3750
+ }
3751
+ }
3752
+ }
3753
+ }
3754
+
3755
+ & .e-unprotectworksheet-dlg.e-dialog {
3756
+ & .e-dlg-content {
3757
+ & .e-unprotectsheetpwd-alert-span {
3758
+ font-size: $bigger-spreadsheet-dlg-error-font-size;
3759
+ padding-top: 6px;
3760
+ }
3761
+
3762
+ & .e-unprotectsheetpwd-content {
3763
+ & .e-header {
3764
+ font-size: $bigger-spreadsheet-dlg-label-font-size;
3765
+ line-height: 20px;
3766
+ }
3767
+ }
3768
+ }
3769
+ }
3770
+
3771
+ & .e-protectworkbook-dlg.e-dialog {
3772
+ & .e-dlg-content {
3773
+ padding-bottom: 8px;
3774
+ & .e-pwd-alert-span {
3775
+ font-size: $bigger-spreadsheet-dlg-error-font-size;
3776
+ }
3777
+
3778
+ & .e-password-content + .e-password-content {
3779
+ padding: 20px 0 0;
3780
+ }
3781
+
3782
+ & .e-password-content {
3783
+ padding: 4px 0 0;
3784
+
3785
+ & .e-header {
3786
+ font-size: $bigger-spreadsheet-dlg-label-font-size;
3787
+ line-height: 20px;
3788
+ }
3789
+ }
3790
+ }
3791
+ }
3792
+
3793
+ & .e-unprotectworkbook-dlg.e-dialog {
3794
+ & .e-dlg-content {
3795
+ & .e-unprotectpwd-alert-span {
3796
+ font-size: $bigger-spreadsheet-dlg-error-font-size;
3797
+ padding-top: 6px;
3798
+ }
3799
+
3800
+ & .e-unprotectpwd-content {
3801
+ & .e-header {
3802
+ font-size: $bigger-spreadsheet-dlg-label-font-size;
3803
+ line-height: 20px;
3804
+ }
3805
+ }
3806
+ }
3807
+ }
3808
+
3809
+ & .e-datavalidation-dlg {
3810
+ & .e-validation-dlg {
3811
+ & .e-header {
3812
+ font-size: $bigger-spreadsheet-dlg-label-font-size;
3813
+ line-height: 20px;
3814
+ }
3815
+
3816
+ & .e-cellrange {
3817
+ padding-top: 4px;
3818
+
3819
+ & .e-header {
3820
+ font-size: $bigger-spreadsheet-dlg-label-font-size;
3821
+ line-height: 20px;
3822
+ }
3823
+ }
3824
+
3825
+ & .e-allowdata {
3826
+ padding-top: 20px;
3827
+
3828
+ & .e-allow {
3829
+
3830
+ & .e-header {
3831
+ font-size: $bigger-spreadsheet-dlg-label-font-size;
3832
+ line-height: 20px;
3833
+ }
3834
+ }
3835
+
3836
+ & .e-data {
3837
+
3838
+ & .e-header {
3839
+ font-size: $bigger-spreadsheet-dlg-label-font-size;
3840
+ line-height: 20px;
3841
+ }
3842
+ }
3843
+ }
3844
+
3845
+ & .e-values {
3846
+ padding-top: 20px;
3847
+
3848
+ & .e-minimum {
3849
+
3850
+ & .e-header {
3851
+ font-size: $bigger-spreadsheet-dlg-label-font-size;
3852
+ line-height: 20px;
3853
+ }
3854
+ }
3855
+
3856
+ & .e-maximum {
3857
+
3858
+ & .e-header {
3859
+ font-size: $bigger-spreadsheet-dlg-label-font-size;
3860
+ line-height: 20px;
3861
+ }
3862
+ }
3863
+
3864
+ & .e-dlg-error {
3865
+ font-size: $bigger-spreadsheet-dlg-error-font-size;
3866
+ padding-top: 6px;
3867
+ }
3868
+
3869
+ & .e-header {
3870
+ font-size: $bigger-spreadsheet-dlg-label-font-size;
3871
+ line-height: 20px;
3872
+ }
3873
+ }
3874
+
3875
+ & .e-ignoreblank {
3876
+ margin-bottom: 8px;
3877
+ padding-top: 20px;
3878
+ }
3879
+ }
3880
+ }
3881
+ }
3882
+ }
3029
3883
  }