当我将鼠标移到mat-form-field
.
为了能够使用彩色垫卡,我添加了一些 CSS 类来style.scss
更改background-color
.mat-form-field
.mat-form-field-appearance-outline .mat-form-field-outline-start { background-color: white!important; }
.mat-form-field-appearance-outline .mat-form-field-outline-gap { background-color: white!important; }
.mat-form-field-appearance-outline .mat-form-field-outline-end { background-color: white!important; }
mat-form-field mat-label { background-color: rgba(255, 255, 255, 0.9); }
它工作正常,但是当我将鼠标悬停在 amat-form-field
上时,背景会在几分之一秒内变为红色。不幸的是,我找不到允许我删除这种透明度的 CSS 类。
StackBlitz: 这里