By default angular material md-select changes the focused bottom border colour and selected md-option colour to purple, and I've tried changing these through css but can't find the right selectors.
Which selectors do I need to use to change these?
By default angular material md-select changes the focused bottom border colour and selected md-option colour to purple, and I've tried changing these through css but can't find the right selectors.
Which selectors do I need to use to change these?
To change border-bottom color after focus or selecting option use this
md-select:not([disabled]):focus .md-select-value{
border-bottom-color: #000;
}
Use !important
if necessary. Hope it will help.