File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -176,6 +176,7 @@ $mat-form-field-default-infix-width: 180px !default;
176
176
transform-origin : 50% ;
177
177
transform : scaleX (0.5 );
178
178
visibility : hidden ;
179
+ opacity : 0 ;
179
180
transition : background-color $swift-ease-in-duration $swift-ease-in-timing-function ;
180
181
181
182
.mat-form-field-invalid :not (.mat-focused ) & {
@@ -185,9 +186,11 @@ $mat-form-field-default-infix-width: 180px !default;
185
186
.mat-focused & ,
186
187
.mat-form-field-invalid & {
187
188
visibility : visible ;
189
+ opacity : 1 ;
188
190
transform : scaleX (1 );
189
- transition : transform 150ms linear ,
190
- background-color $swift-ease-in-duration $swift-ease-in-timing-function ;
191
+ transition : transform 300ms $swift-ease-out-timing-function ,
192
+ opacity 100ms $swift-ease-out-timing-function ,
193
+ background-color 300ms $swift-ease-out-timing-function ;
191
194
}
192
195
}
193
196
}
You can’t perform that action at this time.
0 commit comments