@syncfusion/ej2-angular-inputs 20.4.54 → 21.1.35

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 (78) hide show
  1. package/README.md +185 -114
  2. package/esm2020/src/rating/rating.component.mjs +1 -1
  3. package/fesm2015/syncfusion-ej2-angular-inputs.mjs.map +1 -1
  4. package/fesm2020/syncfusion-ej2-angular-inputs.mjs.map +1 -1
  5. package/package.json +9 -9
  6. package/schematics/utils/lib-details.d.ts +2 -2
  7. package/schematics/utils/lib-details.js +2 -2
  8. package/schematics/utils/lib-details.ts +2 -2
  9. package/src/rating/rating.component.d.ts +9 -0
  10. package/styles/bootstrap-dark.css +6 -0
  11. package/styles/bootstrap.css +6 -0
  12. package/styles/bootstrap4.css +6 -0
  13. package/styles/bootstrap5-dark.css +10 -4
  14. package/styles/bootstrap5.css +10 -4
  15. package/styles/color-picker/_layout.scss +78 -6
  16. package/styles/color-picker/_theme.scss +3 -0
  17. package/styles/color-picker/bootstrap-dark.css +6 -0
  18. package/styles/color-picker/bootstrap.css +6 -0
  19. package/styles/color-picker/bootstrap4.css +6 -0
  20. package/styles/color-picker/bootstrap5-dark.css +6 -0
  21. package/styles/color-picker/bootstrap5.css +6 -0
  22. package/styles/color-picker/fabric-dark.css +6 -0
  23. package/styles/color-picker/fabric.css +6 -0
  24. package/styles/color-picker/fluent-dark.css +6 -0
  25. package/styles/color-picker/fluent.css +6 -0
  26. package/styles/color-picker/highcontrast-light.css +6 -0
  27. package/styles/color-picker/highcontrast.css +6 -0
  28. package/styles/color-picker/material-dark.css +6 -0
  29. package/styles/color-picker/material.css +6 -0
  30. package/styles/color-picker/tailwind-dark.css +6 -0
  31. package/styles/color-picker/tailwind.css +6 -0
  32. package/styles/fabric-dark.css +6 -0
  33. package/styles/fabric.css +6 -0
  34. package/styles/fluent-dark.css +6 -0
  35. package/styles/fluent.css +6 -0
  36. package/styles/highcontrast-light.css +6 -0
  37. package/styles/highcontrast.css +6 -0
  38. package/styles/input/_bootstrap5-definition.scss +2 -2
  39. package/styles/input/_fluent-definition.scss +5 -5
  40. package/styles/input/_layout.scss +445 -445
  41. package/styles/input/_tailwind-definition.scss +14 -14
  42. package/styles/input/_theme.scss +218 -199
  43. package/styles/input/material-dark.css +1 -1
  44. package/styles/input/material.css +1 -1
  45. package/styles/maskedtextbox/_bootstrap5-definition.scss +2 -2
  46. package/styles/maskedtextbox/_fluent-definition.scss +2 -2
  47. package/styles/material-dark.css +7 -5
  48. package/styles/material.css +7 -1
  49. package/styles/numerictextbox/icons/_material3.scss +3 -3
  50. package/styles/rating/_bootstrap5-definition.scss +12 -15
  51. package/styles/rating/_fluent-definition.scss +12 -15
  52. package/styles/rating/_tailwind-definition.scss +12 -15
  53. package/styles/rating/_theme.scss +14 -2
  54. package/styles/rating/tailwind-dark.css +1 -1
  55. package/styles/rating/tailwind.css +1 -1
  56. package/styles/slider/_layout.scss +44 -25
  57. package/styles/slider/_theme.scss +6 -1
  58. package/styles/tailwind-dark.css +8 -2
  59. package/styles/tailwind.css +8 -2
  60. package/styles/uploader/_bootstrap5-definition.scss +12 -12
  61. package/styles/uploader/_fluent-definition.scss +10 -10
  62. package/styles/uploader/_layout.scss +7 -2
  63. package/styles/uploader/_tailwind-definition.scss +10 -10
  64. package/styles/uploader/_theme.scss +13 -3
  65. package/styles/uploader/bootstrap5-dark.css +4 -4
  66. package/styles/uploader/bootstrap5.css +4 -4
  67. package/styles/uploader/material-dark.css +0 -4
  68. package/styles/uploader/tailwind-dark.css +1 -1
  69. package/styles/uploader/tailwind.css +1 -1
  70. package/styles/color-picker/_material3-definition.scss +0 -133
  71. package/styles/input/_material3-definition.scss +0 -336
  72. package/styles/maskedtextbox/_material3-definition.scss +0 -7
  73. package/styles/numerictextbox/_material3-definition.scss +0 -3
  74. package/styles/rating/_material3-definition.scss +0 -46
  75. package/styles/signature/_material3-definition.scss +0 -3
  76. package/styles/slider/_material3-definition.scss +0 -90
  77. package/styles/textbox/_material3-definition.scss +0 -1
  78. package/styles/uploader/_material3-definition.scss +0 -216
@@ -152,27 +152,27 @@
152
152
  }
153
153
 
154
154
  .e-input#{$css}:focus {
155
- @if $input-skin-name == 'material' {
155
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
156
156
  padding-bottom: $input-focus-padding-bottom;
157
157
  }
158
158
  }
159
159
 
160
160
  .e-input.e-small#{$css}:focus {
161
- @if $input-skin-name == 'material' {
161
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
162
162
  padding-bottom: $input-focus-small-padding-bottom;
163
163
  }
164
164
  }
165
165
 
166
166
  .e-input.e-bigger#{$css}:focus,
167
167
  .e-bigger .e-input#{$css}:focus {
168
- @if $input-skin-name == 'material' {
168
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
169
169
  padding-bottom: $input-focus-bigger-padding-bottom;
170
170
  }
171
171
  }
172
172
 
173
173
  .e-input.e-small.e-bigger#{$css}:focus,
174
174
  .e-bigger .e-input.e-small#{$css}:focus {
175
- @if $input-skin-name == 'material' {
175
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
176
176
  padding-bottom: $input-focus-bigger-small-padding-bottom;
177
177
  }
178
178
  }
@@ -473,7 +473,7 @@
473
473
  .e-float-input.e-input-group.e-float-icon-left > .e-input-group-icon,
474
474
  .e-input-group.e-control-wrapper.e-float-icon-left > .e-input-group-icon,
