we are using Angular Material table for our app:
<mat-row *matRowDef="let row; columns: displayedColumns;"></mat-row>
could you please to show how to highlight a row on mouse hover?
You can do this styling the component in your theme file:
@mixin newName-theme($dark-theme)
mat-table tbody tr:hover{
cursor: pointer;
background: #b4b4b433;
}
@include newName-theme($dark-theme);
you can find more examples here