* streamline copyright statements; add Conclusion of included components; flip to...
[citadel.git] / webcit / static / datepicker.css
1 /**
2  * DatePicker widget using Prototype and Scriptaculous.
3  * (c) 2007 Mathieu Jondet <mathieu@eulerian.com>
4  * Eulerian Technologies
5  *
6  * DatePicker is freely distributable under the same terms as Prototype.
7  *
8  */
9
10 div.datepicker {
11  position: absolute;
12  text-align: center;
13  border: 1px #C4D5E3 solid;
14  font-family: arial;
15  background: #FFFFFF;
16  font-size: 10px;
17  padding: 0px;
18 }
19 div.datepicker table {
20  font-size: 10px;
21  margin: 0px;
22  padding: 0px;
23  text-align: center;
24  width: 180px;
25 }
26 div.datepicker table thead tr th {
27  font-size: 12px;
28  font-weight: bold;
29  background: #e9eff4;
30  border-bottom:1px solid #c4d5e3;
31  padding: 0px;
32  margin: 0px;
33 }
34 div.datepicker table tbody tr {
35  border: 1px white solid;
36  margin: 0px;
37  padding: 0px;
38 }
39 div.datepicker table tbody tr td {
40  border: 1px #eaeaea solid;
41  margin: 0px;
42  padding: 0px;
43  text-align: center;
44 }
45 div.datepicker table tbody tr td:hover,
46 div.datepicker table tbody tr td.outbound:hover,
47 div.datepicker table tbody tr td.today:hover {
48  border: 1px #c4d5e3 solid;
49  background: #e9eff4;
50  cursor: pointer;
51 }
52 div.datepicker table tbody tr td.wday {
53  border: 1px #ffffff solid;
54  background: #ffffff;
55  cursor: text;
56 }
57 div.datepicker table tbody tr td.outbound {
58  background: #e8e4e4;
59 }
60 div.datepicker table tbody tr td.today {
61  border: 1px #16518e solid;
62  background: #c4d5e3;
63 }
64 div.datepicker table tbody tr td.nclick,
65 div.datepicker table tbody tr td.nclick_outbound {
66  cursor:default; color:#aaa;
67 }
68 div.datepicker table tbody tr td.nclick_outbound {
69  background:#E8E4E4;
70 }
71 div.datepicker table tbody tr td.nclick:hover,
72 div.datepicker table tbody tr td.nclick_outbound:hover {
73  border: 1px #eaeaea solid;
74  background: #FFF;
75 }
76 div.datepicker table tbody tr td.nclick_outbound:hover {
77  background:#E8E4E4;
78 }
79 div.datepicker table tfoot {
80  font-size: 10px;
81  background: #e9eff4;
82  border-top:1px solid #c4d5e3;
83  cursor: pointer;
84  text-align: center;
85  padding: 0px;
86 }
87