123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- #CalendarControlIFrame {
- display: none;
- left: 0px;
- position: absolute;
- top: 0px;
- height: 250px;
- width: 250px;
- z-index: 99;
- }
- #CalendarControl {
- position:absolute;
- background-color:#FFF;
- margin:0;
- padding:0;
- display:none;
- z-index: 100;
- }
- #CalendarControl table {
- font-family: arial, verdana, helvetica, sans-serif;
- font-size: 8pt;
- border-left: 1px solid #336;
- border-right: 1px solid #336;
- }
- #CalendarControl th {
- font-weight: normal;
- }
- #CalendarControl th a {
- font-weight: normal;
- text-decoration: none;
- color: #FFF;
- padding: 1px;
- }
- #CalendarControl td {
- text-align: center;
- }
- #CalendarControl .header {
- background-color: Gray;
- }
- #CalendarControl .weekday {
- background-color: #DDD;
- color: #000;
- }
- #CalendarControl .weekend {
- background-color: #FFC;
- color: #000;
- }
- #CalendarControl .current {
- border: 1px solid #339;
- background-color: #F64400;
- color: #FFF;
- }
- #CalendarControl .weekday,
- #CalendarControl .weekend,
- #CalendarControl .current {
- display: block;
- text-decoration: none;
- border: 1px solid #FFF;
- width: 2em;
- }
- #CalendarControl .weekday:hover,
- #CalendarControl .weekend:hover,
- #CalendarControl .current:hover {
- color: #FFF;
- background-color: #F64400;
- border: 1px solid #999;
- }
- #CalendarControl .previous {
- text-align: left;
- }
- #CalendarControl .next {
- text-align: right;
- }
- #CalendarControl .previous,
- #CalendarControl .next {
- padding: 1px 3px 1px 3px;
- font-size: 1.4em;
- }
- #CalendarControl .previous a,
- #CalendarControl .next a {
- color: #FFF;
- text-decoration: none;
- font-weight: bold;
- }
- #CalendarControl .title {
- text-align: center;
- font-weight: bold;
- color: #FFF;
- }
- #CalendarControl .empty {
- background-color: #CCC;
- border: 1px solid #FFF;
- }
|