Looking at the image below, I am seeking for Exp. Year (the disabled option) to appear grey as a placeholder when the page loads, and then turn black when an option like 2016 is clicked on. Is there a way to achieve this without using JavaScript?
Current Behavior:
Desired Outcome: (Exp. Month appears grey initially, but switches to black when 2016 is selected)
.select-box {
border: 1px solid $ghBlack;
height: 36px;
background: transparent;
margin: 10px 0 14px 0;
color: #000;
}
option:disabled {
color: #a9a9a9;
}
option:not(:checked) {
color: #a9a9a9;
}