I work with the angular-material
framework and specifically utilize its <md-select/>
component.
I am interested in styling its icon:
https://i.stack.imgur.com/g4pu1.png
In the past, we would modify its css by targeting the class .md-select-icon
, but it seems that this was not the correct method, as the classes have since been updated to indicate they are for "private" use (.md-select-icon
is now called ._md-select-icon
)
The question remains - How can I apply a custom style to the .md-select
icon in the proper manner?
Thank you!