I'm using progress bar from Angular Material and trying to custom-style it. I can set the borders, radiues, color of the progressed part (buffer?) simply by styling the element itself (e.g. md-progress-bar { border: 1px solid black }
) but I cannot add the background color for the bar.
If I change the background color of the .mat-progress-bar-buffer
via dev tools, it works, but if not via component css (or any other css, for that matter).
So, this doesn't work:
.mat-progress-bar-buffer {
background-color: $white;
}
What else can I try?
Edit: here's a simple plunker to play with.