calendar/calendar.css

17 lines
574 B
CSS
Raw Normal View History

2011-07-19 16:39:50 +04:00
.calendar-box {
display:none;
2015-04-06 15:55:59 +03:00
background:#fff;
2011-07-19 16:39:50 +04:00
position:absolute;
2015-04-06 15:55:59 +03:00
padding:5px;
2015-03-13 17:59:41 +03:00
z-index:100;
2015-04-06 15:55:59 +03:00
box-shadow:0 0 4px #aaa;
2011-07-19 16:39:50 +04:00
}
2015-04-06 15:55:59 +03:00
.calendar-box select.calendar-month { width:90px; margin-right: 10px; }
2011-07-19 16:39:50 +04:00
.calendar-box select.calendar-year { width:70px; }
.calendar-box .calendar-cancel { width:100%; }
2015-04-06 15:55:59 +03:00
.calendar-box table td { width:14%; text-align: center; }
.calendar-box .calendar-title { text-align:center; white-space: nowrap; }
2011-07-19 16:39:50 +04:00
.calendar-box a { text-decoration:none; }
2015-04-06 15:55:59 +03:00
.calendar-box .today { background-color:#ffe9c6; }
.calendar-box .selected { background-color:#c9ff8b; }