我想从默认的角度材质配色方案更改为自定义配色方案。我的问题是,当我这样做时,MatInput 字段在聚焦时停止显示闪烁的光标。我想知道如何使它在单击时恢复为闪烁状态。
主题.scss
@import '~@angular/material/theming';
@include mat-core();
$my-app-primary: mat-palette($mat-grey, 100);
$my-app-accent: mat-palette($mat-blue, 200);
$my-app-warn: mat-palette($mat-deep-orange);
$my-app-theme: mat-light-theme($my-app-primary, $my-app-accent, $my-app-warn);
@include angular-material-theme($my-app-theme);
监管.component.html
<mat-form-field>
<input
matInput
type="email"
formControlName="email"
placeholder="{{ email }}"
style="outline: none"
/>
<mat-error *ngIf="form.get('email').invalid"
>Please enter a valid email.</mat-error
>
</mat-form-field>