引导日期选择器的颜色特定日期

问题描述 投票:0回答:1

我正在寻找一种方法来为bootstrap date picker中的特定日期着色 - 特别是默认日期。这样用户可以知道它们与默认日期的关系。

jquery css html5 twitter-bootstrap
1个回答
0
投票

我假设你正在使用这个例子:https://eonasdan.github.io/bootstrap-datetimepicker/

你的问题有点模糊,所以我觉得你使用的是内联版本。然后你可以使用这个css代码来改变默认颜色:

.bootstrap-datetimepicker-widget table td.active, .bootstrap-datetimepicker-widget table td.active:hover{
background-color: #000000 !important;
}
© www.soinside.com 2019 - 2024. All rights reserved.