blob: afb7e7e7d66439dbfe08b5b5a8d741c8ccd0ba31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
input.DatePicker{
display: block;
width: 150px;
padding: 3px 3px 3px 24px;
border: 1px solid #0070bf;
cursor: pointer;
}
.dp_container{
position: relative;
padding: 0;
z-index: 500;
}
.dp_cal{
background-color: #fff;
border: 1px solid #0070bf;
position: absolute;
width: 177px;
top: 24px;
left: 0;
margin: 0px 0px 3px 0px;
}
.dp_cal table{
width: 100%;
border-collapse: collapse;
border-spacing: 0;
}
.dp_cal select{
margin: 2px 3px;
font-size: 11px;
}
.dp_cal select option{
padding: 1px 3px;
}
.dp_cal th,
.dp_cal td{
width: 14.2857%;
text-align: center;
font-size: 11px;
padding: 2px 0;
}
.dp_cal th{
border: solid #aad4f2;
border-width: 1px 0;
color: #797774;
background: #daf2e6;
font-weight: bold;
}
.dp_cal td{
cursor: pointer;
}
.dp_cal thead th{
background: #d9eefc;
}
.dp_cal td.dp_roll{
color: #000;
background: #fff6bf;
}
/* must have this for the IE6 select box hiding */
.dp_hide{
visibility: hidden;
}
.dp_empty{
background: #eee;
}
.dp_today{
background: #daf2e6;
}
.dp_selected{
color: #ff0000;
background: #328dcf;
}
|