Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.4k views
in Technique[技术] by (71.8m points)

bootstrap datepicker - change background color from yellow to blue

for a bootstrap datepicker, when set the "todayHighlight" property as true, it opens with current day highlighted as yellow. can we change this color, to blue or some other color.

question from:https://stackoverflow.com/questions/66056581/bootstrap-datepicker-change-background-color-from-yellow-to-blue

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

If you inspect the demo. You will see that the styles are defined in https://unpkg.com/[email protected]/dist/css/bootstrap-datepicker3.min.css as below:

.datepicker table tr td.today {
    color: #000;
    background-color: #ffdb99;
    border-color: #ffb733;
}

So you should just be able to override that in your css file, or an embedded stylesheet loaded after bootstrap-datepicker3.min.css. Just use the same, or more specific selector and set as you whish:

.datepicker table tr td.today {
  color: #fff;
  background-color: #009;
  border-color: blue;
}

/* or more specific */
.your-custom-class .datepicker table tr td.today {
  color: #fff;
  background-color: #009;
  border-color: blue;
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...