Last change
on this file since 583 was
476,
checked in by gav, 15 years ago
|
Improve task search and calendar logic.
Move task quick search links to a template.
Set targetCompletionDate when creating task from calendar.
Remove task budget action and view, functionality moved to task search.
Customise calendar css.
|
File size:
1.1 KB
|
Line | |
---|
1 | /* Calendar */ |
---|
2 | |
---|
3 | /* Link size and color */ |
---|
4 | .calendar a { |
---|
5 | font-weight: normal; |
---|
6 | font-size: 12px; |
---|
7 | color: #000000; |
---|
8 | text-decoration: none; |
---|
9 | } |
---|
10 | |
---|
11 | .calendar li:hover a{ |
---|
12 | color: red; |
---|
13 | } |
---|
14 | |
---|
15 | .calendar li:hover { |
---|
16 | color: red; |
---|
17 | } |
---|
18 | |
---|
19 | /* Table */ |
---|
20 | table.calendar td.dayWithItems { |
---|
21 | background: #ffed8c; |
---|
22 | border: 1px solid #ffde33; |
---|
23 | } |
---|
24 | table.calendar td.outsideOfMonth { |
---|
25 | background: #BBBBBB; |
---|
26 | } |
---|
27 | |
---|
28 | table.calendar td.today { |
---|
29 | background: #B2D1FF; |
---|
30 | } |
---|
31 | |
---|
32 | table.calendar .oddDay { |
---|
33 | background: #efefef; |
---|
34 | } |
---|
35 | |
---|
36 | table.calendar .evenDay { |
---|
37 | background: #f7f7f7; |
---|
38 | } |
---|
39 | |
---|
40 | table.calendar td.day { |
---|
41 | /* |
---|
42 | height: 12.5%; |
---|
43 | width: 12.5%; |
---|
44 | */ |
---|
45 | height: 7em; |
---|
46 | width: 7em; |
---|
47 | } |
---|
48 | |
---|
49 | table.calendar td.weekOfYear { |
---|
50 | height: 5%; |
---|
51 | width: 5%; |
---|
52 | } |
---|
53 | |
---|
54 | /* Day title */ |
---|
55 | table.calendar h1 { |
---|
56 | color:#5C5C5C; |
---|
57 | } |
---|
58 | table.calendar h1:hover { |
---|
59 | color: red; |
---|
60 | } |
---|
61 | |
---|
62 | table.calendar th:hover, table.calendar td:hover { |
---|
63 | |
---|
64 | } |
---|
65 | |
---|
66 | table.calendar { |
---|
67 | border-collapse: collapse; |
---|
68 | } |
---|
69 | |
---|
70 | table.calendar th, table.calendar td { |
---|
71 | border-left:1px solid #DDDDDD; |
---|
72 | } |
---|
73 | |
---|
74 | /* Month Control Title*/ |
---|
75 | span.calendarMonthControlTitle { |
---|
76 | font-size: 17px; |
---|
77 | font-weight: bold; |
---|
78 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.