0
votes

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
.datepicker{ background-color: red; } Might be your answer - Gregory Wullimann
@GregoryWullimann - I already tried, but unfortunately the body remains dark, only add a simil border red. - Gus

1 Answers

0
votes

For those interested I found the solution

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