170 lines
2.2 KiB
CSS
170 lines
2.2 KiB
CSS
/**** CALENDAR ****/
|
|
|
|
.caldiv {
|
|
position:absolute;
|
|
visibility:hidden;
|
|
background-color:white;
|
|
width: 144px;
|
|
z-index: 301; /* always on top(?) */
|
|
}
|
|
|
|
|
|
|
|
div.cal_wrapper { }
|
|
div.cal_body {
|
|
margin: 16px;
|
|
background-color: #DDD;
|
|
position: relative;
|
|
border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-webkit-border-radius: 5px;
|
|
}
|
|
|
|
div.cal_head {
|
|
margin: 16px;
|
|
margin-bottom: 0px;
|
|
}
|
|
div.cal_head div {
|
|
font-size: 18px;
|
|
color: #666;
|
|
padding-top: 8px;
|
|
}
|
|
|
|
div.cal_view_body {
|
|
margin: 16px;
|
|
}
|
|
|
|
div.cal_view_body_plain {
|
|
margin: 16px;
|
|
}
|
|
|
|
div.cal_month_head {
|
|
}
|
|
|
|
div.cal_month_body {
|
|
border-top: 1px solid #888;
|
|
}
|
|
|
|
.cal_month_headtable {
|
|
/*table-layout:fixed;*/
|
|
width: 100%;
|
|
}
|
|
|
|
.cal_month_name {
|
|
width: 100%;
|
|
color: #888;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
padding: 4px;
|
|
}
|
|
|
|
.cal_month_headtable tr td{
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
padding: 4px;
|
|
}
|
|
|
|
table.cal_month_table {
|
|
border-collapse: collapse;
|
|
/*table-layout:fixed;*/
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
table.cal_month_table td {
|
|
width: 14.29%;
|
|
height: 20%;
|
|
/*overflow:hidden;*/
|
|
padding:0px;
|
|
}
|
|
|
|
div.cal_month_date {
|
|
width:100%;
|
|
height:25%;
|
|
font-size: 10px;
|
|
overflow:hidden;
|
|
/*background-color: #EEF;*/
|
|
}
|
|
|
|
div.cal_month_date_holiday {
|
|
/*background-color: #FFF;*/
|
|
}
|
|
|
|
div.cal_month_unit {
|
|
width:100%;
|
|
height:75%;
|
|
overflow:hidden;
|
|
cursor:pointer;
|
|
/*background-color:#FFF;*/
|
|
}
|
|
|
|
div.cal_vu_disabled {
|
|
background-color:#FFF;
|
|
cursor:default;
|
|
}
|
|
|
|
table.cal_day_table {
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
}
|
|
|
|
table.cal_day_table td {
|
|
}
|
|
|
|
div.cal_day_body {
|
|
width: 100%;
|
|
height: 80%;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
border-top: 1px solid #AAA;
|
|
}
|
|
|
|
div.cal_day_unit{
|
|
width:100%;
|
|
cursor:pointer;
|
|
}
|
|
|
|
table.cal_week_table {
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
}
|
|
|
|
table.cal_week_table td {
|
|
width: 12.5%;
|
|
}
|
|
|
|
div.cal_week_body {
|
|
width: 100%;
|
|
height: 80%;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
border-top: 1px solid #888;
|
|
}
|
|
|
|
div.cal_week_unit{
|
|
width: 100%;
|
|
cursor:pointer;
|
|
}
|
|
|
|
div.cal_event {
|
|
width: 100%;
|
|
height: 12px;
|
|
overflow: hidden;
|
|
color: #00B;
|
|
margin-bottom: 2px;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
div.cal_event_Public {
|
|
color: GREEN;
|
|
}
|
|
|
|
div.cal_event_Private {
|
|
color: BLUE;
|
|
}
|
|
|
|
div.cal_event_hover {
|
|
text-decoration: underline;
|
|
}
|