3 回答
TA贡献1895条经验 获得超7个赞
要删除垫输入自动填充,background color您可以简单地使用 在您的主要 style.scss/css您可以使用
.mat-form-field-autofill-control{
background-color: wheat; // your prefered color
}
TA贡献1844条经验 获得超8个赞
对于角度 10
组件.sccs
.buscador {
color: white !important;
}
:host ::ng-deep .mat-form-field-underline {
background-color: white !important;
}
:host ::ng-deep .mat-focused .mat-form-field-underline .mat-form-field-ripple {
background-color: white !important;
}
组件.html
<form>
<mat-form-field>
<mat-label id="placeholder" class="buscador">Buscar...</mat-label>
<input type="text" aria-label="Number" matInput [formControl]="myControl" [matAutocomplete]="auto" type="text" name="option" required minlength="3">
<mat-autocomplete #auto="matAutocomplete" name="option">
<mat-option *ngFor="let option of options | async" [value]="option">
{{option}}
</mat-option>
</mat-autocomplete>
</mat-form-field>
</form>
TA贡献1793条经验 获得超6个赞
我确实找到了如何更改它,需要添加此代码来更改输入的类颜色。
::ng-deep input.mat-input-element { color: white; }
- 3 回答
- 0 关注
- 150 浏览
添加回答
举报