/* The main calendar widget. DIV containing a table. */
.calendar table {
width: 250px;
padding: 2px;
font-size: 12px;
}
/* .calendar tfoot .unavailable_legend { color: #000; background: #CCCCCC; border: 1px solid #000; } */
/* Header part -- contains navigation buttons and day names. */
.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
text-align: center;
padding: 1px;
}
/* this is the title at the top of the calendar
like Select Delivery Date */
.title2 {
font-weight: bold;
font-size: small;
color: #666666;
text-align: center;
padding: 0px;
padding-bottom: 10px;
}
.calendar thead .title { /* This holds the current "month, year" */
font-weight: bold;
color: #000;
text-align: center;
}
.calendar .nav {
font-weight: 700;
font-size: 20px;
text-align: center;
}
.calendar thead .headrow { /* Row
containing navigation buttons */
}
.calendar thead .daynames { /* Row
containing the day names */
color: #FFFFFF;
background-color: #5E5E5E;
text-align: center;
border: 1px solid #5E5E5E;
}
.calendar thead .name { /* Cells | containing the day names */
text-align: center;
}
.calendar thead .weekend { /* How a weekend day name shows in header */
color: #FFFFFF;
}
.calendar thead .hilite { /* How do the buttons in header appear when hover */
}
.calendar thead .active { /* Active (pressed) buttons in header */
}
/* This is for the div that is
displayed in the loading calendar that says
loadding calendar dates*/
.calendar
{
z-index: 100;
position: relative;
width: 250px;
font-weight: bold;
font-size: 12px;
color: #000;
top:-30px; /* not sure if this is even used */
left:10px; /* and this too */
cursor: default;
}
.loading_msg {
position:absolute;
top:100px;
left:0;
width:100%;
background-color:transparent;
font-size: 16px;
font-weight:bold;
/*border:solid 2px green;*/
}
.loading_msg_zipError {
color: red;
width:95%;
background-color:transparent;
text-align: left;
padding-top: 5px;
padding-bottom: 10px;
}
.calendar tbody .loading_day {
width: 2em;
text-align: center;
padding: 2px;
background: #CCCCCC;
color:#b8b8b8;
border: 1px solid #CCCCCC;
}
/* The body part -- contains all the days in month. */
.day {
width: 2em;
color: #FFFFFF;
text-align: center;
padding: 2px;
/* !! COLOUR CHANGE */
/* MOTHER'S DAY background: #9481b3; */
background:#53991f;
border: 1px solid #000000;
}
.calendar tbody { /* Cells | containing month days dates */
width: 2em;
text-align: center;
padding: 2px;
border: 2px solid #fff;
}
.calendar tbody .day.othermonth {
font-size: 80%;
}
.calendar tbody .day.othermonth.oweekend {
}
.calendar table .wn {
padding: 2px;
}
.calendar tbody td.hilite { /* Hovered cells | */
padding: 2px;
border: 1px solid #9EBF3D;
}
.calendar tbody td.active { /* Active (pressed) cells | */
padding: 2px;
}
.calendar tbody td.selected { /* Cell showing selected date */
font-weight: bold;
padding: 2px;
color: #FFFFFF;
}
.calendar tbody td.weekend { /* Cells showing weekend days */
}
.calendar tbody td.today { /* Cell showing today date */
}
.calendar tbody .date_unavailable {
background: #CCCCCC;
color: #000000;
}
/* set Delivery Date colours */
.calendar tbody .nextday_delivery { color: #000; background-color: #C666AE; }
.calendar tbody .twoday_delivery { color: #000; background-color: #B8E2E6; }
.calendar tbody .saturday_delivery { color: #000; background-color: #F3A86F; }
.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
visibility: hidden;
}
.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
display: none;
}
/* The footer part -- status bar and "Close" button */
.calendar tbody .footrow { /* The |
in footer (only one right now) */
height: 40px;
text-align: center;
padding: 1px;
}
.calendar tfoot .ttip { /* Tooltip (status bar) cell | */
padding: 1px;
color: #000;
text-align: center;
}
.calendar tfoot .hilite { /* Hover style for buttons in footer */
}
.calendar tfoot .unavailable_legend { color: #000; background: #CCCCCC; border: 1px solid #000; }
.calendar tfoot .available_legend { color: #000; background: #036D7D; border: 1px solid #000; }
.calendar tfoot .close_padding { color: #000; }
.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
padding: 2px;
}
.calendar tfoot .closewin{ text-align: center; color: #000; text-decoration: underline; padding-bottom: 10px; }
/* Combo boxes (menus that display months/years for direct selection) */
.calendar .combo {
position: absolute;
display: none;
width: 4em;
top: 0px;
left: 0px;
cursor: default;
font-size: 90%;
padding: 1px;
z-index: 100;
}
.calendar .combo .label,
.calendar .combo .label-IEfix {
text-align: center;
padding: 1px;
}
.calendar .combo .label-IEfix {
width: 4em;
}
.calendar .combo .active {
padding: 0px;
}
.calendar .combo .hilite {
color: #FFFFFF;
}
.calendar td.time {
border-top: 1px solid #000;
padding: 1px 0px;
text-align: center;
}
.calendar td.time .hour,
.calendar td.time .minute,
.calendar td.time .ampm {
padding: 0px 3px 0px 4px;
border: 1px solid #CCCCCC;
font-weight: bold;
}
.calendar td.time .ampm {
text-align: center;
}
.calendar td.time .colon {
padding: 0px 2px 0px 3px;
font-weight: bold;
}
.calendar td.time span.hilite {
border-color: #FFFFFF;
color: #FFFFFF;
}
.calendar td.time span.active {
border-color: #FF0000;
color: #FFFFFF;
}
|