jCal.css
4.54 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
/* default dimensions and justification for each month including title */
.jCal {
/* each day width + border-left + border-right */
width: 507px;
text-align:center;
padding: 12px 0;
position: relative;
}
/* default dimensions and justification for each month not including title */
.jCalMo {
/* width: 560px; */ /* each day width + border-left + border-right */
overflow:visible;
height:100%;
padding-right:2px;
padding-left:2px;
white-space:nowrap;
display: inline-block;
*display: inline;
*zoom: 1;
vertical-align: top;
margin: 0 20px;
}
/* top month display block - i.e. January */
.jCal .month, .jCal .monthSelect, .jCal .monthName, .jCal .monthYear {
line-height:16px;
height:16px;
text-align:center;
vertical-align:bottom;
font-family:Tahoma;
/* font-size:8pt; */
/* color:#000000; */
cursor:pointer;
float:left;
}
/* month name per calendar style - includes left/right padding and alignment */
.jCal .monthName {
padding-left:2px;
padding-right:2px;
}
/* year per calendar style - includes left/right padding and alignment */
.jCal .monthYear {
padding-left:2px;
padding-right:2px;
}
.jCal .monthName,
.jCal .monthYear {
font-size: 18px;
color: #fff;
}
/* width of monthName + monthYear */
.jCal .month {
float: none;
display: inline-block;
border: 1px solid #ad5800;
background-color: #ad5800;
border-radius: 10px;
vertical-align: middle;
padding: 10px 20px;
}
/* hilight style for new month combobox pulldown for hover */
.jCal .monthSelect {
background:#EEE url(eeGrad2.gif) bottom repeat-x;
}
/* do not edit - this enables the new month combobox selector */
.jCal .monthSelector {
position:absolute;
}
/* do not edit - this enables the new month combobox selector "shadow" for capturing auto-hide */
.jCal .monthSelectorShadow {
position:absolute;
background:#808080;
padding:0px;
}
/* this is the hover for the month name */
.jCal .monthNameHover {
background:#EDEDED url(double-arrow-vert.gif) center left no-repeat;
color:#808080;
}
/* this is the hover for the year */
.jCal .monthYearHover {
background:#EDEDED url(double-arrow-vert.gif) center right no-repeat;
color:#808080;
}
/* this is the hover for the new month or year hover in the new combobox selection */
.jCal .monthSelectHover {
background:#069;
color:#FFF;
}
/* day block dimensions and style - for all day blocks */
.jCalMo .dow, .jCalMo .day, .jCalMo .pday, .jCalMo .aday, .jCalMo .overDay, .jCalMo .invday, .jCalMo .selectedDay {
width: 70px;
font-family:Tahoma;
font-size:8pt;
color:#000000;
border-right:1px solid #CCC;
border-bottom:1px solid #CCC;
border-left:1px solid #EEE;
text-align:center;
cursor:default;
float:left;
}
/* day of week header specific style */
.jCalMo .dow {
background: #fce67e;
border-color: #fce67e;
margin-bottom: 2px;
height: 70px;
line-height: 70px;
font-size: 24px;
color: #c48731;
padding: 0 0.5px 0 0;
}
/* actual calendar day default style */
.jCalMo .day, .jCalMo .invday {
height: 70px;
line-height: 70px;
text-align:center;
border-radius: 10px;
background-color: #fffff3;
color: #ff8234;
font-size: 30px;
margin: 0 1px 1px 0;
}
/* selectable calendar day specific style */
.jCalMo .day {
cursor:pointer;
}
/* blacked-out calendar day specific style */
.jCalMo .invday {
color: #f00;
}
/* previous and subsequent months calendar day specific style */
.jCalMo .pday, .jCalMo .aday {
height: 70px;
text-align: center;
border-radius: 10px;
margin: 0 1px 1px 0;
line-height: 70px;
font-size: 0;
background-color: #fffff3;
color: #ff8234;
}
/* selected day */
.jCalMo .selectedDay {
font-size: 0;
background: #b6d99d url(http://static.nong12.com/static/newStatic/pnr/images/signin.png) -258px -88px no-repeat;
border-color: #b6d99d;
}
/* mouseover hilighted selectable day */
.jCalMo .overDay {
color:#FFF;
/* must use rgb() syntax for jquery.color.js compliance */
background:rgb(0, 102, 153);
}
/* left month navigation button - no need to change */
.jCal .left {
background: url(http://static.nong12.com/static/newStatic/pnr/images/signin.png) -180px -99px no-repeat;
width: 30px;
height: 62px;
vertical-align:middle;
cursor:pointer;
float: none;
position: absolute;
left: -50px;
top: 220px;
}
/* right month navigation button - no need to change */
.jCal .right {
background: url(http://static.nong12.com/static/newStatic/pnr/images/signin.png) -223px -99px no-repeat;
width: 32px;
height: 62px;
vertical-align:middle;
cursor:pointer;
float: none;
position: absolute;
right: -50px;
top: 220px;
}
/* no need to change - this is for carousel opacity */
.jCalMask, .jCalMove {
position: absolute;
overflow: hidden;
}