Rushabh Mehta | b73fa49 | 2012-02-24 15:07:39 +0530 | [diff] [blame] | 1 | /**** CALENDAR ****/ |
| 2 | |
| 3 | div.cal_body { |
| 4 | margin: 16px; |
| 5 | background-color: #DDD; |
| 6 | position: relative; |
| 7 | border-radius: 5px; |
| 8 | -moz-border-radius: 5px; |
| 9 | -webkit-border-radius: 5px; |
| 10 | padding: 16px; |
| 11 | -moz-box-shadow: 1px 1px 8px #555; |
| 12 | -webkit-box-shadow: 1px 1px 8px #555; |
| 13 | box-shadow: 1px 1px 8px #555; |
| 14 | } |
| 15 | |
| 16 | div.cal_body h4 { |
| 17 | text-align: center; |
| 18 | } |
| 19 | |
| 20 | div.cal_head { |
| 21 | margin: 16px; |
| 22 | margin-bottom: 0px; |
| 23 | } |
| 24 | div.cal_head div { |
| 25 | font-size: 18px; |
| 26 | color: #666; |
| 27 | padding-top: 8px; |
| 28 | } |
| 29 | |
| 30 | div.cal_toolbar { |
| 31 | } |
| 32 | |
| 33 | div.cal_toolbar .btn { |
| 34 | text-align: center; |
| 35 | margin: 0px; |
| 36 | margin-left: -1px; |
| 37 | } |
| 38 | |
| 39 | div.cal_view_body { |
| 40 | } |
| 41 | |
| 42 | div.cal_view_body_plain { |
| 43 | margin: 16px; |
| 44 | } |
| 45 | |
| 46 | div.cal_month_head { |
| 47 | margin: 8px 0px 8px 0px; |
| 48 | height: 30px; |
| 49 | } |
| 50 | |
| 51 | div.cal_month_head .btn { |
| 52 | float: right; |
| 53 | } |
| 54 | |
| 55 | span.cal_view_title { |
| 56 | display: inline-block; |
| 57 | font-size: 20px; |
| 58 | } |
| 59 | |
| 60 | div.cal_month_body { |
| 61 | } |
| 62 | |
| 63 | .cal_month_headtable { |
| 64 | /*table-layout:fixed;*/ |
| 65 | width: 100%; |
| 66 | } |
| 67 | |
| 68 | .cal_month_name { |
| 69 | width: 100%; |
| 70 | color: #888; |
| 71 | font-size: 14px; |
| 72 | font-weight: bold; |
| 73 | text-align: center; |
| 74 | } |
| 75 | |
| 76 | .cal_month_headtable tr td{ |
| 77 | font-size: 12px; |
| 78 | font-weight: bold; |
| 79 | text-align: center; |
| 80 | padding: 4px; |
| 81 | } |
| 82 | |
| 83 | table.cal_month_table { |
| 84 | border-collapse: collapse; |
| 85 | /*table-layout:fixed;*/ |
| 86 | width: 100%; |
| 87 | } |
| 88 | |
| 89 | table.cal_month_table td { |
| 90 | width: 14.29%; |
| 91 | height: 20%; |
| 92 | /*overflow:hidden;*/ |
| 93 | padding:0px; |
| 94 | } |
| 95 | |
| 96 | div.cal_month_date { |
| 97 | width:100%; |
| 98 | font-size: 10px; |
| 99 | /*background-color: #EEF;*/ |
| 100 | } |
| 101 | |
| 102 | div.cal_month_date_holiday { |
| 103 | /*background-color: #FFF;*/ |
| 104 | } |
| 105 | |
| 106 | div.cal_month_unit { |
| 107 | width:100%; |
| 108 | min-height: 100px; |
| 109 | overflow:hidden; |
| 110 | cursor:pointer; |
| 111 | /*background-color:#FFF;*/ |
| 112 | } |
| 113 | |
| 114 | div.cal_vu_disabled { |
| 115 | background-color:#FFF; |
| 116 | cursor:default; |
| 117 | } |
| 118 | |
| 119 | table.cal_day_table { |
| 120 | border-collapse: collapse; |
| 121 | width: 100%; |
| 122 | } |
| 123 | |
| 124 | table.cal_day_table td { |
| 125 | } |
| 126 | |
| 127 | div.cal_day_body { |
| 128 | width: 100%; |
| 129 | overflow-x: hidden; |
| 130 | border-top: 1px solid #AAA; |
| 131 | } |
| 132 | |
| 133 | div.cal_day_unit{ |
| 134 | width:100%; |
| 135 | cursor:pointer; |
| 136 | } |
| 137 | |
| 138 | table.cal_week_table { |
| 139 | border-collapse: collapse; |
| 140 | width: 100%; |
| 141 | } |
| 142 | |
| 143 | table.cal_week_table td { |
| 144 | width: 12.5%; |
| 145 | } |
| 146 | |
| 147 | div.cal_week_body { |
| 148 | width: 100%; |
| 149 | overflow-x: hidden; |
| 150 | border-top: 1px solid #888; |
| 151 | } |
| 152 | |
| 153 | div.cal_week_unit{ |
| 154 | width: 100%; |
| 155 | cursor:pointer; |
| 156 | } |
| 157 | |
| 158 | div.cal_event { |
Rushabh Mehta | aa999df | 2012-02-27 12:54:04 +0530 | [diff] [blame] | 159 | overflow-x: hidden; |
Rushabh Mehta | b73fa49 | 2012-02-24 15:07:39 +0530 | [diff] [blame] | 160 | font-size: 11px; |
| 161 | color: #00B; |
| 162 | margin-bottom: 2px; |
| 163 | text-decoration: underline; |
| 164 | } |
| 165 | |
| 166 | div.cal_event_Public { |
| 167 | color: GREEN; |
| 168 | } |
| 169 | |
| 170 | div.cal_event_Private { |
| 171 | color: BLUE; |
| 172 | } |
| 173 | |
| 174 | div.cal_event_hover { |
| 175 | text-decoration: underline; |
| 176 | } |