Change color of date picker widget icon

0
Hello guys! I have a requirement to make the color of the date picker widget icon different to the blue that it has right now.   How could I access this with CSS?  
asked
1 answers
0

Hi Diego,

 

You can try the following css

.custom-datepicker-class .glyphicon {
    color: green;
}

 

answered