我注意到按钮在它触发的对话框关闭后添加了 cdk-focused 和 cdk-program-focused 类。如果我点击任何地方效果消失。
app.component.html [片段]
<mat-cell *matCellDef="let element">
<span matTooltip="Delete" matTooltipPosition="right">
<button mat-icon-button color="warn" (click)="openDeleteAssociationDialog()">
<mat-icon>delete</mat-icon>
</button>
</span>
</mat-cell>