534 lines
22 KiB
CSS
534 lines
22 KiB
CSS
.datepicker {
|
|
border-radius: 0.25rem;
|
|
direction: ltr;
|
|
}
|
|
|
|
.datepicker-inline {
|
|
width: 220px;
|
|
}
|
|
|
|
.datepicker-rtl {
|
|
direction: rtl;
|
|
}
|
|
|
|
.datepicker-rtl.dropdown-menu {
|
|
left: auto;
|
|
}
|
|
|
|
.datepicker-rtl table tr td span {
|
|
float: right;
|
|
}
|
|
|
|
.datepicker-dropdown {
|
|
top: 0;
|
|
left: 0;
|
|
padding: 4px;
|
|
}
|
|
|
|
.datepicker-dropdown:before {
|
|
content: '';
|
|
display: inline-block;
|
|
border-left: 7px solid transparent;
|
|
border-right: 7px solid transparent;
|
|
border-bottom: 7px solid rgba(0, 0, 0, 0.15);
|
|
border-top: 0;
|
|
border-bottom-color: rgba(0, 0, 0, 0.2);
|
|
position: absolute;
|
|
}
|
|
|
|
.datepicker-dropdown:after {
|
|
content: '';
|
|
display: inline-block;
|
|
border-left: 6px solid transparent;
|
|
border-right: 6px solid transparent;
|
|
border-bottom: 6px solid #fff;
|
|
border-top: 0;
|
|
position: absolute;
|
|
}
|
|
|
|
.datepicker-dropdown.datepicker-orient-left:before {
|
|
left: 6px;
|
|
}
|
|
|
|
.datepicker-dropdown.datepicker-orient-left:after {
|
|
left: 7px;
|
|
}
|
|
|
|
.datepicker-dropdown.datepicker-orient-right:before {
|
|
right: 6px;
|
|
}
|
|
|
|
.datepicker-dropdown.datepicker-orient-right:after {
|
|
right: 7px;
|
|
}
|
|
|
|
.datepicker-dropdown.datepicker-orient-bottom:before {
|
|
top: -7px;
|
|
}
|
|
|
|
.datepicker-dropdown.datepicker-orient-bottom:after {
|
|
top: -6px;
|
|
}
|
|
|
|
.datepicker-dropdown.datepicker-orient-top:before {
|
|
bottom: -7px;
|
|
border-bottom: 0;
|
|
border-top: 7px solid rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
.datepicker-dropdown.datepicker-orient-top:after {
|
|
bottom: -6px;
|
|
border-bottom: 0;
|
|
border-top: 6px solid #fff;
|
|
}
|
|
|
|
.datepicker table {
|
|
margin: 0;
|
|
-webkit-touch-callout: none;
|
|
-webkit-user-select: none;
|
|
-khtml-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
.datepicker table tr td, .datepicker table tr th {
|
|
text-align: center;
|
|
width: 30px;
|
|
height: 30px;
|
|
border-radius: 4px;
|
|
border: none;
|
|
}
|
|
|
|
.table-striped .datepicker table tr td, .table-striped .datepicker table tr th {
|
|
background-color: transparent;
|
|
}
|
|
|
|
.datepicker table tr td.old, .datepicker table tr td.new {
|
|
color: #6c757d;
|
|
}
|
|
|
|
.datepicker table tr td.day:hover, .datepicker table tr td.focused {
|
|
color: #000;
|
|
background: #e9e9ea;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.datepicker table tr td.disabled, .datepicker table tr td.disabled:hover {
|
|
background: none;
|
|
color: #6c757d;
|
|
cursor: default;
|
|
}
|
|
|
|
.datepicker table tr td.highlighted {
|
|
color: #000;
|
|
background-color: #d1ecf1;
|
|
border-color: #83ccd9;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.datepicker table tr td.highlighted:focus, .datepicker table tr td.highlighted.focus {
|
|
color: #000;
|
|
background-color: #bcd4d9;
|
|
border-color: #6299a3;
|
|
}
|
|
|
|
.datepicker table tr td.highlighted:hover {
|
|
color: #000;
|
|
background-color: #697679;
|
|
border-color: #73b3bf;
|
|
}
|
|
|
|
.datepicker table tr td.highlighted:active, .datepicker table tr td.highlighted.active {
|
|
color: #000;
|
|
background-color: #bcd4d9;
|
|
border-color: #73b3bf;
|
|
}
|
|
|
|
.datepicker table tr td.highlighted:active:hover, .datepicker table tr td.highlighted:active:focus, .datepicker table tr td.highlighted.focus:active, .datepicker table tr td.highlighted.active:hover, .datepicker table tr td.highlighted.active:focus, .datepicker table tr td.highlighted.active.focus {
|
|
color: #000;
|
|
background-color: #adc4c8;
|
|
border-color: #6299a3;
|
|
}
|
|
|
|
.datepicker table tr td.highlighted.disabled:hover, .datepicker table tr td.highlighted.disabled:focus, .datepicker table tr td.highlighted.disabled.focus, .datepicker table tr td.highlighted[disabled]:hover, .datepicker table tr td.highlighted[disabled]:focus, .datepicker table tr td.highlighted.focus[disabled], fieldset[disabled] .datepicker table tr td.highlighted:hover, fieldset[disabled] .datepicker table tr td.highlighted:focus, fieldset[disabled] .datepicker table tr td.highlighted.focus {
|
|
background-color: #d1ecf1;
|
|
border-color: #83ccd9;
|
|
}
|
|
|
|
.datepicker table tr td.highlighted.focused {
|
|
background: #aadce5;
|
|
}
|
|
|
|
.datepicker table tr td.highlighted.disabled, .datepicker table tr td.highlighted.disabled:active {
|
|
background: #d1ecf1;
|
|
color: #6c757d;
|
|
}
|
|
|
|
.datepicker table tr td.today {
|
|
color: #000;
|
|
background-color: #ffdb99;
|
|
border-color: #ffb733;
|
|
}
|
|
|
|
.datepicker table tr td.today:focus, .datepicker table tr td.today.focus {
|
|
color: #000;
|
|
background-color: #e6c58a;
|
|
border-color: #bf8926;
|
|
}
|
|
|
|
.datepicker table tr td.today:hover {
|
|
color: #000;
|
|
background-color: #806e4d;
|
|
border-color: #e0a12d;
|
|
}
|
|
|
|
.datepicker table tr td.today:active, .datepicker table tr td.today.active {
|
|
color: #000;
|
|
background-color: #e6c58a;
|
|
border-color: #e0a12d;
|
|
}
|
|
|
|
.datepicker table tr td.today:active:hover, .datepicker table tr td.today:active:focus, .datepicker table tr td.today.focus:active, .datepicker table tr td.today.active:hover, .datepicker table tr td.today.active:focus, .datepicker table tr td.today.active.focus {
|
|
color: #000;
|
|
background-color: #d4b67f;
|
|
border-color: #bf8926;
|
|
}
|
|
|
|
.datepicker table tr td.today.disabled:hover, .datepicker table tr td.today.disabled:focus, .datepicker table tr td.today.disabled.focus, .datepicker table tr td.today[disabled]:hover, .datepicker table tr td.today[disabled]:focus, .datepicker table tr td.today.focus[disabled], fieldset[disabled] .datepicker table tr td.today:hover, fieldset[disabled] .datepicker table tr td.today:focus, fieldset[disabled] .datepicker table tr td.today.focus {
|
|
background-color: #ffdb99;
|
|
border-color: #ffb733;
|
|
}
|
|
|
|
.datepicker table tr td.today.focused {
|
|
background: #ffc966;
|
|
}
|
|
|
|
.datepicker table tr td.today.disabled, .datepicker table tr td.today.disabled:active {
|
|
background: #ffdb99;
|
|
color: #6c757d;
|
|
}
|
|
|
|
.datepicker table tr td.range {
|
|
color: #000;
|
|
background-color: #e9e9ea;
|
|
border-color: #b5b5b8;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.datepicker table tr td.range:focus, .datepicker table tr td.range.focus {
|
|
color: #000;
|
|
background-color: #d2d2d3;
|
|
border-color: #88888a;
|
|
}
|
|
|
|
.datepicker table tr td.range:hover {
|
|
color: #000;
|
|
background-color: #757575;
|
|
border-color: #9f9fa2;
|
|
}
|
|
|
|
.datepicker table tr td.range:active, .datepicker table tr td.range.active {
|
|
color: #000;
|
|
background-color: #d2d2d3;
|
|
border-color: #9f9fa2;
|
|
}
|
|
|
|
.datepicker table tr td.range:active:hover, .datepicker table tr td.range:active:focus, .datepicker table tr td.range.focus:active, .datepicker table tr td.range.active:hover, .datepicker table tr td.range.active:focus, .datepicker table tr td.range.active.focus {
|
|
color: #000;
|
|
background-color: #c1c1c2;
|
|
border-color: #88888a;
|
|
}
|
|
|
|
.datepicker table tr td.range.disabled:hover, .datepicker table tr td.range.disabled:focus, .datepicker table tr td.range.disabled.focus, .datepicker table tr td.range[disabled]:hover, .datepicker table tr td.range[disabled]:focus, .datepicker table tr td.range.focus[disabled], fieldset[disabled] .datepicker table tr td.range:hover, fieldset[disabled] .datepicker table tr td.range:focus, fieldset[disabled] .datepicker table tr td.range.focus {
|
|
background-color: #e9e9ea;
|
|
border-color: #b5b5b8;
|
|
}
|
|
|
|
.datepicker table tr td.range.focused {
|
|
background: #cfcfd1;
|
|
}
|
|
|
|
.datepicker table tr td.range.disabled, .datepicker table tr td.range.disabled:active {
|
|
background: #e9e9ea;
|
|
color: #6c757d;
|
|
}
|
|
|
|
.datepicker table tr td.range.highlighted {
|
|
color: #000;
|
|
background-color: #ddebee;
|
|
border-color: #99c3cc;
|
|
}
|
|
|
|
.datepicker table tr td.range.highlighted:focus, .datepicker table tr td.range.highlighted.focus {
|
|
color: #000;
|
|
background-color: #c7d4d6;
|
|
border-color: #739299;
|
|
}
|
|
|
|
.datepicker table tr td.range.highlighted:hover {
|
|
color: #000;
|
|
background-color: #6f7677;
|
|
border-color: #87acb4;
|
|
}
|
|
|
|
.datepicker table tr td.range.highlighted:active, .datepicker table tr td.range.highlighted.active {
|
|
color: #000;
|
|
background-color: #c7d4d6;
|
|
border-color: #87acb4;
|
|
}
|
|
|
|
.datepicker table tr td.range.highlighted:active:hover, .datepicker table tr td.range.highlighted:active:focus, .datepicker table tr td.range.highlighted.focus:active, .datepicker table tr td.range.highlighted.active:hover, .datepicker table tr td.range.highlighted.active:focus, .datepicker table tr td.range.highlighted.active.focus {
|
|
color: #000;
|
|
background-color: #b7c3c6;
|
|
border-color: #739299;
|
|
}
|
|
|
|
.datepicker table tr td.range.highlighted.disabled:hover, .datepicker table tr td.range.highlighted.disabled:focus, .datepicker table tr td.range.highlighted.disabled.focus, .datepicker table tr td.range.highlighted[disabled]:hover, .datepicker table tr td.range.highlighted[disabled]:focus, .datepicker table tr td.range.highlighted.focus[disabled], fieldset[disabled] .datepicker table tr td.range.highlighted:hover, fieldset[disabled] .datepicker table tr td.range.highlighted:focus, fieldset[disabled] .datepicker table tr td.range.highlighted.focus {
|
|
background-color: #ddebee;
|
|
border-color: #99c3cc;
|
|
}
|
|
|
|
.datepicker table tr td.range.highlighted.focused {
|
|
background: #bbd7dd;
|
|
}
|
|
|
|
.datepicker table tr td.range.highlighted.disabled, .datepicker table tr td.range.highlighted.disabled:active {
|
|
background: #ddebee;
|
|
color: #6c757d;
|
|
}
|
|
|
|
.datepicker table tr td.range.today {
|
|
color: #000;
|
|
background-color: #f4c775;
|
|
border-color: #eca117;
|
|
}
|
|
|
|
.datepicker table tr td.range.today:focus, .datepicker table tr td.range.today.focus {
|
|
color: #000;
|
|
background-color: #dcb369;
|
|
border-color: #b17811;
|
|
}
|
|
|
|
.datepicker table tr td.range.today:hover {
|
|
color: #000;
|
|
background-color: #7a643b;
|
|
border-color: #d08d14;
|
|
}
|
|
|
|
.datepicker table tr td.range.today:active, .datepicker table tr td.range.today.active {
|
|
color: #000;
|
|
background-color: #dcb369;
|
|
border-color: #d08d14;
|
|
}
|
|
|
|
.datepicker table tr td.range.today:active:hover, .datepicker table tr td.range.today:active:focus, .datepicker table tr td.range.today.focus:active, .datepicker table tr td.range.today.active:hover, .datepicker table tr td.range.today.active:focus, .datepicker table tr td.range.today.active.focus {
|
|
color: #000;
|
|
background-color: #cba561;
|
|
border-color: #b17811;
|
|
}
|
|
|
|
.datepicker table tr td.range.today.disabled:hover, .datepicker table tr td.range.today.disabled:focus, .datepicker table tr td.range.today.disabled.focus, .datepicker table tr td.range.today[disabled]:hover, .datepicker table tr td.range.today[disabled]:focus, .datepicker table tr td.range.today.focus[disabled], fieldset[disabled] .datepicker table tr td.range.today:hover, fieldset[disabled] .datepicker table tr td.range.today:focus, fieldset[disabled] .datepicker table tr td.range.today.focus {
|
|
background-color: #f4c775;
|
|
border-color: #eca117;
|
|
}
|
|
|
|
.datepicker table tr td.range.today.disabled, .datepicker table tr td.range.today.disabled:active {
|
|
background: #f4c775;
|
|
color: #6c757d;
|
|
}
|
|
|
|
.datepicker table tr td.selected, .datepicker table tr td.selected.highlighted {
|
|
color: #fff;
|
|
background-color: #898b8d;
|
|
border-color: #6b6e71;
|
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
|
}
|
|
|
|
.datepicker table tr td.selected:focus, .datepicker table tr td.selected.focus, .datepicker table tr td.selected.highlighted:focus, .datepicker table tr td.selected.highlighted.focus {
|
|
color: #fff;
|
|
background-color: #959798;
|
|
border-color: #909295;
|
|
}
|
|
|
|
.datepicker table tr td.selected:hover, .datepicker table tr td.selected.highlighted:hover {
|
|
color: #fff;
|
|
background-color: #c4c5c6;
|
|
border-color: #7d7f82;
|
|
}
|
|
|
|
.datepicker table tr td.selected:active, .datepicker table tr td.selected.active, .datepicker table tr td.selected.highlighted:active, .datepicker table tr td.selected.highlighted.active {
|
|
color: #fff;
|
|
background-color: #959798;
|
|
border-color: #7d7f82;
|
|
}
|
|
|
|
.datepicker table tr td.selected:active:hover, .datepicker table tr td.selected:active:focus, .datepicker table tr td.selected.focus:active, .datepicker table tr td.selected.active:hover, .datepicker table tr td.selected.active:focus, .datepicker table tr td.selected.active.focus, .datepicker table tr td.selected.highlighted:active:hover, .datepicker table tr td.selected.highlighted:active:focus, .datepicker table tr td.selected.highlighted.focus:active, .datepicker table tr td.selected.highlighted.active:hover, .datepicker table tr td.selected.highlighted.active:focus, .datepicker table tr td.selected.highlighted.active.focus {
|
|
color: #fff;
|
|
background-color: #9d9fa0;
|
|
border-color: #909295;
|
|
}
|
|
|
|
.datepicker table tr td.selected.disabled:hover, .datepicker table tr td.selected.disabled:focus, .datepicker table tr td.selected.disabled.focus, .datepicker table tr td.selected[disabled]:hover, .datepicker table tr td.selected[disabled]:focus, .datepicker table tr td.selected.focus[disabled], fieldset[disabled] .datepicker table tr td.selected:hover, fieldset[disabled] .datepicker table tr td.selected:focus, fieldset[disabled] .datepicker table tr td.selected.focus, .datepicker table tr td.selected.highlighted.disabled:hover, .datepicker table tr td.selected.highlighted.disabled:focus, .datepicker table tr td.selected.highlighted.disabled.focus, .datepicker table tr td.selected.highlighted[disabled]:hover, .datepicker table tr td.selected.highlighted[disabled]:focus, .datepicker table tr td.selected.highlighted.focus[disabled], fieldset[disabled] .datepicker table tr td.selected.highlighted:hover, fieldset[disabled] .datepicker table tr td.selected.highlighted:focus, fieldset[disabled] .datepicker table tr td.selected.highlighted.focus {
|
|
background-color: #898b8d;
|
|
border-color: #6b6e71;
|
|
}
|
|
|
|
.datepicker table tr td.active, .datepicker table tr td.active.highlighted {
|
|
color: #fff;
|
|
background-color: #007bff;
|
|
border-color: #0277f4;
|
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
|
}
|
|
|
|
.datepicker table tr td.active:focus, .datepicker table tr td.active.focus, .datepicker table tr td.active.highlighted:focus, .datepicker table tr td.active.highlighted.focus {
|
|
color: #fff;
|
|
background-color: #1a88ff;
|
|
border-color: #4199f7;
|
|
}
|
|
|
|
.datepicker table tr td.active:hover, .datepicker table tr td.active.highlighted:hover {
|
|
color: #fff;
|
|
background-color: #80bdff;
|
|
border-color: #2087f5;
|
|
}
|
|
|
|
.datepicker table tr td.active:active, .datepicker table tr td.active.active, .datepicker table tr td.active.highlighted:active, .datepicker table tr td.active.highlighted.active {
|
|
color: #fff;
|
|
background-color: #1a88ff;
|
|
border-color: #2087f5;
|
|
}
|
|
|
|
.datepicker table tr td.active:active:hover, .datepicker table tr td.active:active:focus, .datepicker table tr td.active.focus:active, .datepicker table tr td.active.active:hover, .datepicker table tr td.active.active:focus, .datepicker table tr td.active.active.focus, .datepicker table tr td.active.highlighted:active:hover, .datepicker table tr td.active.highlighted:active:focus, .datepicker table tr td.active.highlighted.focus:active, .datepicker table tr td.active.highlighted.active:hover, .datepicker table tr td.active.highlighted.active:focus, .datepicker table tr td.active.highlighted.active.focus {
|
|
color: #fff;
|
|
background-color: #2b91ff;
|
|
border-color: #4199f7;
|
|
}
|
|
|
|
.datepicker table tr td.active.disabled:hover, .datepicker table tr td.active.disabled:focus, .datepicker table tr td.active.disabled.focus, .datepicker table tr td.active[disabled]:hover, .datepicker table tr td.active[disabled]:focus, .datepicker table tr td.active.focus[disabled], fieldset[disabled] .datepicker table tr td.active:hover, fieldset[disabled] .datepicker table tr td.active:focus, fieldset[disabled] .datepicker table tr td.active.focus, .datepicker table tr td.active.highlighted.disabled:hover, .datepicker table tr td.active.highlighted.disabled:focus, .datepicker table tr td.active.highlighted.disabled.focus, .datepicker table tr td.active.highlighted[disabled]:hover, .datepicker table tr td.active.highlighted[disabled]:focus, .datepicker table tr td.active.highlighted.focus[disabled], fieldset[disabled] .datepicker table tr td.active.highlighted:hover, fieldset[disabled] .datepicker table tr td.active.highlighted:focus, fieldset[disabled] .datepicker table tr td.active.highlighted.focus {
|
|
background-color: #007bff;
|
|
border-color: #0277f4;
|
|
}
|
|
|
|
.datepicker table tr td span {
|
|
display: block;
|
|
width: 23%;
|
|
height: 54px;
|
|
line-height: 54px;
|
|
float: left;
|
|
margin: 1%;
|
|
cursor: pointer;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.datepicker table tr td span:hover, .datepicker table tr td span.focused {
|
|
color: #000;
|
|
background: #e9e9ea;
|
|
}
|
|
|
|
.datepicker table tr td span.disabled, .datepicker table tr td span.disabled:hover {
|
|
background: none;
|
|
color: #6c757d;
|
|
cursor: default;
|
|
}
|
|
|
|
.datepicker table tr td span.active, .datepicker table tr td span.active:hover, .datepicker table tr td span.active.disabled, .datepicker table tr td span.active.disabled:hover {
|
|
color: #fff;
|
|
background-color: #007bff;
|
|
border-color: #0277f4;
|
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
|
}
|
|
|
|
.datepicker table tr td span.active:focus, .datepicker table tr td span.active.focus, .datepicker table tr td span.active:hover:focus, .datepicker table tr td span.active.focus:hover, .datepicker table tr td span.active.disabled:focus, .datepicker table tr td span.active.disabled.focus, .datepicker table tr td span.active.disabled:hover:focus, .datepicker table tr td span.active.disabled.focus:hover {
|
|
color: #fff;
|
|
background-color: #1a88ff;
|
|
border-color: #4199f7;
|
|
}
|
|
|
|
.datepicker table tr td span.active:hover, .datepicker table tr td span.active:hover:hover, .datepicker table tr td span.active.disabled:hover, .datepicker table tr td span.active.disabled:hover:hover {
|
|
color: #fff;
|
|
background-color: #80bdff;
|
|
border-color: #2087f5;
|
|
}
|
|
|
|
.datepicker table tr td span.active:active, .datepicker table tr td span.active.active, .datepicker table tr td span.active:hover:active, .datepicker table tr td span.active.active:hover, .datepicker table tr td span.active.disabled:active, .datepicker table tr td span.active.disabled.active, .datepicker table tr td span.active.disabled:hover:active, .datepicker table tr td span.active.disabled.active:hover {
|
|
color: #fff;
|
|
background-color: #1a88ff;
|
|
border-color: #2087f5;
|
|
}
|
|
|
|
.datepicker table tr td span.active:active:hover, .datepicker table tr td span.active:active:focus, .datepicker table tr td span.active.focus:active, .datepicker table tr td span.active.active:hover, .datepicker table tr td span.active.active:focus, .datepicker table tr td span.active.active.focus, .datepicker table tr td span.active:hover:active:hover, .datepicker table tr td span.active:hover:active:focus, .datepicker table tr td span.active.focus:hover:active, .datepicker table tr td span.active.active:hover:hover, .datepicker table tr td span.active.active:hover:focus, .datepicker table tr td span.active.active.focus:hover, .datepicker table tr td span.active.disabled:active:hover, .datepicker table tr td span.active.disabled:active:focus, .datepicker table tr td span.active.disabled.focus:active, .datepicker table tr td span.active.disabled.active:hover, .datepicker table tr td span.active.disabled.active:focus, .datepicker table tr td span.active.disabled.active.focus, .datepicker table tr td span.active.disabled:hover:active:hover, .datepicker table tr td span.active.disabled:hover:active:focus, .datepicker table tr td span.active.disabled.focus:hover:active, .datepicker table tr td span.active.disabled.active:hover:hover, .datepicker table tr td span.active.disabled.active:hover:focus, .datepicker table tr td span.active.disabled.active.focus:hover {
|
|
color: #fff;
|
|
background-color: #2b91ff;
|
|
border-color: #4199f7;
|
|
}
|
|
|
|
.datepicker table tr td span.active.disabled:hover, .datepicker table tr td span.active.disabled:focus, .datepicker table tr td span.active.disabled.focus, .datepicker table tr td span.active[disabled]:hover, .datepicker table tr td span.active[disabled]:focus, .datepicker table tr td span.active.focus[disabled], fieldset[disabled] .datepicker table tr td span.active:hover, fieldset[disabled] .datepicker table tr td span.active:focus, fieldset[disabled] .datepicker table tr td span.active.focus, .datepicker table tr td span.active.disabled:hover:hover, .datepicker table tr td span.active.disabled:hover:focus, .datepicker table tr td span.active.disabled.focus:hover, .datepicker table tr td span.active[disabled]:hover:hover, .datepicker table tr td span.active[disabled]:hover:focus, .datepicker table tr td span.active.focus[disabled]:hover, fieldset[disabled] .datepicker table tr td span.active:hover:hover, fieldset[disabled] .datepicker table tr td span.active:hover:focus, fieldset[disabled] .datepicker table tr td span.active.focus:hover, .datepicker table tr td span.active.disabled.disabled:hover, .datepicker table tr td span.active.disabled.disabled:focus, .datepicker table tr td span.active.disabled.disabled.focus, .datepicker table tr td span.active.disabled[disabled]:hover, .datepicker table tr td span.active.disabled[disabled]:focus, .datepicker table tr td span.active.disabled.focus[disabled], fieldset[disabled] .datepicker table tr td span.active.disabled:hover, fieldset[disabled] .datepicker table tr td span.active.disabled:focus, fieldset[disabled] .datepicker table tr td span.active.disabled.focus, .datepicker table tr td span.active.disabled.disabled:hover:hover, .datepicker table tr td span.active.disabled.disabled:hover:focus, .datepicker table tr td span.active.disabled.disabled.focus:hover, .datepicker table tr td span.active.disabled[disabled]:hover:hover, .datepicker table tr td span.active.disabled[disabled]:hover:focus, .datepicker table tr td span.active.disabled.focus[disabled]:hover, fieldset[disabled] .datepicker table tr td span.active.disabled:hover:hover, fieldset[disabled] .datepicker table tr td span.active.disabled:hover:focus, fieldset[disabled] .datepicker table tr td span.active.disabled.focus:hover {
|
|
background-color: #007bff;
|
|
border-color: #0277f4;
|
|
}
|
|
|
|
.datepicker table tr td span.old, .datepicker table tr td span.new {
|
|
color: #6c757d;
|
|
}
|
|
|
|
.datepicker .datepicker-switch {
|
|
width: 145px;
|
|
}
|
|
|
|
.datepicker .datepicker-switch,
|
|
.datepicker .prev,
|
|
.datepicker .next,
|
|
.datepicker tfoot tr th {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.datepicker .datepicker-switch:hover,
|
|
.datepicker .prev:hover,
|
|
.datepicker .next:hover,
|
|
.datepicker tfoot tr th:hover {
|
|
color: #000;
|
|
background: #e9e9ea;
|
|
}
|
|
|
|
.datepicker .prev.disabled, .datepicker .next.disabled {
|
|
visibility: hidden;
|
|
}
|
|
|
|
.datepicker .cw {
|
|
font-size: 10px;
|
|
width: 12px;
|
|
padding: 0 2px 0 5px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.input-group.date .input-group-addon {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.input-daterange {
|
|
width: 100%;
|
|
}
|
|
|
|
.input-daterange input {
|
|
text-align: center;
|
|
}
|
|
|
|
.input-daterange input:first-child {
|
|
border-radius: 3px 0 0 3px;
|
|
}
|
|
|
|
.input-daterange input:last-child {
|
|
border-radius: 0 3px 3px 0;
|
|
}
|
|
|
|
.input-daterange .input-group-addon {
|
|
width: auto;
|
|
min-width: 16px;
|
|
padding: 4px 5px;
|
|
line-height: 1.5;
|
|
border-width: 1px 0;
|
|
margin-left: -5px;
|
|
margin-right: -5px;
|
|
}
|