-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCalendar.css
More file actions
276 lines (213 loc) · 7.77 KB
/
Copy pathCalendar.css
File metadata and controls
276 lines (213 loc) · 7.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
/**************************************************************************/
/** Header
/**************************************************************************/
/* style for the header row */
.javaxt-cal-header {
border: 1px solid #99BBE8;
background: none repeat scroll 0 0 #EEEEEE;
height: 25px;
}
/* style for individual cells in the header */
.javaxt-cal-header-col {
border-left: 1px solid #99BBE8;
border-right: 1px solid #99BBE8;
text-align: center;
font-family: tahoma,arial,verdana,sans-serif;
font-size: 11px;
padding-top: 5px;
}
/**************************************************************************/
/** Multiday Event Header
/**************************************************************************/
/* style for the header row */
.javaxt-cal-multiday-header {
border-bottom: 1px solid #99BBE8;
border-left: 1px solid #000000;
border-right: 1px solid #000000;
background-color: #FFFFFF;
}
/* style for individual cells in the header */
.javaxt-cal-multiday-col {
border-left: 1px solid #000000;
border-right: 1px solid #000000;
padding-top: 0px;
vertical-align: top;
}
/* style for the left cell in the multiday header */
.javaxt-cal-multiday-col-spacer {
}
/**************************************************************************/
/** Body
/**************************************************************************/
/* style for the body row */
.javaxt-cal-body {
border-right: 1px solid #000000;
border-bottom: 1px solid #000000;
border-left: 1px solid #000000;
}
/**************************************************************************/
/** Cells
/**************************************************************************/
/* Style for individual cells in the body. Note that the cell header and
footer are set using seperate css classes
*/
.javaxt-cal-cell {
border-right: 1px solid #000000;
border-left: 1px solid #000000;
vertical-align: top;
}
/* Style for headers inside individual cells (e.g. numbers inside the month view)*/
.javaxt-cal-cell-header {
height: 15px;
padding:0 2px 0 0;
text-align: right;
font-family: tahoma,arial,verdana,sans-serif;
font-size: 11px;
}
.javaxt-cal-cell-footer {
border-bottom: 1px solid #000000;
}
/* background color for days before and after current month */
.javaxt-cal-cell-prev-month, .javaxt-cal-cell-next-month {
background: none repeat scroll 0 0 #EFF9FC;
border-right: 1px solid #000000;
border-left: 1px solid #000000;
}
/**************************************************************************/
/** Hours
/**************************************************************************/
/** Style for horizonal lines within the cells used to deliniate hours and
* half hours. Note that the heights are very important. Make sure the
* height of the half-hour is exactly 1/2 the height of an hour.
*/
.javaxt-cal-hour {
height: 55px; /* 56px-1px for border */
border-top: 1px solid #99BBE8;
}
.javaxt-cal-half-hour {
height: 27px; /* 28px-1px for border */
border-top: 1px solid #99BBE8;
}
.javaxt-cal-half-hour-sep {
border-top: 1px solid #D7E8FF;
}
.javaxt-cal-hour-last {
border-bottom: 1px solid #99BBE8;
}
/**************************************************************************/
/** Hour Labels
/**************************************************************************/
/** Style for the hour labels that appear in the left column of the day and
* week views.
*/
.javaxt-cal-label-hour {
font-family:"Times New Roman", Times, serif;
font-size: 18pt;
vertical-align: top;
}
.javaxt-cal-label-meridian {
font-family: tahoma,arial,verdana,sans-serif;
font-size: 11px;
padding: 0px 0px 0px 3px;
vertical-align: top;
}
/**************************************************************************/
/** Current Time Indicator
/**************************************************************************/
/** Style for the horizonal line used to indicate the current time in the
* day and week views.
*/
.javaxt-cal-current-time-indicator {
border-top: 1px solid #FFA1A1;
}
/**************************************************************************/
/** Events
/**************************************************************************/
/** Style for individual events. */
.javaxt-cal-event {
font-family: tahoma,arial,verdana,sans-serif;
font-size: 11px;
padding-left: 4px; /* Padding inside the event div */
white-space: nowrap;
cursor: pointer;
border: 1px solid #803D5E;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
background-color: #E2C0D0;
background: linear-gradient(#F1E2E9, #E2C0D0);
background: -ms-linear-gradient(#F1E2E9, #E2C0D0);
background: -webkit-linear-gradient(#F1E2E9, #E2C0D0);
background: -moz-linear-gradient(center top, #F1E2E9, #E2C0D0);
}
/* Left border for multi-day events that extend beyond the first cell in a
row or view
*/
.javaxt-cal-event-continue-left {
-moz-border-radius: 0px;
-webkit-border-radius: 0px 3px 3px 0px;
border-radius: 0px 3px 3px 0px;
border-left: 0px;
}
/* Right border for multi-day events that extend beyond the last cell in a
row or view
*/
.javaxt-cal-event-continue-right {
-moz-border-radius: 0px;
-webkit-border-radius: 3px 0px 0px 3px;
border-radius: 3px 0px 0px 3px;
border-right: 0px;
}
/* Left and Right borders for multi-day events that extend beyond the first and
last cell in a row/view
*/
.javaxt-cal-event-continue-left.javaxt-cal-event-continue-right {
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
}
/* Style for events as they are being dragged */
.javaxt-cal-event-drag {
cursor: move;
box-shadow: 0 12px 14px 0 rgba(0, 0, 0, 0.2), 0 13px 20px 0 rgba(0, 0, 0, 0.2);
}
/**************************************************************************/
/** Alternative Colors for Events
/**************************************************************************/
.javaxt-cal-event-blue {
border: 1px solid #6986BE;
background-color: #DBE1EF;
background: linear-gradient(#FFFFFF, #DBE1EF);
background: -ms-linear-gradient(#FFFFFF, #DBE1EF);
background: -webkit-linear-gradient(#FFFFFF, #DBE1EF);
background: -moz-linear-gradient(center top, #FFFFFF, #DBE1EF);
}
.javaxt-cal-event-red {
border: 1px solid #A81D24;
background-color: #E55F66;
/*background-image: -moz-linear-gradient(center top , #F2B6B6, #E55F66);*/
background: linear-gradient(#FFFFFF, #E55F66);
background: -ms-linear-gradient(#FFFFFF, #E55F66);
background: -webkit-linear-gradient(#FFFFFF, #E55F66);
background: -moz-linear-gradient(center top, #FFFFFF, #E55F66);
}
.javaxt-cal-event-yellow {
border: 1px solid #9D7925;
background-color: #FFFF83;
/*background-image: -moz-linear-gradient(center top , #FFFDD6, #FFFF83);*/
background: linear-gradient(#FFFFFF, #FFFF83);
background: -ms-linear-gradient(#FFFFFF, #FFFF83);
background: -webkit-linear-gradient(#FFFFFF, #FFFF83);
background: -moz-linear-gradient(center top, #FFFFFF, #FFFF83);
}
/**************************************************************************/
/** Misc
/**************************************************************************/
.javaxt-noselect {
-webkit-user-select: none;
-moz-user-select: none;
-o-user-select: none;
-ms-user-select: none;
-khtml-user-select: none;
user-select: none;
}