-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCalendarControl.css
109 lines (92 loc) · 1.72 KB
/
CalendarControl.css
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#CalendarControlIFrame {
display: none;
left: 0px;
position: absolute;
top: 0px;
height: 250px;
width: 250px;
z-index: 99;
}
#CalendarControl {
position:absolute;
background-color:#FFF;
margin:0;
padding:0;
display:none;
z-index: 100;
}
#CalendarControl table {
font-family: arial, verdana, helvetica, sans-serif;
font-size: 8pt;
border-left: 1px solid #336;
border-right: 1px solid #336;
}
#CalendarControl th {
font-weight: normal;
}
#CalendarControl th a {
font-weight: normal;
text-decoration: none;
color: #FFF;
padding: 1px;
}
#CalendarControl td {
text-align: center;
}
#CalendarControl .header {
background-color: #336;
}
#CalendarControl .weekday {
background-color: #DDD;
color: #000;
}
#CalendarControl .weekend {
background-color: #FFC;
color: #000;
}
#CalendarControl .current {
border: 1px solid #339;
background-color: #336;
color: #FFF;
}
#CalendarControl .weekday,
#CalendarControl .weekend,
#CalendarControl .current {
display: block;
text-decoration: none;
border: 1px solid #FFF;
width: 2em;
}
#CalendarControl .weekday:hover,
#CalendarControl .weekend:hover,
#CalendarControl .current:hover {
color: #FFF;
background-color: #336;
border: 1px solid #999;
}
#CalendarControl .previous {
text-align: left;
}
#CalendarControl .next {
text-align: right;
}
#CalendarControl .previous,
#CalendarControl .next {
padding: 1px 3px 1px 3px;
font-size: 1.4em;
}
#CalendarControl .previous a,
#CalendarControl .next a {
color: #FFF;
text-decoration: none;
font-weight: bold;
}
#CalendarControl .title {
text-align: center;
font-weight: bold;
color: #FFF;
}
#CalendarControl .empty {
background-color: #CCC;
border: 1px solid #FFF;
}