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