Utilizing react picky for the multiselect dropdown feature. Attempting to maintain the placeholder color as grey while displaying black text after selection.
Markup
<Picky multiple={true}
includeFilter={true}
onChange={this.onRulesSelectChange}
placeholder={"Please Select"} />
In the CSS, attempting to override picky's placeholder class only affects the selected text as well, causing both to turn grey.
CSS
.picky__placeholder{
font-family: CSePRoman, Helvetica Neue, Helvetica, Arial, sans-serif;
font-size: 1rem;
color: grey;
line-height: 21px;
}
Current State
Placeholder -> Grey
Selected Text -> Grey
Desired Outcome
Placeholder -> Grey
Selected text -> Black
Thanks in Advance!