forked from debjitbis08/jquery.dateRange
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdateRange.css
143 lines (120 loc) · 2.38 KB
/
dateRange.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
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
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
table { border-collapse: collapse; border-spacing: 0; }
input { vertical-align: middle; }
body { font:13px/1.231 sans-serif; }
input { font:99% sans-serif; }
body, input { color: #444; }
/**************************************/
div.calendarWrap {
font-weight: normal;
margin: 10px;
position: relative;
}
div.calendarWrap input.dateRange {
border: 1px solid #CCC;
cursor: pointer;
padding: 4px;
}
div.calendar {
background: #F2F2F2;
border:1px solid #CCC;
left: 0;
margin-top: -1px;
overflow:auto;
padding: 20px 0;
position:absolute;
}
.ie7 div.calendar {
top: 25px;
}
div.calendar .calheader {
text-align: center;
}
div.calendar .prev,
div.calendar .next {
cursor: pointer;
float: left;
font-size: 250%;
padding: 0 5px;
}
div.calendar table {
float:left;
margin: 0 10px;
}
div.calendar table caption {
font-weight: bold;
padding-bottom: 0.6em;
}
div.calendar table td {
background: none repeat scroll 0 0 #FFFFFF;
border: 1px solid #DDD;
line-height: 1.6em;
padding: 1px;
text-align: center;
white-space: nowrap;
}
div.calendar table td.calcell:hover,
div.calendar table td.calcell span:hover {
background-color: #426FD9;
color: #FFF;
cursor: pointer;
}
div.calendar td span {
color: #0066CC;
display: block;
}
div.calendar td.selected span,
div.calendar td.highlight span {
background: #B3D4FF;
color: #000;
}
div.calendar a.button {
border: 2px solid #BBB;
clear: left;
cursor: pointer;
float: right;
margin: 10px 34px 0 0;
padding: 4px;
}
div.calendar td.disabled {
background-color: #CCC;
border: none;
color: #A6A6A6;
cursor: default;
}
div.calendar tr.dayrow {
height: 2em;
}
div.calendar td.daycell {
background: none;
border: none;
font-weight: bold;
width: 2em;
}
div.calendar.nextHidden a.button {
margin-right: 15px;
}
div.calendar.prevHidden {
width: 361px;
}
div.calendar.prevHidden .prev {
display: none;
}
div.calendar.nextHidden {
width: 361px;
}
div.calendar.nextHidden .next {
display: none;
}