我找不到更改 Material 组件的 Azure 和 Blue 主题所赋予的颜色的方法。尤其是对于 mat-form-field (matInput)。
<mat-form-field appearance="fill">
<mat-label>{{ "pression_amont_minimum" | translate }} (P1)</mat-label>
<input matInput type="number" formControlName="PressAmMin" />
</mat-form-field>
尝试通过在 style.css 和 component.css 中引用该组件来更改其样式:
mat-form-field{
background-color : white;
}
什么都没发生
input{
background-color : white;
}
一部分变成了白色
mat-label{
background-color : white;
}
::ng-deep
对我来说没用
我发现改变
.mdc-text-field--filled:not(.mdc-text-field--disabled) {
background-color: var(--mdc-filled-text-field-container-color, var(--mat-app-surface-variant)
);
可以改变它的颜色,但没有找到方法来达到 css 的这一部分或覆盖它。