是否可以更改mdStepper步骤图标背景颜色?我试过这个:
.mat-step-header .mat-step-icon {
background-color: #bb092d;
color: rgba(255,255,255,.87);
}
但它不起作用:(
答案 0 :(得分:3)
您应该使用shadow-piercing descendant combinator
::ng-deep .mat-step-header .mat-step-icon {
background-color: #bb092d;
color: rgba(255,255,255,.87);
}
<强> Plunker Example 强>
警告: ::ng-deep
已被弃用,可以在近距离功能中删除