author | Pierre-Yves David <pierre-yves.david@logilab.fr> |
Thu, 27 Jun 2013 11:19:42 +0200 | |
changeset 9082 | a2c6d908edeb |
parent 6736 | 36ed2bf7ad3d |
child 9379 | b0b1148b6963 |
permissions | -rw-r--r-- |
0 | 1 |
/* styles for the calendar views |
2 |
* |
|
3 |
* :organization: Logilab |
|
5767
1d811df051c2
[packaging] MANIFEST.in cleanups, update js/css copyright, remove no more used files
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1976
diff
changeset
|
4 |
* :copyright: 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
0 | 5 |
* :contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
6 |
*/ |
|
7 |
||
8 |
/******************************************************************************/ |
|
9 |
/* one month calendar */ |
|
10 |
/******************************************************************************/ |
|
11 |
||
12 |
table.omcalendar { |
|
13 |
background: #eeeeff; |
|
14 |
width: 100%; |
|
15 |
table-layout: fixed; |
|
16 |
border: 1px solid #ccc; |
|
17 |
border-collapse: separate; |
|
18 |
} |
|
19 |
||
20 |
table.omcalendar tr th { |
|
21 |
background: #e7e7e7; |
|
22 |
color: #2952A3; |
|
23 |
font-weight: bold; |
|
24 |
border-bottom: 1px solid #ddd; |
|
25 |
} |
|
26 |
||
27 |
table.omcalendar tr td { |
|
28 |
border: 1px solid #f0faff; |
|
29 |
padding: 0px; |
|
30 |
font-family: Arial, Sans-Serif; |
|
31 |
color: #2952A3; |
|
32 |
background: #fff; |
|
33 |
border-bottom: 1px solid #ddd; |
|
34 |
} |
|
35 |
||
36 |
table.omcalendar tr td a { |
|
37 |
font-family: Arial, Sans-Serif; |
|
38 |
color: #2952A3; |
|
39 |
} |
|
40 |
||
41 |
table.omcalendar tr td div.cellContent { |
|
42 |
margin: 0px; |
|
43 |
padding: 0px; |
|
44 |
} |
|
45 |
||
46 |
table.omcalendar tr td div.calCellTitle { |
|
47 |
width: 100%; |
|
48 |
} |
|
49 |
||
50 |
table.omcalendar tr td div.calCellTitle div.day { |
|
51 |
display: block; |
|
52 |
float: left; |
|
53 |
clear: both; |
|
54 |
text-align: left; |
|
55 |
} |
|
56 |
||
57 |
table.omcalendar tr td div.calCellTitle div.cmd { |
|
58 |
/* display: none; |
|
59 |
float: right; |
|
60 |
clear: both; */ |
|
61 |
text-align: right; |
|
62 |
} |
|
63 |
||
64 |
table.omcalendar tr td div.calCellTitle div.cmd a { |
|
65 |
display: none; |
|
66 |
} |
|
67 |
||
68 |
table.omcalendar tr td:hover div.calCellTitle div.cmd a { |
|
69 |
/* XXX to tweak (doesn't work! what a surprise)*/ |
|
70 |
display: inline; |
|
71 |
float: right; |
|
72 |
clear: none; |
|
73 |
text-align: right; |
|
74 |
} |
|
75 |
||
76 |
table.omcalendar tr td { |
|
1976
851e08142873
[css] emphasize the 'today' cell on omcalendars (+delete-t-w + copyright update)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1077
diff
changeset
|
77 |
padding: 3px 0.5em 1em; |
0 | 78 |
} |
79 |
||
80 |
table.omcalendar tr td div.task { |
|
81 |
border-top: 1px solid #ddd; |
|
82 |
height: 2.5ex; |
|
83 |
} |
|
84 |
||
1976
851e08142873
[css] emphasize the 'today' cell on omcalendars (+delete-t-w + copyright update)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1077
diff
changeset
|
85 |
table.omcalendar tr td div.task div.tooltip { |
851e08142873
[css] emphasize the 'today' cell on omcalendars (+delete-t-w + copyright update)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1077
diff
changeset
|
86 |
display: none; |
0 | 87 |
} |
88 |
||
1976
851e08142873
[css] emphasize the 'today' cell on omcalendars (+delete-t-w + copyright update)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1077
diff
changeset
|
89 |
table.omcalendar tr td:hover div.task:hover div.tooltip { |
0 | 90 |
font-style: normal; |
91 |
display: block; |
|
92 |
position: absolute; |
|
93 |
padding: 5px; |
|
94 |
color: #000; |
|
95 |
border: 1px solid #bbb; |
|
96 |
background: #ffc; |
|
97 |
width:200px; |
|
98 |
z-index: 100; |
|
99 |
overflow: visible; |
|
100 |
} |
|
101 |
||
102 |
||
103 |
table.omcalendar tr td.outOfRange { background-color: #ddd; } |
|
1976
851e08142873
[css] emphasize the 'today' cell on omcalendars (+delete-t-w + copyright update)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1077
diff
changeset
|
104 |
table.omcalendar tr td.today { border: 2px solid #2952A3; } |
0 | 105 |
|
106 |
||
107 |
table.omcalendar div.col0 { background-color: #FFB117; } |
|
108 |
table.omcalendar div.col1 { background-color: #FFF07D; } |
|
109 |
table.omcalendar div.col2 { background-color: #E0FF7D; } |
|
110 |
table.omcalendar div.col3 { background-color: #C1FF7D; } |
|
111 |
table.omcalendar div.col4 { background-color: #02FF7D; } |
|
112 |
table.omcalendar div.col5 { background-color: #7DFF97; } |
|
113 |
table.omcalendar div.colb { background-color: #7DFFC6; } |
|
114 |
table.omcalendar div.col7 { background-color: #7DDBFF; } |
|
115 |
table.omcalendar div.col8 { background-color: #7DACFF; } |
|
116 |
table.omcalendar div.col9 { background-color: #7D8DFF; } |
|
117 |
table.omcalendar div.cola { background-color: #9C7DFF; } |
|
118 |
table.omcalendar div.col6 { background-color: #BC7DFF; } |
|
119 |
||
120 |
table.omcalendar div.col0:hover { background-color: #EFE117; } |
|
121 |
table.omcalendar div.col1:hover { background-color: #EFE07D; } |
|
122 |
table.omcalendar div.col2:hover { background-color: #E0DF7D; } |
|
123 |
table.omcalendar div.col3:hover { background-color: #C1DF7D; } |
|
124 |
table.omcalendar div.col4:hover { background-color: #02DF7D; } |
|
125 |
table.omcalendar div.col5:hover { background-color: #70EF97; } |
|
126 |
table.omcalendar div.colb:hover { background-color: #70EFC6; } |
|
127 |
table.omcalendar div.col7:hover { background-color: #70DBEF; } |
|
128 |
table.omcalendar div.col8:hover { background-color: #70ACEF; } |
|
129 |
table.omcalendar div.col9:hover { background-color: #708DEF; } |
|
130 |
table.omcalendar div.cola:hover { background-color: #9C70EF; } |
|
131 |
table.omcalendar div.col6:hover { background-color: #BC70EF; } |
|
132 |
||
133 |
||
134 |
/******************************************************************************/ |
|
135 |
/* one week calendar */ |
|
136 |
/******************************************************************************/ |
|
137 |
||
138 |
table#week { |
|
139 |
min-height: 600px; |
|
140 |
width: 100%; |
|
141 |
table-layout: auto; |
|
1976
851e08142873
[css] emphasize the 'today' cell on omcalendars (+delete-t-w + copyright update)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1077
diff
changeset
|
142 |
|
0 | 143 |
} |
144 |
||
145 |
||
146 |
table#week tr td div.hour { |
|
147 |
vertical-align: top; |
|
148 |
height: 8ex; |
|
149 |
width: 100%; |
|
150 |
position: relative; |
|
151 |
border-bottom: 1px dotted #ccc; |
|
152 |
/*padding-top: 1ex;*/ |
|
153 |
} |
|
154 |
||
155 |
table#week tr th.today { |
|
156 |
color: red; |
|
157 |
} |
|
158 |
||
159 |
table#week tr td div.hourline { |
|
160 |
height: 0px; |
|
161 |
width: 100%; |
|
162 |
position: relative; |
|
163 |
border-bottom: 1px dotted #ccc; |
|
164 |
z-index: 10; |
|
165 |
left: 0; |
|
166 |
} |
|
167 |
||
168 |
table#week tr td { |
|
169 |
vertical-align: top; |
|
170 |
height: 96ex; |
|
171 |
width: 14.2%; |
|
172 |
position: relative; |
|
173 |
} |
|
174 |
||
175 |
table#week tr td div.columndiv { |
|
176 |
position: relative; |
|
177 |
height: 102%; |
|
178 |
} |
|
179 |
||
180 |
table#week tr td div.columndiv div.task { |
|
181 |
position: absolute; |
|
182 |
overflow: hidden; |
|
183 |
} |
|
184 |
||
185 |
table#week tr td div.columndiv div.task div.bottommarker { |
|
186 |
position: absolute; |
|
187 |
bottom: 0; |
|
188 |
width: 100%; |
|
189 |
left: 0; |
|
190 |
z-index: 5; |
|
191 |
background: transparent; |
|
192 |
} |
|
193 |
table#week tr td div.columndiv div.task div.bottommarkerline { |
|
194 |
background: red; |
|
195 |
z-index: 5; |
|
196 |
padding: 0; |
|
197 |
} |
|
198 |
table#week tr td div.columndiv div.task:hover { |
|
199 |
overflow: visible; |
|
200 |
} |
|
201 |
||
202 |
table#week tr th.transparent { |
|
203 |
background: transparent; |
|
204 |
border: none; |
|
205 |
} |
|
206 |
||
207 |
||
208 |
/******************************************************************************/ |
|
209 |
/* XXX old calendar views, to remove once old_calendar.py is removed */ |
|
210 |
/******************************************************************************/ |
|
211 |
||
212 |
table.calendarPageHeader, |
|
1976
851e08142873
[css] emphasize the 'today' cell on omcalendars (+delete-t-w + copyright update)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1077
diff
changeset
|
213 |
table.smallCalendars, |
0 | 214 |
table.bigCalendars { |
215 |
width: 90%; |
|
1976
851e08142873
[css] emphasize the 'today' cell on omcalendars (+delete-t-w + copyright update)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1077
diff
changeset
|
216 |
border-collapse:separate; |
0 | 217 |
margin: 0px 1em; |
218 |
} |
|
219 |
||
220 |
||
221 |
table.smallCalendars td.calendar{ |
|
222 |
width: 33%; |
|
223 |
} |
|
224 |
||
225 |
td.calendar table { |
|
226 |
margin: 1em 2em; |
|
227 |
width: 80%; |
|
228 |
} |
|
229 |
||
230 |
.calendar th.month { |
|
231 |
font-weight:bold; |
|
232 |
padding-bottom:0.2em; |
|
6140
65a619eb31c4
[boxes] introduce new boxes system
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5819
diff
changeset
|
233 |
background: %(incontextBoxBodyBgColor)s; |
0 | 234 |
} |
235 |
||
1976
851e08142873
[css] emphasize the 'today' cell on omcalendars (+delete-t-w + copyright update)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1077
diff
changeset
|
236 |
.calendar th.month a{ |
0 | 237 |
font: bold 110% Georgia, Verdana; |
238 |
color : #fff; |
|
239 |
} |
|
240 |
||
1976
851e08142873
[css] emphasize the 'today' cell on omcalendars (+delete-t-w + copyright update)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1077
diff
changeset
|
241 |
table.weekCalendar{ |
0 | 242 |
} |
243 |
||
1976
851e08142873
[css] emphasize the 'today' cell on omcalendars (+delete-t-w + copyright update)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1077
diff
changeset
|
244 |
table.weekCalendar th{ |
0 | 245 |
text-align : left; |
246 |
padding: 0.6em 0.4em; |
|
247 |
} |
|
248 |
||
1976
851e08142873
[css] emphasize the 'today' cell on omcalendars (+delete-t-w + copyright update)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1077
diff
changeset
|
249 |
table.weekCalendar td{ |
0 | 250 |
padding: 0.2em 0.4em } |
251 |
||
252 |
.semesterCalendar .amCell, .semesterCalendar .amCellEmpty{ |
|
253 |
margin-bottom:0; |
|
254 |
border-style: none; |
|
255 |
border-right:thin dotted; |
|
256 |
} |
|
257 |
||
1976
851e08142873
[css] emphasize the 'today' cell on omcalendars (+delete-t-w + copyright update)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1077
diff
changeset
|
258 |
table.semesterCalendar th{ |
0 | 259 |
padding: 0.6em 0.4em; |
260 |
} |
|
261 |
||
262 |
.semesterCalendar .pmCell, .semesterCalendar .pmCellEmpty{ |
|
263 |
border: none; |
|
264 |
border-left:1px dotted #ccc; |
|
265 |
} |
|
266 |
||
1976
851e08142873
[css] emphasize the 'today' cell on omcalendars (+delete-t-w + copyright update)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1077
diff
changeset
|
267 |
.weeknum{ |
0 | 268 |
width:10% |
269 |
} |
|
270 |
||
1976
851e08142873
[css] emphasize the 'today' cell on omcalendars (+delete-t-w + copyright update)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1077
diff
changeset
|
271 |
.cell, .cellEmpty{ |
0 | 272 |
border:1px solid #ccc; |
273 |
padding: 3px 0.5em 2em; |
|
274 |
width:10%; |
|
275 |
} |
|
276 |
||
1976
851e08142873
[css] emphasize the 'today' cell on omcalendars (+delete-t-w + copyright update)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1077
diff
changeset
|
277 |
.cellDay{ |
0 | 278 |
border:1px solid #ccc; |
279 |
border-bottom : none; |
|
1976
851e08142873
[css] emphasize the 'today' cell on omcalendars (+delete-t-w + copyright update)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1077
diff
changeset
|
280 |
padding: 3px 0.5em 3px; |
0 | 281 |
width:10%;} |
282 |
||
283 |
.amCell, .pmCell, |
|
284 |
.amCellEmpty, .pmCellEmpty{ |
|
1976
851e08142873
[css] emphasize the 'today' cell on omcalendars (+delete-t-w + copyright update)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1077
diff
changeset
|
285 |
padding: 3px 0.5em 3px; |
0 | 286 |
border:1px solid #ccc; |
287 |
border-top:none; |
|
288 |
width:10%; |
|
289 |
} |
|
290 |
||
291 |
.amCell, .amCellEmpty{ |
|
292 |
border-bottom:none; |
|
293 |
} |
|
294 |
||
295 |
.pmCell, .pmCellEmpty{ |
|
296 |
border-top:none; |
|
297 |
} |
|
298 |
||
299 |
.cellTitle { |
|
300 |
font: bold 100% Arial, sans-serif; |
|
301 |
} |
|
302 |
||
303 |
.weekTitle { |
|
304 |
padding:1em; |
|
305 |
} |
|
306 |
||
307 |
.weekCell, .weekEmptyCell { |
|
308 |
border-top: 0px; |
|
309 |
} |
|
310 |
||
311 |
.cell span.cellTitle, |
|
312 |
.cellEmpty span.cellTitle { |
|
1976
851e08142873
[css] emphasize the 'today' cell on omcalendars (+delete-t-w + copyright update)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1077
diff
changeset
|
313 |
background-color:transparent; |
0 | 314 |
} |
315 |
||
1976
851e08142873
[css] emphasize the 'today' cell on omcalendars (+delete-t-w + copyright update)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1077
diff
changeset
|
316 |
div.cellContent{ |
0 | 317 |
padding: 0.1em; |
318 |
font-size:90%; |
|
319 |
} |
|
320 |
||
1976
851e08142873
[css] emphasize the 'today' cell on omcalendars (+delete-t-w + copyright update)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1077
diff
changeset
|
321 |
.weeknum, th.weekday{ |
0 | 322 |
padding:0.2em 0.4em; |
323 |
color : #666; |
|
324 |
font-size:90%;} |
|
325 |
||
1976
851e08142873
[css] emphasize the 'today' cell on omcalendars (+delete-t-w + copyright update)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1077
diff
changeset
|
326 |
div.event{ |
0 | 327 |
padding : 0.1em 0px; |
1976
851e08142873
[css] emphasize the 'today' cell on omcalendars (+delete-t-w + copyright update)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1077
diff
changeset
|
328 |
margin:0.2em 0px; |
0 | 329 |
background: #eee; |
330 |
} |
|
331 |
||
332 |
td.prev { |
|
333 |
text-align: left; |
|
334 |
} |
|
335 |
||
336 |
td.next { |
|
337 |
text-align: right; |
|
338 |
} |
|
6736
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
339 |
|
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
340 |
/* ------------------------- */ |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
341 |
/* tooltips for fullcalendar */ |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
342 |
|
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
343 |
div.calevent div.tooltip { |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
344 |
display: none; /* tooltip hidden */ |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
345 |
} |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
346 |
|
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
347 |
div.calevent:hover { |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
348 |
z-index: auto !important; /* in order that the tooltip from the above .calevent div can be put over this div*/ |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
349 |
} |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
350 |
|
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
351 |
div.calevent a{ |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
352 |
display: inline; |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
353 |
font-size: none; |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
354 |
font-weight: bold; |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
355 |
} |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
356 |
|
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
357 |
div.calevent:hover div.tooltip{ |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
358 |
display: block; |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
359 |
position: absolute; |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
360 |
z-index: 10; |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
361 |
color: black; |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
362 |
border:1px solid black; |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
363 |
background: white; |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
364 |
padding: 5px; |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
365 |
overflow: visible; |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
366 |
width: 200px; |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
367 |
} |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
368 |
|
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
369 |
div.tooltip a{ |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
370 |
border: none; |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
371 |
background: none; |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
372 |
color: #2952A3; |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
373 |
text-decoration: none; |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
374 |
} |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
375 |
|
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
376 |
div.tooltip a:hover{ |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
377 |
text-decoration: underline; |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
378 |
} |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
379 |
|
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
380 |
|
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
381 |
div.fc-view{ |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
382 |
overflow: visible; |
36ed2bf7ad3d
[#615712] replace calendar views with views using fullcalendar jquery plugin (remove old_calendar)
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6140
diff
changeset
|
383 |
} |