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