calendar/calendar.css

25 lines
1.1 KiB
CSS

/* Default CSS for calendar.js, version: 2018-03-14 */
.calendar-box {
display: none;
background: #fff;
position: absolute;
padding: 5px;
z-index: 100;
box-shadow: 0 0 4px #aaa;
}
.calendar-box select.calendar-month { width: 9 0px; margin-right: 3px; }
.calendar-box select.calendar-year { width: 70px; }
.calendar-box .calendar-cancel { display: block; text-align: center; cursor: pointer; margin: 2px; }
.calendar-box table td { width: 14%; text-align: center; }
.calendar-box a { text-decoration: none; display: block; padding: 5px; }
.calendar-box a:hover { background: #e8ffd0; }
.calendar-box tr.header td { font-weight: bold; padding: 5px; }
.calendar-box td { background: #f4f6f8; }
.calendar-box td.future { color: #606060; }
.calendar-box .today { background-color: #ffe9c6; }
.calendar-box .selected { background-color: #c9ff8b; }
.calendar-box .calendar-title { text-align: center; white-space: nowrap; }
.calendar-box .calendar-title a { display: inline-block; padding: 3px 7px; border: 1px solid #d0d2d4; background: #eef0f2; }
.calendar-box .calendar-title a.prev:before { content: "<"; }
.calendar-box .calendar-title a.next:before { content: ">"; }