可以单击以选择时间波动即将到来的步骤的标题,我想从该步进器中删除或禁用波动。
<mat-vertical-stepper>
<mat-step label="Step 1">
Content 1
</mat-step>
<mat-step label="Step 1">
Content 2
</mat-step>
</mat-vertical-stepper>
也请向我解释此属性的工作方式。是否应禁用步骤标题的波纹。
@Input()
disableRipple: boolean
答案 0 :(得分:0)
<mat-vertical-stepper [disableRipple]="true">
做到了。见here。
答案 1 :(得分:-1)
.mat-step-header:hover{
background-color: white !important;
}
.mat-step-header.cdk-program-focused {
background-color: white;
}
.mat-step-header.cdk-mouse-focused{
background-color: white;
}
.mat-step-header.cdk-focused{
background-color: white;
}