1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
/**
* DatePicker widget using Prototype and Scriptaculous.
* (c) 2007 Mathieu Jondet <mathieu@eulerian.com>
* Eulerian Technologies
*
* DatePicker is freely distributable under the same terms as Prototype.
*
*/
div.datepicker {
position: absolute;
text-align: center;
border: 1px #C4D5E3 solid;
font-family: arial;
background: #FFFFFF;
font-size: 10px;
padding: 0px;
z-index: 4;
}
div.datepicker table {
font-size: 10px;
margin: 0px;
padding: 0px;
text-align: center;
width: 180px;
}
div.datepicker table thead tr th {
font-size: 12px;
font-weight: bold;
background: #e9eff4;
border-bottom:1px solid #c4d5e3;
padding: 0px;
margin: 0px;
}
div.datepicker table tbody tr {
border: 1px white solid;
margin: 0px;
padding: 0px;
}
div.datepicker table tbody tr td {
border: 1px #eaeaea solid;
margin: 0px;
padding: 0px;
text-align: center;
}
div.datepicker table tbody tr td:hover,
div.datepicker table tbody tr td.outbound:hover,
div.datepicker table tbody tr td.today:hover {
border: 1px #c4d5e3 solid;
background: #e9eff4;
cursor: pointer;
}
div.datepicker table tbody tr td.wday {
border: 1px #ffffff solid;
background: #ffffff;
cursor: text;
}
div.datepicker table tbody tr td.outbound {
background: #e8e4e4;
}
div.datepicker table tbody tr td.today {
border: 1px #16518e solid;
background: #c4d5e3;
}
div.datepicker table tbody tr td.nclick,
div.datepicker table tbody tr td.nclick_outbound {
cursor:default; color:#aaa;
}
div.datepicker table tbody tr td.nclick_outbound {
background:#E8E4E4;
}
div.datepicker table tbody tr td.nclick:hover,
div.datepicker table tbody tr td.nclick_outbound:hover {
border: 1px #eaeaea solid;
background: #FFF;
}
div.datepicker table tbody tr td.nclick_outbound:hover {
background:#E8E4E4;
}
div.datepicker table tfoot {
font-size: 10px;
background: #e9eff4;
border-top:1px solid #c4d5e3;
cursor: pointer;
text-align: center;
padding: 0px;
}
|