-
Notifications
You must be signed in to change notification settings - Fork 0
/
datepicker.css
99 lines (83 loc) · 2.33 KB
/
datepicker.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
.datepicker {
background: #fff;
border: 1px solid #ccc;
border-radius: 3px;
box-shadow: 0 0 3px #bbb;
color: #666;
margin-top: 10px;
width: 245px;
}
.datepicker table {
width: 100%;
}
.datepicker th,
.datepicker td {
text-align: center;
}
.datepicker-calendar {
font-size: 13px;
padding: 5px;
}
.datepicker-day {
border-radius: 100%;
cursor: pointer;
padding: 5px 2px;
transition: all .2s ease-out;
width: 22px;
}
.datepicker-day:hover {
background: #1fbad6;
color: #fff;
}
.datepicker-day-today {
background: #e0f6fb;
color: #666;
}
.datepicker-day-selected {
background: #1fbad6;
color: #fff;
}
.datepicker-day-disabled {
background: #e6e6e6;
color: #bfbfbf;
cursor: not-allowed;
}
.datepicker-day-disabled:hover {
background: #e6e6e6;
color: #bfbfbf;
}
.datepicker-week {
font-size: 1em;
font-weight: 600;
}
.datepicker-header {
background: #f2f2f4;
padding: 15px;
text-align: center;
}
.daepicker-header div {
display: inline-block;
}
.datepicker-arrow {
background-repeat: no-repeat;
cursor: pointer;
height: 24px;
outline: 0;
position: absolute;
top: 31px;
user-select: none;
width: 14px;
}
.datepicker-arrow-next {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAMCAYAAACulacQAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN5wAADecBmRSqJgAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAADWSURBVBiVfY8xSkNBFEXPe0njxGB24R4srM1YjFhMGYjYuRxLMWI7lZ8EDAqKiN8mC7B2BULMiPh/noUYvoW57Tncy5Xx+OZZhFfVauC9/6QRFeEFiMtl6yqlcuMPzPntGLgE2XPufZrS/eYKxhjr2aw8EuEC2HXu67ooii6A/FpmJpPJ7akIJ0CpWvWludEUzLhT1uS/2ifVygtASqnV6fTOzBiCPNZ13g8hzPUHbI3MGIrwkHPbhxDmAG3neudmDMCmi0X3MMadj9VPM7aBpFofNAHAN0NkW9nLdIQRAAAAAElFTkSuQmCC);
right: 14px;
}
.datepicker-arrow-prev {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAMCAYAAACulacQAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN5wAADecBmRSqJgAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAADXSURBVBiVXZAxTsNAFETfmMRWvL4C3GVRIlFElFRYHABxB1+CBlFEFBFsgQJrWTIIQRWq9NyDLrG8FGDkeNqn+TPzxUBVVSVtO7oLgaOoD5xbT9r2YAWcSXypA977VIqfQFPg3phxHgHUdW0g8aBpCGFpzDi31jaRc+/ZbqdS4jgEbjebz9xa2wDI+5e3P3A9n8+uJIUuaq/QUFEch1PgQ+KyLF9viqL4N6grtN3q+fd8WGZZfGGtbQZTkhUwk/SQpqNz9TOcW0/S9PsRdAIs9mD/fRAOfwCC1k8eHoJobwAAAABJRU5ErkJggg==);
left: 18px;
}
.datepicker-month {
font-size: .875em;
font-weight: 600;
text-transform: uppercase;
}