Closed
Description
As can be seen on the demo, the multi-select variant has muted placeholder text, however the single select variant doesn't.
The issue is that the color from the text-muted class is overridden by the color: inherit !important;
, which is caused by this line of code.
Workaround if anyone needs it:
span.ngx-select__placeholder.text-muted {
color: <your-muted-color> !important;
}