475
475
  .e-float-input.e-input-group.e-control-wrapper.e-float-icon-left > .e-input-group-icon {
476
- @if $input-skin-name == 'material' {
476
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
477
477
  font-size: $input-left-icon-font-size;
478
478
  margin: $zero-value;
479
479
  min-height: $input-left-child-min-height;
@@ -514,7 +514,7 @@
514
514
  .e-float-input.e-input-group.e-control-wrapper.e-bigger.e-float-icon-left > .e-input-group-icon,
515
515
  .e-float-input.e-input-group.e-control-wrapper.e-float-icon-left > .e-input-group-icon.e-bigger,
516
516
  .e-bigger .e-float-input.e-input-group.e-control-wrapper.e-float-icon-left > .e-input-group-icon {
517
- @if $input-skin-name == 'material' {
517
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
518
518
  font-size: $input-bigger-left-icon-font-size;
519
519
  margin: $zero-value;
520
520
  min-height: $input-bigger-left-child-min-height;
@@ -535,7 +535,7 @@
535
535
  .e-float-input.e-control-wrapper.e-input-group.e-small.e-float-icon-left > .e-input-group-icon,
536
536
  .e-float-input.e-control-wrapper.e-input-group.e-float-icon-left > .e-input-group-icon.e-small,
537
537
  .e-small .e-float-input.e-control-wrapper.e-input-group.e-float-icon-left > .e-input-group-icon {
538
- @if $input-skin-name == 'material' {
538
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
539
539
  font-size: $input-small-left-icon-font-size;
540
540
  margin: $zero-value;
541
541
  min-height: $input-small-left-child-min-height;
@@ -556,7 +556,7 @@
556
556
  .e-float-input.e-control-wrapper.e-input-group.e-small.e-bigger.e-float-icon-left > .e-input-group-icon,
557
557
  .e-float-input.e-control-wrapper.e-input-group.e-small.e-float-icon-left > .e-input-group-icon.e-bigger,
558
558
  .e-bigger .e-input-group.e-control-wrapper.e-float-input.e-small.e-float-icon-left > .e-input-group-icon {
559
- @if $input-skin-name == 'material' {
559
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
560
560
  font-size: $input-bigger-small-left-icon-font-size;
561
561
  margin: $zero-value;
562
562
  min-height: $input-bigger-small-left-child-min-height;
@@ -567,14 +567,14 @@
567
567
 
568
568
  .e-input-group.e-float-icon-left:not(.e-disabled) > .e-input-group-icon:active,
569
569
  .e-input-group.e-control-wrapper.e-float-icon-left:not(.e-disabled) > .e-input-group-icon:active {
570
- @if $input-skin-name == 'material' {
570
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
571
571
  background: transparent;
572
572
  }
573
573
  }
574
574
 
575
575
  .e-input-group.e-float-icon-left > .e-input-group-icon,
576
576
  .e-input-group.e-control-wrapper.e-float-icon-left > .e-input-group-icon {
577
- @if $input-skin-name == 'material' {
577
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
578
578
  cursor: auto;
579
579
  }
580
580
  }
@@ -616,7 +616,7 @@
616
616
  .e-float-input input.e-disabled,
617
617
  .e-float-input.e-control-wrapper input[disabled],
618
618
  .e-float-input.e-control-wrapper input.e-disabled {
619
- @if $input-skin-name != 'material' {
619
+ @if $input-skin-name != 'material' and $input-skin-name != 'Material3' {
620
620
  border-color: $input-disable-border-color;
621
621
  border-style: $input-disable-border-type;
622
622
  }
@@ -624,7 +624,7 @@
624
624
 
625
625
  .e-input-group.e-disabled,
626
626
  .e-input-group.e-control-wrapper.e-disabled {
627
- @if $input-skin-name != 'material' {
627
+ @if $input-skin-name != 'material' and $input-skin-name != 'Material3' {
628
628
  border-bottom-style: $input-disable-border-type;
629
629
  border-width: $input-disable-group-border-width;
630
630
  }
@@ -1038,7 +1038,7 @@
1038
1038
  .e-float-input.e-control-wrapper.e-bigger:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1039
1039
  .e-bigger .e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
1040
1040
  font-size: $float-placeholder-bigger-font-size;
1041
- @if $input-skin-name == 'material' {
1041
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1042
1042
  top: -8px;
1043
1043
  }
1044
1044
  }
@@ -1050,7 +1050,7 @@
1050
1050
  .e-float-input.e-control-wrapper.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1051
1051
  .e-small .e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
1052
1052
  font-size: $float-placeholder-small-font-size;
1053
- @if $input-skin-name == 'material' {
1053
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1054
1054
  top: -11px;
1055
1055
  }
1056
1056
  }
@@ -1070,7 +1070,7 @@
1070
1070
  .e-bigger.e-small .e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1071
1071
  .e-float-input.e-control-wrapper.e-bigger.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
1072
1072
  font-size: $float-placeholder-bigger-small-font-size;
1073
- @if $input-skin-name == 'material' {
1073
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1074
1074
  top: -9px;
1075
1075
  }
1076
1076
  font-style: $input-font-style;
@@ -1080,7 +1080,7 @@
1080
1080
  .e-float-input:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1081
1081
  .e-float-input.e-control-wrapper .e-input-in-wrap label.e-float-text,
1082
1082
  .e-float-input.e-control-wrapper:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
1083
- @if $input-skin-name == 'material' {
1083
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1084
1084
  top: -11px;
1085
1085
  }
1086
1086
  }
@@ -1097,7 +1097,7 @@
1097
1097
  .e-bigger.e-float-input.e-control-wrapper .e-input-in-wrap label.e-float-text,
1098
1098
  .e-float-input.e-control-wrapper.e-bigger:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1099
1099
  .e-bigger.e-float-input.e-control-wrapper:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
1100
- @if $input-skin-name == 'material' {
1100
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1101
1101
  top: -8px;
1102
1102
  }
1103
1103
  }
@@ -1110,7 +1110,7 @@
1110
1110
  .e-small .e-float-input.e-control-wrapper .e-input-in-wrap label.e-float-text,
1111
1111
  .e-float-input.e-control-wrapper.e-small:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1112
1112
  .e-small .e-float-input.e-control-wrapper:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
1113
- @if $input-skin-name == 'material' {
1113
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1114
1114
  top: -10px;
1115
1115
  }
1116
1116
  }
@@ -1127,7 +1127,7 @@
1127
1127
  .e-small .e-float-input.e-control-wrapper.e-bigger:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1128
1128
  .e-float-input.e-control-wrapper.e-bigger.e-small:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1129
1129
  .e-bigger.e-small .e-float-input.e-control-wrapper:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
1130
- @if $input-skin-name == 'material' {
1130
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1131
1131
  top: -10px;
1132
1132
  }
1133
1133
  }
@@ -1147,7 +1147,7 @@
1147
1147
  .e-float-input.e-control-wrapper.e-input-focus input ~ label.e-float-text,
1148
1148
  .e-float-input.e-input-focus input ~ label.e-float-text {
1149
1149
  font-size: $float-label-font-size;
1150
- @if $input-skin-name == 'material' {
1150
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1151
1151
  top: -9px;
1152
1152
  transform: translate3d(0, -6px, 0) scale(.92);
1153
1153
  }
@@ -1206,7 +1206,7 @@
1206
1206
  .e-float-input.e-control-wrapper.e-bigger.e-input-focus input ~ label.e-float-text,
1207
1207
  .e-bigger .e-float-input.e-control-wrapper.e-input-focus input ~ label.e-float-text {
1208
1208
  font-size: $float-label-font-size;
1209
- @if $input-skin-name == 'material' {
1209
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1210
1210
  top: -9px;
1211
1211
  transform: translate3d(0, -6px, 0) scale(.92);
1212
1212
  }
@@ -1265,7 +1265,7 @@
1265
1265
  .e-bigger .e-float-input.e-input-focus input ~ label.e-float-text,
1266
1266
  .e-float-input.e-control-wrapper.e-bigger.e-input-focus input ~ label.e-float-text,
1267
1267
  .e-bigger .e-float-input.e-control-wrapper.e-input-focus input ~ label.e-float-text {
1268
- @if $input-skin-name == 'material' {
1268
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1269
1269
  transform: translate3d(0, -6px, 0) scale(.86);
1270
1270
  }
1271
1271
  @else if $input-skin-name == 'fabric' or $input-skin-name == 'highcontrast' {
@@ -1341,7 +1341,7 @@
1341
1341
  .e-float-input.e-control-wrapper.e-bigger.e-small.e-input-focus input ~ label.e-float-text,
1342
1342
  .e-bigger .e-float-input.e-control-wrapper.e-small.e-input-focus input ~ label.e-float-text,
1343
1343
  .e-small .e-float-input.e-control-wrapper.e-bigger.e-input-focus input ~ label.e-float-text {
1344
- @if $input-skin-name == 'material' {
1344
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1345
1345
  transform: translate3d(0, -6px, 0) scale(.92);
1346
1346
  }
1347
1347
  @else if $input-skin-name == 'fabric' or $input-skin-name == 'highcontrast' {
@@ -1383,7 +1383,7 @@
1383
1383
  .e-float-input.e-control-wrapper .e-input-in-wrap input[readonly] ~ label.e-label-top.e-float-text,
1384
1384
  .e-float-input.e-control-wrapper .e-input-in-wrap input[disabled] ~ label.e-label-top.e-float-text,
1385
1385
  .e-float-input.e-control-wrapper .e-input-in-wrap input label.e-float-text.e-label-top {
1386
- @if $input-skin-name == 'material' {
1386
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1387
1387
  top: -9px;
1388
1388
  }
1389
1389
  }
@@ -1413,7 +1413,7 @@
1413
1413
  .e-float-input.e-control-wrapper.e-bigger.e-input-focus input ~ label.e-float-text,
1414
1414
  .e-bigger .e-float-input.e-control-wrapper.e-input-focus input ~ label.e-float-text {
1415
1415
  font-size: $float-label-bigger-font-size;
1416
- @if $input-skin-name == 'material' {
1416
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1417
1417
  top: -9px;
1418
1418
  }
1419
1419
  @else if $input-skin-name == 'fabric' or $input-skin-name == 'FluentUI' or $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'highcontrast' or $input-skin-name == 'tailwind' {
@@ -1442,7 +1442,7 @@
1442
1442
  .e-bigger .e-float-input.e-control-wrapper .e-input-in-wrap input ~ label.e-label-top.e-float-text,
1443
1443
  .e-bigger .e-float-input.e-control-wrapper .e-input-in-wrap input[readonly] ~ label.e-label-top.e-float-text,
1444
1444
  .e-bigger .e-float-input.e-control-wrapper .e-input-in-wrap input[disabled] ~ label.e-label-top.e-float-text {
1445
- @if $input-skin-name == 'material' {
1445
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1446
1446
  top: -9px;
1447
1447
  }
1448
1448
  }
@@ -1462,7 +1462,7 @@
1462
1462
  .e-float-input.e-small.e-input-focus input-group-animation ~ label.e-float-text,
1463
1463
  .e-float-input.e-control-wrapper.e-small.e-input-focus input ~ label.e-float-text {
1464
1464
  font-size: $float-label-small-font-size;
1465
- @if $input-skin-name == 'material' {
1465
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1466
1466
  top: -8px;
1467
1467
  }
1468
1468
  @else if $input-skin-name == 'fabric' or $input-skin-name == 'FluentUI' or $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'highcontrast' or $input-skin-name == 'tailwind' {
@@ -1483,7 +1483,7 @@
1483
1483
  .e-small .e-float-input.e-control-wrapper .e-input-in-wrap input ~ label.e-label-top.e-float-text,
1484
1484
  .e-float-input.e-control-wrapper.e-small .e-input-in-wrap input[readonly] ~ label.e-label-top.e-float-text,
1485
1485
  .e-float-input.e-control-wrapper.e-small .e-input-in-wrap input[disabled] ~ label.e-label-top.e-float-text {
1486
- @if $input-skin-name == 'material' {
1486
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1487
1487
  top: -8px;
1488
1488
  }
1489
1489
  }
@@ -1518,7 +1518,7 @@
1518
1518
  .e-float-input.e-control-wrapper.e-small.e-bigger.e-input-focus input ~ label.e-float-text,
1519
1519
  .e-bigger .e-float-input.e-control-wrapper.e-small.e-input-focus input ~ label.e-float-text {
1520
1520
  font-size: $float-label-bigger-small-font-size;
1521
- @if $input-skin-name == 'material' {
1521
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1522
1522
  top: -7px;
1523
1523
  }
1524
1524
  @else if $input-skin-name == 'fabric' or $input-skin-name == 'FluentUI' or $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'highcontrast' or $input-skin-name == 'tailwind' {
@@ -1547,7 +1547,7 @@
1547
1547
  .e-bigger .e-float-input.e-control-wrapper.e-small .e-input-in-wrap input ~ label.e-label-top.e-float-text,
1548
1548
  .e-bigger .e-float-input.e-control-wrapper.e-small .e-input-in-wrap input[readonly] ~ label.e-float-text,
1549
1549
  .e-bigger .e-float-input.e-control-wrapper.e-small .e-input-in-wrap input[disabled] ~ label.e-float-text {
1550
- @if $input-skin-name == 'material' {
1550
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1551
1551
  top: -10px;
1552
1552
  }
1553
1553
  }
@@ -2123,7 +2123,7 @@
2123
2123
  .e-input-group.e-control-wrapper:not(.e-float-icon-left):not(.e-float-input)::after,
2124
2124
  .e-input-group.e-control-wrapper.e-float-icon-left:not(.e-float-input) .e-input-in-wrap::before,
2125
2125
  .e-input-group.e-control-wrapper.e-float-icon-left:not(.e-float-input) .e-input-in-wrap::after {
2126
- @if $input-skin-name == 'material' {
2126
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2127
2127
  @include input-group-animation;
2128
2128
  }
2129
2129
  }
@@ -2136,7 +2136,7 @@
2136
2136
  .e-float-input.e-control-wrapper.e-input-group:not(.e-float-icon-left) .e-float-line::after,
2137
2137
  .e-float-input.e-control-wrapper.e-input-group.e-float-icon-left .e-input-in-wrap .e-float-line::before,
2138
2138
  .e-float-input.e-control-wrapper.e-input-group.e-float-icon-left .e-input-in-wrap .e-float-line::after {
2139
- @if $input-skin-name == 'material' {
2139
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2140
2140
  @include input-group-animation;
2141
2141
  }
2142
2142
  }
@@ -2145,7 +2145,7 @@
2145
2145
  .e-input-group::after,
2146
2146
  .e-input-group.e-control-wrapper::before,
2147
2147
  .e-input-group.e-control-wrapper::after {
2148
- @if $input-skin-name != 'material' {
2148
+ @if $input-skin-name != 'material' and $input-skin-name != 'Material3' {
2149
2149
  @include input-group-animation;
2150
2150
  }
2151
2151
  }
@@ -2154,7 +2154,7 @@
2154
2154
  .e-input-group.e-float-icon-left .e-input-in-wrap:not(.e-float-input)::before,
2155
2155
  .e-input-group.e-control-wrapper:not(.e-float-icon-left):not(.e-float-input)::before,
2156
2156
  .e-input-group.e-control-wrapper.e-float-icon-left .e-input-in-wrap:not(.e-float-input)::before {
2157
- @if $input-skin-name == 'material' {
2157
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2158
2158
  @include input-group-animation-left;
2159
2159
  }
2160
2160
  }
@@ -2163,14 +2163,14 @@
2163
2163
  .e-float-input.e-input-group.e-float-icon-left .e-input-in-wrap .e-float-line::before,
2164
2164
  .e-float-input.e-control-wrapper.e-input-group:not(.e-float-icon-left) .e-float-line::before,
2165
2165
  .e-float-input.e-control-wrapper.e-input-group.e-float-icon-left .e-input-in-wrap .e-float-line::before {
2166
- @if $input-skin-name == 'material' {
2166
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2167
2167
  @include input-group-animation-left;
2168
2168
  }
2169
2169
  }
2170
2170
 
2171
2171
  .e-input-group::before,
2172
2172
  .e-input-group.e-control-wrapper::before {
2173
- @if $input-skin-name != 'material' {
2173
+ @if $input-skin-name != 'material' and $input-skin-name != 'Material3' {
2174
2174
  @include input-group-animation-left;
2175
2175
  }
2176
2176
  }
@@ -2183,7 +2183,7 @@
2183
2183
  .e-input-group.e-control-wrapper:not(.e-float-icon-left):not(.e-float-input).e-input-focus::after,
2184
2184
  .e-input-group.e-control-wrapper.e-float-icon-left:not(.e-float-input).e-input-focus .e-input-in-wrap::before,
2185
2185
  .e-input-group.e-control-wrapper.e-float-icon-left:not(.e-float-input).e-input-focus .e-input-in-wrap::after {
2186
- @if $input-skin-name == 'material' {
2186
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2187
2187
  @include input-group-animation-width;
2188
2188
  }
2189
2189
  }
@@ -2196,7 +2196,7 @@
2196
2196
  .e-float-input.e-control-wrapper.e-input-group:not(.e-float-icon-left).e-input-focus .e-float-line::after,
2197
2197
  .e-float-input.e-control-wrapper.e-input-group.e-float-icon-left.e-input-focus .e-input-in-wrap .e-float-line::before,
2198
2198
  .e-float-input.e-control-wrapper.e-input-group.e-float-icon-left.e-input-focus .e-input-in-wrap .e-float-line::after {
2199
- @if $input-skin-name == 'material' {
2199
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2200
2200
  @include input-group-animation-width;
2201
2201
  }
2202
2202
  }
@@ -2205,7 +2205,7 @@
2205
2205
  .e-input-group.e-input-focus::after,
2206
2206
  .e-input-group.e-control-wrapper.e-input-focus::before,
2207
2207
  .e-input-group.e-control-wrapper.e-input-focus::after {
2208
- @if $input-skin-name != 'material' {
2208
+ @if $input-skin-name != 'material' and $input-skin-name != 'Material3' {
2209
2209
  @include input-group-animation-width;
2210
2210
  }
2211
2211
  }
@@ -2214,7 +2214,7 @@
2214
2214
  .e-input-group.e-float-icon-left:not(.e-float-input) .e-input-in-wrap::after,
2215
2215
  .e-input-group.e-control-wrapper:not(.e-float-icon-left):not(.e-float-input)::after,
2216
2216
  .e-input-group.e-control-wrapper.e-float-icon-left:not(.e-float-input) .e-input-in-wrap::after {
2217
- @if $input-skin-name == 'material' {
2217
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2218
2218
  @include input-group-animation-right;
2219
2219
  }
2220
2220
  }
@@ -2223,14 +2223,14 @@
2223
2223
  .e-float-input.e-input-group.e-float-icon-left .e-input-in-wrap .e-float-line::after,
2224
2224
  .e-float-input.e-control-wrapper.e-input-group:not(.e-float-icon-left) .e-float-line::after,
2225
2225
  .e-float-input.e-control-wrapper.e-input-group.e-float-icon-left .e-input-in-wrap .e-float-line::after {
2226
- @if $input-skin-name == 'material' {
2226
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2227
2227
  @include input-group-animation-right;
2228
2228
  }
2229
2229
  }
2230
2230
 
2231
2231
  .e-input-group::after,
2232
2232
  .e-input-group.e-control-wrapper::after {
2233
- @if $input-skin-name != 'material' {
2233
+ @if $input-skin-name != 'material' and $input-skin-name != 'Material3' {
2234
2234
  @include input-group-animation-right;
2235
2235
  }
2236
2236
  }
@@ -2356,7 +2356,7 @@
2356
2356
 
2357
2357
  .e-input-group.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
2358
2358
  .e-input-group.e-control-wrapper.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error) {
2359
- @if $input-skin-name == 'material' {
2359
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2360
2360
  border-style: $input-group-border-type-focus;
2361
2361
  border-width: $input-group-border-width-focus;
2362
2362
  }
@@ -2388,7 +2388,7 @@
2388
2388
  .e-float-input.e-control-wrapper.e-input-focus:not(.e-input-group):not(.e-float-icon-left):not(.e-success).e-warning:not(.e-error) input,
2389
2389
  .e-float-input.e-control-wrapper.e-input-focus:not(.e-input-group):not(.e-float-icon-left):not(.e-success):not(.e-warning).e-error input,
2390
2390
  .e-input-group.e-control-wrapper.e-float-icon-left.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input-in-wrap {
2391
- @if $input-skin-name == 'material' {
2391
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2392
2392
  border-style: $input-group-border-type-focus;
2393
2393
  border-width: $input-group-border-width-focus;
2394
2394
  }
@@ -2396,14 +2396,14 @@
2396
2396
 
2397
2397
  .e-input-group,
2398
2398
  .e-input-group.e-control-wrapper {
2399
- @if $input-skin-name != 'material' {
2399
+ @if $input-skin-name != 'material' and $input-skin-name != 'Material3' {
2400
2400
  border-bottom: $input-group-border;
2401
2401
  }
2402
2402
  }
2403
2403
 
2404
2404
  .e-input-group:not(.e-float-icon-left),
2405
2405
  .e-input-group.e-control-wrapper:not(.e-float-icon-left) {
2406
- @if $input-skin-name == 'material' {
2406
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2407
2407
  border-bottom: $input-group-border;
2408
2408
  }
2409
2409
  }
@@ -2416,7 +2416,7 @@
2416
2416
  .e-input-group.e-control-wrapper.e-success:not(.e-float-icon-left),
2417
2417
  .e-input-group.e-control-wrapper.e-warning:not(.e-float-icon-left),
2418
2418
  .e-input-group.e-control-wrapper.e-error:not(.e-float-icon-left) {
2419
- @if $input-skin-name == 'material' {
2419
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2420
2420
  border: $input-group-full-border;
2421
2421
  border-width: $input-group-full-border-width;
2422
2422
  }
@@ -2430,7 +2430,7 @@
2430
2430
  .e-input-group.e-control-wrapper.e-success,
2431
2431
  .e-input-group.e-control-wrapper.e-warning,
2432
2432
  .e-input-group.e-control-wrapper.e-error {
2433
- @if $input-skin-name != 'material' {
2433
+ @if $input-skin-name != 'material' and $input-skin-name != 'Material3' {
2434
2434
  border: $input-group-full-border;
2435
2435
  border-width: $input-group-full-border-width;
2436
2436
  }
@@ -2452,7 +2452,7 @@
2452
2452
  .e-input-group.e-control-wrapper.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error).e-disabled .e-input-in-wrap {
2453
2453
  background: $input-disable-bg-color;
2454
2454
  color: $input-disable-font-color;
2455
- @if $input-skin-name == 'material' {
2455
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2456
2456
  background-image: linear-gradient(90deg, $input-disable-border-color 0, $input-disable-border-color 33%, transparent 0);
2457
2457
  background-position: bottom -1px left 0;
2458
2458
  background-repeat: repeat-x;
@@ -2464,7 +2464,7 @@
2464
2464
 
2465
2465
  .e-input-group:not(.e-success):not(.e-warning):not(.e-error).e-disabled,
2466
2466
  .e-input-group.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error).e-disabled {
2467
- @if $input-skin-name != 'material' {
2467
+ @if $input-skin-name != 'material' and $input-skin-name != 'Material3' {
2468
2468
  border-style: $input-disable-border-type;
2469
2469
  }
2470
2470
  }
@@ -2770,7 +2770,7 @@
2770
2770
  .e-control.e-input-group.e-control-wrapper input.e-input,
2771
2771
  .e-control.e-float-input input,
2772
2772
  .e-control.e-float-input.e-control-wrapper input {
2773
- @if $input-skin-name == 'material' {
2773
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2774
2774
  @include input-sizing;
2775
2775
  }
2776
2776
  }
@@ -3944,7 +3944,7 @@
3944
3944
  .e-input-group.e-control-wrapper .e-input-in-wrap,
3945
3945
  .e-float-input .e-input-in-wrap,
3946
3946
  .e-float-input.e-control-wrapper .e-input-in-wrap {
3947
- @if $input-skin-name == 'material' {
3947
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3948
3948
  display: flex;
3949
3949
  position: relative;
3950
3950
  width: 100%;
@@ -3955,7 +3955,7 @@
3955
3955
  .e-float-input.e-control-wrapper.e-float-icon-left .e-input-in-wrap,
3956
3956
  .e-input-group.e-float-icon-left .e-input-in-wrap,
3957
3957
  .e-input-group.e-control-wrapper.e-float-icon-left .e-input-in-wrap {
3958
- @if $input-skin-name == 'material' {
3958
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3959
3959
  border: $input-group-full-border;
3960
3960
  border-width: $input-group-full-border-width;
3961
3961
  margin-left: $input-inner-wrap-margin-left;
@@ -3969,7 +3969,7 @@
3969
3969
  .e-float-input.e-float-icon-left.e-rtl .e-input-in-wrap,
3970
3970
  .e-input-group.e-float-icon-left.e-rtl .e-input-in-wrap,
3971
3971
  .e-input-group.e-control-wrapper.e-float-icon-left.e-rtl .e-input-in-wrap {
3972
- @if $input-skin-name == 'material' {
3972
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3973
3973
  margin-left: $zero-value;
3974
3974
  margin-right: $input-inner-wrap-margin-left;
3975
3975
  }
@@ -3989,7 +3989,7 @@
3989
3989
  .e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3990
3990
  .e-float-input.e-control-wrapper label.e-float-text.e-label-bottom,
3991
3991
  .e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
3992
- @if $input-skin-name == 'material' {
3992
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3993
3993
  transform: translate3d(0, 16px, 0) scale(1);
3994
3994
  }
3995
3995
  }
@@ -4009,7 +4009,7 @@
4009
4009
  .e-float-input.e-control-wrapper textarea[disabled] ~ label.e-label-top.e-float-text,
4010
4010
  .e-float-input.e-control-wrapper textarea label.e-float-text.e-label-top {
4011
4011
  font-size: $float-label-font-size;
4012
- @if $input-skin-name == 'material' {
4012
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4013
4013
  top: -22px;
4014
4014
  transform: translate3d(0, 6px, 0) scale(.92);
4015
4015
  }
@@ -4053,7 +4053,7 @@
4053
4053
  .e-bigger .e-float-input.e-control-wrapper textarea:valid ~ label.e-float-text,
4054
4054
  .e-bigger .e-float-input.e-control-wrapper textarea ~ label.e-label-top.e-float-text {
4055
4055
  font-size: $float-label-bigger-font-size;
4056
- @if $input-skin-name == 'material' {
4056
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4057
4057
  top: -20px;
4058
4058
  }
4059
4059
  @else if $input-skin-name == 'fabric' or $input-skin-name == 'FluentUI' or $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'highcontrast' {
@@ -4073,7 +4073,7 @@
4073
4073
  .e-float-input.e-control-wrapper.e-small textarea ~ label.e-label-top.e-float-text,
4074
4074
  .e-small .e-float-input.e-control-wrapper textarea ~ label.e-label-top.e-float-text {
4075
4075
  font-size: $float-label-small-font-size;
4076
- @if $input-skin-name == 'material' {
4076
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4077
4077
  top: -21px;
4078
4078
  }
4079
4079
  @else if $input-skin-name == 'fabric' or $input-skin-name == 'FluentUI' or $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'highcontrast' or $input-skin-name == 'tailwind' {
@@ -4094,7 +4094,7 @@
4094
4094
  .e-bigger .e-float-input.e-control-wrapper.e-small textarea:valid ~ label.e-float-text,
4095
4095
  .e-bigger .e-float-input.e-control-wrapper.e-small textarea ~ label.e-label-top.e-float-text {
4096
4096
  font-size: $float-label-bigger-small-font-size;
4097
- @if $input-skin-name == 'material' {
4097
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4098
4098
  top: -20px;
4099
4099
  }
4100
4100
  @else if $input-skin-name == 'fabric' or $input-skin-name == 'FluentUI' or $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'highcontrast' {
@@ -4108,7 +4108,7 @@
4108
4108
  // Floating label on the top of the textarea
4109
4109
  .e-float-input textarea ~ .e-float-text,
4110
4110
  .e-float-input.e-control-wrapper textarea ~ .e-float-text {
4111
- @if $input-skin-name == 'material' {
4111
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4112
4112
  top: -11px;
4113
4113
  }
4114
4114
  @else if $input-skin-name == 'fabric' or $input-skin-name == 'FluentUI' or $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'highcontrast' {
@@ -4124,7 +4124,7 @@
4124
4124
  .e-float-input.e-control-wrapper.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4125
4125
  .e-small .e-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
4126
4126
  font-size: $float-placeholder-small-font-size;
4127
- @if $input-skin-name == 'material' {
4127
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4128
4128
  top: -11px;
4129
4129
  }
4130
4130
  }
@@ -4142,7 +4142,7 @@
4142
4142
  .e-float-input.e-control-wrapper.e-bigger textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4143
4143
  .e-bigger .e-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
4144
4144
  font-size: $float-placeholder-bigger-font-size;
4145
- @if $input-skin-name == 'material' {
4145
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4146
4146
  top: -8px;
4147
4147
  }
4148
4148
  @else if $input-skin-name == 'fabric' or $input-skin-name == 'FluentUI' or $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'highcontrast' {
@@ -4162,7 +4162,7 @@
4162
4162
  .e-float-input.e-control-wrapper textarea.e-small ~ label.e-float-text,
4163
4163
  .e-small .e-float-input.e-control-wrapper textarea ~ label.e-float-text {
4164
4164
  font-size: $float-placeholder-small-font-size;
4165
- @if $input-skin-name == 'material' {
4165
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4166
4166
  top: -11px;
4167
4167
  }
4168
4168
  @else if $input-skin-name == 'fabric' or $input-skin-name == 'FluentUI' or $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'highcontrast' or $input-skin-name == 'tailwind' {
@@ -4186,7 +4186,7 @@
4186
4186
  .e-bigger .e-float-input.e-control-wrapper.e-input-group input,
4187
4187
  .e-float-input.e-control-wrapper.e-input-group.e-bigger input,
4188
4188
  .e-bigger .e-float-input.e-control-wrapper.e-input-group input {
4189
- @if $input-skin-name == 'material' {
4189
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4190
4190
  min-height: 27px;
4191
4191
  }
4192
4192
  }
@@ -4207,7 +4207,7 @@
4207
4207
  .e-small .e-float-input.e-control-wrapper.e-input-group input,
4208
4208
  .e-float-input.e-control-wrapper.e-input-group.e-small input,
4209
4209
  .e-small .e-float-input.e-control-wrapper.e-input-group input {
4210
- @if $input-skin-name == 'material' {
4210
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4211
4211
  min-height: 18px;
4212
4212
  }
4213
4213
  }
@@ -4231,7 +4231,7 @@
4231
4231
  .e-float-input.e-control-wrapper.e-input-group.e-bigger.e-small input,
4232
4232
  .e-bigger .e-float-input.e-control-wrapper.e-input-group.e-small input,
4233
4233
  .e-small .e-float-input.e-control-wrapper.e-input-group.e-bigger input {
4234
- @if $input-skin-name == 'material' {
4234
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4235
4235
  min-height: 22px;
4236
4236
  }
4237
4237
  }
@@ -4242,7 +4242,7 @@
4242
4242
  .e-float-input.e-input-group.e-control-wrapper input,
4243
4243
  .e-float-input input,
4244
4244
  .e-float-input.e-control-wrapper input {
4245
- @if $input-skin-name == 'material' {
4245
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4246
4246
  min-height: 22px;
4247
4247
  }
4248
4248
  }
@@ -4259,7 +4259,7 @@
4259
4259
  .e-float-input.e-control-wrapper:hover:not(.e-input-group):not(.e-disabled) textarea:not([disabled]),
4260
4260
  .e-float-input.e-control-wrapper:hover:not(.e-input-group):not(.e-disabled) input:not([disabled]),
4261
4261
  .e-float-input.e-control-wrapper:hover:not(.e-input-group):not(.e-disabled) textarea:not([disabled]) {
4262
- @if $input-skin-name == 'material' {
4262
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4263
4263
  border-bottom-width: $input-group-border-width-hover;
4264
4264
  }
4265
4265
  }
@@ -4276,7 +4276,7 @@
4276
4276
  .e-float-input.e-control-wrapper:hover:not(.e-input-group):not(.e-disabled) textarea:not([disabled]),
4277
4277
  .e-float-input.e-control-wrapper:hover:not(.e-input-group):not(.e-disabled) input:not([disabled]),
4278
4278
  .e-float-input.e-control-wrapper:hover:not(.e-input-group):not(.e-disabled) textarea:not([disabled]) {
4279
- @if $input-skin-name != 'material' {
4279
+ @if $input-skin-name != 'material' and $input-skin-name != 'Material3' {
4280
4280
  border-bottom-width: $input-group-border-width-hover;
4281
4281
  }
4282
4282
  }
@@ -4285,7 +4285,7 @@
4285
4285
  .e-input-group.e-control-wrapper.e-float-icon-left:not(.e-disabled):not(.e-input-focus) .e-input-in-wrap:hover,
4286
4286
  .e-float-input.e-float-icon-left:not(.e-disabled):not(.e-input-focus) .e-input-in-wrap:hover,
4287
4287
  .e-float-input.e-control-wrapper.e-float-icon-left:not(.e-disabled):not(.e-input-focus) .e-input-in-wrap:hover {
4288
- @if $input-skin-name == 'material' {
4288
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4289
4289
  border-bottom-width: $input-group-border-width-hover;
4290
4290
  }
4291
4291
  }
@@ -4298,7 +4298,7 @@
4298
4298
  .e-input-group.e-control-wrapper:not(.e-disabled):not(.e-float-icon-left)::after,
4299
4299
  .e-input-group.e-control-wrapper.e-float-icon-left:not(.e-disabled) .e-input-in-wrap::before,
4300
4300
  .e-input-group.e-control-wrapper.e-float-icon-left:not(.e-disabled) .e-input-in-wrap::after {
4301
- @if $input-skin-name == 'material' {
4301
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4302
4302
  bottom: -2px;
4303
4303
  }
4304
4304
  }
@@ -4338,7 +4338,7 @@
4338
4338
  .e-input-group.e-float-icon-left.e-input-focus.e-success:not(.e-warning):not(.e-error) .e-input-in-wrap,
4339
4339
  .e-input-group.e-float-icon-left.e-input-focus.e-warning:not(.e-success):not(.e-error) .e-input-in-wrap,
4340
4340
  .e-input-group.e-float-icon-left.e-input-focus.e-error:not(.e-success):not(.e-warning) .e-input-in-wrap {
4341
- @if $input-skin-name == 'material' {
4341
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4342
4342
  border-style: $input-group-border-type-focus;
4343
4343
  border-width: $zero-value $zero-value 1px;
4344
4344
  }
@@ -4348,7 +4348,7 @@
4348
4348
  .e-float-input.e-control-wrapper.e-autofill:not(.e-outline) input:-webkit-autofill ~ label.e-float-text,
4349
4349
  .e-float-input.e-control-wrapper.e-autofill:not(.e-input-focus):not(.e-outline) input:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom {
4350
4350
  font-size: $float-label-font-size;
4351
- @if $input-skin-name == 'material' {
4351
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4352
4352
  top: -9px;
4353
4353
  transform: translate3d(0, -6px, 0) scale(.92);
4354
4354
  }
@@ -4378,7 +4378,7 @@
4378
4378
  .e-bigger .e-float-input.e-control-wrapper.e-autofill:not(.e-input-focus):not(.e-outline) input:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom,
4379
4379
  .e-bigger.e-float-input.e-control-wrapper.e-autofill:not(.e-input-focus):not(.e-outline) input:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom {
4380
4380
  font-size: $float-label-bigger-font-size;
4381
- @if $input-skin-name == 'material' {
4381
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4382
4382
  top: -8px;
4383
4383
  transform: translate3d(0, -6px, 0) scale(.86);
4384
4384
  }
@@ -4415,7 +4415,7 @@
4415
4415
  .e-small .e-float-input.e-control-wrapper.e-autofill:not(.e-input-focus):not(.e-outline) input:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom,
4416
4416
  .e-small.e-float-input.e-control-wrapper.e-autofill:not(.e-input-focus):not(.e-outline) input:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom {
4417
4417
  font-size: $float-label-small-font-size;
4418
- @if $input-skin-name == 'material' {
4418
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4419
4419
  top: -8px;
4420
4420
  transform: translate3d(0, -6px, 0) scale(.92);
4421
4421
  }
@@ -4452,7 +4452,7 @@
4452
4452
  .e-bigger .e-small.e-float-input.e-control-wrapper.e-autofill:not(.e-input-focus):not(.e-outline) input:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom,
4453
4453
  .e-small .e-bigger.e-float-input.e-control-wrapper.e-autofill:not(.e-input-focus):not(.e-outline) input:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom {
4454
4454
  font-size: $float-label-bigger-small-font-size;
4455
- @if $input-skin-name == 'material' {
4455
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4456
4456
  top: -10px;
4457
4457
  transform: translate3d(0, -6px, 0) scale(.92);
4458
4458
  }
@@ -4515,7 +4515,7 @@
4515
4515
  .e-bigger.e-small .e-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4516
4516
  .e-float-input.e-control-wrapper.e-bigger.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
4517
4517
  font-size: $float-placeholder-bigger-small-font-size;
4518
- @if $input-skin-name == 'material' {
4518
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4519
4519
  top: -10px;
4520
4520
  }
4521
4521
  font-style: $input-font-style;
@@ -4557,7 +4557,7 @@
4557
4557
  .e-small .e-float-input.e-control-wrapper.e-bigger textarea[readonly] ~ label.e-label-top.e-float-text,
4558
4558
  .e-small .e-float-input.e-control-wrapper.e-bigger textarea[disabled] ~ label.e-label-top.e-float-text,
4559
4559
  .e-small .e-float-input.e-control-wrapper.e-bigger textarea label.e-float-text.e-label-top {
4560
- @if $input-skin-name == 'material' {
4560
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4561
4561
  transform: translate3d(0, 6px, 0) scale(.92);
4562
4562
  }
4563
4563
  @else if $input-skin-name == 'fabric' or $input-skin-name == 'highcontrast' {
@@ -4578,7 +4578,7 @@
4578
4578
 
4579
4579
  .e-float-input textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4580
4580
  .e-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
4581
- @if $input-skin-name == 'material' {
4581
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4582
4582
  transform: translate3d(0, 16px, 0) scale(1);
4583
4583
  }
4584
4584
  @else if $input-skin-name == 'fabric' or $input-skin-name == 'FluentUI' or $input-skin-name == 'highcontrast' {
@@ -4663,7 +4663,7 @@
4663
4663
  .e-float-input.e-control-wrapper.e-autofill textarea:-webkit-autofill ~ label.e-float-text,
4664
4664
  .e-float-input.e-control-wrapper.e-autofill textarea:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom {
4665
4665
  font-size: $float-label-font-size;
4666
- @if $input-skin-name == 'material' {
4666
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4667
4667
  top: -9px;
4668
4668
  transform: translate3d(0, -6px, 0) scale(.92);
4669
4669
  }
@@ -4698,7 +4698,7 @@
4698
4698
  .e-small .e-float-input.e-control-wrapper.e-autofill textarea:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom,
4699
4699
  .e-small.e-float-input.e-control-wrapper.e-autofill textarea:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom {
4700
4700
  font-size: $float-label-small-font-size;
4701
- @if $input-skin-name == 'material' {
4701
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4702
4702
  top: -8px;
4703
4703
  transform: translate3d(0, -6px, 0) scale(.92);
4704
4704
  }
@@ -4735,7 +4735,7 @@
4735
4735
  .e-bigger .e-small.e-float-input.e-control-wrapper.e-autofill textarea:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom,
4736
4736
  .e-small .e-bigger.e-float-input.e-control-wrapper.e-autofill textarea:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom {
4737
4737
  font-size: $float-label-bigger-small-font-size;
4738
- @if $input-skin-name == 'material' {
4738
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4739
4739
  top: -10px;
4740
4740
  transform: translate3d(0, -6px, 0) scale(.92);
4741
4741
  }
@@ -4769,7 +4769,7 @@
4769
4769
  .e-bigger .e-float-input.e-control-wrapper.e-autofill textarea:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom,
4770
4770
  .e-bigger.e-float-input.e-control-wrapper.e-autofill textarea:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom {
4771
4771
  font-size: $float-label-bigger-font-size;
4772
- @if $input-skin-name == 'material' {
4772
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4773
4773
  top: -8px;
4774
4774
  transform: translate3d(0, -6px, 0) scale(.86);
4775
4775
  }
@@ -4819,7 +4819,7 @@
4819
4819
  .e-bigger .e-float-input.e-control-wrapper textarea[readonly] ~ label.e-label-top.e-float-text,
4820
4820
  .e-bigger .e-float-input.e-control-wrapper textarea[disabled] ~ label.e-label-top.e-float-text,
4821
4821
  .e-bigger .e-float-input.e-control-wrapper textarea label.e-float-text.e-label-top {
4822
- @if $input-skin-name == 'material' {
4822
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4823
4823
  transform: translate3d(0, 6px, 0) scale(.86);
4824
4824
  }
4825
4825
  @else if $input-skin-name == 'fabric' or $input-skin-name == 'highcontrast' {
@@ -4873,7 +4873,7 @@
4873
4873
  .e-small.e-bigger .e-float-input.e-control-wrapper textarea[readonly] ~ label.e-label-top.e-float-text,
4874
4874
  .e-small.e-bigger .e-float-input.e-control-wrapper textarea[disabled] ~ label.e-label-top.e-float-text,
4875
4875
  .e-small.e-bigger .e-float-input.e-control-wrapper textarea label.e-float-text.e-label-top {
4876
- @if $input-skin-name == 'material' {
4876
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4877
4877
  transform: translate3d(0, 6px, 0) scale(.86);
4878
4878
  }
4879
4879
  @else if $input-skin-name == 'fabric' or $input-skin-name == 'highcontrast' {
@@ -4927,7 +4927,7 @@
4927
4927
  .e-small .e-float-input.e-control-wrapper textarea[readonly] ~ label.e-label-top.e-float-text,
4928
4928
  .e-small .e-float-input.e-control-wrapper textarea[disabled] ~ label.e-label-top.e-float-text,
4929
4929
  .e-small .e-float-input.e-control-wrapper textarea label.e-float-text.e-label-top {
4930
- @if $input-skin-name == 'material' {
4930
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4931
4931
  transform: translate3d(0, 6px, 0) scale(.86);
4932
4932
  }
4933
4933
  @else if $input-skin-name == 'fabric' or $input-skin-name == 'highcontrast' {
@@ -4961,7 +4961,7 @@
4961
4961
  .e-float-input textarea.e-disabled,
4962
4962
  .e-float-input.e-control-wrapper textarea[disabled],
4963
4963
  .e-float-input.e-control-wrapper textarea.e-disabled {
4964
- @if $input-skin-name != 'material' {
4964
+ @if $input-skin-name != 'material' and $input-skin-name != 'Material3' {
4965
4965
  border-color: $input-disable-border-color;
4966
4966
  border-style: $input-disable-border-type;
4967
4967
  }
@@ -5173,14 +5173,14 @@
5173
5173
  textarea.e-input.e-small#{$css},
5174
5174
  .e-small input.e-input#{$css},
5175
5175
  .e-small textarea.e-input #{$css} {
5176
- @if $input-skin-name == 'material' {
5176
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5177
5177
  min-height: $input-smaller-min-height;
5178
5178
  }
5179
5179
  }
5180
5180
 
5181
5181
  input.e-input#{$css},
5182
5182
  textarea.e-input#{$css} {
5183
- @if $input-skin-name == 'material' {
5183
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5184
5184
  min-height: $input-min-height;
5185
5185
  }
5186
5186
  }
@@ -5189,7 +5189,7 @@
5189
5189
  .e-bigger textarea.e-input,
5190
5190
  input.e-input.e-bigger,
5191
5191
  textarea.e-input.e-bigger {
5192
- @if $input-skin-name == 'material' {
5192
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5193
5193
  min-height: $input-bigger-min-height;
5194
5194
  }
5195
5195
  }
@@ -5200,7 +5200,7 @@
5200
5200
  .e-small input.e-input.e-bigger,
5201
5201
  input.e-input.e-bigger.e-small,
5202
5202
  .e-small .e-bigger input.e-input {
5203
- @if $input-skin-name == 'material' {
5203
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5204
5204
  min-height: $input-bigger-smaller-min-height;
5205
5205
  }
5206
5206
  }
@@ -5216,13 +5216,13 @@
5216
5216
  .e-outline.e-float-input textarea,
5217
5217
  .e-outline.e-float-input.e-control-wrapper textarea.e-input,
5218
5218
  .e-outline.e-float-input.e-control-wrapper textarea {
5219
- @if $input-skin-name == 'material' {
5219
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5220
5220
  width: calc(100% - 1px);
5221
5221
  }
5222
5222
  }
5223
5223
 
5224
5224
  .e-outline.e-float-input.e-control-wrapper.e-numeric label.e-float-text.e-label-bottom span.e-float-text-content.e-float-text-overflow {
5225
- @if $input-skin-name == 'material' {
5225
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5226
5226
  width: calc(100% - 80px);
5227
5227
  }
5228
5228
  }
@@ -5232,7 +5232,7 @@
5232
5232
  .e-outline.e-float-input.e-control-wrapper label.e-float-text.e-label-bottom span.e-float-text-content.e-float-text-overflow,
5233
5233
  .e-outline.e-float-input.e-control-wrapper.e-static-clear label.e-float-text.e-label-top span.e-float-text-content.e-float-text-overflow,
5234
5234
  .e-outline.e-float-input.e-control-wrapper.e-numeric.e-static-clear label.e-float-text.e-label-top span.e-float-text-content.e-float-text-overflow {
5235
- @if $input-skin-name == 'material' {
5235
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5236
5236
  overflow: hidden;
5237
5237
  text-overflow: ellipsis;
5238
5238
  width: 100%;
@@ -5241,19 +5241,19 @@
5241
5241
 
5242
5242
  .e-outline.e-float-input.e-control-wrapper.e-static-clear label.e-float-text.e-label-bottom span.e-float-text-content.e-float-text-overflow,
5243
5243
  .e-outline.e-float-input.e-control-wrapper label.e-float-text.e-label-bottom span.e-float-text-content.e-float-text-overflow.e-icon {
5244
- @if $input-skin-name == 'material' {
5244
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5245
5245
  width: calc(100% - 45px);
5246
5246
  }
5247
5247
  }
5248
5248
 
5249
5249
  .e-outline.e-float-input.e-control-wrapper.e-static-clear label.e-float-text.e-label-bottom span.e-float-text-content.e-float-text-overflow.e-icon {
5250
- @if $input-skin-name == 'material' {
5250
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5251
5251
  width: calc(100% - 75px);
5252
5252
  }
5253
5253
  }
5254
5254
 
5255
5255
  .e-outline.e-float-input.e-control-wrapper.e-numeric.e-static-clear label.e-float-text.e-label-bottom span.e-float-text-content.e-float-text-overflow {
5256
- @if $input-skin-name == 'material' {
5256
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5257
5257
  width: calc(100% - 110px);
5258
5258
  }
5259
5259
  }
@@ -5266,7 +5266,7 @@
5266
5266
  .e-outline.e-float-input.e-control-wrapper.e-input-group:not(.e-float-icon-left).e-input-focus .e-float-line::after,
5267
5267
  .e-outline.e-float-input.e-control-wrapper.e-input-group.e-float-icon-left.e-input-focus .e-input-in-wrap .e-float-line::before,
5268
5268
  .e-outline.e-float-input.e-control-wrapper.e-input-group.e-float-icon-left.e-input-focus .e-input-in-wrap .e-float-line::after {
5269
- @if $input-skin-name == 'material' {
5269
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5270
5270
  width: 0%;
5271
5271
  }
5272
5272
  }
@@ -5284,7 +5284,7 @@
5284
5284
  .e-outline.e-input-group.e-control-wrapper.e-success:not(.e-float-icon-left),
5285
5285
  .e-outline.e-input-group.e-control-wrapper.e-warning:not(.e-float-icon-left),
5286
5286
  .e-outline.e-input-group.e-control-wrapper.e-error:not(.e-float-icon-left) {
5287
- @if $input-skin-name == 'material' {
5287
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5288
5288
  border: 1px solid $outline-border-color;
5289
5289
  border-radius: 4px;
5290
5290
  border-width: 1px;
@@ -5295,7 +5295,7 @@
5295
5295
 
5296
5296
  .e-outline.e-float-input,
5297
5297
  .e-outline.e-float-input.e-control-wrapper {
5298
- @if $input-skin-name == 'material' {
5298
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5299
5299
  margin-top: $zero-value;
5300
5300
  }
5301
5301
  }
@@ -5328,7 +5328,7 @@
5328
5328
  .e-outline.e-float-input.e-input-group.e-valid-input.e-warning:hover:not(.e-success):not(.e-error):not(.e-float-icon-left),
5329
5329
  .e-outline.e-float-input.e-control-wrapper.e-valid-input.e-warning:not(.e-success):not(.e-error):not(.e-float-icon-left),
5330
5330
  .e-outline.e-float-input.e-control-wrapper.e-valid-input.e-warning:hover:not(.e-success):not(.e-error):not(.e-float-icon-left) {
5331
- @if $input-skin-name == 'material' {
5331
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5332
5332
  border-top-color: transparent;
5333
5333
  }
5334
5334
  }
@@ -5338,7 +5338,7 @@
5338
5338
  .e-outline .e-input-group.e-control-wrapper,
5339
5339
  .e-outline.e-float-input,
5340
5340
  .e-outline.e-float-input.e-control-wrapper {
5341
- @if $input-skin-name == 'material' {
5341
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5342
5342
  font-size: $outline-input-font-size;
5343
5343
  }
5344
5344
  }
@@ -5355,7 +5355,7 @@
5355
5355
  .e-bigger .e-outline.e-input-group.e-disabled,
5356
5356
  .e-outline.e-input-group.e-control-wrapper.e-bigger.e-disabled,
5357
5357
  .e-bigger .e-outline.e-input-group.e-control-wrapper.e-disabled {
5358
- @if $input-skin-name == 'material' {
5358
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5359
5359
  font-size: $outline-bigger-input-font-size;
5360
5360
  }
5361
5361
  }
@@ -5366,7 +5366,7 @@
5366
5366
  .e-bigger .e-outline.e-input-group.e-disabled .e-input-group-icon,
5367
5367
  .e-outline.e-input-group.e-control-wrapper.e-bigger.e-disabled .e-input-group-icon,
5368
5368
  .e-bigger .e-outline.e-input-group.e-control-wrapper.e-disabled .e-input-group-icon {
5369
- @if $input-skin-name == 'material' {
5369
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5370
5370
  font-size: $outline-bigger-input-icon-font-size;
5371
5371
  }
5372
5372
  }
@@ -5398,7 +5398,7 @@
5398
5398
  .e-outline.e-input-group.e-float-icon-left.e-input-focus.e-success:not(.e-warning):not(.e-error),
5399
5399
  .e-outline.e-input-group.e-float-icon-left.e-input-focus.e-warning:not(.e-success):not(.e-error),
5400
5400
  .e-outline.e-input-group.e-float-icon-left.e-input-focus.e-error:not(.e-success):not(.e-warning) {
5401
- @if $input-skin-name == 'material' {
5401
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5402
5402
  border-width: $outline-active-input-border;
5403
5403
  }
5404
5404
  }
@@ -5420,7 +5420,7 @@
5420
5420
  .e-outline.e-float-input:not(.e-float-icon-left).e-input-focus input,
5421
5421
  .e-outline.e-input-group:not(.e-float-icon-left).e-input-focus input.e-input,
5422
5422
  .e-outline.e-input-group.e-control-wrapper:not(.e-float-icon-left).e-input-focus input.e-input {
5423
- @if $input-skin-name == 'material' {
5423
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5424
5424
  box-sizing: border-box;
5425
5425
  padding: $outline-input-padding-top $outline-input-padding-left $outline-input-padding-bottom;
5426
5426
  }
@@ -5437,7 +5437,7 @@
5437
5437
  .e-outline.e-float-input.e-control-wrapper textarea,
5438
5438
  .e-outline.e-input-group:not(.e-float-icon-left) textarea.e-input:focus,
5439
5439
  .e-outline.e-input-group.e-control-wrapper:not(.e-float-icon-left) textarea.e-input:focus {
5440
- @if $input-skin-name == 'material' {
5440
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5441
5441
  box-sizing: border-box;
5442
5442
  margin: $outline-textarea-margin-top;
5443
5443
  padding: $zero-value $outline-input-padding-left $outline-input-padding-left;
@@ -5450,7 +5450,7 @@
5450
5450
  .e-outline.e-float-input.e-input-group.e-control-wrapper input,
5451
5451
  .e-outline.e-float-input input,
5452
5452
  .e-outline.e-float-input.e-control-wrapper input {
5453
- @if $input-skin-name == 'material' {
5453
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5454
5454
  box-sizing: border-box;
5455
5455
  min-height: $outline-input-min-height;
5456
5456
  }
@@ -5468,7 +5468,7 @@
5468
5468
  .e-outline.e-float-input:not(.e-input-group) .e-float-line::after,
5469
5469
  .e-outline.e-float-input.e-control-wrapper:not(.e-input-group) .e-float-line::before,
5470
5470
  .e-outline.e-float-input.e-control-wrapper:not(.e-input-group) .e-float-line::after {
5471
- @if $input-skin-name == 'material' {
5471
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5472
5472
  content: none;
5473
5473
  }
5474
5474
  }
@@ -5491,7 +5491,7 @@
5491
5491
  .e-outline.e-float-input.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
5492
5492
  .e-outline.e-input-group.e-float-icon-left.e-input-focus:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
5493
5493
  .e-outline.e-input-group.e-control-wrapper.e-float-icon-left.e-input-focus:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) {
5494
- @if $input-skin-name == 'material' {
5494
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5495
5495
  border-color: $input-active-border-color;
5496
5496
  box-shadow: inset 1px 1px $input-active-border-color, inset -1px 0 $input-active-border-color, inset 0 -1px $input-active-border-color;
5497
5497
  }
@@ -5501,7 +5501,7 @@
5501
5501
  .e-outline.e-float-input.e-control-wrapper.e-float-icon-left .e-input-in-wrap,
5502
5502
  .e-outline.e-input-group.e-float-icon-left .e-input-in-wrap,
5503
5503
  .e-outline.e-input-group.e-control-wrapper.e-float-icon-left .e-input-in-wrap {
5504
- @if $input-skin-name == 'material' {
5504
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5505
5505
  border: $input-group-border-width;
5506
5506
  border-width: $input-group-border-width;
5507
5507
  margin-left: $zero-value;
@@ -5512,7 +5512,7 @@
5512
5512
  .e-outline.e-float-input.e-input-group.e-float-icon-left > .e-input-group-icon,
5513
5513
  .e-outline.e-input-group.e-control-wrapper.e-float-icon-left > .e-input-group-icon,
5514
5514
  .e-outline.e-float-input.e-input-group.e-control-wrapper.e-float-icon-left > .e-input-group-icon {
5515
- @if $input-skin-name == 'material' {
5515
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5516
5516
  margin: 9px $outline-input-icon-margin-right 9px $zero-value;
5517
5517
  }
5518
5518
  }
@@ -5521,7 +5521,7 @@
5521
5521
  .e-outline.e-float-input.e-control-wrapper .e-clear-icon,
5522
5522
  .e-outline.e-input-group .e-clear-icon,
5523
5523
  .e-outline.e-input-group.e-control-wrapper .e-clear-icon {
5524
- @if $input-skin-name == 'material' {
5524
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5525
5525
  font-size: $outline-input-clear-icon-font-size;
5526
5526
  padding: 9px $outline-input-icon-margin-right 9px $zero-value;
5527
5527
  }
@@ -5531,14 +5531,14 @@
5531
5531
  .e-outline.e-float-input.e-input-group.e-float-icon-left .e-input,
5532
5532
  .e-outline.e-input-group.e-control-wrapper.e-float-icon-left .e-input,
5533
5533
  .e-outline.e-float-input.e-input-group.e-control-wrapper.e-float-icon-left .e-input {
5534
- @if $input-skin-name == 'material' {
5534
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5535
5535
  padding-left: $zero-value;
5536
5536
  }
5537
5537
  }
5538
5538
 
5539
5539
  .e-outline.e-input-group .e-input-group-icon,
5540
5540
  .e-outline.e-input-group.e-control-wrapper .e-input-group-icon {
5541
- @if $input-skin-name == 'material' {
5541
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5542
5542
  font-size: $outline-input-icon-font-size;
5543
5543
  margin: 9px $outline-input-icon-margin-right 9px $zero-value;
5544
5544
  }
@@ -5558,7 +5558,7 @@
5558
5558
  .e-outline.e-float-input.e-control-wrapper.e-input-focus:not(.e-input-group):not(.e-float-icon-left):not(.e-success).e-warning:not(.e-error) input,
5559
5559
  .e-outline.e-float-input.e-control-wrapper.e-input-focus:not(.e-input-group):not(.e-float-icon-left):not(.e-success):not(.e-warning).e-error input,
5560
5560
  .e-outline.e-input-group.e-control-wrapper.e-float-icon-left.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input-in-wrap {
5561
- @if $input-skin-name == 'material' {
5561
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5562
5562
  border: $zero-value;
5563
5563
  }
5564
5564
  }
@@ -5578,7 +5578,7 @@
5578
5578
  .e-outline.e-input-group.e-control-wrapper.e-small .e-input-group-icon.e-bigger + .e-input-group-icon.e-bigger:last-child,
5579
5579
  .e-bigger .e-outline.e-input-group.e-control-wrapper.e-small .e-input-group-icon + .e-input-group-icon:last-child,
5580
5580
  .e-bigger .e-outline.e-input-group.e-small .e-input-group-icon + .e-input-group-icon:last-child {
5581
- @if $input-skin-name == 'material' {
5581
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5582
5582
  margin-left: $zero-value;
5583
5583
  }
5584
5584
  }
@@ -5598,7 +5598,7 @@
5598
5598
  .e-outline.e-float-input.e-control-wrapper.e-input-group.e-small input,
5599
5599
  .e-outline.e-float-input.e-control-wrapper.e-input-group.e-small input,
5600
5600
  .e-small .e-outline.e-float-input.e-control-wrapper.e-input-group input {
5601
- @if $input-skin-name == 'material' {
5601
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5602
5602
  box-sizing: border-box;
5603
5603
  min-height: $outline-small-input-min-height;
5604
5604
  }
@@ -5630,7 +5630,7 @@
5630
5630
  .e-outline.e-float-input.e-control-wrapper.e-small textarea[disabled] ~ label.e-label-top.e-float-text,
5631
5631
  .e-outline.e-float-input.e-small.e-input-focus input ~ label.e-float-text,
5632
5632
  .e-outline.e-float-input.e-control-wrapper.e-small.e-input-focus input ~ label.e-float-text {
5633
- @if $input-skin-name == 'material' {
5633
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5634
5634
  font-size: $outline-small-label-font-size;
5635
5635
  }
5636
5636
  }
@@ -5661,7 +5661,7 @@
5661
5661
  .e-outline.e-float-input.e-control-wrapper.e-bigger textarea[disabled] ~ label.e-label-top.e-float-text,
5662
5662
  .e-outline.e-float-input.e-bigger.e-input-focus input ~ label.e-float-text,
5663
5663
  .e-outline.e-float-input.e-control-wrapper.e-bigger.e-input-focus input ~ label.e-float-text {
5664
- @if $input-skin-name == 'material' {
5664
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5665
5665
  font-size: $outline-bigger-label-font-size;
5666
5666
  }
5667
5667
  }
@@ -5670,7 +5670,7 @@
5670
5670
  .e-outline.e-input-group.e-control-wrapper,
5671
5671
  .e-outline.e-float-input,
5672
5672
  .e-outline.e-float-input.e-control-wrapper {
5673
- @if $input-skin-name == 'material' {
5673
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5674
5674
  font-size: $outline-valid-input-font-size;
5675
5675
  }
5676
5676
  }
@@ -5683,7 +5683,7 @@
5683
5683
  .e-bigger .e-outline.e-float-input,
5684
5684
  .e-outline.e-float-input.e-control-wrapper.e-bigger,
5685
5685
  .e-bigger .e-outline.e-float-input.e-control-wrapper {
5686
- @if $input-skin-name == 'material' {
5686
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5687
5687
  font-size: $outline-bigger-input-font-size;
5688
5688
  }
5689
5689
  }
@@ -5696,7 +5696,7 @@
5696
5696
  .e-small .e-outline.e-float-input,
5697
5697
  .e-outline.e-float-input.e-control-wrapper.e-small,
5698
5698
  .e-small .e-outline.e-float-input.e-control-wrapper {
5699
- @if $input-skin-name == 'material' {
5699
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5700
5700
  font-size: $outline-small-input-font-size;
5701
5701
  }
5702
5702
  }
@@ -5717,7 +5717,7 @@
5717
5717
  .e-small .e-outline.e-float-input.e-control-wrapper.e-bigger,
5718
5718
  .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small,
5719
5719
  .e-bigger.e-small .e-outline.e-float-input.e-control-wrapper {
5720
- @if $input-skin-name == 'material' {
5720
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5721
5721
  font-size: $outline-small-bigger-input-font-size;
5722
5722
  }
5723
5723
  }
@@ -5800,7 +5800,7 @@
5800
5800
  .e-small .e-outline.e-float-input.e-control-wrapper.e-bigger.e-input-focus input ~ label.e-float-text,
5801
5801
  .e-bigger .e-outline.e-float-input.e-bigger.e-input-focus input ~ label.e-float-text,
5802
5802
  .e-bigger .e-outline.e-float-input.e-control-wrapper.e-bigger.e-input-focus input ~ label.e-float-text {
5803
- @if $input-skin-name == 'material' {
5803
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5804
5804
  font-size: $outline-small-bigger-label-font-size;
5805
5805
  }
5806
5806
  }
@@ -5835,7 +5835,7 @@
5835
5835
  .e-outline.e-input-group.e-control-wrapper.e-small.e-input-focus input.e-input,
5836
5836
  .e-small .e-outline.e-input-group.e-control-wrapper.e-input-focus input.e-input,
5837
5837
  .e-small .e-outline.e-input-group.e-input-focus input.e-input {
5838
- @if $input-skin-name == 'material' {
5838
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5839
5839
  padding: $outline-small-input-padding-top $outline-small-input-padding-left;
5840
5840
  }
5841
5841
  }
@@ -5860,7 +5860,7 @@
5860
5860
  .e-small .e-outline.e-input-group textarea.e-input:focus,
5861
5861
  .e-small .e-outline.e-float-input textarea:focus,
5862
5862
  .e-small .e-outline.e-float-input.e-control-wrapper textarea:focus {
5863
- @if $input-skin-name == 'material' {
5863
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5864
5864
  box-sizing: border-box;
5865
5865
  margin: $outline-small-textarea-margin-top;
5866
5866
  padding: $zero-value $outline-small-input-padding-left $outline-small-input-padding-left;
@@ -5879,7 +5879,7 @@
5879
5879
  .e-outline.e-float-input.e-control-wrapper.e-input-group.e-small.e-float-icon-left > .e-input-group-icon,
5880
5880
  .e-outline.e-float-input.e-control-wrapper.e-input-group.e-float-icon-left > .e-input-group-icon.e-small,
5881
5881
  .e-small .e-outline.e-float-input.e-control-wrapper.e-input-group.e-float-icon-left > .e-input-group-icon {
5882
- @if $input-skin-name == 'material' {
5882
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5883
5883
  margin-left: $zero-value;
5884
5884
  margin-right: $outline-small-input-icon-margin-right;
5885
5885
  }
@@ -5889,7 +5889,7 @@
5889
5889
  .e-outline.e-input-group.e-control-wrapper.e-small .e-input-group-icon,
5890
5890
  .e-small .e-outline.e-input-group .e-input-group-icon,
5891
5891
  .e-small .e-outline.e-input-group.e-control-wrapper .e-input-group-icon {
5892
- @if $input-skin-name == 'material' {
5892
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5893
5893
  margin-left: $zero-value;
5894
5894
  margin-right: $outline-small-input-icon-margin-left;
5895
5895
  }
@@ -5901,7 +5901,7 @@
5901
5901
  .e-outline.e-input-group.e-control-wrapper.e-small .e-clear-icon,
5902
5902
  .e-outline.e-input-group.e-control-wrapper .e-clear-icon.e-small,
5903
5903
  .e-small .e-outline.e-input-group.e-control-wrapper .e-clear-icon {
5904
- @if $input-skin-name == 'material' {
5904
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5905
5905
  font-size: $outline-small-clear-icon-font-size;
5906
5906
  padding: 7px $outline-small-input-icon-margin-left 7px $zero-value;
5907
5907
  }
@@ -5923,7 +5923,7 @@
5923
5923
  .e-bigger .e-outline.e-float-input.e-control-wrapper.e-input-group input,
5924
5924
  .e-outline.e-float-input.e-control-wrapper.e-input-group.e-bigger input,
5925
5925
  .e-bigger .e-outline.e-float-input.e-control-wrapper.e-input-group input {
5926
- @if $input-skin-name == 'material' {
5926
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5927
5927
  box-sizing: border-box;
5928
5928
  min-height: $outline-bigger-input-min-height;
5929
5929
  }
@@ -5935,7 +5935,7 @@
5935
5935
  .e-outline.e-input-group.e-control-wrapper .e-clear-icon.e-bigger,
5936
5936
  .e-bigger .e-outline.e-input-group .e-clear-icon,
5937
5937
  .e-bigger .e-outline.e-input-group.e-control-wrapper .e-clear-icon {
5938
- @if $input-skin-name == 'material' {
5938
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5939
5939
  font-size: $outline-bigger-clear-icon-font-size;
5940
5940
  padding: $outline-bigger-input-icon-padding $outline-bigger-input-icon-margin-left $outline-bigger-input-icon-padding $zero-value;
5941
5941
  }
@@ -5953,7 +5953,7 @@
5953
5953
  .e-outline.e-float-input.e-input-group.e-control-wrapper.e-bigger.e-float-icon-left > .e-input-group-icon,
5954
5954
  .e-outline.e-float-input.e-input-group.e-control-wrapper.e-float-icon-left > .e-input-group-icon.e-bigger,
5955
5955
  .e-bigger .e-outline.e-float-input.e-input-group.e-control-wrapper.e-float-icon-left > .e-input-group-icon {
5956
- @if $input-skin-name == 'material' {
5956
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5957
5957
  margin-left: $zero-value;
5958
5958
  margin-right: $outline-bigger-input-icon-margin-right;
5959
5959
  }
@@ -5965,7 +5965,7 @@
5965
5965
  .e-outline.e-input-group.e-control-wrapper.e-bigger .e-input-group-icon,
5966
5966
  .e-outline.e-input-group.e-control-wrapper .e-input-group-icon.e-bigger,
5967
5967
  .e-bigger .e-outline.e-input-group.e-control-wrapper .e-input-group-icon {
5968
- @if $input-skin-name == 'material' {
5968
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
5969
5969
  margin: $outline-bigger-input-icon-padding $outline-bigger-input-icon-margin-left $outline-bigger-input-icon-padding $zero-value;
5970
5970
  }
5971
5971
  }
@@ -6000,7 +6000,7 @@
6000
6000
  .e-outline.e-input-group.e-control-wrapper.e-bigger:not(.e-float-icon-left).e-input-focus input.e-input,
6001
6001
  .e-bigger .e-outline.e-input-group.e-float-input:not(.e-float-icon-left).e-input-focus input.e-input,
6002
6002
  .e-bigger .e-outline.e-input-group.e-control-wrapper.e-float-input:not(.e-float-icon-left).e-input-focus input.e-input {
6003
- @if $input-skin-name == 'material' {
6003
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6004
6004
  padding: $outline-bigger-input-padding-top $outline-bigger-input-padding-left;
6005
6005
  }
6006
6006
  }
@@ -6027,7 +6027,7 @@
6027
6027
  .e-bigger .e-outline.e-input-group.e-control-wrapper.e-float-input:not(.e-float-icon-left) textarea.e-input:focus,
6028
6028
  .e-bigger .e-outline.e-float-input.e-control-wrapper.e-float-input:not(.e-float-icon-left) textarea:focus,
6029
6029
  .e-bigger .e-outline.e-float-input:not(.e-float-icon-left) textarea:focus {
6030
- @if $input-skin-name == 'material' {
6030
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6031
6031
  margin: $outline-bigger-textarea-maring-top;
6032
6032
  padding: $zero-value $outline-bigger-input-padding-left $outline-bigger-input-padding-left;
6033
6033
  }
@@ -6053,7 +6053,7 @@
6053
6053
  .e-outline.e-float-input.e-control-wrapper.e-input-group.e-bigger.e-small input,
6054
6054
  .e-bigger .e-outline.e-float-input.e-control-wrapper.e-input-group.e-small input,
6055
6055
  .e-small .e-outline.e-float-input.e-control-wrapper.e-input-group.e-bigger input {
6056
- @if $input-skin-name == 'material' {
6056
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6057
6057
  box-sizing: border-box;
6058
6058
  min-height: $outline-small-bigger-input-min-height;
6059
6059
  }
@@ -6097,7 +6097,7 @@
6097
6097
  .e-small .e-outline.e-input-group.e-control-wrapper.e-bigger:not(.e-float-icon-left).e-input-focus input.e-input,
6098
6098
  .e-outline.e-input-group.e-bigger.e-small:not(.e-float-icon-left).e-input-focus input.e-input,
6099
6099
  .e-outline.e-input-group.e-control-wrapper.e-bigger.e-small:not(.e-float-icon-left).e-input-focus input.e-input {
6100
- @if $input-skin-name == 'material' {
6100
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6101
6101
  padding: $outline-small-bigger-input-margin-top $outline-small-bigger-input-margin-left $outline-small-bigger-input-margin-bottom;
6102
6102
  }
6103
6103
  }
@@ -6128,7 +6128,7 @@
6128
6128
  .e-outline.e-input-group.e-control-wrapper.e-bigger.e-small:not(.e-float-icon-left) textarea.e-input:focus,
6129
6129
  .e-outline.e-float-input.e-control-wrapper.e-bigger.e-small:not(.e-float-icon-left) textarea:focus,
6130
6130
  .e-outline.e-float-input.e-bigger.e-small:not(.e-float-icon-left) textarea:focus {
6131
- @if $input-skin-name == 'material' {
6131
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6132
6132
  box-sizing: border-box;
6133
6133
  margin: $outline-bigger-textarea-maring-top;
6134
6134
  padding: $zero-value $outline-small-bigger-input-margin-left $outline-small-bigger-input-margin-left;
@@ -6141,7 +6141,7 @@
6141
6141
  .e-outline.e-input-group.e-control-wrapper.e-small.e-bigger .e-clear-icon,
6142
6142
  .e-outline.e-input-group.e-control-wrapper.e-small .e-clear-icon.e-bigger,
6143
6143
  .e-bigger .e-outline.e-input-group.e-control-wrapper.e-small .e-clear-icon {
6144
- @if $input-skin-name == 'material' {
6144
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6145
6145
  font-size: $outline-small-bigger-clear-icon-font-size;
6146
6146
  padding: 9px $outline-small-bigger-icon-margin-left 9px $zero-value;
6147
6147
  }
@@ -6159,7 +6159,7 @@
6159
6159
  .e-outline.e-float-input.e-control-wrapper.e-input-group.e-small.e-bigger.e-float-icon-left > .e-input-group-icon,
6160
6160
  .e-outline.e-float-input.e-control-wrapper.e-input-group.e-small.e-float-icon-left > .e-input-group-icon.e-bigger,
6161
6161
  .e-bigger .e-outline.e-input-group.e-control-wrapper.e-float-input.e-small.e-float-icon-left > .e-input-group-icon {
6162
- @if $input-skin-name == 'material' {
6162
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6163
6163
  margin-left: $zero-value;
6164
6164
  margin-right: $outline-small-bigger-icon-margin-right;
6165
6165
  }
@@ -6171,7 +6171,7 @@
6171
6171
  .e-outline.e-input-group.e-control-wrapper.e-small .e-input-group-icon.e-bigger,
6172
6172
  .e-bigger .e-outline.e-input-group.e-small .e-input-group-icon,
6173
6173
  .e-bigger .e-outline.e-input-group.e-control-wrapper.e-small .e-input-group-icon {
6174
- @if $input-skin-name == 'material' {
6174
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6175
6175
  margin: $outline-bigger-small-group-icon-top $outline-small-bigger-icon-margin-left $outline-bigger-small-group-icon-bottom $zero-value;
6176
6176
  }
6177
6177
  }
@@ -6180,7 +6180,7 @@
6180
6180
  .e-small .e-outline.e-float-input.e-input-group .e-input-group-icon,
6181
6181
  .e-outline.e-float-input.e-control-wrapper.e-input-group.e-small .e-input-group-icon,
6182
6182
  .e-small .e-outline.e-float-input.e-control-wrapper.e-input-group .e-input-group-icon {
6183
- @if $input-skin-name == 'material' {
6183
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6184
6184
  margin-top: $outline-bigger-small-group-icon-top;
6185
6185
  }
6186
6186
  }
@@ -6189,7 +6189,7 @@
6189
6189
  .e-outline.e-float-input textarea,
6190
6190
  .e-outline.e-float-input.e-control-wrapper input,
6191
6191
  .e-outline.e-float-input.e-control-wrapper textarea {
6192
- @if $input-skin-name == 'material' {
6192
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6193
6193
  border: $outline-input-border;
6194
6194
  border-width: $outline-input-group-border-width;
6195
6195
  }
@@ -6230,7 +6230,7 @@
6230
6230
  .e-small .e-outline.e-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
6231
6231
  .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
6232
6232
  .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
6233
- @if $input-skin-name == 'material' {
6233
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6234
6234
  box-sizing: border-box;
6235
6235
  display: flex;
6236
6236
  left: $zero-value;
@@ -6256,7 +6256,7 @@
6256
6256
  .e-bigger .e-outline.e-float-input:not(.e-valid-input):not(.e-input-focus) input:not(:focus):not(:valid):not(.e-valid-input) ~ label.e-float-text,
6257
6257
  .e-bigger.e-outline.e-float-input.e-control-wrapper:not(.e-valid-input):not(.e-input-focus) input:not(:focus):not(:valid):not(.e-valid-input) ~ label.e-float-text,
6258
6258
  .e-bigger .e-outline.e-float-input.e-control-wrapper:not(.e-valid-input):not(.e-input-focus) input:not(:focus):not(:valid):not(.e-valid-input) ~ label.e-float-text {
6259
- @if $input-skin-name == 'material' {
6259
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6260
6260
  line-height: $outline-bigger-label-line-height;
6261
6261
  }
6262
6262
  }
@@ -6283,7 +6283,7 @@
6283
6283
  .e-bigger .e-outline.e-float-input:not(.e-valid-input):not(.e-input-focus) textarea:not(:focus):not(:valid):not(.e-valid-input) ~ label.e-float-text,
6284
6284
  .e-bigger.e-outline.e-float-input.e-control-wrapper:not(.e-valid-input):not(.e-input-focus) textarea:not(:focus):not(:valid):not(.e-valid-input) ~ label.e-float-text,
6285
6285
  .e-bigger .e-outline.e-float-input.e-control-wrapper:not(.e-valid-input):not(.e-input-focus) textarea:not(:focus):not(:valid):not(.e-valid-input) ~ label.e-float-text {
6286
- @if $input-skin-name == 'material' {
6286
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6287
6287
  line-height: $outline-textarea-bigger-label-line-height;
6288
6288
  }
6289
6289
  }
@@ -6302,7 +6302,7 @@
6302
6302
  .e-bigger .e-outline.e-float-input:not(.e-valid-input) textarea:not(:focus):not(:valid):not(.e-valid-input) ~ label.e-float-text,
6303
6303
  .e-bigger.e-outline.e-float-input.e-control-wrapper:not(.e-valid-input) textarea:not(:focus):not(:valid):not(.e-valid-input) ~ label.e-float-text,
6304
6304
  .e-bigger .e-outline.e-float-input.e-control-wrapper:not(.e-valid-input) textarea:not(:focus):not(:valid):not(.e-valid-input) ~ label.e-float-text {
6305
- @if $input-skin-name == 'material' {
6305
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6306
6306
  line-height: $outline-textarea-bigger-label-line-height;
6307
6307
  }
6308
6308
  }
@@ -6314,7 +6314,7 @@
6314
6314
  .e-small.e-outline:not(.e-valid-input):not(.e-valid-input):not(.e-input-focus) input:not(:focus):not(:valid) ~ label.e-float-text,
6315
6315
  .e-small.e-outline.e-float-input:not(.e-valid-input):not(.e-input-focus) input:not(:focus):not(:valid):not(.e-valid-input) ~ label.e-float-text,
6316
6316
  .e-small.e-outline.e-float-input.e-control-wrapper:not(.e-valid-input):not(.e-input-focus) input:not(:focus):not(:valid):not(.e-valid-input) ~ label.e-float-text {
6317
- @if $input-skin-name == 'material' {
6317
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6318
6318
  line-height: $outline-small-label-line-height;
6319
6319
  }
6320
6320
  }
@@ -6334,7 +6334,7 @@
6334
6334
  .e-small.e-outline:not(.e-valid-input):not(.e-valid-input):not(.e-input-focus) textarea:not(:focus):not(:valid) ~ label.e-float-text,
6335
6335
  .e-small.e-outline.e-float-input:not(.e-valid-input):not(.e-input-focus) textarea:not(:focus):not(:valid):not(.e-valid-input) ~ label.e-float-text,
6336
6336
  .e-small.e-outline.e-float-input.e-control-wrapper:not(.e-valid-input):not(.e-input-focus) textarea:not(:focus):not(:valid):not(.e-valid-input) ~ label.e-float-text {
6337
- @if $input-skin-name == 'material' {
6337
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6338
6338
  line-height: $outline-textarea-small-label-line-height;
6339
6339
  }
6340
6340
  }
@@ -6346,7 +6346,7 @@
6346
6346
  .e-small.e-outline:not(.e-valid-input):not(.e-valid-input) textarea:not(:focus):not(:valid) ~ label.e-float-text,
6347
6347
  .e-small.e-outline.e-float-input:not(.e-valid-input) textarea:not(:focus):not(:valid):not(.e-valid-input) ~ label.e-float-text,
6348
6348
  .e-small.e-outline.e-float-input.e-control-wrapper:not(.e-valid-input) textarea:not(:focus):not(:valid):not(.e-valid-input) ~ label.e-float-text {
6349
- @if $input-skin-name == 'material' {
6349
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6350
6350
  line-height: $outline-textarea-small-label-line-height;
6351
6351
  }
6352
6352
  }
@@ -6358,7 +6358,7 @@
6358
6358
  .e-outline:not(.e-valid-input):not(.e-valid-input):not(.e-input-focus) input:not(:focus):not(:valid) ~ label.e-float-text,
6359
6359
  .e-outline.e-float-input:not(.e-valid-input):not(.e-input-focus) input:not(:focus):not(:valid):not(.e-valid-input) ~ label.e-float-text,
6360
6360
  .e-outline.e-float-input.e-control-wrapper:not(.e-valid-input):not(.e-input-focus) input:not(:focus):not(:valid):not(.e-valid-input) ~ label.e-float-text {
6361
- @if $input-skin-name == 'material' {
6361
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6362
6362
  line-height: $outline-label-line-height;
6363
6363
  }
6364
6364
  }
@@ -6370,7 +6370,7 @@
6370
6370
  .e-outline:not(.e-valid-input):not(.e-valid-input):not(.e-input-focus) textarea:not(:focus):not(:valid) ~ label.e-float-text,
6371
6371
  .e-outline.e-float-input:not(.e-valid-input):not(.e-input-focus) textarea:not(:focus):not(:valid):not(.e-valid-input) ~ label.e-float-text,
6372
6372
  .e-outline.e-float-input.e-control-wrapper:not(.e-valid-input):not(.e-input-focus) textarea:not(:focus):not(:valid):not(.e-valid-input) ~ label.e-float-text {
6373
- @if $input-skin-name == 'material' {
6373
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6374
6374
  line-height: $outline-textarea-label-line-height;
6375
6375
  }
6376
6376
  }
@@ -6380,7 +6380,7 @@
6380
6380
  .e-outline:not(.e-valid-input):not(.e-valid-input) textarea:not(:focus):not(:valid) ~ label.e-float-text,
6381
6381
  .e-outline.e-float-input:not(.e-valid-input) textarea:not(:focus):not(:valid):not(.e-valid-input) ~ label.e-float-text,
6382
6382
  .e-outline.e-float-input.e-control-wrapper:not(.e-valid-input) textarea:not(:focus):not(:valid):not(.e-valid-input) ~ label.e-float-text {
6383
- @if $input-skin-name == 'material' {
6383
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6384
6384
  line-height: $outline-textarea-label-line-height;
6385
6385
  }
6386
6386
  }
@@ -6404,7 +6404,7 @@
6404
6404
  .e-bigger .e-outline.e-float-input.e-small:not(.e-error):not(.e-valid-input):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
6405
6405
  .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error):not(.e-valid-input):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
6406
6406
  .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small:not(.e-error):not(.e-valid-input):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
6407
- @if $input-skin-name == 'material' {
6407
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6408
6408
  line-height: $outline-small-bigger-label-line-height;
6409
6409
  }
6410
6410
  }
@@ -6436,7 +6436,7 @@
6436
6436
  .e-bigger.e-small .e-outline.e-float-input.e-control-wrapper:not(.e-valid-input):not(.e-input-focus) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
6437
6437
  .e-bigger.e-small .e-outline.e-float-input:not(.e-valid-input):not(.e-input-focus) textarea:valid ~ label.e-float-text.e-label-bottom,
6438
6438
  .e-bigger.e-small .e-outline.e-float-input.e-control-wrapper:not(.e-valid-input):not(.e-input-focus) textarea:valid ~ label.e-float-text.e-label-bottom {
6439
- @if $input-skin-name == 'material' {
6439
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6440
6440
  line-height: $outline-textarea-small-bigger-label-line-height;
6441
6441
  }
6442
6442
  }
@@ -6460,7 +6460,7 @@
6460
6460
  .e-bigger .e-outline.e-float-input.e-small:not(.e-error):not(.e-valid-input) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
6461
6461
  .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error):not(.e-valid-input) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
6462
6462
  .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small:not(.e-error):not(.e-valid-input) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
6463
- @if $input-skin-name == 'material' {
6463
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6464
6464
  line-height: $outline-textarea-small-bigger-label-line-height;
6465
6465
  }
6466
6466
  }
@@ -6471,7 +6471,7 @@
6471
6471
  .e-outline.e-float-input label.e-float-text::after,
6472
6472
  .e-outline.e-float-input.e-control-wrapper label.e-float-text::before,
6473
6473
  .e-outline.e-float-input.e-control-wrapper label.e-float-text::after {
6474
- @if $input-skin-name == 'material' {
6474
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6475
6475
  border-top: solid $outline-wrapper-border-infocused;
6476
6476
  border-top-color: transparent;
6477
6477
  box-shadow: inset $zero-value 1px transparent;
@@ -6499,7 +6499,7 @@
6499
6499
  .e-bigger .e-outline.e-float-input label.e-float-text::after,
6500
6500
  .e-bigger .e-outline.e-float-input.e-control-wrapper label.e-float-text::before,
6501
6501
  .e-bigger .e-outline.e-float-input.e-control-wrapper label.e-float-text::after {
6502
- @if $input-skin-name == 'material' {
6502
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6503
6503
  min-width: $outline-bigger-label-min-width;
6504
6504
  }
6505
6505
  }
@@ -6516,7 +6516,7 @@
6516
6516
  .e-small .e-outline.e-float-input label.e-float-text::after,
6517
6517
  .e-small .e-outline.e-float-input.e-control-wrapper label.e-float-text::before,
6518
6518
  .e-small .e-outline.e-float-input.e-control-wrapper label.e-float-text::after {
6519
- @if $input-skin-name == 'material' {
6519
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6520
6520
  min-width: $outline-small-label-min-width;
6521
6521
  }
6522
6522
  }
@@ -6533,7 +6533,7 @@
6533
6533
  .e-bigger.e-small .e-outline.e-float-input label.e-float-text::after,
6534
6534
  .e-bigger.e-small .e-outline.e-float-input.e-control-wrapper label.e-float-text::before,
6535
6535
  .e-bigger.e-small .e-outline.e-float-input.e-control-wrapper label.e-float-text::after {
6536
- @if $input-skin-name == 'material' {
6536
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6537
6537
  min-width: $outline-bigger-small-label-min-width;
6538
6538
  }
6539
6539
  }
@@ -6544,7 +6544,7 @@
6544
6544
  .e-outline.e-float-input.e-valid-input:not(.e-input-focus) label.e-float-text::after,
6545
6545
  .e-outline.e-float-input.e-control-wrapper.e-valid-input:not(.e-input-focus) label.e-float-text::before,
6546
6546
  .e-outline.e-float-input.e-control-wrapper.e-valid-input:not(.e-input-focus) label.e-float-text::after {
6547
- @if $input-skin-name == 'material' {
6547
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6548
6548
  border-top-color: $outline-border-color;
6549
6549
  border-width: 1px;
6550
6550
  }
@@ -6556,7 +6556,7 @@
6556
6556
  .e-outline.e-float-input.e-valid-input.e-success:not(.e-error):not(.e-warning):not(.e-input-focus) label.e-float-text::after,
6557
6557
  .e-outline.e-float-input.e-control-wrapper.e-valid-input.e-success:not(.e-error):not(.e-warning):not(.e-input-focus) label.e-float-text::before,
6558
6558
  .e-outline.e-float-input.e-control-wrapper.e-valid-input.e-success:not(.e-error):not(.e-warning):not(.e-input-focus) label.e-float-text::after {
6559
- @if $input-skin-name == 'material' {
6559
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6560
6560
  border-top-color: $input-success-color;
6561
6561
  }
6562
6562
  }
@@ -6567,7 +6567,7 @@
6567
6567
  .e-outline.e-float-input.e-success.e-input-focus:not(.e-error):not(.e-warning) label.e-float-text::after,
6568
6568
  .e-outline.e-float-input.e-control-wrapper.e-success.e-input-focus:not(.e-error):not(.e-warning) label.e-float-text::before,
6569
6569
  .e-outline.e-float-input.e-control-wrapper.e-success.e-input-focus:not(.e-error):not(.e-warning) label.e-float-text::after {
6570
- @if $input-skin-name == 'material' {
6570
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6571
6571
  border-color: $input-success-color;
6572
6572
  }
6573
6573
  }
@@ -6578,7 +6578,7 @@
6578
6578
  .e-outline.e-float-input.e-valid-input.e-error:not(.e-success):not(.e-warning):not(.e-input-focus) label.e-float-text::after,
6579
6579
  .e-outline.e-float-input.e-control-wrapper.e-valid-input.e-error:not(.e-success):not(.e-warning):not(.e-input-focus) label.e-float-text::before,
6580
6580
  .e-outline.e-float-input.e-control-wrapper.e-valid-input.e-error:not(.e-success):not(.e-warning):not(.e-input-focus) label.e-float-text::after {
6581
- @if $input-skin-name == 'material' {
6581
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6582
6582
  border-top-color: $input-error-color;
6583
6583
  }
6584
6584
  }
@@ -6589,7 +6589,7 @@
6589
6589
  .e-outline.e-float-input.e-error.e-input-focus:not(.e-success):not(.e-warning) label.e-float-text::after,
6590
6590
  .e-outline.e-float-input.e-control-wrapper.e-error.e-input-focus:not(.e-success):not(.e-warning) label.e-float-text::before,
6591
6591
  .e-outline.e-float-input.e-control-wrapper.e-error.e-input-focus:not(.e-success):not(.e-warning) label.e-float-text::after {
6592
- @if $input-skin-name == 'material' {
6592
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6593
6593
  border-color: $input-error-color;
6594
6594
  }
6595
6595
  }
@@ -6600,7 +6600,7 @@
6600
6600
  .e-outline.e-float-input.e-valid-input.e-warning:not(.e-success):not(.e-error):not(.e-input-focus) label.e-float-text::after,
6601
6601
  .e-outline.e-float-input.e-control-wrapper.e-valid-input.e-warning:not(.e-success):not(.e-error):not(.e-input-focus) label.e-float-text::before,
6602
6602
  .e-outline.e-float-input.e-control-wrapper.e-valid-input.e-warning:not(.e-success):not(.e-error):not(.e-input-focus) label.e-float-text::after {
6603
- @if $input-skin-name == 'material' {
6603
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6604
6604
  border-top-color: $input-warning-color;
6605
6605
  }
6606
6606
  }
@@ -6611,7 +6611,7 @@
6611
6611
  .e-outline.e-float-input.e-warning.e-input-focus:not(.e-success):not(.e-error) label.e-float-text::after,
6612
6612
  .e-outline.e-float-input.e-control-wrapper.e-warning.e-input-focus:not(.e-success):not(.e-error) label.e-float-text::before,
6613
6613
  .e-outline.e-float-input.e-control-wrapper.e-warning.e-input-focus:not(.e-success):not(.e-error) label.e-float-text::after {
6614
- @if $input-skin-name == 'material' {
6614
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6615
6615
  border-color: $input-warning-color;
6616
6616
  }
6617
6617
  }
@@ -6619,7 +6619,7 @@
6619
6619
  .e-outline label.e-float-text::before,
6620
6620
  .e-outline.e-float-input label.e-float-text::before,
6621
6621
  .e-outline.e-float-input.e-control-wrapper label.e-float-text::before {
6622
- @if $input-skin-name == 'material' {
6622
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6623
6623
  border-left: solid 1px transparent;
6624
6624
  border-radius: $outline-label-margin $zero-value;
6625
6625
  left: $outline-label-before-left;
@@ -6630,7 +6630,7 @@
6630
6630
  .e-rtl.e-outline label.e-float-text::before,
6631
6631
  .e-rtl.e-outline.e-float-input label.e-float-text::before,
6632
6632
  .e-rtl.e-outline.e-float-input.e-control-wrapper label.e-float-text::before {
6633
- @if $input-skin-name == 'material' {
6633
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6634
6634
  border-left: $zero-value;
6635
6635
  border-radius: $zero-value $outline-label-margin;
6636
6636
  left: $outline-label-before-left-rtl;
@@ -6640,7 +6640,7 @@
6640
6640
  .e-rtl.e-outline label.e-float-text::after,
6641
6641
  .e-rtl.e-outline.e-float-input label.e-float-text::after,
6642
6642
  .e-rtl.e-outline.e-float-input.e-control-wrapper label.e-float-text::after {
6643
- @if $input-skin-name == 'material' {
6643
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6644
6644
  border-radius: $outline-label-border-radius $zero-value;
6645
6645
  border-right: $zero-value;
6646
6646
  left: $outline-label-after-left-rtl;
@@ -6650,7 +6650,7 @@
6650
6650
  .e-outline label.e-float-text::after,
6651
6651
  .e-outline.e-float-input label.e-float-text::after,
6652
6652
  .e-outline.e-float-input.e-control-wrapper label.e-float-text::after {
6653
- @if $input-skin-name == 'material' {
6653
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6654
6654
  border-radius: $zero-value $outline-label-border-radius;
6655
6655
  border-right: solid 1px transparent;
6656
6656
  flex-grow: 1;
@@ -6665,7 +6665,7 @@
6665
6665
  .e-outline.e-float-input.e-input-focus label.e-float-text::after,
6666
6666
  .e-outline.e-float-input.e-control-wrapper.e-input-focus label.e-float-text::before,
6667
6667
  .e-outline.e-float-input.e-control-wrapper.e-input-focus label.e-float-text::after {
6668
- @if $input-skin-name == 'material' {
6668
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6669
6669
  border-top-color: $input-active-border-color;
6670
6670
  }
6671
6671
  }
@@ -6682,7 +6682,7 @@
6682
6682
  .e-outline.e-float-input.e-input-focus:hover:not(.e-error):not(.e-success):not(.e-warning):not(.e-disabled):not(.e-float-icon-left),
6683
6683
  .e-outline.e-float-input.e-input-group.e-input-focus:hover:not(.e-error):not(.e-success):not(.e-warning):not(.e-disabled):not(.e-float-icon-left),
6684
6684
  .e-outline.e-float-input.e-control-wrapper.e-input-focus:hover:not(.e-error):not(.e-success):not(.e-warning):not(.e-disabled):not(.e-float-icon-left) {
6685
- @if $input-skin-name == 'material' {
6685
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6686
6686
  border-top-color: transparent;
6687
6687
  box-shadow: inset 1px $zero-value $input-active-border-color, inset -1px $zero-value $input-active-border-color, inset $zero-value -1px $input-active-border-color;
6688
6688
  }
@@ -6714,7 +6714,7 @@
6714
6714
  .e-outline.e-float-input.e-control-wrapper textarea label.e-float-text.e-label-top,
6715
6715
  .e-outline.e-float-input.e-input-focus input ~ label.e-float-text,
6716
6716
  .e-outline.e-float-input.e-control-wrapper.e-input-focus input ~ label.e-float-text {
6717
- @if $input-skin-name == 'material' {
6717
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6718
6718
  font-size: $outline-floating-label-font-size;
6719
6719
  top: $outline-float-label-top;
6720
6720
  transform: translate3d($zero-value, $zero-value, $zero-value) scale(1);
@@ -6729,7 +6729,7 @@
6729
6729
  .e-rtl .e-outline.e-input-group .e-clear-icon,
6730
6730
  .e-outline.e-input-group.e-control-wrapper.e-rtl .e-clear-icon,
6731
6731
  .e-rtl .e-outline.e-input-group.e-control-wrapper.e-rtl .e-clear-icon {
6732
- @if $input-skin-name == 'material' {
6732
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6733
6733
  padding-left: $outline-input-icon-margin-right;
6734
6734
  padding-right: $outline-input-icon-margin-left;
6735
6735
  }
@@ -6764,14 +6764,14 @@
6764
6764
  .e-rtl.e-bigger .e-outline.e-input-group.e-control-wrapper.e-small .e-input-group-icon + .e-input-group-icon:last-child,
6765
6765
  .e-bigger .e-rtl.e-outline.e-input-group.e-control-wrapper.e-small .e-input-group-icon + .e-input-group-icon:last-child,
6766
6766
  .e-rtl.e-bigger .e-outline.e-input-group.e-small .e-input-group-icon + .e-input-group-icon:last-child .e-bigger .e-rtl.e-outline.e-input-group.e-small .e-input-group-icon + .e-input-group-icon:last-child {
6767
- @if $input-skin-name == 'material' {
6767
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6768
6768
  margin-right: $zero-value;
6769
6769
  }
6770
6770
  }
6771
6771
 
6772
6772
  .e-rtl .e-outline.e-input-group .e-input-group-icon + .e-input-group-icon:last-child,
6773
6773
  .e-rtl.e-outline.e-input-group .e-input-group-icon + .e-input-group-icon:last-child {
6774
- @if $input-skin-name == 'material' {
6774
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6775
6775
  margin-left: $outline-input-icon-margin-right;
6776
6776
  }
6777
6777
  }
@@ -6779,7 +6779,7 @@
6779
6779
  .e-rtl.e-outline.e-input-group .e-input-group-icon,
6780
6780
  .e-rtl .e-outline.e-input-group .e-input-group-icon,
6781
6781
  .e-rtl.e-outline.e-input-group.e-control-wrapper .e-input-group-icon .e-rtl .e-outline.e-input-group.e-control-wrapper .e-input-group-icon {
6782
- @if $input-skin-name == 'material' {
6782
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6783
6783
  margin-left: $outline-input-icon-margin-right;
6784
6784
  margin-right: $outline-input-icon-margin-left;
6785
6785
  }
@@ -6795,7 +6795,7 @@
6795
6795
  .e-rtl .e-outline.e-input-group.e-control-wrapper.e-small .e-clear-icon,
6796
6796
  .e-rtl .e-outline.e-input-group.e-control-wrapper .e-clear-icon.e-small,
6797
6797
  .e-small .e-rtl.e-outline.e-input-group.e-control-wrapper .e-clear-icon .e-rtl.e-small .e-outline.e-input-group.e-control-wrapper .e-clear-icon {
6798
- @if $input-skin-name == 'material' {
6798
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6799
6799
  padding-left: $outline-small-input-icon-margin-left;
6800
6800
  padding-right: $zero-value;
6801
6801
  }
@@ -6808,7 +6808,7 @@
6808
6808
  .e-small .e-rtl.e-outline.e-input-group .e-input-group-icon,
6809
6809
  .e-rtl.e-small .e-outline.e-input-group .e-input-group-icon,
6810
6810
  .e-small .e-rtl.e-outline.e-input-group.e-control-wrapper .e-input-group-icon .e-rtl.e-small .e-outline.e-input-group.e-control-wrapper .e-input-group-icon {
6811
- @if $input-skin-name == 'material' {
6811
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6812
6812
  margin-left: $outline-small-input-icon-margin-left;
6813
6813
  margin-right: $zero-value;
6814
6814
  }
@@ -6825,7 +6825,7 @@
6825
6825
  .e-rtl .e-outline.e-input-group.e-control-wrapper .e-clear-icon.e-bigger,
6826
6826
  .e-bigger.e-rtl .e-outline.e-input-group .e-clear-icon,
6827
6827
  .e-bigger.e-rtl .e-outline.e-input-group.e-control-wrapper .e-clear-icon {
6828
- @if $input-skin-name == 'material' {
6828
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6829
6829
  padding-left: $outline-bigger-input-icon-margin-left;
6830
6830
  padding-right: $zero-value;
6831
6831
  }
@@ -6843,7 +6843,7 @@
6843
6843
  .e-rtl .e-outline.e-input-group.e-control-wrapper.e-bigger .e-input-group-icon,
6844
6844
  .e-rtl .e-outline.e-input-group.e-control-wrapper .e-input-group-icon.e-bigger,
6845
6845
  .e-bigger.e-rtl .e-outline.e-input-group.e-control-wrapper .e-input-group-icon {
6846
- @if $input-skin-name == 'material' {
6846
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6847
6847
  margin-left: $outline-bigger-input-icon-margin-left;
6848
6848
  margin-right: $zero-value;
6849
6849
  }
@@ -6861,7 +6861,7 @@
6861
6861
  .e-bigger .e-rtl.e-outline.e-input-group.e-small .e-input-group-icon,
6862
6862
  .e-bigger .e-rtl.e-outline.e-input-group.e-control-wrapper.e-small .e-input-group-icon,
6863
6863
  .e-bigger.e-rtl .e-outline.e-input-group.e-control-wrapper.e-small .e-input-group-icon {
6864
- @if $input-skin-name == 'material' {
6864
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6865
6865
  margin-left: $outline-small-bigger-icon-margin-left;
6866
6866
  margin-right: $zero-value;
6867
6867
  }
@@ -6879,7 +6879,7 @@
6879
6879
  .e-bigger .e-rtl.e-outline.e-input-group.e-small .e-clear-icon,
6880
6880
  .e-bigger .e-rtl.e-outline.e-input-group.e-control-wrapper.e-small .e-clear-icon,
6881
6881
  .e-bigger.e-rtl .e-outline.e-input-group.e-control-wrapper.e-small .e-clear-icon {
6882
- @if $input-skin-name == 'material' {
6882
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6883
6883
  padding-left: $outline-small-bigger-icon-margin-left;
6884
6884
  padding-right: $zero-value;
6885
6885
  }
@@ -6889,7 +6889,7 @@
6889
6889
  .e-rtl.e-outline.e-input-group .e-input-group-icon + .e-input-group-icon:last-child,
6890
6890
  .e-rtl .e-outline.e-input-group.e-control-wrapper .e-input-group-icon + .e-input-group-icon:last-child,
6891
6891
  .e-rtl.e-outline.e-input-group.e-control-wrapper .e-input-group-icon + .e-input-group-icon:last-child {
6892
- @if $input-skin-name == 'material' {
6892
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6893
6893
  margin-left: $outline-input-icon-margin-right;
6894
6894
  margin-right: $zero-value;
6895
6895
  }
@@ -6905,7 +6905,7 @@
6905
6905
  .e-rtl .e-outline.e-input-group.e-control-wrapper.e-bigger .e-input-group-icon + .e-input-group-icon:last-child,
6906
6906
  .e-rtl.e-outline.e-input-group.e-control-wrapper .e-input-group-icon.e-bigger + .e-input-group-icon.e-bigger:last-child,
6907
6907
  .e-rtl .e-outline.e-input-group.e-control-wrapper .e-input-group-icon.e-bigger + .e-input-group-icon.e-bigger:last-child {
6908
- @if $input-skin-name == 'material' {
6908
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6909
6909
  margin-left: $outline-bigger-input-icon-margin-left;
6910
6910
  margin-right: $zero-value;
6911
6911
  }
@@ -6915,7 +6915,7 @@
6915
6915
  .e-rtl .e-outline.e-input-group.e-small .e-input-group-icon + .e-input-group-icon:last-child,
6916
6916
  .e-rtl .e-outline.e-input-group.e-control-wrapper.e-small .e-input-group-icon + .e-input-group-icon:last-child,
6917
6917
  .e-rtl.e-outline.e-input-group.e-control-wrapper.e-small .e-input-group-icon + .e-input-group-icon:last-child {
6918
- @if $input-skin-name == 'material' {
6918
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6919
6919
  margin-left: $outline-small-input-icon-margin-left;
6920
6920
  margin-right: $zero-value;
6921
6921
  }
@@ -6932,7 +6932,7 @@
6932
6932
  .e-rtl.e-bigger .e-outline.e-input-group.e-control-wrapper.e-small .e-input-group-icon + .e-input-group-icon:last-child,
6933
6933
  .e-bigger .e-rtl.e-outline.e-input-group.e-control-wrapper.e-small .e-input-group-icon + .e-input-group-icon:last-child,
6934
6934
  .e-rtl.e-bigger .e-outline.e-input-group.e-small .e-input-group-icon + .e-input-group-icon:last-child .e-bigger {
6935
- @if $input-skin-name == 'material' {
6935
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
6936
6936
  margin-left: $outline-small-bigger-icon-margin-left;
6937
6937
  margin-right: $zero-value;
6938
6938
  }
@@ -7019,7 +7019,7 @@
7019
7019
  .e-outline.e-float-input.e-control-wrapper.e-bigger.e-small.e-input-focus input ~ label.e-float-text,
7020
7020
  .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-input-focus input ~ label.e-float-text,
7021
7021
  .e-small .e-outline.e-float-input.e-control-wrapper.e-bigger.e-input-focus input ~ label.e-float-text {
7022
- @if $input-skin-name == 'material' {
7022
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7023
7023
  top: $outline-float-label-top;
7024
7024
  transform: translate3d(0, 0, 0) scale(1);
7025
7025
  }
@@ -7069,7 +7069,7 @@
7069
7069
  .e-bigger .e-outline.e-float-input.e-small.e-input-focus input ~ label.e-float-text,
7070
7070
  .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-input-focus input ~ label.e-float-text,
7071
7071
  .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-input-focus input ~ label.e-float-text {
7072
- @if $input-skin-name == 'material' {
7072
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7073
7073
  font-size: $outline-small-bigger-label-font-size;
7074
7074
  }
7075
7075
  }
@@ -7086,7 +7086,7 @@
7086
7086
  .e-outline.e-float-input.e-control-wrapper textarea[readonly] ~ label.e-label-top.e-float-text,
7087
7087
  .e-outline.e-float-input.e-control-wrapper textarea[disabled] ~ label.e-label-top.e-float-text,
7088
7088
  .e-outline.e-float-input.e-control-wrapper textarea label.e-float-text.e-label-top {
7089
- @if $input-skin-name == 'material' {
7089
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7090
7090
  top: $outline-float-label-top;
7091
7091
  transform: translate3d($zero-value, $zero-value, $zero-value) scale(1);
7092
7092
  }
@@ -7097,7 +7097,7 @@
7097
7097
  .e-outline.e-float-input textarea,
7098
7098
  .e-outline.e-float-input.e-control-wrapper textarea,
7099
7099
  .e-outline.e-float-input.e-input-group textarea {
7100
- @if $input-skin-name == 'material' {
7100
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7101
7101
  box-sizing: border-box;
7102
7102
  }
7103
7103
  }
@@ -7106,7 +7106,7 @@
7106
7106
  .e-outline.e-float-input.e-control-wrapper.e-valid-input:not(.e-input-focus) input:focus ~ label.e-float-text,
7107
7107
  .e-outline.e-float-input.e-valid-input:not(.e-input-focus) textarea:valid ~ label.e-float-text,
7108
7108
  .e-outline.e-float-input.e-control-wrapper.e-valid-input:not(.e-input-focus) textarea:focus ~ label.e-float-text {
7109
- @if $input-skin-name == 'material' {
7109
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7110
7110
  color: $outline-label-font-color-with-value;
7111
7111
  }
7112
7112
  }
@@ -7119,7 +7119,7 @@
7119
7119
  .e-rtl.e-outline.e-float-input.e-control-wrapper textarea ~ label.e-float-text.e-small,
7120
7120
  .e-rtl.e-outline.e-float-input.e-control-wrapper textarea.e-small ~ label.e-float-text,
7121
7121
  .e-small .e-rtl.e-outline.e-float-input.e-control-wrapper textarea ~ label.e-float-text {
7122
- @if $input-skin-name == 'material' {
7122
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7123
7123
  top: $outline-float-label-top;
7124
7124
  }
7125
7125
  }
@@ -7134,7 +7134,7 @@
7134
7134
  .e-outline.e-small .e-float-input .e-clear-icon::before,
7135
7135
  .e-outline.e-small .e-input-group .e-clear-icon::before,
7136
7136
  .e-outline.e-small .e-input-group.e-control-wrapper .e-clear-icon::before {
7137
- @if $input-skin-name == 'material' {
7137
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7138
7138
  font-size: $outline-input-small-clear-icon;
7139
7139
  }
7140
7140
  }
@@ -7143,7 +7143,7 @@
7143
7143
  .e-outline.e-float-input.e-control-wrapper .e-clear-icon::before,
7144
7144
  .e-outline.e-input-group .e-clear-icon::before,
7145
7145
  .e-outline.e-input-group.e-control-wrapper .e-clear-icon::before {
7146
- @if $input-skin-name == 'material' {
7146
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7147
7147
  font-size: $outline-input-clear-icon;
7148
7148
  }
7149
7149
  }
@@ -7158,7 +7158,7 @@
7158
7158
  .e-outline.e-bigger .e-float-input .e-clear-icon::before,
7159
7159
  .e-outline.e-bigger .e-input-group .e-clear-icon::before,
7160
7160
  .e-outline.e-bigger .e-input-group.e-control-wrapper .e-clear-icon::before {
7161
- @if $input-skin-name == 'material' {
7161
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7162
7162
  font-size: $outline-input-bigger-clear-icon;
7163
7163
  }
7164
7164
  }
@@ -7175,7 +7175,7 @@
7175
7175
  .e-outline.e-small .e-float-input.e-bigger input:first-child ~ .e-clear-icon::before,
7176
7176
  .e-outline.e-bigger .e-float-input.e-control-wrapper.e-small input:first-child ~ .e-clear-icon::before,
7177
7177
  .e-outline.e-bigger .e-float-input.e-small input:first-child ~ .e-clear-icon::before {
7178
- @if $input-skin-name == 'material' {
7178
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7179
7179
  font-size: $outline-input-bigger-small-clear-icon;
7180
7180
  }
7181
7181
  }
@@ -7184,7 +7184,7 @@
7184
7184
 
7185
7185
  .e-outline.e-float-input textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
7186
7186
  .e-outline.e-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
7187
- @if $input-skin-name == 'material' {
7187
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7188
7188
  font-size: $outline-float-label-font-size;
7189
7189
  }
7190
7190
  }
@@ -7201,7 +7201,7 @@
7201
7201
  .e-bigger .e-outline.e-float-input.e-control-wrapper textarea ~ label.e-float-text,
7202
7202
  .e-outline.e-float-input.e-control-wrapper.e-bigger textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
7203
7203
  .e-bigger .e-outline.e-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
7204
- @if $input-skin-name == 'material' {
7204
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7205
7205
  font-size: $bigger-outline-float-label-font-size;
7206
7206
  }
7207
7207
  }
@@ -7210,7 +7210,7 @@
7210
7210
  .e-small .e-outline.e-float-input textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
7211
7211
  .e-outline.e-float-input.e-control-wrapper.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
7212
7212
  .e-small .e-outline.e-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
7213
- @if $input-skin-name == 'material' {
7213
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7214
7214
  font-size: $small-outline-float-label-font-size;
7215
7215
  }
7216
7216
  }
@@ -7225,7 +7225,7 @@
7225
7225
  .e-outline.e-float-input.e-control-wrapper.e-bigger.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
7226
7226
  .e-bigger.e-small .e-outline.e-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
7227
7227
  .e-outline.e-float-input.e-control-wrapper.e-bigger.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
7228
- @if $input-skin-name == 'material' {
7228
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7229
7229
  font-size: $bigger-small-outline-float-label-font-size;
7230
7230
  }
7231
7231
  }
@@ -7235,7 +7235,7 @@
7235
7235
  .e-outline.e-float-input.e-control-wrapper label.e-float-text,
7236
7236
  .e-outline.e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
7237
7237
  .e-outline.e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
7238
- @if $input-skin-name == 'material' {
7238
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7239
7239
  font-size: $outline-float-label-font-size;
7240
7240
  }
7241
7241
  }
@@ -7243,7 +7243,7 @@
7243
7243
  .e-outline.e-float-input input:-webkit-autofill ~ label.e-float-text,
7244
7244
  .e-outline.e-float-input.e-control-wrapper.e-autofill input:-webkit-autofill ~ label.e-float-text,
7245
7245
  .e-outline.e-float-input.e-control-wrapper.e-autofill:not(.e-input-focus) input:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom {
7246
- @if $input-skin-name == 'material' {
7246
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7247
7247
  animation-name: slideTopUp;/* stylelint-disable-line no-unknown-animations */
7248
7248
  }
7249
7249
  }
@@ -7251,7 +7251,7 @@
7251
7251
  .e-outline.e-float-input textarea:-webkit-autofill ~ label.e-float-text,
7252
7252
  .e-outline.e-float-input.e-control-wrapper.e-autofill textarea:-webkit-autofill ~ label.e-float-text,
7253
7253
  .e-outline.e-float-input.e-control-wrapper.e-autofill textarea:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom {
7254
- @if $input-skin-name == 'material' {
7254
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7255
7255
  font-size: $outline-float-label-font-size;
7256
7256
  }
7257
7257
  }
@@ -7262,7 +7262,7 @@
7262
7262
  .e-bigger.e-outline.e-float-input.e-control-wrapper.e-autofill input:-webkit-autofill ~ label.e-float-text,
7263
7263
  .e-bigger .e-outline.e-float-input.e-control-wrapper.e-autofill:not(.e-input-focus) input:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom,
7264
7264
  .e-bigger.e-outline.e-float-input.e-control-wrapper.e-autofill:not(.e-input-focus) input:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom {
7265
- @if $input-skin-name == 'material' {
7265
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7266
7266
  animation-name: slideTopUp;/* stylelint-disable-line no-unknown-animations */
7267
7267
  }
7268
7268
  }
@@ -7273,7 +7273,7 @@
7273
7273
  .e-bigger.e-outline.e-float-input.e-control-wrapper.e-autofill textarea:-webkit-autofill ~ label.e-float-text,
7274
7274
  .e-bigger .e-outline.e-float-input.e-control-wrapper.e-autofill textarea:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom,
7275
7275
  .e-bigger.e-outline.e-float-input.e-control-wrapper.e-autofill textarea:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom {
7276
- @if $input-skin-name == 'material' {
7276
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7277
7277
  font-size: $bigger-outline-float-label-font-size;
7278
7278
  }
7279
7279
  }
@@ -7284,7 +7284,7 @@
7284
7284
  .e-small.e-outline.e-float-input.e-control-wrapper.e-autofill input:-webkit-autofill ~ label.e-float-text,
7285
7285
  .e-small .e-outline.e-float-input.e-control-wrapper.e-autofill:not(.e-input-focus) input:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom,
7286
7286
  .e-small.e-outline.e-float-input.e-control-wrapper.e-autofill:not(.e-input-focus) input:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom {
7287
- @if $input-skin-name == 'material' {
7287
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7288
7288
  animation-name: slideTopUp;/* stylelint-disable-line no-unknown-animations */
7289
7289
  }
7290
7290
  }
@@ -7295,7 +7295,7 @@
7295
7295
  .e-small.e-outline.e-float-input.e-control-wrapper.e-autofill textarea:-webkit-autofill ~ label.e-float-text,
7296
7296
  .e-small .e-outline.e-float-input.e-control-wrapper.e-autofill textarea:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom,
7297
7297
  .e-small.e-outline.e-float-input.e-control-wrapper.e-autofill textarea:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom {
7298
- @if $input-skin-name == 'material' {
7298
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7299
7299
  font-size: $small-outline-float-label-font-size;
7300
7300
  }
7301
7301
  }
@@ -7310,7 +7310,7 @@
7310
7310
  .e-small.e-bigger.e-outline.e-float-input.e-control-wrapper.e-autofill:not(.e-input-focus) input:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom,
7311
7311
  .e-bigger .e-small.e-outline.e-float-input.e-control-wrapper.e-autofill:not(.e-input-focus) input:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom,
7312
7312
  .e-small .e-bigger.e-outline.e-float-input.e-control-wrapper.e-autofill:not(.e-input-focus) input:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom {
7313
- @if $input-skin-name == 'material' {
7313
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7314
7314
  animation-name: slideTopUp;/* stylelint-disable-line no-unknown-animations */
7315
7315
  }
7316
7316
  }
@@ -7325,7 +7325,7 @@
7325
7325
  .e-small.e-bigger.e-outline.e-float-input.e-control-wrapper.e-autofill textarea:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom,
7326
7326
  .e-bigger .e-small.e-outline.e-float-input.e-control-wrapper.e-autofill textarea:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom,
7327
7327
  .e-small .e-bigger.e-outline.e-float-input.e-control-wrapper.e-autofill textarea:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom {
7328
- @if $input-skin-name == 'material' {
7328
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7329
7329
  font-size: $bigger-small-outline-float-label-font-size;
7330
7330
  }
7331
7331
  }
@@ -7342,7 +7342,7 @@
7342
7342
  .e-bigger .e-outline.e-float-input.e-control-wrapper label.e-float-text,
7343
7343
  .e-outline.e-float-input.e-control-wrapper.e-bigger:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
7344
7344
  .e-bigger .e-outline.e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
7345
- @if $input-skin-name == 'material' {
7345
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7346
7346
  font-size: $bigger-outline-float-label-font-size;
7347
7347
  }
7348
7348
  }
@@ -7359,7 +7359,7 @@
7359
7359
  .e-bigger .e-outline.e-float-input.e-control-wrapper textarea ~ label.e-float-text,
7360
7360
  .e-outline.e-float-input.e-control-wrapper.e-bigger textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
7361
7361
  .e-bigger .e-outline.e-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
7362
- @if $input-skin-name == 'material' {
7362
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7363
7363
  font-size: $bigger-outline-float-label-font-size;
7364
7364
  }
7365
7365
  }
@@ -7370,7 +7370,7 @@
7370
7370
  .e-outline.e-float-input.e-control-wrapper.e-small label.e-float-text,
7371
7371
  .e-outline.e-float-input.e-control-wrapper.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
7372
7372
  .e-small .e-outline.e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
7373
- @if $input-skin-name == 'material' {
7373
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7374
7374
  font-size: $small-outline-float-label-font-size;
7375
7375
  }
7376
7376
  }
@@ -7379,7 +7379,7 @@
7379
7379
  .e-small .e-outline.e-float-input textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
7380
7380
  .e-outline.e-float-input.e-control-wrapper.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
7381
7381
  .e-small .e-outline.e-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
7382
- @if $input-skin-name == 'material' {
7382
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7383
7383
  font-size: $small-outline-float-label-font-size;
7384
7384
  }
7385
7385
  }
@@ -7392,7 +7392,7 @@
7392
7392
  .e-outline.e-float-input.e-control-wrapper textarea ~ label.e-float-text.e-small,
7393
7393
  .e-outline.e-float-input.e-control-wrapper textarea.e-small ~ label.e-float-text,
7394
7394
  .e-small .e-outline.e-float-input.e-control-wrapper textarea ~ label.e-float-text {
7395
- @if $input-skin-name == 'material' {
7395
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7396
7396
  font-size: $small-outline-float-label-font-size;
7397
7397
  }
7398
7398
  }
@@ -7411,7 +7411,7 @@
7411
7411
  .e-outline.e-float-input.e-control-wrapper.e-bigger.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
7412
7412
  .e-bigger.e-small .e-outline.e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
7413
7413
  .e-outline.e-float-input.e-control-wrapper.e-bigger.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
7414
- @if $input-skin-name == 'material' {
7414
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7415
7415
  font-size: $bigger-small-outline-float-label-font-size;
7416
7416
  }
7417
7417
  }
@@ -7426,7 +7426,7 @@
7426
7426
  .e-outline.e-float-input.e-control-wrapper.e-bigger.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
7427
7427
  .e-bigger.e-small .e-outline.e-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
7428
7428
  .e-outline.e-float-input.e-control-wrapper.e-bigger.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
7429
- @if $input-skin-name == 'material' {
7429
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7430
7430
  font-size: $bigger-small-outline-float-label-font-size;
7431
7431
  }
7432
7432
  }
@@ -7447,14 +7447,14 @@
7447
7447
  .e-filled.e-input-group.e-control-wrapper input,
7448
7448
  .e-filled.e-input-group input.e-input,
7449
7449
  .e-filled.e-input-group.e-control-wrapper input.e-input {
7450
- @if $input-skin-name == 'material' {
7450
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7451
7451
  box-sizing: border-box;
7452
7452
  }
7453
7453
  }
7454
7454
 
7455
7455
  .e-filled.e-float-input:not(.e-input-group) input,
7456
7456
  .e-filled.e-float-input.e-control-wrapper:not(.e-input-group) input {
7457
- @if $input-skin-name == 'material' {
7457
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7458
7458
  box-sizing: border-box;
7459
7459
  }
7460
7460
  }
@@ -7472,7 +7472,7 @@
7472
7472
  .e-control.e-filled.e-input-group.e-control-wrapper input.e-input,
7473
7473
  .e-control.e-filled.e-float-input input,
7474
7474
  .e-control.e-filled.e-float-input.e-control-wrapper input {
7475
- @if $input-skin-name == 'material' {
7475
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7476
7476
  box-sizing: border-box;
7477
7477
  }
7478
7478
  }
@@ -7494,7 +7494,7 @@
7494
7494
  .e-filled.e-float-input.e-control-wrapper.e-bigger input.e-input,
7495
7495
  .e-bigger .e-filled.e-float-input.e-control-wrapper input,
7496
7496
  .e-bigger .e-filled.e-float-input.e-control-wrapper input.e-input {
7497
- @if $input-skin-name == 'material' {
7497
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7498
7498
  box-sizing: border-box;
7499
7499
  }
7500
7500
  }
@@ -7507,7 +7507,7 @@
7507
7507
  .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-input-group) input.e-input,
7508
7508
  .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-input-group) input,
7509
7509
  .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-input-group) input.e-input {
7510
- @if $input-skin-name == 'material' {
7510
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7511
7511
  box-sizing: border-box;
7512
7512
  }
7513
7513
  }
@@ -7529,7 +7529,7 @@
7529
7529
  .e-filled.e-float-input.e-control-wrapper.e-small input.e-input,
7530
7530
  .e-small .e-filled.e-float-input.e-control-wrapper input,
7531
7531
  .e-small .e-filled.e-float-input.e-control-wrapper input.e-input {
7532
- @if $input-skin-name == 'material' {
7532
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7533
7533
  box-sizing: border-box;
7534
7534
  }
7535
7535
  }
@@ -7541,7 +7541,7 @@
7541
7541
  .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-input-group) input.e-input,
7542
7542
  .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-input-group) input,
7543
7543
  .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-input-group) input.e-input {
7544
- @if $input-skin-name == 'material' {
7544
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7545
7545
  box-sizing: border-box;
7546
7546
  }
7547
7547
  }
@@ -7563,7 +7563,7 @@
7563
7563
  .e-filled.e-float-input.e-control-wrapper.e-bigger.e-small input.e-input,
7564
7564
  .e-bigger.e-small .e-filled.e-float-input.e-control-wrapper input,
7565
7565
  .e-bigger.e-small .e-filled.e-float-input.e-control-wrapper input.e-input {
7566
- @if $input-skin-name == 'material' {
7566
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7567
7567
  box-sizing: border-box;
7568
7568
  }
7569
7569
  }
@@ -7576,7 +7576,7 @@
7576
7576
  .e-filled.e-float-input.e-control-wrapper.e-bigger.e-small:not(.e-input-group) input.e-input,
7577
7577
  .e-bigger.e-small .e-filled.e-float-input.e-control-wrapper:not(.e-input-group) input,
7578
7578
  .e-bigger.e-small .e-filled.e-float-input.e-control-wrapper:not(.e-input-group) input.e-input {
7579
- @if $input-skin-name == 'material' {
7579
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7580
7580
  box-sizing: border-box;
7581
7581
  }
7582
7582
  }
@@ -7586,7 +7586,7 @@
7586
7586
  .e-filled.e-input-group.e-control-wrapper textarea,
7587
7587
  .e-filled.e-float-input textarea,
7588
7588
  .e-filled.e-float-input.e-control-wrapper textarea {
7589
- @if $input-skin-name == 'material' {
7589
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7590
7590
  box-sizing: border-box;
7591
7591
  }
7592
7592
  }
@@ -7610,7 +7610,7 @@
7610
7610
  .e-filled.e-float-input.e-control-wrapper.e-bigger textarea.e-input,
7611
7611
  .e-bigger .e-filled.e-float-input.e-control-wrapper textarea,
7612
7612
  .e-bigger .e-filled.e-float-input.e-control-wrapper textarea.e-input {
7613
- @if $input-skin-name == 'material' {
7613
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7614
7614
  box-sizing: border-box;
7615
7615
  }
7616
7616
  }
@@ -7632,7 +7632,7 @@
7632
7632
  .e-filled.e-float-input.e-control-wrapper.e-small textarea.e-input,
7633
7633
  .e-small .e-filled.e-float-input.e-control-wrapper textarea,
7634
7634
  .e-small .e-filled.e-float-input.e-control-wrapper textarea.e-input {
7635
- @if $input-skin-name == 'material' {
7635
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7636
7636
  box-sizing: border-box;
7637
7637
  }
7638
7638
  }
@@ -7654,7 +7654,7 @@
7654
7654
  .e-filled.e-float-input.e-control-wrapper.e-bigger.e-small textarea.e-input,
7655
7655
  .e-bigger.e-small .e-filled.e-float-input.e-control-wrapper textarea,
7656
7656
  .e-bigger.e-small .e-filled.e-float-input.e-control-wrapper textarea.e-input {
7657
- @if $input-skin-name == 'material' {
7657
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7658
7658
  box-sizing: border-box;
7659
7659
  }
7660
7660
  }
@@ -7665,7 +7665,7 @@
7665
7665
  .e-filled.e-float-input textarea,
7666
7666
  .e-filled.e-float-input.e-control-wrapper input,
7667
7667
  .e-filled.e-float-input.e-control-wrapper textarea {
7668
- @if $input-skin-name == 'material' {
7668
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7669
7669
  border: $float-input-border;
7670
7670
  border-width: $zero-value;
7671
7671
  }
@@ -7679,7 +7679,7 @@
7679
7679
  .e-filled.e-float-input.e-control-wrapper:hover:not(.e-input-group):not(.e-disabled) textarea:not([disabled]),
7680
7680
  .e-filled.e-float-input.e-control-wrapper:hover:not(.e-input-group):not(.e-disabled) input:not([disabled]),
7681
7681
  .e-filled.e-float-input.e-control-wrapper:hover:not(.e-input-group):not(.e-disabled) textarea:not([disabled]) {
7682
- @if $input-skin-name == 'material' {
7682
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7683
7683
  border-bottom-width: $zero-value;
7684
7684
  }
7685
7685
  }
@@ -7708,7 +7708,7 @@
7708
7708
  .e-filled.e-float-input.e-control-wrapper.e-input-focus:not(.e-input-group):not(.e-float-icon-left).e-success:not(.e-warning):not(.e-error) input,
7709
7709
  .e-filled.e-float-input.e-control-wrapper.e-input-focus:not(.e-input-group):not(.e-float-icon-left):not(.e-success).e-warning:not(.e-error) input,
7710
7710
  .e-filled.e-float-input.e-control-wrapper.e-input-focus:not(.e-input-group):not(.e-float-icon-left):not(.e-success):not(.e-warning).e-error input {
7711
- @if $input-skin-name == 'material' {
7711
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7712
7712
  border-width: $zero-value;
7713
7713
  }
7714
7714
  }
@@ -7717,7 +7717,7 @@
7717
7717
 
7718
7718
  .e-filled.e-input-group,
7719
7719
  .e-filled.e-input-group.e-control-wrapper {
7720
- @if $input-skin-name == 'material' {
7720
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7721
7721
  border-radius: 4px 4px $zero-value $zero-value;
7722
7722
  padding: $filled-wrapper-padding;
7723
7723
  }
@@ -7727,7 +7727,7 @@
7727
7727
  .e-bigger .e-filled.e-input-group,
7728
7728
  .e-filled.e-input-group.e-control-wrapper.e-bigger,
7729
7729
  .e-bigger .e-filled.e-input-group.e-control-wrapper {
7730
- @if $input-skin-name == 'material' {
7730
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7731
7731
  margin-top: $filled-wrapper-margin;
7732
7732
  padding: $bigger-filled-wrapper-padding;
7733
7733
  }
@@ -7736,7 +7736,7 @@
7736
7736
  .e-filled.e-input-group.e-small,
7737
7737
  .e-filled.e-input-group.e-control-wrapper.e-small,
7738
7738
  .e-small .e-filled.e-input-group.e-control-wrapper {
7739
- @if $input-skin-name == 'material' {
7739
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7740
7740
  margin-top: $filled-wrapper-margin;
7741
7741
  padding: $small-filled-wrapper-padding;
7742
7742
  }
@@ -7750,7 +7750,7 @@
7750
7750
  .e-bigger.e-small .e-filled.e-input-group.e-control-wrapper.e-small,
7751
7751
  .e-bigger .e-filled.e-input-group.e-control-wrapper.e-small,
7752
7752
  .e-small .e-filled.e-input-group.e-control-wrapper.e-bigger {
7753
- @if $input-skin-name == 'material' {
7753
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7754
7754
  margin-top: $filled-wrapper-margin;
7755
7755
  padding: $bigger-small-filled-wrapper-padding;
7756
7756
  }
@@ -7758,7 +7758,7 @@
7758
7758
 
7759
7759
  .e-filled.e-float-input,
7760
7760
  .e-filled.e-float-input.e-control-wrapper {
7761
- @if $input-skin-name == 'material' {
7761
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7762
7762
  border: $input-group-full-border;
7763
7763
  border-radius: 4px 4px $zero-value $zero-value;
7764
7764
  border-width: $input-group-full-border-width;
@@ -7771,7 +7771,7 @@
7771
7771
  .e-bigger .e-filled.e-float-input,
7772
7772
  .e-filled.e-float-input.e-control-wrapper.e-bigger,
7773
7773
  .e-bigger .e-filled.e-float-input.e-control-wrapper {
7774
- @if $input-skin-name == 'material' {
7774
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7775
7775
  margin-top: $filled-wrapper-margin;
7776
7776
  padding: $bigger-filled-float-input-wrapper-padding;
7777
7777
  }
@@ -7780,7 +7780,7 @@
7780
7780
  .e-filled.e-float-input.e-small,
7781
7781
  .e-filled.e-float-input.e-control-wrapper.e-small,
7782
7782
  .e-small .e-filled.e-float-input.e-control-wrapper {
7783
- @if $input-skin-name == 'material' {
7783
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7784
7784
  margin-top: $filled-wrapper-margin;
7785
7785
  padding: $small-filled-float-input-wrapper-padding;
7786
7786
  }
@@ -7794,7 +7794,7 @@
7794
7794
  .e-bigger.e-small .e-filled.e-float-input.e-control-wrapper.e-small,
7795
7795
  .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small,
7796
7796
  .e-small .e-filled.e-float-input.e-control-wrapper.e-bigger {
7797
- @if $input-skin-name == 'material' {
7797
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7798
7798
  margin-top: $filled-wrapper-margin;
7799
7799
  padding: $bigger-small-filled-float-input-wrapper-padding;
7800
7800
  }
@@ -7804,7 +7804,7 @@
7804
7804
  .e-rtl.e-filled.e-input-group.e-control-wrapper,
7805
7805
  .e-rtl .e-filled.e-input-group,
7806
7806
  .e-rtl .e-filled.e-input-group.e-control-wrapper {
7807
- @if $input-skin-name == 'material' {
7807
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7808
7808
  padding: $filled-wrapper-rtl-padding;
7809
7809
  }
7810
7810
  }
@@ -7817,7 +7817,7 @@
7817
7817
  .e-bigger.e-rtl .e-filled.e-input-group,
7818
7818
  .e-rtl .e-filled.e-input-group.e-control-wrapper.e-bigger,
7819
7819
  .e-bigger.e-rtl .e-filled.e-input-group.e-control-wrapper {
7820
- @if $input-skin-name == 'material' {
7820
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7821
7821
  padding: $bigger-filled-wrapper-rtl-padding;
7822
7822
  }
7823
7823
  }
@@ -7828,7 +7828,7 @@
7828
7828
  .e-rtl .e-filled.e-input-group.e-small,
7829
7829
  .e-rtl .e-filled.e-input-group.e-control-wrapper.e-small,
7830
7830
  .e-small.e-rtl .e-filled.e-input-group.e-control-wrapper {
7831
- @if $input-skin-name == 'material' {
7831
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7832
7832
  padding: $small-filled-wrapper-rtl-padding;
7833
7833
  }
7834
7834
  }
@@ -7849,7 +7849,7 @@
7849
7849
  .e-bigger.e-small.e-rtl .e-filled.e-input-group.e-control-wrapper.e-small,
7850
7850
  .e-bigger.e-rtl .e-filled.e-input-group.e-control-wrapper.e-small,
7851
7851
  .e-small.e-rtl .e-filled.e-input-group.e-control-wrapper.e-bigger {
7852
- @if $input-skin-name == 'material' {
7852
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7853
7853
  padding: $bigger-small-filled-wrapper-rtl-padding;
7854
7854
  }
7855
7855
  }
@@ -7858,7 +7858,7 @@
7858
7858
  .e-rtl.e-filled.e-float-input.e-control-wrapper,
7859
7859
  .e-rtl .e-filled.e-float-input,
7860
7860
  .e-rtl .e-filled.e-float-input.e-control-wrapper {
7861
- @if $input-skin-name == 'material' {
7861
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7862
7862
  padding: $filled-float-input-wrapper-rtl-padding;
7863
7863
  }
7864
7864
  }
@@ -7871,7 +7871,7 @@
7871
7871
  .e-bigger.e-rtl .e-filled.e-float-input,
7872
7872
  .e-rtl .e-filled.e-float-input.e-control-wrapper.e-bigger,
7873
7873
  .e-bigger.e-rtl .e-filled.e-float-input.e-control-wrapper {
7874
- @if $input-skin-name == 'material' {
7874
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7875
7875
  padding: $bigger-filled-float-input-wrapper-rtl-padding;
7876
7876
  }
7877
7877
  }
@@ -7882,7 +7882,7 @@
7882
7882
  .e-rtl .e-filled.e-float-input.e-small,
7883
7883
  .e-rtl .e-filled.e-float-input.e-control-wrapper.e-small,
7884
7884
  .e-small.e-rtl .e-filled.e-float-input.e-control-wrapper {
7885
- @if $input-skin-name == 'material' {
7885
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7886
7886
  padding: $small-filled-float-input-wrapper-rtl-padding;
7887
7887
  }
7888
7888
  }
@@ -7903,7 +7903,7 @@
7903
7903
  .e-bigger.e-small.e-rtl .e-filled.e-float-input.e-control-wrapper.e-small,
7904
7904
  .e-bigger.e-rtl .e-filled.e-float-input.e-control-wrapper.e-small,
7905
7905
  .e-small.e-rtl .e-filled.e-float-input.e-control-wrapper.e-bigger {
7906
- @if $input-skin-name == 'material' {
7906
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7907
7907
  padding: $bigger-small-filled-float-input-wrapper-rtl-padding;
7908
7908
  }
7909
7909
  }
@@ -7916,13 +7916,13 @@
7916
7916
  .e-filled textarea.e-input#{$css},
7917
7917
  .e-filled.e-input-group textarea.e-input,
7918
7918
  .e-filled.e-input-group.e-control-wrapper textarea.e-input {
7919
- @if $input-skin-name == 'material' {
7919
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7920
7920
  padding: $filled-input-padding;
7921
7921
  }
7922
7922
  }
7923
7923
 
7924
7924
  .e-filled .e-input#{$css}:focus {
7925
- @if $input-skin-name == 'material' {
7925
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7926
7926
  padding-bottom: $filled-input-padding-bottom;
7927
7927
  }
7928
7928
  }
@@ -7933,7 +7933,7 @@
7933
7933
  .e-filled.e-input-group.e-control-wrapper textarea.e-input:focus,
7934
7934
  .e-filled.e-input-group.e-input-focus input.e-input,
7935
7935
  .e-filled.e-input-group.e-control-wrapper.e-input-focus input.e-input {
7936
- @if $input-skin-name == 'material' {
7936
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7937
7937
  padding: $filled-input-padding;
7938
7938
  }
7939
7939
  }
@@ -7946,7 +7946,7 @@
7946
7946
  .e-bigger .e-filled textarea.e-input#{$css},
7947
7947
  .e-bigger .e-filled.e-input-group .e-input,
7948
7948
  .e-bigger .e-filled.e-input-group.e-control-wrapper .e-input {
7949
- @if $input-skin-name == 'material' {
7949
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7950
7950
  padding: $filled-bigger-input-padding;
7951
7951
  }
7952
7952
  }
@@ -7959,20 +7959,20 @@
7959
7959
  .e-bigger .e-filled.e-input-group.e-input-focus .e-input,
7960
7960
  .e-filled.e-input-group.e-control-wrapper.e-bigger.e-input-focus .e-input,
7961
7961
  .e-bigger .e-filled.e-input-group.e-control-wrapper.e-input-focus .e-input {
7962
- @if $input-skin-name == 'material' {
7962
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7963
7963
  padding: $filled-bigger-input-padding;
7964
7964
  }
7965
7965
  }
7966
7966
 
7967
7967
  .e-filled .e-input.e-bigger#{$css}:focus,
7968
7968
  .e-bigger .e-filled .e-input#{$css}:focus {
7969
- @if $input-skin-name == 'material' {
7969
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7970
7970
  padding-bottom: $filled-bigger-input-padding-bottom;
7971
7971
  }
7972
7972
  }
7973
7973
 
7974
7974
  .e-filled .e-input.e-small#{$css}:focus {
7975
- @if $input-skin-name == 'material' {
7975
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7976
7976
  padding-bottom: $filled-small-input-padding-bottom;
7977
7977
  }
7978
7978
  }
@@ -7980,7 +7980,7 @@
7980
7980
  .e-filled .e-input#{$css}.e-small,
7981
7981
  .e-filled.e-input-group.e-small .e-input,
7982
7982
  .e-filled.e-input-group.e-control-wrapper.e-small .e-input {
7983
- @if $input-skin-name == 'material' {
7983
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7984
7984
  padding: $filled-small-input-padding;
7985
7985
  }
7986
7986
  }
@@ -7989,14 +7989,14 @@
7989
7989
  .e-filled.e-input-group.e-control-wrapper.e-small .e-input:focus,
7990
7990
  .e-filled.e-input-group.e-small.e-input-focus .e-input,
7991
7991
  .e-filled.e-input-group.e-control-wrapper.e-small.e-input-focus .e-input {
7992
- @if $input-skin-name == 'material' {
7992
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
7993
7993
  padding: $filled-small-input-padding;
7994
7994
  }
7995
7995
  }
7996
7996
 
7997
7997
  .e-filled .e-input.e-small.e-bigger#{$css}:focus,
7998
7998
  .e-bigger .e-filled .e-input.e-small#{$css}:focus {
7999
- @if $input-skin-name == 'material' {
7999
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8000
8000
  padding-bottom: $filled-bigger-small-input-padding-bottom;
8001
8001
  }
8002
8002
  }
@@ -8004,7 +8004,7 @@
8004
8004
  .e-filled .e-input.e-small.e-bigger#{$css},
8005
8005
  .e-bigger .e-filled .e-input#{$css}.e-small,
8006
8006
  .e-small .e-filled .e-input#{$css}.e-bigger {
8007
- @if $input-skin-name == 'material' {
8007
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8008
8008
  padding: $filled-bigger-small-input-padding;
8009
8009
  }
8010
8010
  }
@@ -8015,7 +8015,7 @@
8015
8015
  .e-filled.e-input-group.e-control-wrapper.e-small .e-input.e-bigger,
8016
8016
  .e-bigger .e-filled.e-input-group.e-small .e-input,
8017
8017
  .e-bigger .e-filled.e-input-group.e-control-wrapper.e-small .e-input {
8018
- @if $input-skin-name == 'material' {
8018
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8019
8019
  padding: $filled-bigger-small-input-padding;
8020
8020
  }
8021
8021
  }
@@ -8032,14 +8032,14 @@
8032
8032
  .e-filled.e-input-group.e-control-wrapper.e-small.e-bigger.e-input-focus .e-input,
8033
8033
  .e-filled.e-input-group.e-control-wrapper.e-small.e-input-focus .e-input.e-bigger,
8034
8034
  .e-bigger .e-filled.e-input-group.e-control-wrapper.e-small.e-input-focus .e-input {
8035
- @if $input-skin-name == 'material' {
8035
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8036
8036
  padding: $filled-bigger-small-input-padding;
8037
8037
  }
8038
8038
  }
8039
8039
 
8040
8040
  .e-filled.e-float-input input,
8041
8041
  .e-filled.e-float-input.e-control-wrapper input {
8042
- @if $input-skin-name == 'material' {
8042
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8043
8043
  padding: $filled-float-input-padding;
8044
8044
  }
8045
8045
  }
@@ -8050,7 +8050,7 @@
8050
8050
  .e-filled.e-float-input.e-control-wrapper.e-bigger input,
8051
8051
  .e-filled.e-float-input.e-control-wrapper input.e-bigger,
8052
8052
  .e-bigger .e-filled.e-float-input.e-control-wrapper input {
8053
- @if $input-skin-name == 'material' {
8053
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8054
8054
  padding: $filled-bigger-float-input-padding;
8055
8055
  }
8056
8056
  }
@@ -8061,14 +8061,14 @@
8061
8061
  .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger input,
8062
8062
  .e-filled.e-float-input.e-control-wrapper.e-small input.e-bigger,
8063
8063
  .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small input {
8064
- @if $input-skin-name == 'material' {
8064
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8065
8065
  padding: $filled-bigger-small-float-input-padding;
8066
8066
  }
8067
8067
  }
8068
8068
 
8069
8069
  .e-filled.e-float-input.e-small input,
8070
8070
  .e-filled.e-float-input.e-control-wrapper.e-small input {
8071
- @if $input-skin-name == 'material' {
8071
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8072
8072
  padding: $filled-small-float-input-padding;
8073
8073
  }
8074
8074
  }
@@ -8090,7 +8090,7 @@
8090
8090
  .e-filled.e-input-group.e-control-wrapper.e-rtl.e-input-focus input.e-input,
8091
8091
  .e-rtl .e-filled.e-input-group.e-input-focus input.e-input,
8092
8092
  .e-rtl .e-filled.e-input-group.e-control-wrapper.e-input-focus input.e-input {
8093
- @if $input-skin-name == 'material' {
8093
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8094
8094
  padding: $filled-input-rtl-padding;
8095
8095
  text-indent: 0;
8096
8096
  }
@@ -8112,7 +8112,7 @@
8112
8112
  .e-filled.e-float-input.e-control-wrapper.e-rtl.e-input-focus input,
8113
8113
  .e-rtl .e-filled.e-float-input.e-input-focus input,
8114
8114
  .e-rtl .e-filled.e-float-input.e-control-wrapper.e-input-focus input {
8115
- @if $input-skin-name == 'material' {
8115
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8116
8116
  padding: $filled-float-input-rtl-padding;
8117
8117
  text-indent: 0;
8118
8118
  }
@@ -8142,7 +8142,7 @@
8142
8142
  .e-small.e-rtl .e-filled.e-input-group.e-input-focus input.e-input,
8143
8143
  .e-small .e-filled.e-input-group.e-control-wrapper.e-rtl.e-input-focus input.e-input,
8144
8144
  .e-small .e-filled.e-input-group.e-rtl.e-input-focus input.e-input {
8145
- @if $input-skin-name == 'material' {
8145
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8146
8146
  padding: $filled-small-input-rtl-padding;
8147
8147
  text-indent: 0;
8148
8148
  }
@@ -8168,7 +8168,7 @@
8168
8168
  .e-small.e-rtl .e-filled.e-float-input.e-input-focus input,
8169
8169
  .e-small .e-filled.e-float-input.e-control-wrapper.e-rtl.e-input-focus input,
8170
8170
  .e-small .e-filled.e-float-input.e-rtl.e-input-focus input {
8171
- @if $input-skin-name == 'material' {
8171
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8172
8172
  padding: $filled-small-float-input-rtl-padding;
8173
8173
  text-indent: 0;
8174
8174
  }
@@ -8198,7 +8198,7 @@
8198
8198
  .e-bigger.e-rtl .e-filled.e-input-group.e-control-wrapper.e-input-focus input.e-input,
8199
8199
  .e-bigger .e-filled.e-input-group.e-rtl.e-input-focus input.e-input,
8200
8200
  .e-bigger .e-filled.e-input-group.e-control-wrapper.e-rtl.e-input-focus input.e-input {
8201
- @if $input-skin-name == 'material' {
8201
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8202
8202
  padding: $filled-bigger-input-rtl-padding;
8203
8203
  text-indent: 0;
8204
8204
  }
@@ -8224,7 +8224,7 @@
8224
8224
  .e-bigger.e-rtl .e-filled.e-float-input.e-input-focus input,
8225
8225
  .e-bigger .e-filled.e-float-input.e-rtl.e-input-focus input,
8226
8226
  .e-bigger .e-filled.e-float-input.e-control-wrapper.e-rtl input {
8227
- @if $input-skin-name == 'material' {
8227
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8228
8228
  padding: $filled-bigger-float-input-rtl-padding;
8229
8229
  text-indent: 0;
8230
8230
  }
@@ -8268,7 +8268,7 @@
8268
8268
  .e-small.e-rtl .e-filled.e-input-group.e-control-wrapper.e-bigger.e-input-focus input.e-input,
8269
8269
  .e-rtl .e-filled.e-input-group.e-bigger.e-small.e-input-focus input.e-input,
8270
8270
  .e-rtl .e-filled.e-input-group.e-control-wrapper.e-bigger.e-small.e-input-focus input.e-input {
8271
- @if $input-skin-name == 'material' {
8271
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8272
8272
  padding: $filled-bigger-small-input-rtl-padding;
8273
8273
  text-indent: 0;
8274
8274
  }
@@ -8310,7 +8310,7 @@
8310
8310
  .e-small.e-rtl .e-filled.e-float-input.e-bigger.e-input-focus input,
8311
8311
  .e-rtl .e-filled.e-float-input.e-control-wrapper.e-bigger.e-small.e-input-focus input,
8312
8312
  .e-rtl .e-filled.e-float-input.e-bigger.e-small.e-input-focus input {
8313
- @if $input-skin-name == 'material' {
8313
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8314
8314
  padding: $filled-bigger-small-float-input-rtl-padding;
8315
8315
  text-indent: 0;
8316
8316
  }
@@ -8324,7 +8324,7 @@
8324
8324
  .e-filled.e-float-input.e-control-wrapper.e-disabled,
8325
8325
  .e-filled.e-float-input.e-input-group.e-disabled,
8326
8326
  .e-filled.e-float-input.e-input-group.e-control-wrapper.e-disabled {
8327
- @if $input-skin-name == 'material' {
8327
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8328
8328
  font-size: $filled-input-font-size;
8329
8329
  }
8330
8330
  }
@@ -8333,7 +8333,7 @@
8333
8333
  .e-bigger .e-filled.e-float-input,
8334
8334
  .e-filled.e-float-input.e-control-wrapper.e-bigger,
8335
8335
  .e-bigger .e-filled.e-float-input.e-control-wrapper {
8336
- @if $input-skin-name == 'material' {
8336
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8337
8337
  font-size: $bigger-filled-input-font-size;
8338
8338
  }
8339
8339
  }
@@ -8346,7 +8346,7 @@
8346
8346
  .e-bigger .e-filled.e-float-input.e-input-group.e-disabled,
8347
8347
  .e-filled.e-float-input.e-input-group.e-control-wrapper.e-bigger.e-disabled,
8348
8348
  .e-bigger .e-filled.e-float-input.e-input-group.e-control-wrapper.e-disabled {
8349
- @if $input-skin-name == 'material' {
8349
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8350
8350
  font-size: $bigger-filled-input-font-size;
8351
8351
  }
8352
8352
  }
@@ -8355,7 +8355,7 @@
8355
8355
  .e-small .e-filled.e-float-input,
8356
8356
  .e-filled.e-float-input.e-control-wrapper.e-small,
8357
8357
  .e-small .e-filled.e-float-input.e-control-wrapper {
8358
- @if $input-skin-name == 'material' {
8358
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8359
8359
  font-size: $small-filled-input-font-size;
8360
8360
  }
8361
8361
  }
@@ -8368,7 +8368,7 @@
8368
8368
  .e-small .e-filled.e-float-input.e-input-group.e-disabled,
8369
8369
  .e-filled.e-float-input.e-input-group.e-control-wrapper.e-small.e-disabled,
8370
8370
  .e-small .e-filled.e-float-input.e-input-group.e-control-wrapper.e-disabled {
8371
- @if $input-skin-name == 'material' {
8371
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8372
8372
  font-size: $small-filled-input-font-size;
8373
8373
  }
8374
8374
  }
@@ -8381,7 +8381,7 @@
8381
8381
  .e-small.e-bigger .e-filled.e-float-input.e-control-wrapper,
8382
8382
  .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small,
8383
8383
  .e-small .e-filled.e-float-input.e-control-wrapper.e-bigger {
8384
- @if $input-skin-name == 'material' {
8384
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8385
8385
  font-size: $bigger-small-filled-input-font-size;
8386
8386
  }
8387
8387
  }
@@ -8402,7 +8402,7 @@
8402
8402
  .e-small.e-bigger .e-filled.e-float-input.e-input-group.e-control-wrapper.e-disabled,
8403
8403
  .e-bigger .e-filled.e-float-input.e-input-group.e-control-wrapper.e-small.e-disabled,
8404
8404
  .e-small .e-filled.e-float-input.e-input-group.e-control-wrapper.e-bigger.e-disabled {
8405
- @if $input-skin-name == 'material' {
8405
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8406
8406
  font-size: $bigger-small-filled-input-font-size;
8407
8407
  }
8408
8408
  }
@@ -8413,7 +8413,7 @@
8413
8413
  .e-bigger .e-filled.e-input-group:not(.e-float-input) .e-input,
8414
8414
  .e-filled.e-input-group.e-control-wrapper.e-bigger:not(.e-float-input) .e-input,
8415
8415
  .e-bigger .e-filled.e-input-group.e-control-wrapper:not(.e-float-input) .e-input {
8416
- @if $input-skin-name == 'material' {
8416
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8417
8417
  min-height: $bigger-filled-default-input-min-height;
8418
8418
  }
8419
8419
  }
@@ -8430,7 +8430,7 @@
8430
8430
  .e-bigger .e-filled.e-float-input.e-control-wrapper.e-input-group input,
8431
8431
  .e-filled.e-float-input.e-control-wrapper.e-input-group.e-bigger input,
8432
8432
  .e-bigger .e-filled.e-float-input.e-control-wrapper.e-input-group input {
8433
- @if $input-skin-name == 'material' {
8433
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8434
8434
  min-height: $bigger-filled-input-min-height;
8435
8435
  }
8436
8436
  }
@@ -8439,7 +8439,7 @@
8439
8439
  .e-small .e-filled.e-input-group:not(.e-float-input) .e-input,
8440
8440
  .e-filled.e-input-group.e-control-wrapper.e-small:not(.e-float-input) .e-input,
8441
8441
  .e-small .e-filled.e-input-group.e-control-wrapper:not(.e-float-input) .e-input {
8442
- @if $input-skin-name == 'material' {
8442
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8443
8443
  min-height: $small-filled-default-input-min-height;
8444
8444
  }
8445
8445
  }
@@ -8456,7 +8456,7 @@
8456
8456
  .e-small .e-filled.e-float-input.e-control-wrapper.e-input-group input,
8457
8457
  .e-filled.e-float-input.e-control-wrapper.e-input-group.e-small input,
8458
8458
  .e-small .e-filled.e-float-input.e-control-wrapper.e-input-group input {
8459
- @if $input-skin-name == 'material' {
8459
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8460
8460
  min-height: $small-filled-input-min-height;
8461
8461
  }
8462
8462
  }
@@ -8465,7 +8465,7 @@
8465
8465
  .e-bigger .e-filled.e-input-group.e-small:not(.e-float-input) .e-input .e-small .e-filled.e-input-group.e-bigger:not(.e-float-input) .e-input,
8466
8466
  .e-filled.e-input-group.e-control-wrapper.e-bigger.e-small:not(.e-float-input) .e-input,
8467
8467
  .e-bigger .e-filled.e-input-group.e-control-wrapper.e-small:not(.e-float-input) .e-input .e-small .e-filled.e-input-group.e-control-wrapper.e-bigger:not(.e-float-input) .e-input {
8468
- @if $input-skin-name == 'material' {
8468
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8469
8469
  min-height: $bigger-small-filled-default-input-min-height;
8470
8470
  }
8471
8471
  }
@@ -8485,21 +8485,21 @@
8485
8485
  .e-float-input.e-control-wrapper.e-filled.e-input-group.e-bigger.e-small input,
8486
8486
  .e-bigger .e-float-input.e-control-wrapper.e-filled.e-input-group.e-small input,
8487
8487
  .e-small .e-float-input.e-control-wrapper.e-filled.e-input-group.e-bigger input {
8488
- @if $input-skin-name == 'material' {
8488
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8489
8489
  min-height: $bigger-small-filled-input-min-height;
8490
8490
  }
8491
8491
  }
8492
8492
 
8493
8493
  .e-filled.e-input-group input.e-input,
8494
8494
  .e-filled.e-input-group.e-control-wrapper input.e-input {
8495
- @if $input-skin-name == 'material' {
8495
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8496
8496
  min-height: $filled-default-input-min-height;
8497
8497
  }
8498
8498
  }
8499
8499
 
8500
8500
  .e-filled.e-input-group:not(.e-float-input) input.e-input,
8501
8501
  .e-filled.e-input-group:not(.e-float-input).e-control-wrapper input.e-input {
8502
- @if $input-skin-name == 'material' {
8502
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8503
8503
  min-height: $filled-default-input-min-height;
8504
8504
  }
8505
8505
  }
@@ -8507,7 +8507,7 @@
8507
8507
  .e-float-input.e-filled.e-input-group.e-control-wrapper input,
8508
8508
  .e-float-input.e-filled input,
8509
8509
  .e-float-input.e-filled.e-control-wrapper input {
8510
- @if $input-skin-name == 'material' {
8510
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8511
8511
  min-height: $filled-input-min-height;
8512
8512
  }
8513
8513
  }
@@ -8519,7 +8519,7 @@
8519
8519
  .e-filled.e-float-input.e-control-wrapper label.e-float-text,
8520
8520
  .e-filled.e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
8521
8521
  .e-filled.e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
8522
- @if $input-skin-name == 'material' {
8522
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8523
8523
  font-size: $filled-float-label-font-size;
8524
8524
  left: $filled-input-label-left;
8525
8525
  letter-spacing: .009375em;
@@ -8536,7 +8536,7 @@
8536
8536
 
8537
8537
  .e-filled.e-float-input textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
8538
8538
  .e-filled.e-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
8539
- @if $input-skin-name == 'material' {
8539
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8540
8540
  font-size: $filled-float-label-font-size;
8541
8541
  padding-left: $float-label-padding;
8542
8542
  top: $filled-input-label-top;
@@ -8559,7 +8559,7 @@
8559
8559
  .e-filled.e-float-input.e-control-wrapper input label.e-float-text.e-label-top,
8560
8560
  .e-filled.e-float-input.e-input-focus input ~ label.e-float-text,
8561
8561
  .e-filled.e-float-input.e-control-wrapper.e-input-focus input ~ label.e-float-text {
8562
- @if $input-skin-name == 'material' {
8562
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8563
8563
  font-size: $filled-float-label-font-size;
8564
8564
  top: $filled-input-label-top-after-floating;
8565
8565
  transform: translateY(-50%) scale(.75);
@@ -8578,7 +8578,7 @@
8578
8578
  .e-filled.e-float-input.e-control-wrapper textarea[readonly] ~ label.e-label-top.e-float-text,
8579
8579
  .e-filled.e-float-input.e-control-wrapper textarea[disabled] ~ label.e-label-top.e-float-text,
8580
8580
  .e-filled.e-float-input.e-control-wrapper textarea label.e-float-text.e-label-top {
8581
- @if $input-skin-name == 'material' {
8581
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8582
8582
  font-size: $filled-float-label-font-size;
8583
8583
  top: $filled-input-label-top-after-floating;
8584
8584
  transform: translateY(-50%) scale(.75);
@@ -8588,7 +8588,7 @@
8588
8588
  .e-filled.e-float-input input:-webkit-autofill ~ label.e-float-text,
8589
8589
  .e-filled.e-float-input.e-control-wrapper.e-autofill input:-webkit-autofill ~ label.e-float-text,
8590
8590
  .e-filled.e-float-input.e-control-wrapper.e-autofill:not(.e-input-focus) input:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom {
8591
- @if $input-skin-name == 'material' {
8591
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8592
8592
  font-size: $filled-float-label-font-size;
8593
8593
  top: $filled-input-label-top-after-floating;
8594
8594
  transform: translateY(-50%) scale(.75);
@@ -8599,7 +8599,7 @@
8599
8599
  .e-filled.e-float-input textarea:-webkit-autofill ~ label.e-float-text,
8600
8600
  .e-filled.e-float-input.e-control-wrapper.e-autofill textarea:-webkit-autofill ~ label.e-float-text,
8601
8601
  .e-filled.e-float-input.e-control-wrapper.e-autofill textarea:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom {
8602
- @if $input-skin-name == 'material' {
8602
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8603
8603
  font-size: $filled-float-label-font-size;
8604
8604
  top: $filled-input-label-top-after-floating;
8605
8605
  transform: translateY(-50%) scale(.75);
@@ -8631,7 +8631,7 @@
8631
8631
  .e-bigger .e-filled.e-float-input.e-input-focus input ~ label.e-float-text,
8632
8632
  .e-filled.e-float-input.e-control-wrapper.e-bigger.e-input-focus input ~ label.e-float-text,
8633
8633
  .e-bigger .e-filled.e-float-input.e-control-wrapper.e-input-focus input ~ label.e-float-text {
8634
- @if $input-skin-name == 'material' {
8634
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8635
8635
  font-size: $bigger-filled-float-label-font-size;
8636
8636
  top: $bigger-filled-input-label-top-after-floating;
8637
8637
  }
@@ -8649,7 +8649,7 @@
8649
8649
  .e-bigger .e-filled.e-float-input.e-control-wrapper textarea:focus ~ label.e-float-text,
8650
8650
  .e-bigger .e-filled.e-float-input.e-control-wrapper textarea:valid ~ label.e-float-text,
8651
8651
  .e-bigger .e-filled.e-float-input.e-control-wrapper textarea ~ label.e-label-top.e-float-text {
8652
- @if $input-skin-name == 'material' {
8652
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8653
8653
  font-size: $bigger-filled-float-label-font-size;
8654
8654
  top: $bigger-filled-input-label-top-after-floating;
8655
8655
  }
@@ -8661,7 +8661,7 @@
8661
8661
  .e-bigger.e-filled.e-float-input.e-control-wrapper.e-autofill input:-webkit-autofill ~ label.e-float-text,
8662
8662
  .e-bigger .e-filled.e-float-input.e-control-wrapper.e-autofill:not(.e-input-focus) input:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom,
8663
8663
  .e-bigger.e-filled.e-float-input.e-control-wrapper.e-autofill:not(.e-input-focus) input:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom {
8664
- @if $input-skin-name == 'material' {
8664
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8665
8665
  font-size: $bigger-filled-float-label-font-size;
8666
8666
  top: $bigger-filled-input-label-top-after-floating;
8667
8667
  transform: translateY(-50%) scale(.75);
@@ -8675,7 +8675,7 @@
8675
8675
  .e-bigger.e-filled.e-float-input.e-control-wrapper.e-autofill textarea:-webkit-autofill ~ label.e-float-text,
8676
8676
  .e-bigger .e-filled.e-float-input.e-control-wrapper.e-autofill textarea:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom,
8677
8677
  .e-bigger.e-filled.e-float-input.e-control-wrapper.e-autofill textarea:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom {
8678
- @if $input-skin-name == 'material' {
8678
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8679
8679
  font-size: $bigger-filled-float-label-font-size;
8680
8680
  top: $bigger-filled-input-label-top-after-floating;
8681
8681
  transform: translateY(-50%) scale(.75);
@@ -8697,7 +8697,7 @@
8697
8697
  .e-filled.e-float-input.e-control-wrapper.e-small input[disabled] ~ label.e-label-top.e-float-text,
8698
8698
  .e-filled.e-float-input.e-small.e-input-focus input ~ label.e-float-text,
8699
8699
  .e-filled.e-float-input.e-control-wrapper.e-small.e-input-focus input ~ label.e-float-text {
8700
- @if $input-skin-name == 'material' {
8700
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8701
8701
  font-size: $small-filled-float-label-font-size;
8702
8702
  top: $small-filled-input-label-top-after-floating;
8703
8703
  }
@@ -8711,7 +8711,7 @@
8711
8711
  .e-filled.e-float-input.e-control-wrapper.e-small textarea:valid ~ label.e-float-text,
8712
8712
  .e-filled.e-float-input.e-control-wrapper.e-small textarea ~ label.e-label-top.e-float-text,
8713
8713
  .e-small .e-filled.e-float-input.e-control-wrapper textarea ~ label.e-label-top.e-float-text {
8714
- @if $input-skin-name == 'material' {
8714
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8715
8715
  font-size: $small-filled-float-label-font-size;
8716
8716
  top: $small-filled-input-label-top-after-floating;
8717
8717
  }
@@ -8723,7 +8723,7 @@
8723
8723
  .e-small.e-filled.e-float-input.e-control-wrapper.e-autofill input:-webkit-autofill ~ label.e-float-text,
8724
8724
  .e-small .e-filled.e-float-input.e-control-wrapper.e-autofill:not(.e-input-focus) input:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom,
8725
8725
  .e-small.e-filled.e-float-input.e-control-wrapper.e-autofill:not(.e-input-focus) input:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom {
8726
- @if $input-skin-name == 'material' {
8726
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8727
8727
  font-size: $small-filled-float-label-font-size;
8728
8728
  top: $small-filled-input-label-top-after-floating;
8729
8729
  transform: translateY(-50%) scale(.75);
@@ -8737,7 +8737,7 @@
8737
8737
  .e-small.e-filled.e-float-input.e-control-wrapper.e-autofill textarea:-webkit-autofill ~ label.e-float-text,
8738
8738
  .e-small .e-filled.e-float-input.e-control-wrapper.e-autofill textarea:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom,
8739
8739
  .e-small.e-filled.e-float-input.e-control-wrapper.e-autofill textarea:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom {
8740
- @if $input-skin-name == 'material' {
8740
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8741
8741
  font-size: $small-filled-float-label-font-size;
8742
8742
  top: $small-filled-input-label-top-after-floating;
8743
8743
  transform: translateY(-50%) scale(.75);
@@ -8769,7 +8769,7 @@
8769
8769
  .e-bigger .e-filled.e-float-input.e-small.e-input-focus input ~ label.e-float-text,
8770
8770
  .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-input-focus input ~ label.e-float-text,
8771
8771
  .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-input-focus input ~ label.e-float-text {
8772
- @if $input-skin-name == 'material' {
8772
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8773
8773
  font-size: $bigger-small-filled-float-label-font-size;
8774
8774
  top: $bigger-small-filled-input-label-top-after-floating;
8775
8775
  }
@@ -8787,7 +8787,7 @@
8787
8787
  .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small textarea:focus ~ label.e-float-text,
8788
8788
  .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small textarea:valid ~ label.e-float-text,
8789
8789
  .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small textarea ~ label.e-label-top.e-float-text {
8790
- @if $input-skin-name == 'material' {
8790
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8791
8791
  font-size: $bigger-small-filled-float-label-font-size;
8792
8792
  top: $bigger-small-filled-input-label-top-after-floating;
8793
8793
  }
@@ -8803,7 +8803,7 @@
8803
8803
  .e-small.e-bigger.e-filled.e-float-input.e-control-wrapper.e-autofill:not(.e-input-focus) input:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom,
8804
8804
  .e-bigger .e-small.e-filled.e-float-input.e-control-wrapper.e-autofill:not(.e-input-focus) input:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom,
8805
8805
  .e-small .e-bigger.e-filled.e-float-input.e-control-wrapper.e-autofill:not(.e-input-focus) input:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom {
8806
- @if $input-skin-name == 'material' {
8806
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8807
8807
  font-size: $bigger-small-filled-float-label-font-size;
8808
8808
  top: $bigger-small-filled-input-label-top-after-floating;
8809
8809
  transform: translateY(-50%) scale(.75);
@@ -8821,7 +8821,7 @@
8821
8821
  .e-small.e-bigger.e-filled.e-float-input.e-control-wrapper.e-autofill textarea:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom,
8822
8822
  .e-bigger .e-small.e-filled.e-float-input.e-control-wrapper.e-autofill textarea:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom,
8823
8823
  .e-small .e-bigger.e-filled.e-float-input.e-control-wrapper.e-autofill textarea:not(:focus):valid:-webkit-autofill ~ label.e-float-text.e-label-bottom {
8824
- @if $input-skin-name == 'material' {
8824
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8825
8825
  font-size: $bigger-small-filled-float-label-font-size;
8826
8826
  top: $bigger-small-filled-input-label-top-after-floating;
8827
8827
  transform: translateY(-50%) scale(.75);
@@ -8841,7 +8841,7 @@
8841
8841
  .e-bigger .e-filled.e-float-input.e-control-wrapper label.e-float-text,
8842
8842
  .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
8843
8843
  .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
8844
- @if $input-skin-name == 'material' {
8844
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8845
8845
  font-size: $bigger-filled-float-label-font-size;
8846
8846
  top: $bigger-filled-input-label-top;
8847
8847
  }
@@ -8859,7 +8859,7 @@
8859
8859
  .e-bigger .e-filled.e-float-input.e-control-wrapper textarea ~ label.e-float-text,
8860
8860
  .e-filled.e-float-input.e-control-wrapper.e-bigger textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
8861
8861
  .e-bigger .e-filled.e-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
8862
- @if $input-skin-name == 'material' {
8862
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8863
8863
  font-size: $bigger-filled-float-label-font-size;
8864
8864
  top: $bigger-filled-input-label-top;
8865
8865
  }
@@ -8871,7 +8871,7 @@
8871
8871
  .e-filled.e-float-input.e-control-wrapper.e-small label.e-float-text,
8872
8872
  .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
8873
8873
  .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
8874
- @if $input-skin-name == 'material' {
8874
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8875
8875
  font-size: $small-filled-float-label-font-size;
8876
8876
  top: $small-filled-input-label-top;
8877
8877
  }
@@ -8881,7 +8881,7 @@
8881
8881
  .e-small .e-filled.e-float-input textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
8882
8882
  .e-filled.e-float-input.e-control-wrapper.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
8883
8883
  .e-small .e-filled.e-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
8884
- @if $input-skin-name == 'material' {
8884
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8885
8885
  font-size: $small-filled-float-label-font-size;
8886
8886
  top: $small-filled-input-label-top;
8887
8887
  }
@@ -8895,7 +8895,7 @@
8895
8895
  .e-filled.e-float-input.e-control-wrapper textarea ~ label.e-float-text.e-small,
8896
8896
  .e-filled.e-float-input.e-control-wrapper textarea.e-small ~ label.e-float-text,
8897
8897
  .e-small .e-filled.e-float-input.e-control-wrapper textarea ~ label.e-float-text {
8898
- @if $input-skin-name == 'material' {
8898
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8899
8899
  font-size: $small-filled-float-label-font-size;
8900
8900
  top: $small-filled-input-label-top;
8901
8901
  }
@@ -8915,7 +8915,7 @@
8915
8915
  .e-filled.e-float-input.e-control-wrapper.e-bigger.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
8916
8916
  .e-bigger.e-small .e-filled.e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
8917
8917
  .e-filled.e-float-input.e-control-wrapper.e-bigger.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
8918
- @if $input-skin-name == 'material' {
8918
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8919
8919
  font-size: $bigger-small-filled-float-label-font-size;
8920
8920
  top: $bigger-small-filled-input-label-top;
8921
8921
  transform: none;
@@ -8964,7 +8964,7 @@
8964
8964
  .e-filled.e-float-input.e-control-wrapper.e-bigger.e-small.e-input-focus input ~ label.e-float-text,
8965
8965
  .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-input-focus input ~ label.e-float-text,
8966
8966
  .e-small .e-filled.e-float-input.e-control-wrapper.e-bigger.e-input-focus input ~ label.e-float-text {
8967
- @if $input-skin-name == 'material' {
8967
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8968
8968
  transform: translateY(-50%) scale(.75);
8969
8969
  }
8970
8970
  }
@@ -8979,7 +8979,7 @@
8979
8979
  .e-filled.e-float-input.e-control-wrapper.e-bigger.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
8980
8980
  .e-bigger.e-small .e-filled.e-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
8981
8981
  .e-filled.e-float-input.e-control-wrapper.e-bigger.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
8982
- @if $input-skin-name == 'material' {
8982
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
8983
8983
  font-size: $bigger-small-filled-float-label-font-size;
8984
8984
  top: $bigger-small-filled-input-label-top;
8985
8985
  }
@@ -9021,7 +9021,7 @@
9021
9021
  .e-small .e-filled.e-float-input.e-control-wrapper.e-bigger textarea[readonly] ~ label.e-label-top.e-float-text,
9022
9022
  .e-small .e-filled.e-float-input.e-control-wrapper.e-bigger textarea[disabled] ~ label.e-label-top.e-float-text,
9023
9023
  .e-small .e-filled.e-float-input.e-control-wrapper.e-bigger textarea label.e-float-text.e-label-top {
9024
- @if $input-skin-name == 'material' {
9024
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9025
9025
  transform: translateY(-50%) scale(.75);
9026
9026
  }
9027
9027
  }
@@ -9034,14 +9034,14 @@
9034
9034
  .e-filled.e-float-input.e-control-wrapper label.e-float-text.e-label-bottom,
9035
9035
  .e-filled.e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
9036
9036
  .e-filled.e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
9037
- @if $input-skin-name == 'material' {
9037
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9038
9038
  left: $filled-input-label-left;
9039
9039
  }
9040
9040
  }
9041
9041
 
9042
9042
  .e-filled.e-float-input:not(.e-input-focus) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
9043
9043
  .e-filled.e-float-input.e-control-wrapper:not(.e-input-focus) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
9044
- @if $input-skin-name == 'material' {
9044
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9045
9045
  left: $filled-input-label-left;
9046
9046
  }
9047
9047
  }
@@ -9055,7 +9055,7 @@
9055
9055
  .e-filled.e-float-input.e-control-wrapper.e-rtl:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
9056
9056
  .e-rtl .e-filled.e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
9057
9057
  .e-rtl .e-filled.e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
9058
- @if $input-skin-name == 'material' {
9058
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9059
9059
  right: $filled-input-label-left;
9060
9060
  }
9061
9061
  }
@@ -9064,7 +9064,7 @@
9064
9064
  .e-filled.e-float-input.e-control-wrapper.e-rtl:not(.e-input-focus) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
9065
9065
  .e-rtl .e-filled.e-float-input:not(.e-input-focus) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
9066
9066
  .e-rtl .e-filled.e-float-input.e-control-wrapper:not(.e-input-focus) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
9067
- @if $input-skin-name == 'material' {
9067
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9068
9068
  right: $filled-input-label-left;
9069
9069
  }
9070
9070
  }
@@ -9081,7 +9081,7 @@
9081
9081
  .e-bigger .e-filled.e-float-input.e-control-wrapper label.e-float-text.e-label-bottom,
9082
9082
  .e-bigger .e-filled.e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
9083
9083
  .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
9084
- @if $input-skin-name == 'material' {
9084
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9085
9085
  left: $bigger-filled-input-label-left;
9086
9086
  }
9087
9087
  }
@@ -9090,7 +9090,7 @@
9090
9090
  .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-input-focus) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
9091
9091
  .e-bigger .e-filled.e-float-input:not(.e-input-focus) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
9092
9092
  .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-input-focus) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
9093
- @if $input-skin-name == 'material' {
9093
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9094
9094
  left: $bigger-filled-input-label-left;
9095
9095
  }
9096
9096
  }
@@ -9113,7 +9113,7 @@
9113
9113
  .e-bigger .e-filled.e-float-input.e-control-wrapper.e-rtl:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
9114
9114
  .e-rtl.e-bigger .e-filled.e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
9115
9115
  .e-rtl.e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
9116
- @if $input-skin-name == 'material' {
9116
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9117
9117
  right: $bigger-filled-input-label-left;
9118
9118
  }
9119
9119
  }
@@ -9126,7 +9126,7 @@
9126
9126
  .e-bigger .e-filled.e-float-input.e-control-wrapper.e-rtl:not(.e-input-focus) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
9127
9127
  .e-rtl.e-bigger .e-filled.e-float-input:not(.e-input-focus) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
9128
9128
  .e-rtl.e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-input-focus) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
9129
- @if $input-skin-name == 'material' {
9129
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9130
9130
  right: $bigger-filled-input-label-left;
9131
9131
  }
9132
9132
  }
@@ -9143,7 +9143,7 @@
9143
9143
  .e-small .e-filled.e-float-input.e-control-wrapper label.e-float-text.e-label-bottom,
9144
9144
  .e-small .e-filled.e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
9145
9145
  .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
9146
- @if $input-skin-name == 'material' {
9146
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9147
9147
  left: $small-filled-input-label-left;
9148
9148
  }
9149
9149
  }
@@ -9152,7 +9152,7 @@
9152
9152
  .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-input-focus) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
9153
9153
  .e-small .e-filled.e-float-input:not(.e-input-focus) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
9154
9154
  .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-input-focus) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
9155
- @if $input-skin-name == 'material' {
9155
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9156
9156
  left: $small-filled-input-label-left;
9157
9157
  }
9158
9158
  }
@@ -9175,7 +9175,7 @@
9175
9175
  .e-small .e-filled.e-float-input.e-control-wrapper.e-rtl:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
9176
9176
  .e-rtl.e-small .e-filled.e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
9177
9177
  .e-rtl.e-small .e-filled.e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
9178
- @if $input-skin-name == 'material' {
9178
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9179
9179
  right: $small-filled-input-label-left;
9180
9180
  }
9181
9181
  }
@@ -9188,7 +9188,7 @@
9188
9188
  .e-small .e-filled.e-float-input.e-control-wrapper.e-rtl:not(.e-input-focus) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
9189
9189
  .e-rtl.e-small .e-filled.e-float-input:not(.e-input-focus) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
9190
9190
  .e-rtl.e-small .e-filled.e-float-input.e-control-wrapper:not(.e-input-focus) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
9191
- @if $input-skin-name == 'material' {
9191
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9192
9192
  right: $small-filled-input-label-left;
9193
9193
  }
9194
9194
  }
@@ -9205,7 +9205,7 @@
9205
9205
  .e-small.e-bigger .e-filled.e-float-input.e-control-wrapper label.e-float-text.e-label-bottom,
9206
9206
  .e-small.e-bigger .e-filled.e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
9207
9207
  .e-small.e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
9208
- @if $input-skin-name == 'material' {
9208
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9209
9209
  left: $bigger-small-filled-input-label-left;
9210
9210
  }
9211
9211
  }
@@ -9214,7 +9214,7 @@
9214
9214
  .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-input-focus) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
9215
9215
  .e-small.e-bigger .e-filled.e-float-input:not(.e-input-focus) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
9216
9216
  .e-small.e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-input-focus) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
9217
- @if $input-skin-name == 'material' {
9217
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9218
9218
  left: $bigger-small-filled-input-label-left;
9219
9219
  }
9220
9220
  }
@@ -9239,7 +9239,7 @@
9239
9239
  .e-bigger .e-small.e-filled.e-float-input.e-control-wrapper.e-rtl:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
9240
9240
  .e-rtl.e-small.e-bigger .e-filled.e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
9241
9241
  .e-rtl.e-small.e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
9242
- @if $input-skin-name == 'material' {
9242
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9243
9243
  right: $bigger-small-filled-input-label-left;
9244
9244
  }
9245
9245
  }
@@ -9254,7 +9254,7 @@
9254
9254
  .e-bigger .e-small.e-filled.e-float-input.e-control-wrapper.e-rtl:not(.e-input-focus) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
9255
9255
  .e-rtl.e-small.e-bigger .e-filled.e-float-input:not(.e-input-focus) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
9256
9256
  .e-rtl.e-small.e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-input-focus) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
9257
- @if $input-skin-name == 'material' {
9257
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9258
9258
  right: $bigger-small-filled-input-label-left;
9259
9259
  }
9260
9260
  }
@@ -9263,7 +9263,7 @@
9263
9263
 
9264
9264
  .e-filled.e-float-input .e-float-line,
9265
9265
  .e-float-input.e-filled.e-control-wrapper .e-float-line {
9266
- @if $input-skin-name == 'material' {
9266
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9267
9267
  bottom: -1px;
9268
9268
  position: absolute;
9269
9269
  }
@@ -9273,7 +9273,7 @@
9273
9273
  .e-float-input.e-filled .e-float-text,
9274
9274
  .e-float-input.e-filled.e-control-wrapper .e-float-line,
9275
9275
  .e-float-input.e-filled.e-control-wrapper .e-float-text {
9276
- @if $input-skin-name == 'material' {
9276
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9277
9277
  right: $zero-value;
9278
9278
  }
9279
9279
  }
@@ -9282,7 +9282,7 @@
9282
9282
  .e-filled.e-filled.e-input-group:not(.e-disabled):not(.e-float-icon-left)::after,
9283
9283
  .e-filled.e-input-group.e-control-wrapper:not(.e-disabled):not(.e-float-icon-left)::before,
9284
9284
  .e-filled.e-input-group.e-control-wrapper:not(.e-disabled):not(.e-float-icon-left)::after {
9285
- @if $input-skin-name == 'material' {
9285
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9286
9286
  bottom: -1px;
9287
9287
  }
9288
9288
  }
@@ -9307,7 +9307,7 @@
9307
9307
  .e-filled.e-input-group.e-control-wrapper.e-small .e-input-group-icon,
9308
9308
  .e-small .e-filled.e-input-group .e-input-group-icon,
9309
9309
  .e-small .e-filled.e-input-group.e-control-wrapper .e-input-group-icon {
9310
- @if $input-skin-name == 'material' {
9310
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9311
9311
  font-size: $filled-input-icon-size;
9312
9312
  margin-bottom: $zero-value;
9313
9313
  margin-top: $zero-value;
@@ -9353,7 +9353,7 @@
9353
9353
  .e-rtl .e-filled.e-input-group.e-control-wrapper.e-small .e-input-group-icon,
9354
9354
  .e-small.e-rtl .e-filled.e-input-group .e-input-group-icon,
9355
9355
  .e-small.e-rtl .e-filled.e-input-group.e-control-wrapper .e-input-group-icon {
9356
- @if $input-skin-name == 'material' {
9356
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9357
9357
  padding: $zero-value 8px $zero-value $zero-value;
9358
9358
  }
9359
9359
  }
@@ -9362,7 +9362,7 @@
9362
9362
  .e-filled.e-input-group.e-control-wrapper.e-small .e-input-group-icon,
9363
9363
  .e-small .e-filled.e-input-group .e-input-group-icon,
9364
9364
  .e-small .e-filled.e-input-group.e-control-wrapper .e-input-group-icon {
9365
- @if $input-skin-name == 'material' {
9365
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9366
9366
  font-size: $small-filled-input-icon-size;
9367
9367
  min-height: $small-filled-input-icon-min-height;
9368
9368
  min-width: $small-filled-input-icon-min-height;
@@ -9378,7 +9378,7 @@
9378
9378
  .e-rtl .e-filled.e-input-group.e-control-wrapper.e-small .e-input-group-icon,
9379
9379
  .e-small.e-rtl .e-filled.e-input-group .e-input-group-icon,
9380
9380
  .e-small.e-rtl .e-filled.e-input-group.e-control-wrapper .e-input-group-icon {
9381
- @if $input-skin-name == 'material' {
9381
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9382
9382
  padding: $zero-value 4px $zero-value $zero-value;
9383
9383
  }
9384
9384
  }
@@ -9389,7 +9389,7 @@
9389
9389
  .e-filled.e-input-group.e-control-wrapper .e-input-group-icon.e-bigger,
9390
9390
  .e-bigger .e-filled.e-input-group .e-input-group-icon,
9391
9391
  .e-bigger .e-filled.e-input-group.e-control-wrapper .e-input-group-icon {
9392
- @if $input-skin-name == 'material' {
9392
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9393
9393
  font-size: $bigger-filled-input-icon-size;
9394
9394
  min-height: $bigger-filled-input-icon-min-height;
9395
9395
  min-width: $bigger-filled-input-icon-min-height;
@@ -9403,7 +9403,7 @@
9403
9403
  .e-filled.e-input-group.e-control-wrapper.e-small .e-input-group-icon.e-bigger,
9404
9404
  .e-bigger .e-filled.e-input-group.e-small .e-input-group-icon,
9405
9405
  .e-bigger .e-filled.e-input-group.e-control-wrapper.e-small .e-input-group-icon {
9406
- @if $input-skin-name == 'material' {
9406
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9407
9407
  font-size: $bigger-small-filled-input-icon-size;
9408
9408
  min-height: $bigger-small-filled-input-icon-min-height;
9409
9409
  min-width: $bigger-small-filled-input-icon-min-height;
@@ -9447,7 +9447,7 @@
9447
9447
  .e-small.e-rtl .e-filled.e-float-input.e-input-group .e-input-group-icon,
9448
9448
  .e-rtl .e-filled.e-float-input.e-control-wrapper.e-input-group.e-small .e-input-group-icon,
9449
9449
  .e-small.e-rtl .e-filled.e-float-input.e-control-wrapper.e-input-group .e-input-group-icon {
9450
- @if $input-skin-name == 'material' {
9450
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9451
9451
  padding: $zero-value 8px $zero-value $zero-value;
9452
9452
  }
9453
9453
  }
@@ -9470,11 +9470,11 @@
9470
9470
  .e-small .e-filled.e-float-input.e-input-group .e-input-group-icon,
9471
9471
  .e-filled.e-float-input.e-control-wrapper.e-input-group.e-small .e-input-group-icon,
9472
9472
  .e-small .e-filled.e-float-input.e-control-wrapper.e-input-group .e-input-group-icon {
9473
- @if $input-skin-name == 'material' {
9473
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9474
9474
  font-size: $filled-input-icon-size;
9475
9475
  margin-bottom: $zero-value;
9476
9476
  margin-top: $zero-value;
9477
- padding: $zero-value $zero-value $zero-value 8px;
9477
+ padding: 8px;
9478
9478
  }
9479
9479
  }
9480
9480
 
@@ -9482,7 +9482,7 @@
9482
9482
  .e-small .e-filled.e-float-input.e-input-group .e-input-group-icon,
9483
9483
  .e-filled.e-float-input.e-control-wrapper.e-input-group.e-small .e-input-group-icon,
9484
9484
  .e-small .e-filled.e-float-input.e-control-wrapper.e-input-group .e-input-group-icon {
9485
- @if $input-skin-name == 'material' {
9485
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9486
9486
  font-size: $small-filled-input-icon-size;
9487
9487
  padding: $zero-value $zero-value $zero-value 4px;
9488
9488
  }
@@ -9496,7 +9496,7 @@
9496
9496
  .e-small.e-rtl .e-filled.e-float-input.e-input-group .e-input-group-icon,
9497
9497
  .e-rtl .e-filled.e-float-input.e-control-wrapper.e-input-group.e-small .e-input-group-icon,
9498
9498
  .e-small.e-rtl .e-filled.e-float-input.e-control-wrapper.e-input-group .e-input-group-icon {
9499
- @if $input-skin-name == 'material' {
9499
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9500
9500
  padding: $zero-value 4px $zero-value $zero-value;
9501
9501
  }
9502
9502
  }
@@ -9507,7 +9507,7 @@
9507
9507
  .e-filled.e-float-input.e-control-wrapper.e-input-group.e-bigger .e-input-group-icon,
9508
9508
  .e-filled.e-float-input.e-control-wrapper.e-input-group .e-input-group-icon.e-bigger,
9509
9509
  .e-bigger .e-filled.e-float-input.e-control-wrapper.e-input-group .e-input-group-icon {
9510
- @if $input-skin-name == 'material' {
9510
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9511
9511
  font-size: $bigger-filled-input-icon-size;
9512
9512
  padding: $zero-value $zero-value $zero-value 8px;
9513
9513
  }
@@ -9519,7 +9519,7 @@
9519
9519
  .e-filled.e-float-input.e-control-wrapper.e-input-group.e-small.e-bigger .e-input-group-icon,
9520
9520
  .e-filled.e-float-input.e-control-wrapper.e-input-group.e-small .e-input-group-icon.e-bigger,
9521
9521
  .e-bigger .e-filled.e-float-input.e-control-wrapper.e-input-group.e-small .e-input-group-icon {
9522
- @if $input-skin-name == 'material' {
9522
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9523
9523
  font-size: $bigger-small-filled-input-icon-size;
9524
9524
  padding: $zero-value $zero-value $zero-value 8px;
9525
9525
  }
@@ -9531,7 +9531,7 @@
9531
9531
  .e-filled.e-float-input.e-control-wrapper .e-clear-icon,
9532
9532
  .e-filled.e-input-group .e-clear-icon,
9533
9533
  .e-filled.e-input-group.e-control-wrapper .e-clear-icon {
9534
- @if $input-skin-name == 'material' {
9534
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9535
9535
  font-size: $filled-input-clear-icon-size;
9536
9536
  padding: $zero-value $zero-value $zero-value 8px;
9537
9537
  }
@@ -9539,7 +9539,7 @@
9539
9539
 
9540
9540
  .e-filled.e-input-group .e-clear-icon,
9541
9541
  .e-filled.e-input-group.e-control-wrapper .e-clear-icon {
9542
- @if $input-skin-name == 'material' {
9542
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9543
9543
  min-height: $filled-input-icon-min-height;
9544
9544
  min-width: $filled-input-icon-min-height;
9545
9545
  padding: $zero-value $zero-value $zero-value 8px;
@@ -9548,7 +9548,7 @@
9548
9548
 
9549
9549
  .e-filled.e-float-input.e-input-group .e-clear-icon,
9550
9550
  .e-filled.e-float-input.e-input-group.e-control-wrapper .e-clear-icon {
9551
- @if $input-skin-name == 'material' {
9551
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9552
9552
  padding: $zero-value $zero-value $zero-value 8px;
9553
9553
  }
9554
9554
  }
@@ -9559,7 +9559,7 @@
9559
9559
  .e-filled.e-input-group.e-control-wrapper .e-clear-icon.e-bigger,
9560
9560
  .e-bigger .e-filled.e-input-group .e-clear-icon,
9561
9561
  .e-bigger .e-filled.e-input-group.e-control-wrapper .e-clear-icon {
9562
- @if $input-skin-name == 'material' {
9562
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9563
9563
  font-size: $bigger-filled-input-clear-icon-size;
9564
9564
  min-height: $bigger-filled-input-icon-min-height;
9565
9565
  min-width: $bigger-filled-input-icon-min-height;
@@ -9573,7 +9573,7 @@
9573
9573
  .e-filled.e-input-group.e-control-wrapper.e-float-input.e-bigger .e-clear-icon,
9574
9574
  .e-filled.e-input-group.e-control-wrapper.e-float-input .e-clear-icon.e-bigger,
9575
9575
  .e-bigger .e-filled.e-input-group.e-control-wrapper.e-float-input .e-clear-icon {
9576
- @if $input-skin-name == 'material' {
9576
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9577
9577
  padding: $zero-value $zero-value $zero-value 8px;
9578
9578
  }
9579
9579
  }
@@ -9584,7 +9584,7 @@
9584
9584
  .e-filled.e-input-group.e-control-wrapper.e-small.e-bigger .e-clear-icon,
9585
9585
  .e-filled.e-input-group.e-control-wrapper.e-small .e-clear-icon.e-bigger,
9586
9586
  .e-bigger .e-filled.e-input-group.e-control-wrapper.e-small .e-clear-icon {
9587
- @if $input-skin-name == 'material' {
9587
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9588
9588
  font-size: $bigger-small-filled-input-clear-icon-size;
9589
9589
  min-height: $bigger-small-filled-input-icon-min-height;
9590
9590
  min-width: $bigger-small-filled-input-icon-min-height;
@@ -9604,7 +9604,7 @@
9604
9604
  .e-filled.e-input-group.e-control-wrapper.e-float-input.e-small.e-bigger .e-clear-icon,
9605
9605
  .e-filled.e-input-group.e-control-wrapper.e-float-input.e-small .e-clear-icon.e-bigger,
9606
9606
  .e-bigger .e-filled.e-input-group.e-control-wrapper.e-float-input.e-small .e-clear-icon {
9607
- @if $input-skin-name == 'material' {
9607
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9608
9608
  padding: $zero-value $zero-value $zero-value 8px;
9609
9609
  }
9610
9610
  }
@@ -9615,7 +9615,7 @@
9615
9615
  .e-filled.e-input-group.e-control-wrapper.e-small .e-clear-icon,
9616
9616
  .e-filled.e-input-group.e-control-wrapper .e-clear-icon.e-small,
9617
9617
  .e-small .e-filled.e-input-group.e-control-wrapper .e-clear-icon {
9618
- @if $input-skin-name == 'material' {
9618
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9619
9619
  font-size: $small-filled-input-clear-icon-size;
9620
9620
  min-height: $small-filled-input-icon-min-height;
9621
9621
  min-width: $small-filled-input-icon-min-height;
@@ -9635,7 +9635,7 @@
9635
9635
  .e-filled.e-input-group.e-control-wrapper.e-float-input.e-small .e-clear-icon,
9636
9636
  .e-filled.e-input-group.e-control-wrapper.e-float-input .e-clear-icon.e-small,
9637
9637
  .e-small .e-filled.e-input-group.e-control-wrapper.e-float-input .e-clear-icon {
9638
- @if $input-skin-name == 'material' {
9638
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9639
9639
  padding: $zero-value $zero-value $zero-value 4px;
9640
9640
  }
9641
9641
  }
@@ -9676,7 +9676,7 @@
9676
9676
  .e-rtl .e-filled.e-input-group.e-control-wrapper.e-small .e-clear-icon,
9677
9677
  .e-small.e-rtl .e-filled.e-input-group .e-clear-icon,
9678
9678
  .e-small.e-rtl .e-filled.e-input-group.e-control-wrapper .e-clear-icon {
9679
- @if $input-skin-name == 'material' {
9679
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9680
9680
  padding: $zero-value 8px $zero-value $zero-value;
9681
9681
  }
9682
9682
  }
@@ -9689,7 +9689,7 @@
9689
9689
  .e-rtl .e-filled.e-input-group.e-control-wrapper.e-small .e-clear-icon,
9690
9690
  .e-small.e-rtl .e-filled.e-input-group .e-clear-icon,
9691
9691
  .e-small.e-rtl .e-filled.e-input-group.e-control-wrapper .e-clear-icon {
9692
- @if $input-skin-name == 'material' {
9692
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9693
9693
  padding: $zero-value 4px $zero-value $zero-value;
9694
9694
  }
9695
9695
  }
@@ -9730,7 +9730,7 @@
9730
9730
  .e-small.e-rtl .e-filled.e-float-input.e-input-group .e-clear-icon,
9731
9731
  .e-rtl .e-filled.e-float-input.e-control-wrapper.e-input-group.e-small .e-clear-icon,
9732
9732
  .e-small.e-rtl .e-filled.e-float-input.e-control-wrapper.e-input-group .e-clear-icon {
9733
- @if $input-skin-name == 'material' {
9733
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9734
9734
  padding: $zero-value 8px $zero-value $zero-value;
9735
9735
  }
9736
9736
  }
@@ -9743,7 +9743,7 @@
9743
9743
  .e-small.e-rtl .e-filled.e-float-input.e-input-group .e-clear-icon,
9744
9744
  .e-rtl .e-filled.e-float-input.e-control-wrapper.e-input-group.e-small .e-clear-icon,
9745
9745
  .e-small.e-rtl .e-filled.e-float-input.e-control-wrapper.e-input-group .e-clear-icon {
9746
- @if $input-skin-name == 'material' {
9746
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9747
9747
  padding: $zero-value 4px $zero-value $zero-value;
9748
9748
  }
9749
9749
  }
@@ -9752,7 +9752,7 @@
9752
9752
  .e-filled.e-float-input.e-control-wrapper .e-clear-icon::before,
9753
9753
  .e-filled.e-input-group .e-clear-icon::before,
9754
9754
  .e-filled.e-input-group.e-control-wrapper .e-clear-icon::before {
9755
- @if $input-skin-name == 'material' {
9755
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9756
9756
  font-size: $filled-input-clear-icon-size;
9757
9757
  }
9758
9758
  }
@@ -9767,7 +9767,7 @@
9767
9767
  .e-small .e-filled.e-float-input .e-clear-icon::before,
9768
9768
  .e-small .e-filled.e-input-group .e-clear-icon::before,
9769
9769
  .e-small .e-filled.e-input-group.e-control-wrapper .e-clear-icon::before {
9770
- @if $input-skin-name == 'material' {
9770
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9771
9771
  font-size: $small-filled-input-clear-icon-size;
9772
9772
  }
9773
9773
  }
@@ -9782,7 +9782,7 @@
9782
9782
  .e-bigger .e-filled.e-float-input .e-clear-icon::before,
9783
9783
  .e-bigger .e-filled.e-input-group .e-clear-icon::before,
9784
9784
  .e-bigger .e-filled.e-input-group.e-control-wrapper .e-clear-icon::before {
9785
- @if $input-skin-name == 'material' {
9785
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9786
9786
  font-size: $bigger-filled-input-clear-icon-size;
9787
9787
  }
9788
9788
  }
@@ -9799,7 +9799,7 @@
9799
9799
  .e-small .e-filled.e-float-input.e-bigger input:first-child ~ .e-clear-icon::before,
9800
9800
  .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small input:first-child ~ .e-clear-icon::before,
9801
9801
  .e-bigger .e-filled.e-float-input.e-small input:first-child ~ .e-clear-icon::before {
9802
- @if $input-skin-name == 'material' {
9802
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9803
9803
  font-size: $bigger-small-filled-input-clear-icon-size;
9804
9804
  }
9805
9805
  }
@@ -9818,7 +9818,7 @@
9818
9818
  .e-filled.e-float-input.e-control-wrapper .e-input-in-wrap input[readonly] ~ label.e-label-top.e-float-text,
9819
9819
  .e-filled.e-float-input.e-control-wrapper .e-input-in-wrap input[disabled] ~ label.e-label-top.e-float-text,
9820
9820
  .e-filled.e-float-input.e-control-wrapper .e-input-in-wrap input label.e-float-text.e-label-top {
9821
- @if $input-skin-name == 'material' {
9821
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9822
9822
  top: $filled-input-label-top-after-floating;
9823
9823
  }
9824
9824
  }
@@ -9843,7 +9843,7 @@
9843
9843
  .e-bigger .e-filled.e-float-input.e-control-wrapper .e-input-in-wrap input ~ label.e-label-top.e-float-text,
9844
9844
  .e-bigger .e-filled.e-float-input.e-control-wrapper .e-input-in-wrap input[readonly] ~ label.e-label-top.e-float-text,
9845
9845
  .e-bigger .e-filled.e-float-input.e-control-wrapper .e-input-in-wrap input[disabled] ~ label.e-label-top.e-float-text {
9846
- @if $input-skin-name == 'material' {
9846
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9847
9847
  top: $bigger-filled-input-label-top-after-floating;
9848
9848
  }
9849
9849
  }
@@ -9860,7 +9860,7 @@
9860
9860
  .e-small .e-filled.e-float-input.e-control-wrapper .e-input-in-wrap input ~ label.e-label-top.e-float-text,
9861
9861
  .e-filled.e-float-input.e-control-wrapper.e-small .e-input-in-wrap input[readonly] ~ label.e-label-top.e-float-text,
9862
9862
  .e-filled.e-float-input.e-control-wrapper.e-small .e-input-in-wrap input[disabled] ~ label.e-label-top.e-float-text {
9863
- @if $input-skin-name == 'material' {
9863
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9864
9864
  top: $small-filled-input-label-top-after-floating;
9865
9865
  }
9866
9866
  }
@@ -9885,7 +9885,7 @@
9885
9885
  .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small .e-input-in-wrap input ~ label.e-label-top.e-float-text,
9886
9886
  .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small .e-input-in-wrap input[readonly] ~ label.e-float-text,
9887
9887
  .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small .e-input-in-wrap input[disabled] ~ label.e-float-text {
9888
- @if $input-skin-name == 'material' {
9888
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9889
9889
  top: $bigger-small-filled-input-label-top-after-floating;
9890
9890
  }
9891
9891
  }
@@ -9898,7 +9898,7 @@
9898
9898
  .e-filled.e-input-group.e-control-wrapper.e-float-icon-left.e-input-focus.e-success:not(.e-warning):not(.e-error) .e-input-in-wrap,
9899
9899
  .e-filled.e-input-group.e-control-wrapper.e-float-icon-left.e-input-focus.e-warning:not(.e-success):not(.e-error) .e-input-in-wrap,
9900
9900
  .e-filled.e-input-group.e-control-wrapper.e-float-icon-left.e-input-focus.e-error:not(.e-success):not(.e-warning) .e-input-in-wrap {
9901
- @if $input-skin-name == 'material' {
9901
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9902
9902
  border-style: none;
9903
9903
  border-width: $zero-value;
9904
9904
  }
@@ -9908,7 +9908,7 @@
9908
9908
  .e-filled.e-float-input:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
9909
9909
  .e-filled.e-float-input.e-control-wrapper .e-input-in-wrap label.e-float-text,
9910
9910
  .e-filled.e-float-input.e-control-wrapper:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
9911
- @if $input-skin-name == 'material' {
9911
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9912
9912
  top: $filled-input-label-top;
9913
9913
  }
9914
9914
  }
@@ -9925,7 +9925,7 @@
9925
9925
  .e-bigger.e-filled.e-float-input.e-control-wrapper .e-input-in-wrap label.e-float-text,
9926
9926
  .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
9927
9927
  .e-bigger.e-filled.e-float-input.e-control-wrapper:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
9928
- @if $input-skin-name == 'material' {
9928
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9929
9929
  top: $bigger-filled-input-label-top;
9930
9930
  }
9931
9931
  }
@@ -9938,7 +9938,7 @@
9938
9938
  .e-small .e-filled.e-float-input.e-control-wrapper .e-input-in-wrap label.e-float-text,
9939
9939
  .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
9940
9940
  .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
9941
- @if $input-skin-name == 'material' {
9941
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9942
9942
  top: $small-filled-input-label-top;
9943
9943
  }
9944
9944
  }
@@ -9955,14 +9955,14 @@
9955
9955
  .e-small .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
9956
9956
  .e-filled.e-float-input.e-control-wrapper.e-bigger.e-small:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
9957
9957
  .e-bigger.e-small .e-filled.e-float-input.e-control-wrapper:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
9958
- @if $input-skin-name == 'material' {
9958
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9959
9959
  top: $bigger-small-filled-input-label-top;
9960
9960
  }
9961
9961
  }
9962
9962
 
9963
9963
  .e-filled.e-input-group:not(.e-float-input).e-float-icon-left > .e-input-group-icon,
9964
9964
  .e-filled.e-input-group:not(.e-float-input).e-control-wrapper.e-float-icon-left > .e-input-group-icon {
9965
- @if $input-skin-name == 'material' {
9965
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9966
9966
  font-size: $filled-input-icon-size;
9967
9967
  margin: $zero-value;
9968
9968
  min-height: $filled-input-left-icon-min-height;
@@ -9977,7 +9977,7 @@
9977
9977
  .e-filled.e-input-group:not(.e-float-input).e-control-wrapper.e-bigger.e-float-icon-left > .e-input-group-icon,
9978
9978
  .e-filled.e-input-group:not(.e-float-input).e-control-wrapper.e-float-icon-left > .e-input-group-icon.e-bigger,
9979
9979
  .e-bigger .e-filled.e-input-group:not(.e-float-input).e-control-wrapper.e-float-icon-left > .e-input-group-icon {
9980
- @if $input-skin-name == 'material' {
9980
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9981
9981
  font-size: $bigger-filled-input-icon-size;
9982
9982
  margin: $zero-value;
9983
9983
  min-height: $bigger-filled-input-left-icon-min-height;
@@ -9992,7 +9992,7 @@
9992
9992
  .e-filled.e-input-group:not(.e-float-input).e-control-wrapper.e-float-icon-left > .e-input-group-icon.e-small,
9993
9993
  .e-small .e-filled.e-input-group:not(.e-float-input).e-float-icon-left > .e-input-group-icon,
9994
9994
  .e-small .e-filled.e-input-group:not(.e-float-input).e-control-wrapper.e-float-icon-left > .e-input-group-icon {
9995
- @if $input-skin-name == 'material' {
9995
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
9996
9996
  font-size: $small-filled-input-icon-size;
9997
9997
  margin: $zero-value;
9998
9998
  min-height: $small-filled-input-left-icon-min-height;
@@ -10007,7 +10007,7 @@
10007
10007
  .e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-small.e-bigger.e-float-icon-left > .e-input-group-icon,
10008
10008
  .e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-small.e-float-icon-left > .e-input-group-icon.e-bigger,
10009
10009
  .e-bigger .e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-small.e-float-icon-left > .e-input-group-icon {
10010
- @if $input-skin-name == 'material' {
10010
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10011
10011
  font-size: $bigger-small-filled-input-icon-size;
10012
10012
  margin: $zero-value;
10013
10013
  min-height: $bigger-small-filled-input-left-icon-min-height;
@@ -10020,7 +10020,7 @@
10020
10020
  .e-filled.e-float-input.e-input-group.e-float-icon-left > .e-input-group-icon,
10021
10021
  .e-filled.e-input-group.e-control-wrapper.e-float-icon-left > .e-input-group-icon,
10022
10022
  .e-filled.e-float-input.e-input-group.e-control-wrapper.e-float-icon-left > .e-input-group-icon {
10023
- @if $input-skin-name == 'material' {
10023
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10024
10024
  margin: $zero-value;
10025
10025
  min-height: $filled-input-left-icon-min-height;
10026
10026
  min-width: $filled-input-left-icon-min-width;
@@ -10040,7 +10040,7 @@
10040
10040
  .e-filled.e-float-input.e-input-group.e-control-wrapper.e-bigger.e-float-icon-left > .e-input-group-icon,
10041
10041
  .e-filled.e-float-input.e-input-group.e-control-wrapper.e-float-icon-left > .e-input-group-icon.e-bigger,
10042
10042
  .e-bigger .e-filled.e-float-input.e-input-group.e-control-wrapper.e-float-icon-left > .e-input-group-icon {
10043
- @if $input-skin-name == 'material' {
10043
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10044
10044
  margin: $zero-value;
10045
10045
  min-height: $bigger-filled-input-left-icon-min-height;
10046
10046
  min-width: $bigger-filled-input-left-icon-min-width;
@@ -10060,7 +10060,7 @@
10060
10060
  .e-filled.e-float-input.e-control-wrapper.e-input-group.e-small.e-float-icon-left > .e-input-group-icon,
10061
10061
  .e-filled.e-float-input.e-control-wrapper.e-input-group.e-float-icon-left > .e-input-group-icon.e-small,
10062
10062
  .e-small .e-filled.e-float-input.e-control-wrapper.e-input-group.e-float-icon-left > .e-input-group-icon {
10063
- @if $input-skin-name == 'material' {
10063
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10064
10064
  margin: $zero-value;
10065
10065
  min-height: $small-filled-input-left-icon-min-height;
10066
10066
  min-width: $small-filled-input-left-icon-min-width;
@@ -10080,7 +10080,7 @@
10080
10080
  .e-filled.e-float-input.e-control-wrapper.e-input-group.e-small.e-bigger.e-float-icon-left > .e-input-group-icon,
10081
10081
  .e-filled.e-float-input.e-control-wrapper.e-input-group.e-small.e-float-icon-left > .e-input-group-icon.e-bigger,
10082
10082
  .e-bigger .e-filled.e-input-group.e-control-wrapper.e-float-input.e-small.e-float-icon-left > .e-input-group-icon {
10083
- @if $input-skin-name == 'material' {
10083
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10084
10084
  margin: $zero-value;
10085
10085
  min-height: $bigger-small-filled-input-left-icon-min-height;
10086
10086
  min-width: $bigger-small-filled-input-left-icon-min-width;
@@ -10094,7 +10094,7 @@
10094
10094
  .e-filled.e-float-input.e-control-wrapper .e-input-in-wrap label.e-float-text.e-label-bottom,
10095
10095
  .e-filled.e-float-input:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
10096
10096
  .e-filled.e-float-input.e-control-wrapper:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
10097
- @if $input-skin-name == 'material' {
10097
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10098
10098
  left: $zero-value;
10099
10099
  }
10100
10100
  }
@@ -10108,7 +10108,7 @@
10108
10108
  .e-filled.e-float-input.e-control-wrapper.e-rtl:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
10109
10109
  .e-rtl .e-filled.e-float-input:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
10110
10110
  .e-rtl .e-filled.e-float-input.e-control-wrapper:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
10111
- @if $input-skin-name == 'material' {
10111
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10112
10112
  right: $zero-value;
10113
10113
  }
10114
10114
  }
@@ -10124,7 +10124,7 @@
10124
10124
  .e-bigger .e-filled.e-float-input.e-control-wrapper .e-input-in-wrap label.e-float-text.e-label-bottom,
10125
10125
  .e-bigger .e-filled.e-float-input:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
10126
10126
  .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
10127
- @if $input-skin-name == 'material' {
10127
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10128
10128
  left: $zero-value;
10129
10129
  }
10130
10130
  }
@@ -10147,7 +10147,7 @@
10147
10147
  .e-bigger .e-filled.e-float-input.e-control-wrapper.e-rtl:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
10148
10148
  .e-rtl.e-bigger .e-filled.e-float-input:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
10149
10149
  .e-rtl.e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
10150
- @if $input-skin-name == 'material' {
10150
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10151
10151
  right: $zero-value;
10152
10152
  }
10153
10153
  }
@@ -10163,7 +10163,7 @@
10163
10163
  .e-small .e-filled.e-float-input.e-control-wrapper .e-input-in-wrap label.e-float-text.e-label-bottom,
10164
10164
  .e-small .e-filled.e-float-input:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
10165
10165
  .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
10166
- @if $input-skin-name == 'material' {
10166
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10167
10167
  left: $zero-value;
10168
10168
  }
10169
10169
  }
@@ -10186,7 +10186,7 @@
10186
10186
  .e-small .e-filled.e-float-input.e-control-wrapper.e-rtl:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
10187
10187
  .e-rtl.e-small .e-filled.e-float-input:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
10188
10188
  .e-rtl.e-small .e-filled.e-float-input.e-control-wrapper:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
10189
- @if $input-skin-name == 'material' {
10189
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10190
10190
  right: $zero-value;
10191
10191
  }
10192
10192
  }
@@ -10202,7 +10202,7 @@
10202
10202
  .e-small.e-bigger .e-filled.e-float-input.e-control-wrapper .e-input-in-wrap label.e-float-text.e-label-bottom,
10203
10203
  .e-small.e-bigger .e-filled.e-float-input:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
10204
10204
  .e-small.e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
10205
- @if $input-skin-name == 'material' {
10205
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10206
10206
  left: $zero-value;
10207
10207
  }
10208
10208
  }
@@ -10227,7 +10227,7 @@
10227
10227
  .e-bigger .e-small.e-filled.e-float-input.e-control-wrapper.e-rtl:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
10228
10228
  .e-rtl.e-small.e-bigger .e-filled.e-float-input:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
10229
10229
  .e-rtl.e-small.e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-input-focus) .e-input-in-wrap input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
10230
- @if $input-skin-name == 'material' {
10230
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10231
10231
  right: $zero-value;
10232
10232
  }
10233
10233
  }
@@ -10250,7 +10250,7 @@
10250
10250
  .e-small.e-bigger .e-filled.e-input-group.e-control-wrapper .e-input-group-icon:last-child,
10251
10251
  .e-bigger .e-filled.e-input-group.e-small.e-control-wrapper .e-input-group-icon:last-child,
10252
10252
  .e-small .e-filled.e-input-group.e-bigger.e-control-wrapper .e-input-group-icon:last-child {
10253
- @if $input-skin-name == 'material' {
10253
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10254
10254
  margin-right: $zero-value;
10255
10255
  }
10256
10256
  }
@@ -10291,7 +10291,7 @@
10291
10291
  .e-rtl.e-small.e-bigger .e-filled.e-input-group.e-control-wrapper .e-input-group-icon:last-child,
10292
10292
  .e-rtl.e-bigger .e-filled.e-input-group.e-small.e-control-wrapper .e-input-group-icon:last-child,
10293
10293
  .e-rtl.e-small .e-filled.e-input-group.e-bigger.e-control-wrapper .e-input-group-icon:last-child {
10294
- @if $input-skin-name == 'material' {
10294
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10295
10295
  margin-left: $zero-value;
10296
10296
  }
10297
10297
  }
@@ -10302,7 +10302,7 @@
10302
10302
  .e-filled.e-input-group.e-control-wrapper.e-small.e-bigger .e-input-group-icon,
10303
10303
  .e-small.e-bigger .e-filled.e-input-group .e-input-group-icon,
10304
10304
  .e-small.e-bigger .e-filled.e-input-group.e-control-wrapper .e-input-group-icon {
10305
- @if $input-skin-name == 'material' {
10305
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10306
10306
  margin-right: $zero-value;
10307
10307
  }
10308
10308
  }
@@ -10319,7 +10319,7 @@
10319
10319
  .e-rtl .e-filled.e-input-group.e-control-wrapper.e-small.e-bigger .e-input-group-icon,
10320
10320
  .e-rtl.e-small.e-bigger .e-filled.e-input-group .e-input-group-icon,
10321
10321
  .e-rtl.e-small.e-bigger .e-filled.e-input-group.e-control-wrapper .e-input-group-icon {
10322
- @if $input-skin-name == 'material' {
10322
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10323
10323
  margin-left: $zero-value;
10324
10324
  margin-right: $zero-value;
10325
10325
  }
@@ -10329,7 +10329,7 @@
10329
10329
  .e-filled.e-input-group.e-control-wrapper.e-small .e-input-group-icon,
10330
10330
  .e-small .e-filled.e-input-group .e-input-group-icon,
10331
10331
  .e-small .e-filled.e-input-group.e-control-wrapper .e-input-group-icon {
10332
- @if $input-skin-name == 'material' {
10332
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10333
10333
  margin-right: $zero-value;
10334
10334
  }
10335
10335
  }
@@ -10342,7 +10342,7 @@
10342
10342
  .e-rtl .e-filled.e-input-group.e-control-wrapper.e-small .e-input-group-icon,
10343
10343
  .e-rtl.e-small .e-filled.e-input-group .e-input-group-icon,
10344
10344
  .e-rtl.e-small .e-filled.e-input-group.e-control-wrapper .e-input-group-icon {
10345
- @if $input-skin-name == 'material' {
10345
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10346
10346
  margin-left: $zero-value;
10347
10347
  margin-right: $zero-value;
10348
10348
  }
@@ -10367,14 +10367,14 @@
10367
10367
  .e-filled.e-input-group.e-control-wrapper.e-input-focus textarea,
10368
10368
  .e-filled.e-input-group.e-control-wrapper textarea.e-input,
10369
10369
  .e-filled.e-input-group.e-control-wrapper.e-input-focus textarea.e-input {
10370
- @if $input-skin-name == 'material' {
10370
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10371
10371
  padding: $filled-textarea-padding;
10372
10372
  }
10373
10373
  }
10374
10374
 
10375
10375
  .e-filled.e-float-input textarea,
10376
10376
  .e-filled.e-float-input.e-control-wrapper textarea {
10377
- @if $input-skin-name == 'material' {
10377
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10378
10378
  padding: $filled-float-textarea-padding;
10379
10379
  }
10380
10380
  }
@@ -10391,7 +10391,7 @@
10391
10391
  .e-bigger .e-filled.e-input-group textarea.e-input,
10392
10392
  .e-bigger .e-filled.e-input-group.e-control-wrapper textarea,
10393
10393
  .e-bigger .e-filled.e-input-group.e-control-wrapper textarea.e-input {
10394
- @if $input-skin-name == 'material' {
10394
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10395
10395
  padding: $filled-bigger-textarea-padding;
10396
10396
  }
10397
10397
  }
@@ -10402,7 +10402,7 @@
10402
10402
  .e-filled.e-float-input.e-control-wrapper textarea.e-bigger,
10403
10403
  .e-bigger .e-filled.e-float-input textarea,
10404
10404
  .e-bigger .e-filled.e-float-input.e-control-wrapper textarea {
10405
- @if $input-skin-name == 'material' {
10405
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10406
10406
  padding: $filled-bigger-float-textarea-padding;
10407
10407
  }
10408
10408
  }
@@ -10418,7 +10418,7 @@
10418
10418
  .e-bigger .e-filled.e-input-group.e-input-focus textarea,
10419
10419
  .e-bigger .e-filled.e-input-group.e-control-wrapper.e-input-focus textarea,
10420
10420
  .e-bigger .e-filled.e-input-group.e-control-wrapper.e-input-focus textarea.e-input {
10421
- @if $input-skin-name == 'material' {
10421
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10422
10422
  padding: $filled-bigger-textarea-padding;
10423
10423
  }
10424
10424
  }
@@ -10431,7 +10431,7 @@
10431
10431
  .e-filled.e-input-group.e-control-wrapper.e-small textarea.e-input,
10432
10432
  .e-small .e-filled.e-input-group textarea,
10433
10433
  .e-small .e-filled.e-input-group textarea.e-input {
10434
- @if $input-skin-name == 'material' {
10434
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10435
10435
  padding: $filled-small-textarea-padding;
10436
10436
  }
10437
10437
  }
@@ -10442,7 +10442,7 @@
10442
10442
  .e-filled.e-float-input.e-control-wrapper textarea.e-small,
10443
10443
  .e-small .e-filled.e-float-input textarea,
10444
10444
  .e-small .e-filled.e-float-input.e-control-wrapper textarea {
10445
- @if $input-skin-name == 'material' {
10445
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10446
10446
  padding: $filled-small-float-textarea-padding;
10447
10447
  }
10448
10448
  }
@@ -10456,7 +10456,7 @@
10456
10456
  .e-filled.e-input-group.e-control-wrapper.e-input-focus.e-small textarea.e-input,
10457
10457
  .e-small .e-filled.e-input-group.e-input-focus textarea,
10458
10458
  .e-small .e-filled.e-input-group.e-input-focus textarea.e-input {
10459
- @if $input-skin-name == 'material' {
10459
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10460
10460
  padding: $filled-small-textarea-padding;
10461
10461
  }
10462
10462
  }
@@ -10477,7 +10477,7 @@
10477
10477
  .e-small .e-filled.e-input-group.e-bigger textarea.e-input,
10478
10478
  .e-small .e-filled.e-input-group.e-control-wrapper textarea.e-input.e-bigger,
10479
10479
  .e-small .e-filled.e-input-group.e-control-wrapper.e-input-focus textarea.e-input.e-bigger {
10480
- @if $input-skin-name == 'material' {
10480
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10481
10481
  padding: $filled-bigger-small-textarea-padding;
10482
10482
  }
10483
10483
  }
@@ -10497,7 +10497,7 @@
10497
10497
  .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small textarea,
10498
10498
  .e-bigger.e-small .e-filled.e-float-input.e-control-wrapper textarea,
10499
10499
  .e-bigger .e-small.e-filled.e-float-input.e-control-wrapper textarea {
10500
- @if $input-skin-name == 'material' {
10500
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10501
10501
  padding: $filled-bigger-small-float-textarea-padding;
10502
10502
  }
10503
10503
  }
@@ -10512,14 +10512,14 @@
10512
10512
  .e-bigger .e-filled.e-input-group.e-control-wrapper.e-input-focus.e-small textarea.e-input,
10513
10513
  .e-bigger.e-small .e-filled.e-input-group.e-control-wrapper.e-input-focus textarea.e-input,
10514
10514
  .e-bigger .e-small.e-filled.e-input-group.e-control-wrapper.e-input-focus textarea.e-input {
10515
- @if $input-skin-name == 'material' {
10515
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10516
10516
  padding: $filled-bigger-small-textarea-padding;
10517
10517
  }
10518
10518
  }
10519
10519
 
10520
10520
  .e-filled.e-input-group.e-multi-line-input,
10521
10521
  .e-filled.e-input-group.e-control-wrapper.e-multi-line-input {
10522
- @if $input-skin-name == 'material' {
10522
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10523
10523
  padding: $filled-textarea-wrapper-padding;
10524
10524
  }
10525
10525
  }
@@ -10528,7 +10528,7 @@
10528
10528
  .e-bigger .e-filled.e-input-group.e-multi-line-input,
10529
10529
  .e-filled.e-input-group.e-control-wrapper.e-bigger.e-multi-line-input,
10530
10530
  .e-bigger .e-filled.e-input-group.e-control-wrapper.e-multi-line-input {
10531
- @if $input-skin-name == 'material' {
10531
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10532
10532
  padding: $bigger-filled-textarea-wrapper-padding;
10533
10533
  }
10534
10534
  }
@@ -10536,7 +10536,7 @@
10536
10536
  .e-filled.e-input-group.e-small.e-multi-line-input,
10537
10537
  .e-filled.e-input-group.e-control-wrapper.e-small.e-multi-line-input,
10538
10538
  .e-small .e-filled.e-input-group.e-control-wrapper.e-multi-line-input {
10539
- @if $input-skin-name == 'material' {
10539
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10540
10540
  padding: $small-filled-textarea-wrapper-padding;
10541
10541
  }
10542
10542
  }
@@ -10549,14 +10549,14 @@
10549
10549
  .e-bigger.e-small .e-filled.e-input-group.e-control-wrapper.e-small.e-multi-line-input,
10550
10550
  .e-bigger .e-filled.e-input-group.e-control-wrapper.e-small.e-multi-line-input,
10551
10551
  .e-small .e-filled.e-input-group.e-control-wrapper.e-bigger.e-multi-line-input {
10552
- @if $input-skin-name == 'material' {
10552
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10553
10553
  padding: $bigger-small-filled-textarea-wrapper-padding;
10554
10554
  }
10555
10555
  }
10556
10556
 
10557
10557
  .e-filled.e-float-input.e-multi-line-input,
10558
10558
  .e-filled.e-float-input.e-control-wrapper.e-multi-line-input {
10559
- @if $input-skin-name == 'material' {
10559
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10560
10560
  padding: $filled-float-textarea-wrapper-padding;
10561
10561
  }
10562
10562
  }
@@ -10565,7 +10565,7 @@
10565
10565
  .e-bigger .e-filled.e-float-input.e-multi-line-input,
10566
10566
  .e-filled.e-float-input.e-control-wrapper.e-bigger.e-multi-line-input,
10567
10567
  .e-bigger .e-filled.e-float-input.e-control-wrapper.e-multi-line-input {
10568
- @if $input-skin-name == 'material' {
10568
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10569
10569
  padding: $bigger-filled-float-textarea-wrapper-padding;
10570
10570
  }
10571
10571
  }
@@ -10573,7 +10573,7 @@
10573
10573
  .e-filled.e-float-input.e-small.e-multi-line-input,
10574
10574
  .e-filled.e-float-input.e-control-wrapper.e-small.e-multi-line-input,
10575
10575
  .e-small .e-filled.e-float-input.e-control-wrapper.e-multi-line-input {
10576
- @if $input-skin-name == 'material' {
10576
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10577
10577
  padding: $small-filled-float-textarea-wrapper-padding;
10578
10578
  }
10579
10579
  }
@@ -10586,7 +10586,7 @@
10586
10586
  .e-bigger.e-small .e-filled.e-float-input.e-control-wrapper.e-small.e-multi-line-input,
10587
10587
  .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-multi-line-input,
10588
10588
  .e-small .e-filled.e-float-input.e-control-wrapper.e-bigger.e-multi-line-input {
10589
- @if $input-skin-name == 'material' {
10589
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10590
10590
  padding: $bigger-small-filled-float-textarea-wrapper-padding;
10591
10591
  }
10592
10592
  }
@@ -10604,7 +10604,7 @@
10604
10604
  .e-filled.e-input-group.e-multi-line-input.e-control-wrapper.e-rtl textarea.e-input:focus,
10605
10605
  .e-rtl .e-filled.e-input-group.e-multi-line-input textarea.e-input:focus,
10606
10606
  .e-rtl .e-filled.e-input-group.e-multi-line-input.e-control-wrapper textarea.e-input:focus {
10607
- @if $input-skin-name == 'material' {
10607
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10608
10608
  padding: $filled-textarea-padding;
10609
10609
  text-indent: 0;
10610
10610
  }
@@ -10622,7 +10622,7 @@
10622
10622
  .e-filled.e-float-input.e-multi-line-input.e-control-wrapper.e-rtl textarea:focus,
10623
10623
  .e-rtl .e-filled.e-float-input.e-multi-line-input textarea:focus,
10624
10624
  .e-rtl .e-filled.e-float-input.e-multi-line-input.e-control-wrapper textarea:focus {
10625
- @if $input-skin-name == 'material' {
10625
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10626
10626
  padding: $filled-float-textarea-padding;
10627
10627
  text-indent: 0;
10628
10628
  }
@@ -10648,7 +10648,7 @@
10648
10648
  .e-small.e-rtl .e-filled.e-input-group.e-multi-line-input textarea.e-input:focus,
10649
10649
  .e-small .e-filled.e-input-group.e-multi-line-input.e-control-wrapper.e-rtl textarea.e-input:focus,
10650
10650
  .e-small .e-filled.e-input-group.e-multi-line-input.e-rtl textarea.e-input:focus {
10651
- @if $input-skin-name == 'material' {
10651
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10652
10652
  padding: $filled-small-textarea-padding;
10653
10653
  text-indent: 0;
10654
10654
  }
@@ -10670,7 +10670,7 @@
10670
10670
  .e-small.e-rtl .e-filled.e-float-input.e-multi-line-input textarea:focus,
10671
10671
  .e-small .e-filled.e-float-input.e-multi-line-input.e-control-wrapper.e-rtl textarea:focus,
10672
10672
  .e-small .e-filled.e-float-input.e-multi-line-input.e-rtl textarea:focus {
10673
- @if $input-skin-name == 'material' {
10673
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10674
10674
  padding: $filled-small-float-textarea-padding;
10675
10675
  text-indent: 0;
10676
10676
  }
@@ -10696,7 +10696,7 @@
10696
10696
  .e-bigger.e-rtl .e-filled.e-input-group.e-multi-line-input.e-control-wrapper textarea.e-input:focus,
10697
10697
  .e-bigger .e-filled.e-input-group.e-multi-line-input.e-rtl textarea.e-input:focus,
10698
10698
  .e-bigger .e-filled.e-input-group.e-multi-line-input.e-control-wrapper.e-rtl textarea.e-input:focus {
10699
- @if $input-skin-name == 'material' {
10699
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10700
10700
  padding: $filled-bigger-textarea-padding;
10701
10701
  text-indent: 0;
10702
10702
  }
@@ -10718,7 +10718,7 @@
10718
10718
  .e-bigger.e-rtl .e-filled.e-float-input.e-multi-line-input textarea:focus,
10719
10719
  .e-bigger .e-filled.e-float-input.e-multi-line-input.e-rtl textarea:focus,
10720
10720
  .e-bigger .e-filled.e-float-input.e-multi-line-input.e-control-wrapper.e-rtl textarea:focus {
10721
- @if $input-skin-name == 'material' {
10721
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10722
10722
  padding: $filled-bigger-float-textarea-padding;
10723
10723
  text-indent: 0;
10724
10724
  }
@@ -10750,7 +10750,7 @@
10750
10750
  .e-small.e-rtl .e-filled.e-input-group.e-multi-line-input.e-control-wrapper.e-bigger textarea.e-input:focus,
10751
10751
  .e-rtl .e-filled.e-input-group.e-multi-line-input.e-bigger.e-small textarea.e-input:focus,
10752
10752
  .e-rtl .e-filled.e-input-group.e-multi-line-input.e-control-wrapper.e-bigger.e-small textarea.e-input:focus {
10753
- @if $input-skin-name == 'material' {
10753
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10754
10754
  padding: $filled-bigger-small-textarea-padding;
10755
10755
  text-indent: 0;
10756
10756
  }
@@ -10780,7 +10780,7 @@
10780
10780
  .e-small.e-rtl .e-filled.e-float-input.e-multi-line-input.e-bigger textarea:focus,
10781
10781
  .e-rtl .e-filled.e-float-input.e-multi-line-input.e-control-wrapper.e-bigger.e-small textarea:focus,
10782
10782
  .e-rtl .e-filled.e-float-input.e-multi-line-input.e-bigger.e-small textarea:focus {
10783
- @if $input-skin-name == 'material' {
10783
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10784
10784
  padding: $filled-bigger-small-float-textarea-padding;
10785
10785
  text-indent: 0;
10786
10786
  }
@@ -10792,7 +10792,7 @@
10792
10792
  .e-filled.e-float-input.e-control-wrapper.e-float-icon-left .e-input-in-wrap,
10793
10793
  .e-filled.e-input-group.e-float-icon-left .e-input-in-wrap,
10794
10794
  .e-filled.e-input-group.e-control-wrapper.e-float-icon-left .e-input-in-wrap {
10795
- @if $input-skin-name == 'material' {
10795
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10796
10796
  border: $input-group-full-border;
10797
10797
  border-width: $zero-value;
10798
10798
  margin-left: 8px;
@@ -10806,7 +10806,7 @@
10806
10806
  .e-filled.e-float-input.e-float-icon-left.e-rtl .e-input-in-wrap,
10807
10807
  .e-filled.e-input-group.e-float-icon-left.e-rtl .e-input-in-wrap,
10808
10808
  .e-filled.e-input-group.e-control-wrapper.e-float-icon-left.e-rtl .e-input-in-wrap {
10809
- @if $input-skin-name == 'material' {
10809
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10810
10810
  margin-left: $zero-value;
10811
10811
  margin-right: 8px;
10812
10812
  }
@@ -10820,7 +10820,7 @@
10820
10820
  .e-bigger.e-small .e-filled.e-float-input.e-control-wrapper.e-float-icon-left .e-input-in-wrap,
10821
10821
  .e-bigger.e-small .e-filled.e-input-group.e-float-icon-left .e-input-in-wrap,
10822
10822
  .e-bigger.e-small .e-filled.e-input-group.e-control-wrapper.e-float-icon-left .e-input-in-wrap {
10823
- @if $input-skin-name == 'material' {
10823
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10824
10824
  border: $input-group-full-border;
10825
10825
  border-width: $zero-value;
10826
10826
  margin-left: 8px;
@@ -10835,7 +10835,7 @@
10835
10835
  .e-small .e-filled.e-float-input.e-control-wrapper.e-float-icon-left .e-input-in-wrap,
10836
10836
  .e-small .e-filled.e-input-group.e-float-icon-left .e-input-in-wrap,
10837
10837
  .e-small .e-filled.e-input-group.e-control-wrapper.e-float-icon-left .e-input-in-wrap {
10838
- @if $input-skin-name == 'material' {
10838
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10839
10839
  margin-left: 4px;
10840
10840
  }
10841
10841
  }
@@ -10856,7 +10856,7 @@
10856
10856
  .e-bigger.e-small .e-filled.e-float-input.e-float-icon-left.e-rtl .e-input-in-wrap,
10857
10857
  .e-bigger.e-small .e-filled.e-input-group.e-float-icon-left.e-rtl .e-input-in-wrap,
10858
10858
  .e-bigger.e-small .e-filled.e-input-group.e-control-wrapper.e-float-icon-left.e-rtl .e-input-in-wrap {
10859
- @if $input-skin-name == 'material' {
10859
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10860
10860
  margin-left: $zero-value;
10861
10861
  margin-right: 8px;
10862
10862
  }
@@ -10878,7 +10878,7 @@
10878
10878
  .e-small .e-filled.e-float-input.e-float-icon-left.e-rtl .e-input-in-wrap,
10879
10879
  .e-small .e-filled.e-input-group.e-float-icon-left.e-rtl .e-input-in-wrap,
10880
10880
  .e-small .e-filled.e-input-group.e-control-wrapper.e-float-icon-left.e-rtl .e-input-in-wrap {
10881
- @if $input-skin-name == 'material' {
10881
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10882
10882
  margin-left: $zero-value;
10883
10883
  margin-right: 4px;
10884
10884
  }
@@ -10888,7 +10888,7 @@
10888
10888
  .e-filled.e-input-group.e-control-wrapper.e-float-icon-left:not(.e-disabled):not(.e-input-focus) .e-input-in-wrap:hover,
10889
10889
  .e-filled.e-float-input.e-float-icon-left:not(.e-disabled):not(.e-input-focus) .e-input-in-wrap:hover,
10890
10890
  .e-filled.e-float-input.e-control-wrapper.e-float-icon-left:not(.e-disabled):not(.e-input-focus) .e-input-in-wrap:hover {
10891
- @if $input-skin-name == 'material' {
10891
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10892
10892
  border-bottom-width: $zero-value;
10893
10893
  }
10894
10894
  }
@@ -10897,7 +10897,7 @@
10897
10897
  .e-filled.e-input-group.e-float-icon-left:not(.e-float-input)::after,
10898
10898
  .e-filled.e-input-group.e-control-wrapper.e-float-icon-left:not(.e-float-input)::before,
10899
10899
  .e-filled.e-input-group.e-control-wrapper.e-float-icon-left:not(.e-float-input)::after {
10900
- @if $input-skin-name == 'material' {
10900
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10901
10901
  @include input-group-animation;
10902
10902
  bottom: -1px;
10903
10903
  }
@@ -10907,21 +10907,21 @@
10907
10907
  .e-filled.e-float-input.e-input-group.e-float-icon-left .e-float-line::after,
10908
10908
  .e-filled.e-float-input.e-control-wrapper.e-input-group.e-float-icon-left .e-float-line::before,
10909
10909
  .e-filled.e-float-input.e-control-wrapper.e-input-group.e-float-icon-left .e-float-line::after {
10910
- @if $input-skin-name == 'material' {
10910
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10911
10911
  @include input-group-animation;
10912
10912
  }
10913
10913
  }
10914
10914
 
10915
10915
  .e-filled.e-input-group.e-float-icon-left::before,
10916
10916
  .e-filled.e-input-group.e-control-wrapper.e-float-icon-left::before {
10917
- @if $input-skin-name == 'material' {
10917
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10918
10918
  @include input-group-animation-left;
10919
10919
  }
10920
10920
  }
10921
10921
 
10922
10922
  .e-filled.e-float-input.e-input-group.e-float-icon-left .e-float-line::before,
10923
10923
  .e-filled.e-float-input.e-control-wrapper.e-input-group.e-float-icon-left .e-float-line::before {
10924
- @if $input-skin-name == 'material' {
10924
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10925
10925
  @include input-group-animation-left;
10926
10926
  }
10927
10927
  }
@@ -10930,7 +10930,7 @@
10930
10930
  .e-filled.e-input-group.e-float-icon-left:not(.e-float-input).e-input-focus::after,
10931
10931
  .e-filled.e-input-group.e-control-wrapper.e-float-icon-left:not(.e-float-input).e-input-focus::before,
10932
10932
  .e-filled.e-input-group.e-control-wrapper.e-float-icon-left:not(.e-float-input).e-input-focus::after {
10933
- @if $input-skin-name == 'material' {
10933
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10934
10934
  @include input-group-animation-width;
10935
10935
  bottom: -1px;
10936
10936
  }
@@ -10940,28 +10940,28 @@
10940
10940
  .e-filled.e-float-input.e-input-group.e-float-icon-left.e-input-focus .e-float-line::after,
10941
10941
  .e-filled.e-float-input.e-control-wrapper.e-input-group.e-float-icon-left.e-input-focus .e-float-line::before,
10942
10942
  .e-filled.e-float-input.e-control-wrapper.e-input-group.e-float-icon-left.e-input-focus .e-float-line::after {
10943
- @if $input-skin-name == 'material' {
10943
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10944
10944
  @include input-group-animation-width;
10945
10945
  }
10946
10946
  }
10947
10947
 
10948
10948
  .e-filled.e-input-group.e-float-icon-left:not(.e-float-input)::after,
10949
10949
  .e-filled.e-input-group.e-control-wrapper.e-float-icon-left:not(.e-float-input)::after {
10950
- @if $input-skin-name == 'material' {
10950
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10951
10951
  @include input-group-animation-right;
10952
10952
  }
10953
10953
  }
10954
10954
 
10955
10955
  .e-filled.e-input-group.e-float-icon-left:not(.e-float-input)::after,
10956
10956
  .e-filled.e-input-group.e-control-wrapper.e-float-icon-left:not(.e-float-input)::after {
10957
- @if $input-skin-name == 'material' {
10957
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10958
10958
  @include input-group-animation-right;
10959
10959
  }
10960
10960
  }
10961
10961
 
10962
10962
  .e-filled.e-float-input.e-input-group.e-float-icon-left .e-float-line::after,
10963
10963
  .e-filled.e-float-input.e-control-wrapper.e-input-group.e-float-icon-left .e-float-line::after {
10964
- @if $input-skin-name == 'material' {
10964
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10965
10965
  @include input-group-animation-right;
10966
10966
  }
10967
10967
  }
@@ -10970,14 +10970,14 @@
10970
10970
  .e-filled.e-input-group.e-float-icon-left:not(.e-float-input).e-input-focus .e-input-in-wrap::after,
10971
10971
  .e-filled.e-input-group.e-control-wrapper.e-float-icon-left:not(.e-float-input).e-input-focus .e-input-in-wrap::before,
10972
10972
  .e-filled.e-input-group.e-control-wrapper.e-float-icon-left:not(.e-float-input).e-input-focus .e-input-in-wrap::after {
10973
- @if $input-skin-name == 'material' {
10973
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10974
10974
  width: $zero-value;
10975
10975
  }
10976
10976
  }
10977
10977
 
10978
10978
  .e-filled.e-input-group.e-float-icon-left,
10979
10979
  .e-filled.e-input-group.e-control-wrapper.e-float-icon-left {
10980
- @if $input-skin-name == 'material' {
10980
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10981
10981
  border-bottom: $input-group-border;
10982
10982
  }
10983
10983
  }
@@ -10995,7 +10995,7 @@
10995
10995
  .e-filled.e-input-group.e-control-wrapper.e-success.e-float-icon-left,
10996
10996
  .e-filled.e-input-group.e-control-wrapper.e-warning.e-float-icon-left,
10997
10997
  .e-filled.e-input-group.e-control-wrapper.e-error.e-float-icon-left {
10998
- @if $input-skin-name == 'material' {
10998
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
10999
10999
  border: $input-group-full-border;
11000
11000
  border-width: $input-group-full-border-width;
11001
11001
  }