bootstrap datapicker how set body background color

976 Views Asked by At

In my bootstrap project I'm using bootstrap datepicker plugin demo here
It's work very well with the default bootstrap theme (white body background) but if I use a different theme bootswatch slate that have a dark body background the datepicker body background window is all dark and the numbers do not read.
I tried to watch the datapicker3.css, but I couldn't find anything that references to the window body background color.
How do I set the datepicker window body background color? Thanks

1

There are 1 best solutions below

0
On

For those interested I found the solution

.datepicker.dropdown-menu table  {
    background-color: #fff;
}