withfront
Version:
Tools for frontend development especially with Bootstrap 3.x and jQuery 3.x also FontAwesome, jsCookie and more
21 lines • 773 B
CSS
/* OVERRIDE bootstrap-datepicker for have red highlighted days(sunday) and not break on selected highlighted day */
.datepicker table tr td.highlighted {
background: transparent ;
border: none ;
color: #FF0000 ;
}
.datepicker table tr td.selected.highlighted,
.datepicker table tr td.active.highlighted.active,
.datepicker table tr td.active.highlighted:active {
color: #FFFFFF ;
background-color: #286090 ;
border-radius: 5px;
}
.datepicker table tr td.range.highlighted {
background-color: #EEEEEE ;
}
/* + disbled dates */
.datepicker table tr td.disabled, .datepicker table tr td.disabled:hover {
color: #EEEEEE ;
cursor: no-drop ;
}