Subversion Repositories Applications.papyrus

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2150 mathias 1
 
2
 
3
table.jCalendar {
4
	border: 1px solid #000;
5
	background: #aaa;
6
    border-collapse: separate;
7
    border-spacing: 2px;
8
}
9
table.jCalendar th {
10
	background: #333;
11
	color: #fff;
12
	font-weight: bold;
13
	padding: 3px 5px;
14
}
15
table.jCalendar td {
16
	background: #ccc;
17
	color: #000;
18
	padding: 3px 5px;
19
	text-align: center;
20
}
21
table.jCalendar td.other-month {
22
	background: #ddd;
23
	color: #aaa;
24
}
25
table.jCalendar td.today {
26
	background: #666;
27
	color: #fff;
28
}
29
table.jCalendar td.selected {
30
	background: #f66;
31
	color: #fff;
32
}
33
table.jCalendar td.selected:hover {
34
	background: #f33;
35
	color: #fff;
36
}
37
table.jCalendar td:hover, table.jCalendar td.dp-hover {
38
	background: #fff;
39
	color: #000;
40
}
41
table.jCalendar td.disabled, table.jCalendar td.disabled:hover {
42
	background: #bbb;
43
	color: #888;
44
}
45
 
46
/* For the popup */
47
 
48
/* NOTE - you will probably want to style a.dp-choose-date - see how I did it in demo.css */
49
 
50
div.dp-popup {
51
	position: relative;
52
	background: #ccc;
53
	font-size: 10px;
54
	font-family: arial, sans-serif;
55
	padding: 2px;
56
	width: 171px;
57
	line-height: 1.2em;
58
}
59
div#dp-popup {
60
	position: absolute;
61
	z-index: 199;
62
}
63
div.dp-popup h2 {
64
	font-size: 12px;
65
	text-align: center;
66
	margin: 2px 0;
67
	padding: 0;
68
}
69
a#dp-close {
70
	font-size: 11px;
71
	padding: 4px 0;
72
	text-align: center;
73
	display: block;
74
}
75
a#dp-close:hover {
76
	text-decoration: underline;
77
}
78
div.dp-popup a {
79
	color: #000;
80
	text-decoration: none;
81
	padding: 3px 2px 0;
82
}
83
div.dp-popup div.dp-nav-prev {
84
	position: absolute;
85
	top: 2px;
86
	left: 4px;
87
	width: 100px;
88
}
89
div.dp-popup div.dp-nav-prev a {
90
	float: left;
91
}
92
/* Opera needs the rules to be this specific otherwise it doesn't change the cursor back to pointer after you have disabled and re-enabled a link */
93
div.dp-popup div.dp-nav-prev a, div.dp-popup div.dp-nav-next a {
94
	cursor: pointer;
95
}
96
div.dp-popup div.dp-nav-prev a.disabled, div.dp-popup div.dp-nav-next a.disabled {
97
	cursor: default;
98
}
99
div.dp-popup div.dp-nav-next {
100
	position: absolute;
101
	top: 2px;
102
	right: 4px;
103
	width: 100px;
104
}
105
div.dp-popup div.dp-nav-next a {
106
	float: right;
107
}
108
div.dp-popup a.disabled {
109
	cursor: default;
110
	color: #aaa;
111
}
112
div.dp-popup td {
113
	cursor: pointer;
114
}
115
div.dp-popup td.disabled {
116
	cursor: default;
117
}