Subversion Repositories ALCASAR

Rev

Details | Last modification | View Log

Rev Author Line No. Line
508 richard 1
table.calendar {
2
	font-family: Helvetica, Arial, sans-serif;
3
	font-size: 0.8em;
4
	border-collapse: collapse;
5
	background-color: white;
6
	border: solid #999999 1px;
7
	background-color: white;
8
	width: 200px;
9
	text-align: center;
10
	/*prevent user from selecting text in Mozilla & Safari - check calendar constructor for IE code)*/
11
	-moz-user-select: none;
12
    /*-khtml-user-select: none;*/
13
}
14
table.calendar input, table.calendar select {
15
	font-size: 10px;
16
}
17
table.calendar td {
18
	border: 0;
19
	font-size: 10px;
20
	text-align: center;
21
}
22
div.mainheading {
23
	margin: 2px;
24
}
25
table.caldayheading {
26
	border-collapse: collapse;
27
	cursor: pointer;
28
	empty-cells: show;
29
	margin: 0 6px 0 6px;
30
}
31
table.caldayheading td {
32
	border: solid #CCCCCC 1px;
33
	text-align: left;
34
	color: #0054E3;
35
	font-weight: bold;
36
	width: 22px; /*should match calendar cell's width*/
37
}
38
table.caldayheading td.wkhead {
39
	border-right: double #CCCCCC 3px;
40
}
41
table.calcells {
42
	border-collapse: collapse;
43
	cursor: pointer;
44
	margin: 0 6px 0 6px;
45
}
46
table.calcells td {
47
	border: solid #CCCCCC 1px;
48
	vertical-align: top;
49
	text-align: left;
50
	font-weight: bold;
51
	width: 22px;
52
	height: 20px; /*IE doesn't like ems*/
53
}
54
table.calcells td div {
55
	padding: 1px;
56
	margin: 0;
57
}
58
table.calcells td.wkhead {
59
	background-color: white;
60
	text-align: center;
61
	border-right: double #CCCCCC 3px;
62
	color: #0054E3;
63
}
64
table.calcells td.wkday {
65
	background-color: #DDDDDD;
66
}
67
table.calcells td.wkend {
68
	background-color: #A9A9A9;
69
}
70
table.calcells td.curdate {
71
 
72
}
73
table.calcells td.cell_selected {
74
	background-color: #99CCFF;
75
	color: black;
76
}
77
table.calcells td.notmnth {
78
	background-color: #FFFFFF;
79
	color: #CCCCCC;
80
}
81
table.calcells td.notallowed {
82
	background-color: white;
83
	color: #EEEEEE;
84
	font-style: italic;
85
}
86
table.calcells td.hover {
87
	background-color: #999999;
88
}