|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- /**** 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;
- font-size: 11px;
- 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;
- }
|