I'm trying to learn a bit of Angular and Material Design, and I'm having a look at the tutorial for mat-tables: https://material.angular.io/components/table/examples
In the example 'Table with sorting', in the CSS there is the following style definition:
th.mat-sort-header-sorted {
color: black;
}
I really do not see what it is doing... I had assumed that the header of the sorted column would be highlighted in black, but when I tried to change it to red I didn't notice any difference.
I tried to change to 'red' both in my environment and in their StackBlitz example: https://stackblitz.com/angular/jxmdlyyrgka?file=app%2Ftable-sorting-example.ts
Is this some kind of bug or am I looking in the wrong direction? Thanks!