@seafile/seafile-calendar 0.0.30-beta.1 → 0.0.30-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/index.css +1177 -0
- package/dist/rc-calendar.css +1179 -0
- package/dist/rc-calendar.css.map +1 -0
- package/dist/rc-calendar.js +7500 -0
- package/dist/rc-calendar.js.map +1 -0
- package/dist/rc-calendar.min.css +1179 -0
- package/dist/rc-calendar.min.css.map +1 -0
- package/dist/rc-calendar.min.js +1 -0
- package/es/Calendar.js +454 -0
- package/es/FullCalendar.js +182 -0
- package/es/MonthCalendar.js +135 -0
- package/es/Picker.js +245 -0
- package/es/RangeCalendar.js +876 -0
- package/es/calendar/CalendarFooter.js +93 -0
- package/es/calendar/CalendarHeader.js +257 -0
- package/es/calendar/CalendarRightPanel.js +135 -0
- package/es/calendar/OkButton.js +22 -0
- package/es/calendar/TimePickerButton.js +28 -0
- package/es/calendar/TodayButton.js +28 -0
- package/es/date/DateConstants.js +19 -0
- package/es/date/DateInput.js +444 -0
- package/es/date/DateTBody.js +280 -0
- package/es/date/DateTHead.js +86 -0
- package/es/date/DateTable.js +32 -0
- package/es/decade/DecadePanel.js +181 -0
- package/es/full-calendar/CalendarHeader.js +180 -0
- package/es/index.js +3 -0
- package/es/locale/ar_EG.js +27 -0
- package/es/locale/bg_BG.js +27 -0
- package/es/locale/ca_ES.js +27 -0
- package/es/locale/cs_CZ.js +27 -0
- package/es/locale/da_DK.js +27 -0
- package/es/locale/de_DE.js +27 -0
- package/es/locale/el_GR.js +27 -0
- package/es/locale/en_GB.js +27 -0
- package/es/locale/en_US.js +28 -0
- package/es/locale/es_ES.js +27 -0
- package/es/locale/et_EE.js +27 -0
- package/es/locale/fa_IR.js +27 -0
- package/es/locale/fi_FI.js +27 -0
- package/es/locale/fr_BE.js +27 -0
- package/es/locale/fr_FR.js +27 -0
- package/es/locale/he_IL.js +28 -0
- package/es/locale/hi_IN.js +28 -0
- package/es/locale/hr_HR.js +28 -0
- package/es/locale/hu_HU.js +27 -0
- package/es/locale/id_ID.js +28 -0
- package/es/locale/is_IS.js +27 -0
- package/es/locale/it_IT.js +27 -0
- package/es/locale/ja_JP.js +26 -0
- package/es/locale/kn_IN.js +28 -0
- package/es/locale/ko_KR.js +27 -0
- package/es/locale/ku_IQ.js +27 -0
- package/es/locale/lv_LV.js +27 -0
- package/es/locale/mm_MM.js +28 -0
- package/es/locale/mn_MN.js +28 -0
- package/es/locale/ms_MY.js +27 -0
- package/es/locale/nb_NO.js +27 -0
- package/es/locale/nl_BE.js +27 -0
- package/es/locale/nl_NL.js +27 -0
- package/es/locale/pl_PL.js +27 -0
- package/es/locale/pt_BR.js +27 -0
- package/es/locale/pt_PT.js +27 -0
- package/es/locale/ro_RO.js +28 -0
- package/es/locale/ru_RU.js +27 -0
- package/es/locale/sk_SK.js +27 -0
- package/es/locale/sl_SI.js +27 -0
- package/es/locale/sr_RS.js +27 -0
- package/es/locale/sv_SE.js +27 -0
- package/es/locale/ta_IN.js +28 -0
- package/es/locale/th_TH.js +27 -0
- package/es/locale/tr_TR.js +27 -0
- package/es/locale/ug_CN.js +26 -0
- package/es/locale/uk_UA.js +27 -0
- package/es/locale/vi_VN.js +28 -0
- package/es/locale/zh_CN.js +27 -0
- package/es/locale/zh_TW.js +26 -0
- package/es/mixin/CalendarMixin.js +123 -0
- package/es/mixin/CommonMixin.js +85 -0
- package/es/month/MonthPanel.js +154 -0
- package/es/month/MonthTable.js +156 -0
- package/es/picker/placements.js +35 -0
- package/es/range-calendar/CalendarPart.js +151 -0
- package/es/util/dayjs.js +17 -0
- package/es/util/index.js +272 -0
- package/es/util/toTime.js +21 -0
- package/es/year/YearPanel.js +194 -0
- package/lib/Calendar.js +517 -0
- package/lib/FullCalendar.js +221 -0
- package/lib/MonthCalendar.js +172 -0
- package/lib/Picker.js +282 -0
- package/lib/RangeCalendar.js +925 -0
- package/lib/calendar/CalendarFooter.js +134 -0
- package/lib/calendar/CalendarHeader.js +290 -0
- package/lib/calendar/CalendarRightPanel.js +160 -0
- package/lib/calendar/OkButton.js +32 -0
- package/lib/calendar/TimePickerButton.js +41 -0
- package/lib/calendar/TodayButton.js +39 -0
- package/lib/date/DateConstants.js +23 -0
- package/lib/date/DateInput.js +476 -0
- package/lib/date/DateTBody.js +307 -0
- package/lib/date/DateTHead.js +106 -0
- package/lib/date/DateTable.js +54 -0
- package/lib/decade/DecadePanel.js +207 -0
- package/lib/full-calendar/CalendarHeader.js +201 -0
- package/lib/index.js +12 -0
- package/lib/locale/ar_EG.js +31 -0
- package/lib/locale/bg_BG.js +31 -0
- package/lib/locale/ca_ES.js +31 -0
- package/lib/locale/cs_CZ.js +31 -0
- package/lib/locale/da_DK.js +31 -0
- package/lib/locale/de_DE.js +31 -0
- package/lib/locale/el_GR.js +31 -0
- package/lib/locale/en_GB.js +31 -0
- package/lib/locale/en_US.js +32 -0
- package/lib/locale/es_ES.js +31 -0
- package/lib/locale/et_EE.js +31 -0
- package/lib/locale/fa_IR.js +31 -0
- package/lib/locale/fi_FI.js +31 -0
- package/lib/locale/fr_BE.js +31 -0
- package/lib/locale/fr_FR.js +31 -0
- package/lib/locale/he_IL.js +32 -0
- package/lib/locale/hi_IN.js +32 -0
- package/lib/locale/hr_HR.js +32 -0
- package/lib/locale/hu_HU.js +31 -0
- package/lib/locale/id_ID.js +32 -0
- package/lib/locale/is_IS.js +31 -0
- package/lib/locale/it_IT.js +31 -0
- package/lib/locale/ja_JP.js +30 -0
- package/lib/locale/kn_IN.js +32 -0
- package/lib/locale/ko_KR.js +31 -0
- package/lib/locale/ku_IQ.js +31 -0
- package/lib/locale/lv_LV.js +31 -0
- package/lib/locale/mm_MM.js +32 -0
- package/lib/locale/mn_MN.js +32 -0
- package/lib/locale/ms_MY.js +31 -0
- package/lib/locale/nb_NO.js +31 -0
- package/lib/locale/nl_BE.js +31 -0
- package/lib/locale/nl_NL.js +31 -0
- package/lib/locale/pl_PL.js +31 -0
- package/lib/locale/pt_BR.js +31 -0
- package/lib/locale/pt_PT.js +31 -0
- package/lib/locale/ro_RO.js +32 -0
- package/lib/locale/ru_RU.js +31 -0
- package/lib/locale/sk_SK.js +31 -0
- package/lib/locale/sl_SI.js +31 -0
- package/lib/locale/sr_RS.js +31 -0
- package/lib/locale/sv_SE.js +31 -0
- package/lib/locale/ta_IN.js +32 -0
- package/lib/locale/th_TH.js +31 -0
- package/lib/locale/tr_TR.js +31 -0
- package/lib/locale/ug_CN.js +30 -0
- package/lib/locale/uk_UA.js +31 -0
- package/lib/locale/vi_VN.js +32 -0
- package/lib/locale/zh_CN.js +31 -0
- package/lib/locale/zh_TW.js +30 -0
- package/lib/mixin/CalendarMixin.js +153 -0
- package/lib/mixin/CommonMixin.js +106 -0
- package/lib/month/MonthPanel.js +179 -0
- package/lib/month/MonthTable.js +181 -0
- package/lib/picker/placements.js +39 -0
- package/lib/range-calendar/CalendarPart.js +184 -0
- package/lib/util/dayjs.js +46 -0
- package/lib/util/index.js +307 -0
- package/lib/util/toTime.js +28 -0
- package/lib/year/YearPanel.js +219 -0
- package/package.json +2 -1
@@ -0,0 +1,1179 @@
|
|
1
|
+
.rc-calendar {
|
2
|
+
box-sizing: border-box;
|
3
|
+
}
|
4
|
+
.rc-calendar * {
|
5
|
+
box-sizing: border-box;
|
6
|
+
}
|
7
|
+
.rc-calendar-hidden {
|
8
|
+
display: none;
|
9
|
+
}
|
10
|
+
.rc-calendar-input-wrap {
|
11
|
+
position: relative;
|
12
|
+
padding: 6px;
|
13
|
+
border-bottom: 1px solid #e9e9e9;
|
14
|
+
}
|
15
|
+
.rc-calendar-input-wrap:after {
|
16
|
+
content: '';
|
17
|
+
clear: both;
|
18
|
+
}
|
19
|
+
.rc-calendar-date-input-wrap {
|
20
|
+
overflow: hidden;
|
21
|
+
}
|
22
|
+
.rc-calendar-time-picker {
|
23
|
+
position: absolute;
|
24
|
+
width: 100%;
|
25
|
+
top: 34px;
|
26
|
+
background-color: white;
|
27
|
+
height: 217px;
|
28
|
+
}
|
29
|
+
.rc-calendar-time-picker-panel {
|
30
|
+
width: 100%;
|
31
|
+
position: relative;
|
32
|
+
}
|
33
|
+
.rc-calendar-time-picker-panel .rc-time-picker-panel-input-wrap {
|
34
|
+
display: none;
|
35
|
+
}
|
36
|
+
.rc-calendar-time-picker-panel .rc-time-picker-panel-inner {
|
37
|
+
border: none;
|
38
|
+
box-shadow: none;
|
39
|
+
}
|
40
|
+
.rc-calendar-time-picker-panel .rc-time-picker-panel-select {
|
41
|
+
width: 84px;
|
42
|
+
max-height: 217px;
|
43
|
+
}
|
44
|
+
.rc-calendar-time-picker-panel .rc-time-picker-panel-select li {
|
45
|
+
text-align: center;
|
46
|
+
padding: 0;
|
47
|
+
}
|
48
|
+
.rc-calendar-time-picker-wrap {
|
49
|
+
float: left;
|
50
|
+
width: 100%;
|
51
|
+
}
|
52
|
+
.rc-calendar-time-picker-wrap .rc-time-picker {
|
53
|
+
width: 100%;
|
54
|
+
}
|
55
|
+
.rc-calendar-time-picker-wrap .rc-time-picker-input {
|
56
|
+
padding: 0;
|
57
|
+
border: 1px solid transparent;
|
58
|
+
outline: 0;
|
59
|
+
height: 22px;
|
60
|
+
}
|
61
|
+
.rc-calendar-time-picker-wrap .rc-time-picker-icon {
|
62
|
+
display: none;
|
63
|
+
}
|
64
|
+
.rc-calendar-input {
|
65
|
+
border: 1px solid transparent;
|
66
|
+
width: 100%;
|
67
|
+
color: #666;
|
68
|
+
cursor: text;
|
69
|
+
line-height: 1.5;
|
70
|
+
outline: 0;
|
71
|
+
height: 22px;
|
72
|
+
}
|
73
|
+
.rc-calendar-input-invalid {
|
74
|
+
border-color: red;
|
75
|
+
}
|
76
|
+
.rc-calendar-clear-btn {
|
77
|
+
z-index: 9999;
|
78
|
+
position: absolute;
|
79
|
+
right: 6px;
|
80
|
+
cursor: pointer;
|
81
|
+
overflow: hidden;
|
82
|
+
width: 20px;
|
83
|
+
height: 20px;
|
84
|
+
text-align: center;
|
85
|
+
line-height: 20px;
|
86
|
+
top: 6px;
|
87
|
+
margin: 0;
|
88
|
+
}
|
89
|
+
.rc-calendar-clear-btn:after {
|
90
|
+
content: "x";
|
91
|
+
font-size: 12px;
|
92
|
+
color: #aaa;
|
93
|
+
display: inline-block;
|
94
|
+
line-height: 1;
|
95
|
+
width: 20px;
|
96
|
+
transition: color 0.3s ease;
|
97
|
+
}
|
98
|
+
.rc-calendar-clear-btn:hover:after {
|
99
|
+
color: #666;
|
100
|
+
}
|
101
|
+
.rc-calendar-picker {
|
102
|
+
position: absolute;
|
103
|
+
left: -9999px;
|
104
|
+
top: -9999px;
|
105
|
+
z-index: 1000;
|
106
|
+
}
|
107
|
+
.rc-calendar-picker-hidden {
|
108
|
+
display: none;
|
109
|
+
}
|
110
|
+
.rc-calendar-picker-slide-up-enter {
|
111
|
+
animation-duration: .3s;
|
112
|
+
animation-fill-mode: both;
|
113
|
+
transform-origin: 0 0;
|
114
|
+
display: block !important;
|
115
|
+
opacity: 0;
|
116
|
+
animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
|
117
|
+
animation-play-state: paused;
|
118
|
+
}
|
119
|
+
.rc-calendar-picker-slide-up-appear {
|
120
|
+
animation-duration: .3s;
|
121
|
+
animation-fill-mode: both;
|
122
|
+
transform-origin: 0 0;
|
123
|
+
display: block !important;
|
124
|
+
opacity: 0;
|
125
|
+
animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
|
126
|
+
animation-play-state: paused;
|
127
|
+
}
|
128
|
+
.rc-calendar-picker-slide-up-leave {
|
129
|
+
animation-duration: .3s;
|
130
|
+
animation-fill-mode: both;
|
131
|
+
transform-origin: 0 0;
|
132
|
+
display: block !important;
|
133
|
+
opacity: 1;
|
134
|
+
animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
|
135
|
+
animation-play-state: paused;
|
136
|
+
}
|
137
|
+
.rc-calendar-picker-slide-up-enter.rc-calendar-picker-slide-up-enter-active.rc-calendar-picker-placement-bottomLeft,
|
138
|
+
.rc-calendar-picker-slide-up-enter.rc-calendar-picker-slide-up-enter-active.rc-calendar-picker-placement-bottomRight,
|
139
|
+
.rc-calendar-picker-slide-up-appear.rc-calendar-picker-slide-up-appear-active.rc-calendar-picker-placement-bottomLeft,
|
140
|
+
.rc-calendar-picker-slide-up-appear.rc-calendar-picker-slide-up-appear-active.rc-calendar-picker-placement-bottomRight {
|
141
|
+
animation-name: rcDropdownSlideUpIn;
|
142
|
+
animation-play-state: running;
|
143
|
+
}
|
144
|
+
.rc-calendar-picker-slide-up-enter.rc-calendar-picker-slide-up-enter-active.rc-calendar-picker-placement-topLeft,
|
145
|
+
.rc-calendar-picker-slide-up-enter.rc-calendar-picker-slide-up-enter-active.rc-calendar-picker-placement-topRight,
|
146
|
+
.rc-calendar-picker-slide-up-appear.rc-calendar-picker-slide-up-appear-active.rc-calendar-picker-placement-topLeft,
|
147
|
+
.rc-calendar-picker-slide-up-appear.rc-calendar-picker-slide-up-appear-active.rc-calendar-picker-placement-topRight {
|
148
|
+
animation-name: rcDropdownSlideDownIn;
|
149
|
+
animation-play-state: running;
|
150
|
+
}
|
151
|
+
.rc-calendar-picker-slide-up-leave.rc-calendar-picker-slide-up-leave-active.rc-calendar-picker-placement-bottomLeft,
|
152
|
+
.rc-calendar-picker-slide-up-leave.rc-calendar-picker-slide-up-leave-active.rc-calendar-picker-placement-bottomRight {
|
153
|
+
animation-name: rcDropdownSlideUpOut;
|
154
|
+
animation-play-state: running;
|
155
|
+
}
|
156
|
+
.rc-calendar-picker-slide-up-leave.rc-calendar-picker-slide-up-leave-active.rc-calendar-picker-placement-topLeft,
|
157
|
+
.rc-calendar-picker-slide-up-leave.rc-calendar-picker-slide-up-leave-active.rc-calendar-picker-placement-topRight {
|
158
|
+
animation-name: rcDropdownSlideDownOut;
|
159
|
+
animation-play-state: running;
|
160
|
+
}
|
161
|
+
@keyframes rcDropdownSlideUpIn {
|
162
|
+
0% {
|
163
|
+
opacity: 0;
|
164
|
+
transform-origin: 0% 0%;
|
165
|
+
transform: scaleY(0);
|
166
|
+
}
|
167
|
+
100% {
|
168
|
+
opacity: 1;
|
169
|
+
transform-origin: 0% 0%;
|
170
|
+
transform: scaleY(1);
|
171
|
+
}
|
172
|
+
}
|
173
|
+
@keyframes rcDropdownSlideUpOut {
|
174
|
+
0% {
|
175
|
+
opacity: 1;
|
176
|
+
transform-origin: 0% 0%;
|
177
|
+
transform: scaleY(1);
|
178
|
+
}
|
179
|
+
100% {
|
180
|
+
opacity: 0;
|
181
|
+
transform-origin: 0% 0%;
|
182
|
+
transform: scaleY(0);
|
183
|
+
}
|
184
|
+
}
|
185
|
+
@keyframes rcDropdownSlideDownIn {
|
186
|
+
0% {
|
187
|
+
opacity: 0;
|
188
|
+
transform-origin: 100% 100%;
|
189
|
+
transform: scaleY(0);
|
190
|
+
}
|
191
|
+
100% {
|
192
|
+
opacity: 1;
|
193
|
+
transform-origin: 100% 100%;
|
194
|
+
transform: scaleY(1);
|
195
|
+
}
|
196
|
+
}
|
197
|
+
@keyframes rcDropdownSlideDownOut {
|
198
|
+
0% {
|
199
|
+
opacity: 1;
|
200
|
+
transform-origin: 100% 100%;
|
201
|
+
transform: scaleY(1);
|
202
|
+
}
|
203
|
+
100% {
|
204
|
+
opacity: 0;
|
205
|
+
transform-origin: 100% 100%;
|
206
|
+
transform: scaleY(0);
|
207
|
+
}
|
208
|
+
}
|
209
|
+
.rc-calendar {
|
210
|
+
position: relative;
|
211
|
+
outline: none;
|
212
|
+
font-family: Arial, "Hiragino Sans GB", "Microsoft Yahei", "Microsoft Sans Serif", "WenQuanYi Micro Hei", sans-serif;
|
213
|
+
width: -moz-fit-content;
|
214
|
+
width: fit-content;
|
215
|
+
list-style: none;
|
216
|
+
font-size: 12px;
|
217
|
+
text-align: left;
|
218
|
+
background-color: #fff;
|
219
|
+
border-radius: 3px;
|
220
|
+
box-shadow: 0 1px 5px #ccc;
|
221
|
+
background-clip: padding-box;
|
222
|
+
border: 1px solid #ccc;
|
223
|
+
line-height: 1.5;
|
224
|
+
}
|
225
|
+
.rc-calendar-date-panel,
|
226
|
+
.rc-calendar-date-panel-container {
|
227
|
+
display: -ms-flexbox;
|
228
|
+
display: flex;
|
229
|
+
}
|
230
|
+
.rc-calendar-date-panel,
|
231
|
+
.rc-calendar-panel {
|
232
|
+
position: relative;
|
233
|
+
outline: none;
|
234
|
+
display: block;
|
235
|
+
}
|
236
|
+
.rc-calendar-week-number {
|
237
|
+
width: 286px;
|
238
|
+
}
|
239
|
+
.rc-calendar-week-number-cell {
|
240
|
+
text-align: center;
|
241
|
+
}
|
242
|
+
.rc-calendar-header {
|
243
|
+
padding: 0 10px;
|
244
|
+
height: 34px;
|
245
|
+
line-height: 30px;
|
246
|
+
text-align: center;
|
247
|
+
-moz-user-select: none;
|
248
|
+
-ms-user-select: none;
|
249
|
+
user-select: none;
|
250
|
+
-webkit-user-select: none;
|
251
|
+
border-bottom: 1px solid #ccc;
|
252
|
+
}
|
253
|
+
.rc-calendar-header > a {
|
254
|
+
font-weight: bold;
|
255
|
+
display: inline-block;
|
256
|
+
padding: 0px 5px;
|
257
|
+
line-height: 34px;
|
258
|
+
text-align: center;
|
259
|
+
width: 30px;
|
260
|
+
}
|
261
|
+
.rc-calendar-header > a:hover {
|
262
|
+
cursor: pointer;
|
263
|
+
color: #f09f4g;
|
264
|
+
}
|
265
|
+
.rc-calendar-header .rc-calendar-prev-month-btn {
|
266
|
+
position: absolute;
|
267
|
+
left: 25px;
|
268
|
+
}
|
269
|
+
.rc-calendar-header .rc-calendar-prev-month-btn:after {
|
270
|
+
content: '\2039';
|
271
|
+
}
|
272
|
+
.rc-calendar-header .rc-calendar-next-month-btn {
|
273
|
+
position: absolute;
|
274
|
+
right: 25px;
|
275
|
+
}
|
276
|
+
.rc-calendar-header .rc-calendar-next-month-btn:after {
|
277
|
+
content: '\203A';
|
278
|
+
}
|
279
|
+
.rc-calendar-year-select,
|
280
|
+
.rc-calendar-month-select,
|
281
|
+
.rc-calendar-day-select {
|
282
|
+
display: inline-block;
|
283
|
+
font-size: 12px;
|
284
|
+
font-weight: bold;
|
285
|
+
color: #666;
|
286
|
+
padding: 0 8px;
|
287
|
+
line-height: 34px;
|
288
|
+
}
|
289
|
+
.rc-calendar-year-select:hover,
|
290
|
+
.rc-calendar-month-select:hover,
|
291
|
+
.rc-calendar-day-select:hover {
|
292
|
+
cursor: pointer;
|
293
|
+
color: #f09f4g;
|
294
|
+
}
|
295
|
+
.rc-calendar-year-select.rc-calendar-time-status:hover,
|
296
|
+
.rc-calendar-month-select.rc-calendar-time-status:hover,
|
297
|
+
.rc-calendar-day-select.rc-calendar-time-status:hover {
|
298
|
+
cursor: pointer;
|
299
|
+
color: #666;
|
300
|
+
}
|
301
|
+
.rc-calendar-prev-month-btn,
|
302
|
+
.rc-calendar-next-month-btn,
|
303
|
+
.rc-calendar-prev-year-btn,
|
304
|
+
.rc-calendar-next-year-btn {
|
305
|
+
position: absolute;
|
306
|
+
top: 0;
|
307
|
+
cursor: pointer;
|
308
|
+
color: #999;
|
309
|
+
font-family: Arial, "Hiragino Sans GB", "Microsoft Yahei", "Microsoft Sans Serif", sans-serif;
|
310
|
+
padding: 0 5px;
|
311
|
+
font-size: 16px;
|
312
|
+
display: inline-block;
|
313
|
+
line-height: 34px;
|
314
|
+
}
|
315
|
+
.rc-calendar-prev-month-btn:hover,
|
316
|
+
.rc-calendar-next-month-btn:hover,
|
317
|
+
.rc-calendar-prev-year-btn:hover,
|
318
|
+
.rc-calendar-next-year-btn:hover {
|
319
|
+
color: #f09f4g;
|
320
|
+
}
|
321
|
+
.rc-calendar-next-year-btn {
|
322
|
+
right: 0;
|
323
|
+
}
|
324
|
+
.rc-calendar-next-year-btn:after {
|
325
|
+
content: '\BB';
|
326
|
+
}
|
327
|
+
.rc-calendar-prev-year-btn {
|
328
|
+
left: 0;
|
329
|
+
}
|
330
|
+
.rc-calendar-prev-year-btn:after {
|
331
|
+
content: '\AB';
|
332
|
+
}
|
333
|
+
.rc-calendar-body {
|
334
|
+
padding: 9px 10px 10px;
|
335
|
+
height: 217px;
|
336
|
+
}
|
337
|
+
.rc-calendar-right-panel {
|
338
|
+
width: 68px;
|
339
|
+
height: inherit;
|
340
|
+
}
|
341
|
+
.rc-calendar-right-panel-header {
|
342
|
+
height: 34px;
|
343
|
+
line-height: 34px;
|
344
|
+
}
|
345
|
+
.rc-calendar-right-panel-header span {
|
346
|
+
transform: rotate(-90deg);
|
347
|
+
}
|
348
|
+
.rc-calendar-right-panel-body {
|
349
|
+
height: 217px;
|
350
|
+
border-left: 1px solid #ccc;
|
351
|
+
overflow-y: scroll;
|
352
|
+
}
|
353
|
+
.rc-calendar-right-panel-body ul {
|
354
|
+
list-style: none;
|
355
|
+
box-sizing: border-box;
|
356
|
+
margin: 0;
|
357
|
+
padding: 0;
|
358
|
+
width: 100%;
|
359
|
+
}
|
360
|
+
.rc-calendar-right-panel-body ul li {
|
361
|
+
text-align: center;
|
362
|
+
padding: 8px 0;
|
363
|
+
cursor: pointer;
|
364
|
+
}
|
365
|
+
.rc-calendar-right-panel-body ul li:hover {
|
366
|
+
color: #e8bf6a;
|
367
|
+
}
|
368
|
+
.rc-calendar-right-panel-body .rc-calendar-selected-time {
|
369
|
+
color: #f09f3f;
|
370
|
+
}
|
371
|
+
.rc-calendar-right-panel-body::-webkit-scrollbar {
|
372
|
+
width: 0;
|
373
|
+
}
|
374
|
+
.rc-calendar-right-panel-footer {
|
375
|
+
height: 39px;
|
376
|
+
line-height: 34px;
|
377
|
+
border-left: 1px solid #ccc;
|
378
|
+
}
|
379
|
+
.rc-calendar-right-panel-footer span {
|
380
|
+
transform: rotate(90deg);
|
381
|
+
}
|
382
|
+
.rc-calendar-right-panel-header,
|
383
|
+
.rc-calendar-right-panel-footer {
|
384
|
+
display: -ms-flexbox;
|
385
|
+
display: flex;
|
386
|
+
-ms-flex-pack: center;
|
387
|
+
justify-content: center;
|
388
|
+
cursor: pointer;
|
389
|
+
color: #999;
|
390
|
+
font-size: 16px;
|
391
|
+
}
|
392
|
+
.rc-calendar-right-panel-header span:after,
|
393
|
+
.rc-calendar-right-panel-footer span:after {
|
394
|
+
content: '\203A';
|
395
|
+
}
|
396
|
+
.rc-calendar table {
|
397
|
+
border-collapse: collapse;
|
398
|
+
max-width: 100%;
|
399
|
+
background-color: transparent;
|
400
|
+
width: 100%;
|
401
|
+
}
|
402
|
+
.rc-calendar table,
|
403
|
+
.rc-calendar td,
|
404
|
+
.rc-calendar th,
|
405
|
+
.rc-calendar td {
|
406
|
+
border: none;
|
407
|
+
}
|
408
|
+
.rc-calendar-table {
|
409
|
+
border-spacing: 0;
|
410
|
+
margin-bottom: 0;
|
411
|
+
}
|
412
|
+
.rc-calendar-column-header {
|
413
|
+
line-height: 18px;
|
414
|
+
padding: 6px 0;
|
415
|
+
width: 33px;
|
416
|
+
text-align: center;
|
417
|
+
}
|
418
|
+
.rc-calendar-column-header .rc-calendar-column-header-inner {
|
419
|
+
display: block;
|
420
|
+
font-weight: normal;
|
421
|
+
}
|
422
|
+
.rc-calendar-week-number-header .rc-calendar-column-header-inner {
|
423
|
+
display: none;
|
424
|
+
}
|
425
|
+
.rc-calendar-cell {
|
426
|
+
padding: 1px 0;
|
427
|
+
}
|
428
|
+
.rc-calendar-date {
|
429
|
+
display: block;
|
430
|
+
margin: 0 auto;
|
431
|
+
color: #666;
|
432
|
+
border-radius: 4px 4px;
|
433
|
+
width: 26px;
|
434
|
+
height: 26px;
|
435
|
+
padding: 0;
|
436
|
+
background: transparent;
|
437
|
+
line-height: 26px;
|
438
|
+
text-align: center;
|
439
|
+
}
|
440
|
+
.rc-calendar-date:hover {
|
441
|
+
background: #fcecd9;
|
442
|
+
cursor: pointer;
|
443
|
+
}
|
444
|
+
.rc-calendar-selected-day .rc-calendar-date {
|
445
|
+
background: #fcecd9;
|
446
|
+
}
|
447
|
+
.rc-calendar-selected-date .rc-calendar-date {
|
448
|
+
background: #f09f3f;
|
449
|
+
color: #fff;
|
450
|
+
}
|
451
|
+
.rc-calendar-selected-date .rc-calendar-date:hover {
|
452
|
+
background: #f09f3f;
|
453
|
+
}
|
454
|
+
.rc-calendar-today .rc-calendar-date {
|
455
|
+
border: 1px solid #f09f3f;
|
456
|
+
}
|
457
|
+
.rc-calendar-disabled-cell .rc-calendar-date {
|
458
|
+
cursor: not-allowed;
|
459
|
+
color: #bcbcbc;
|
460
|
+
background: #f3f3f3;
|
461
|
+
border-radius: 0;
|
462
|
+
width: auto;
|
463
|
+
}
|
464
|
+
.rc-calendar-disabled-cell .rc-calendar-date:hover {
|
465
|
+
background: #f3f3f3;
|
466
|
+
}
|
467
|
+
.rc-calendar-disabled-cell-first-of-row .rc-calendar-date {
|
468
|
+
border-top-left-radius: 4px;
|
469
|
+
border-bottom-left-radius: 4px;
|
470
|
+
}
|
471
|
+
.rc-calendar-disabled-cell-last-of-row .rc-calendar-date {
|
472
|
+
border-top-right-radius: 4px;
|
473
|
+
border-bottom-right-radius: 4px;
|
474
|
+
}
|
475
|
+
.rc-calendar-last-month-cell .rc-calendar-date,
|
476
|
+
.rc-calendar-next-month-btn-day .rc-calendar-date {
|
477
|
+
color: #bbb;
|
478
|
+
}
|
479
|
+
.rc-calendar-footer {
|
480
|
+
border-top: 1px solid #ccc;
|
481
|
+
padding: 10px 0;
|
482
|
+
text-align: center;
|
483
|
+
position: relative;
|
484
|
+
}
|
485
|
+
.rc-calendar-footer .rc-time-picker {
|
486
|
+
width: 90px;
|
487
|
+
}
|
488
|
+
.rc-calendar-footer .rc-time-picker-input {
|
489
|
+
height: 24px;
|
490
|
+
}
|
491
|
+
.rc-calendar-footer-show-ok {
|
492
|
+
text-align: right;
|
493
|
+
}
|
494
|
+
.rc-calendar-footer-show-ok .rc-calendar-footer-btn {
|
495
|
+
padding-right: 12px;
|
496
|
+
}
|
497
|
+
.rc-calendar-footer-show-ok .rc-calendar-time-picker-btn {
|
498
|
+
margin-left: 0;
|
499
|
+
padding: 0 12px;
|
500
|
+
}
|
501
|
+
.rc-calendar-footer-show-ok .rc-calendar-today-btn {
|
502
|
+
float: left;
|
503
|
+
padding-left: 12px;
|
504
|
+
}
|
505
|
+
.rc-calendar-footer-btn {
|
506
|
+
margin-top: 2px;
|
507
|
+
}
|
508
|
+
.rc-calendar-footer-btn:after {
|
509
|
+
content: 'x';
|
510
|
+
height: 0;
|
511
|
+
font-size: 0;
|
512
|
+
overflow: hidden;
|
513
|
+
clear: both;
|
514
|
+
}
|
515
|
+
.rc-calendar-time-picker-btn {
|
516
|
+
margin-left: 10px;
|
517
|
+
}
|
518
|
+
.rc-calendar-today-btn,
|
519
|
+
.rc-calendar-ok-btn,
|
520
|
+
.rc-calendar-time-picker-btn {
|
521
|
+
display: inline-block;
|
522
|
+
text-align: center;
|
523
|
+
color: #f46830;
|
524
|
+
}
|
525
|
+
.rc-calendar-today-btn:hover,
|
526
|
+
.rc-calendar-ok-btn:hover,
|
527
|
+
.rc-calendar-time-picker-btn:hover {
|
528
|
+
cursor: pointer;
|
529
|
+
color: #f09f4g;
|
530
|
+
}
|
531
|
+
.rc-calendar-today-btn-disabled,
|
532
|
+
.rc-calendar-ok-btn-disabled,
|
533
|
+
.rc-calendar-time-picker-btn-disabled {
|
534
|
+
color: #bbb;
|
535
|
+
}
|
536
|
+
.rc-calendar-today-btn-disabled:hover,
|
537
|
+
.rc-calendar-ok-btn-disabled:hover,
|
538
|
+
.rc-calendar-time-picker-btn-disabled:hover {
|
539
|
+
color: #bbb;
|
540
|
+
}
|
541
|
+
.rc-calendar-today-btn {
|
542
|
+
padding-left: 10px;
|
543
|
+
}
|
544
|
+
.rc-calendar-time-input {
|
545
|
+
height: 25px;
|
546
|
+
position: relative;
|
547
|
+
display: inline-block;
|
548
|
+
margin: 0 0;
|
549
|
+
padding: 4px 10px;
|
550
|
+
border-radius: 6px 6px;
|
551
|
+
border: 1px solid #d9d9d9;
|
552
|
+
background-color: #ffffff;
|
553
|
+
color: #666;
|
554
|
+
line-height: 1.5;
|
555
|
+
transform: border 0.3s cubic-bezier(0.35, 0, 0.25, 1), background 0.3s cubic-bezier(0.35, 0, 0.25, 1), box-shadow 0.3s cubic-bezier(0.35, 0, 0.25, 1);
|
556
|
+
width: 40px;
|
557
|
+
}
|
558
|
+
.rc-calendar-time-input:hover {
|
559
|
+
border-color: #f09f4g;
|
560
|
+
}
|
561
|
+
.rc-calendar-time-input:focus {
|
562
|
+
border-color: #f09f4g;
|
563
|
+
box-shadow: 0 0 3px #f09f4g;
|
564
|
+
}
|
565
|
+
.rc-calendar-time-panel {
|
566
|
+
left: 0;
|
567
|
+
top: 0;
|
568
|
+
bottom: 0;
|
569
|
+
right: 0;
|
570
|
+
background: #ffffff;
|
571
|
+
z-index: 10;
|
572
|
+
position: absolute;
|
573
|
+
outline: none;
|
574
|
+
}
|
575
|
+
.rc-calendar-time-panel-header {
|
576
|
+
padding: 0 10px;
|
577
|
+
height: 34px;
|
578
|
+
line-height: 34px;
|
579
|
+
position: relative;
|
580
|
+
text-align: center;
|
581
|
+
-moz-user-select: none;
|
582
|
+
-ms-user-select: none;
|
583
|
+
user-select: none;
|
584
|
+
-webkit-user-select: none;
|
585
|
+
border-bottom: 1px solid #ccc;
|
586
|
+
}
|
587
|
+
.rc-calendar-time-panel-body {
|
588
|
+
padding: 9px 10px 10px;
|
589
|
+
}
|
590
|
+
.rc-calendar-time-panel-title {
|
591
|
+
width: 180px;
|
592
|
+
font-weight: bold;
|
593
|
+
display: inline-block;
|
594
|
+
padding: 4px 5px;
|
595
|
+
text-align: center;
|
596
|
+
height: 30px;
|
597
|
+
line-height: 22px;
|
598
|
+
border-radius: 4px;
|
599
|
+
}
|
600
|
+
.rc-calendar-time-panel-table {
|
601
|
+
table-layout: fixed;
|
602
|
+
width: 100%;
|
603
|
+
height: 255px;
|
604
|
+
border-collapse: separate;
|
605
|
+
}
|
606
|
+
.rc-calendar-time-panel-cell {
|
607
|
+
text-align: center;
|
608
|
+
height: 42px;
|
609
|
+
vertical-align: middle;
|
610
|
+
}
|
611
|
+
.rc-calendar-time-panel-time {
|
612
|
+
line-height: 26px;
|
613
|
+
display: block;
|
614
|
+
border-radius: 4px;
|
615
|
+
width: 26px;
|
616
|
+
margin: 0 auto;
|
617
|
+
}
|
618
|
+
.rc-calendar-time-panel-time:hover {
|
619
|
+
background: #fcecd9;
|
620
|
+
cursor: pointer;
|
621
|
+
}
|
622
|
+
.rc-calendar-time-panel-selected-cell .rc-calendar-time-panel-time {
|
623
|
+
background: #f09f3f;
|
624
|
+
color: #fff;
|
625
|
+
}
|
626
|
+
.rc-calendar-time-panel-selected-cell .rc-calendar-time-panel-time:hover {
|
627
|
+
background: #f09f3f;
|
628
|
+
color: #fff;
|
629
|
+
}
|
630
|
+
.rc-calendar-month-panel {
|
631
|
+
left: 0;
|
632
|
+
top: 0;
|
633
|
+
bottom: 0;
|
634
|
+
right: 0;
|
635
|
+
background: #ffffff;
|
636
|
+
z-index: 10;
|
637
|
+
position: absolute;
|
638
|
+
outline: none;
|
639
|
+
}
|
640
|
+
.rc-calendar-month-panel > div {
|
641
|
+
height: 100%;
|
642
|
+
display: -ms-flexbox;
|
643
|
+
display: flex;
|
644
|
+
-ms-flex-direction: column;
|
645
|
+
flex-direction: column;
|
646
|
+
}
|
647
|
+
.rc-calendar-month-panel-hidden {
|
648
|
+
display: none;
|
649
|
+
}
|
650
|
+
.rc-calendar-month-panel-header {
|
651
|
+
padding: 0 10px;
|
652
|
+
height: 34px;
|
653
|
+
line-height: 30px;
|
654
|
+
position: relative;
|
655
|
+
text-align: center;
|
656
|
+
-moz-user-select: none;
|
657
|
+
-ms-user-select: none;
|
658
|
+
user-select: none;
|
659
|
+
-webkit-user-select: none;
|
660
|
+
border-bottom: 1px solid #ccc;
|
661
|
+
}
|
662
|
+
.rc-calendar-month-panel-header > a {
|
663
|
+
font-weight: bold;
|
664
|
+
display: inline-block;
|
665
|
+
padding: 4px 5px;
|
666
|
+
text-align: center;
|
667
|
+
width: 30px;
|
668
|
+
}
|
669
|
+
.rc-calendar-month-panel-header > a:hover {
|
670
|
+
cursor: pointer;
|
671
|
+
color: #f09f4g;
|
672
|
+
}
|
673
|
+
.rc-calendar-month-panel-prev-year-btn,
|
674
|
+
.rc-calendar-month-panel-next-year-btn {
|
675
|
+
position: absolute;
|
676
|
+
top: 0;
|
677
|
+
}
|
678
|
+
.rc-calendar-month-panel-next-year-btn:after {
|
679
|
+
content: '\BB';
|
680
|
+
}
|
681
|
+
.rc-calendar-month-panel-prev-year-btn {
|
682
|
+
-webkit-user-select: none;
|
683
|
+
-moz-user-select: none;
|
684
|
+
-ms-user-select: none;
|
685
|
+
user-select: none;
|
686
|
+
left: 0;
|
687
|
+
}
|
688
|
+
.rc-calendar-month-panel-prev-year-btn:after {
|
689
|
+
content: '\AB';
|
690
|
+
}
|
691
|
+
.rc-calendar-month-panel .rc-calendar-month-panel-year-select {
|
692
|
+
width: 180px;
|
693
|
+
}
|
694
|
+
.rc-calendar-month-panel-year-select-arrow {
|
695
|
+
display: none;
|
696
|
+
}
|
697
|
+
.rc-calendar-month-panel-next-year-btn {
|
698
|
+
-webkit-user-select: none;
|
699
|
+
-moz-user-select: none;
|
700
|
+
-ms-user-select: none;
|
701
|
+
user-select: none;
|
702
|
+
right: 0;
|
703
|
+
}
|
704
|
+
.rc-calendar-month-panel-body {
|
705
|
+
-ms-flex: 1;
|
706
|
+
flex: 1;
|
707
|
+
padding: 9px 10px 10px;
|
708
|
+
}
|
709
|
+
.rc-calendar-month-panel-footer {
|
710
|
+
border-top: 1px solid #ccc;
|
711
|
+
line-height: 38px;
|
712
|
+
}
|
713
|
+
.rc-calendar-month-panel-table {
|
714
|
+
table-layout: fixed;
|
715
|
+
width: 100%;
|
716
|
+
height: 100%;
|
717
|
+
border-collapse: separate;
|
718
|
+
}
|
719
|
+
.rc-calendar-month-panel-cell {
|
720
|
+
text-align: center;
|
721
|
+
}
|
722
|
+
.rc-calendar-month-panel-cell .rc-calendar-month-panel-month {
|
723
|
+
display: block;
|
724
|
+
width: 46px;
|
725
|
+
margin: 0 auto;
|
726
|
+
color: #666;
|
727
|
+
border-radius: 4px 4px;
|
728
|
+
height: 36px;
|
729
|
+
padding: 0;
|
730
|
+
background: transparent;
|
731
|
+
line-height: 36px;
|
732
|
+
text-align: center;
|
733
|
+
}
|
734
|
+
.rc-calendar-month-panel-cell .rc-calendar-month-panel-month:hover {
|
735
|
+
background: #fcecd9;
|
736
|
+
cursor: pointer;
|
737
|
+
}
|
738
|
+
.rc-calendar-month-panel-cell-disabled .rc-calendar-month-panel-month {
|
739
|
+
color: #bfbfbf;
|
740
|
+
}
|
741
|
+
.rc-calendar-month-panel-cell-disabled .rc-calendar-month-panel-month:hover {
|
742
|
+
background: white;
|
743
|
+
cursor: not-allowed;
|
744
|
+
}
|
745
|
+
.rc-calendar-month-panel-selected-cell .rc-calendar-month-panel-month {
|
746
|
+
background: #f09f3f;
|
747
|
+
color: #fff;
|
748
|
+
}
|
749
|
+
.rc-calendar-month-panel-selected-cell .rc-calendar-month-panel-month:hover {
|
750
|
+
background: #f09f3f;
|
751
|
+
color: #fff;
|
752
|
+
}
|
753
|
+
.rc-calendar-month-header-wrap {
|
754
|
+
position: relative;
|
755
|
+
height: 308px;
|
756
|
+
}
|
757
|
+
.rc-calendar-year-panel {
|
758
|
+
left: 0;
|
759
|
+
top: 0;
|
760
|
+
bottom: 0;
|
761
|
+
right: 0;
|
762
|
+
background: #ffffff;
|
763
|
+
z-index: 10;
|
764
|
+
position: absolute;
|
765
|
+
outline: none;
|
766
|
+
}
|
767
|
+
.rc-calendar-year-panel > div {
|
768
|
+
height: 100%;
|
769
|
+
display: -ms-flexbox;
|
770
|
+
display: flex;
|
771
|
+
-ms-flex-direction: column;
|
772
|
+
flex-direction: column;
|
773
|
+
}
|
774
|
+
.rc-calendar-year-panel-hidden {
|
775
|
+
display: none;
|
776
|
+
}
|
777
|
+
.rc-calendar-year-panel-header {
|
778
|
+
padding: 0 10px;
|
779
|
+
height: 34px;
|
780
|
+
line-height: 30px;
|
781
|
+
position: relative;
|
782
|
+
text-align: center;
|
783
|
+
-moz-user-select: none;
|
784
|
+
-ms-user-select: none;
|
785
|
+
user-select: none;
|
786
|
+
-webkit-user-select: none;
|
787
|
+
border-bottom: 1px solid #ccc;
|
788
|
+
}
|
789
|
+
.rc-calendar-year-panel-header > a {
|
790
|
+
font-weight: bold;
|
791
|
+
display: inline-block;
|
792
|
+
padding: 4px 5px;
|
793
|
+
text-align: center;
|
794
|
+
width: 30px;
|
795
|
+
}
|
796
|
+
.rc-calendar-year-panel-header > a:hover {
|
797
|
+
cursor: pointer;
|
798
|
+
color: #f09f4g;
|
799
|
+
}
|
800
|
+
.rc-calendar-year-panel-prev-decade-btn,
|
801
|
+
.rc-calendar-year-panel-next-decade-btn {
|
802
|
+
position: absolute;
|
803
|
+
top: 0;
|
804
|
+
}
|
805
|
+
.rc-calendar-year-panel-next-decade-btn:after {
|
806
|
+
content: '\BB';
|
807
|
+
}
|
808
|
+
.rc-calendar-year-panel-prev-decade-btn {
|
809
|
+
-webkit-user-select: none;
|
810
|
+
-moz-user-select: none;
|
811
|
+
-ms-user-select: none;
|
812
|
+
user-select: none;
|
813
|
+
left: 0;
|
814
|
+
}
|
815
|
+
.rc-calendar-year-panel-prev-decade-btn:after {
|
816
|
+
content: '\AB';
|
817
|
+
}
|
818
|
+
.rc-calendar-year-panel .rc-calendar-year-panel-decade-select {
|
819
|
+
width: 180px;
|
820
|
+
}
|
821
|
+
.rc-calendar-year-panel-decade-select-arrow {
|
822
|
+
display: none;
|
823
|
+
}
|
824
|
+
.rc-calendar-year-panel-next-decade-btn {
|
825
|
+
-webkit-user-select: none;
|
826
|
+
-moz-user-select: none;
|
827
|
+
-ms-user-select: none;
|
828
|
+
user-select: none;
|
829
|
+
right: 0;
|
830
|
+
}
|
831
|
+
.rc-calendar-year-panel-body {
|
832
|
+
-ms-flex: 1;
|
833
|
+
flex: 1;
|
834
|
+
padding: 9px 10px 10px;
|
835
|
+
}
|
836
|
+
.rc-calendar-year-panel-footer {
|
837
|
+
border-top: 1px solid #ccc;
|
838
|
+
line-height: 38px;
|
839
|
+
}
|
840
|
+
.rc-calendar-year-panel-table {
|
841
|
+
table-layout: fixed;
|
842
|
+
width: 100%;
|
843
|
+
height: 100%;
|
844
|
+
border-collapse: separate;
|
845
|
+
}
|
846
|
+
.rc-calendar-year-panel-cell {
|
847
|
+
text-align: center;
|
848
|
+
}
|
849
|
+
.rc-calendar-year-panel-year {
|
850
|
+
display: block;
|
851
|
+
width: 46px;
|
852
|
+
margin: 0 auto;
|
853
|
+
color: #666;
|
854
|
+
border-radius: 4px 4px;
|
855
|
+
height: 36px;
|
856
|
+
padding: 0;
|
857
|
+
background: transparent;
|
858
|
+
line-height: 36px;
|
859
|
+
text-align: center;
|
860
|
+
}
|
861
|
+
.rc-calendar-year-panel-year:hover {
|
862
|
+
background: #fcecd9;
|
863
|
+
cursor: pointer;
|
864
|
+
}
|
865
|
+
.rc-calendar-year-panel-selected-cell .rc-calendar-year-panel-year {
|
866
|
+
background: #f09f3f;
|
867
|
+
color: #fff;
|
868
|
+
}
|
869
|
+
.rc-calendar-year-panel-selected-cell .rc-calendar-year-panel-year:hover {
|
870
|
+
background: #f09f3f;
|
871
|
+
color: #fff;
|
872
|
+
}
|
873
|
+
.rc-calendar-decade-panel {
|
874
|
+
left: 0;
|
875
|
+
top: 0;
|
876
|
+
bottom: 0;
|
877
|
+
right: 0;
|
878
|
+
background: #ffffff;
|
879
|
+
z-index: 10;
|
880
|
+
position: absolute;
|
881
|
+
outline: none;
|
882
|
+
display: -ms-flexbox;
|
883
|
+
display: flex;
|
884
|
+
-ms-flex-direction: column;
|
885
|
+
flex-direction: column;
|
886
|
+
}
|
887
|
+
.rc-calendar-decade-panel-hidden {
|
888
|
+
display: none;
|
889
|
+
}
|
890
|
+
.rc-calendar-decade-panel-header {
|
891
|
+
padding: 0 10px;
|
892
|
+
height: 34px;
|
893
|
+
line-height: 34px;
|
894
|
+
position: relative;
|
895
|
+
text-align: center;
|
896
|
+
-moz-user-select: none;
|
897
|
+
-ms-user-select: none;
|
898
|
+
user-select: none;
|
899
|
+
-webkit-user-select: none;
|
900
|
+
border-bottom: 1px solid #ccc;
|
901
|
+
}
|
902
|
+
.rc-calendar-decade-panel-header > a {
|
903
|
+
font-weight: bold;
|
904
|
+
display: inline-block;
|
905
|
+
padding: 1px 5px;
|
906
|
+
text-align: center;
|
907
|
+
width: 30px;
|
908
|
+
}
|
909
|
+
.rc-calendar-decade-panel-header > a:hover {
|
910
|
+
cursor: pointer;
|
911
|
+
color: #f09f4g;
|
912
|
+
}
|
913
|
+
.rc-calendar-decade-panel-prev-century-btn,
|
914
|
+
.rc-calendar-decade-panel-next-century-btn {
|
915
|
+
position: absolute;
|
916
|
+
top: 0;
|
917
|
+
}
|
918
|
+
.rc-calendar-decade-panel-next-century-btn:after {
|
919
|
+
content: '\BB';
|
920
|
+
}
|
921
|
+
.rc-calendar-decade-panel-prev-century-btn {
|
922
|
+
-webkit-user-select: none;
|
923
|
+
-moz-user-select: none;
|
924
|
+
-ms-user-select: none;
|
925
|
+
user-select: none;
|
926
|
+
left: 0;
|
927
|
+
}
|
928
|
+
.rc-calendar-decade-panel-prev-century-btn:after {
|
929
|
+
content: '\AB';
|
930
|
+
}
|
931
|
+
.rc-calendar-decade-panel-next-century-btn {
|
932
|
+
-webkit-user-select: none;
|
933
|
+
-moz-user-select: none;
|
934
|
+
-ms-user-select: none;
|
935
|
+
user-select: none;
|
936
|
+
right: 0;
|
937
|
+
}
|
938
|
+
.rc-calendar-decade-panel-body {
|
939
|
+
-ms-flex: 1;
|
940
|
+
flex: 1;
|
941
|
+
padding: 9px 10px 10px;
|
942
|
+
}
|
943
|
+
.rc-calendar-decade-panel-footer {
|
944
|
+
border-top: 1px solid #ccc;
|
945
|
+
line-height: 38px;
|
946
|
+
}
|
947
|
+
.rc-calendar-decade-panel-table {
|
948
|
+
table-layout: fixed;
|
949
|
+
width: 100%;
|
950
|
+
height: 100%;
|
951
|
+
border-collapse: separate;
|
952
|
+
}
|
953
|
+
.rc-calendar-decade-panel-cell {
|
954
|
+
text-align: center;
|
955
|
+
}
|
956
|
+
.rc-calendar-decade-panel-decade {
|
957
|
+
display: block;
|
958
|
+
margin: 0 auto;
|
959
|
+
color: #666;
|
960
|
+
border-radius: 4px 4px;
|
961
|
+
height: 36px;
|
962
|
+
padding: 0;
|
963
|
+
background: transparent;
|
964
|
+
line-height: 36px;
|
965
|
+
text-align: center;
|
966
|
+
}
|
967
|
+
.rc-calendar-decade-panel-decade:hover {
|
968
|
+
background: #fcecd9;
|
969
|
+
cursor: pointer;
|
970
|
+
}
|
971
|
+
.rc-calendar-decade-panel-selected-cell .rc-calendar-decade-panel-decade {
|
972
|
+
background: #f09f3f;
|
973
|
+
color: #fff;
|
974
|
+
}
|
975
|
+
.rc-calendar-decade-panel-selected-cell .rc-calendar-decade-panel-decade:hover {
|
976
|
+
background: #f09f3f;
|
977
|
+
color: #fff;
|
978
|
+
}
|
979
|
+
.rc-calendar-decade-panel-last-century-cell .rc-calendar-decade-panel-decade,
|
980
|
+
.rc-calendar-decade-panel-next-century-cell .rc-calendar-decade-panel-decade {
|
981
|
+
-moz-user-select: none;
|
982
|
+
-ms-user-select: none;
|
983
|
+
user-select: none;
|
984
|
+
-webkit-user-select: none;
|
985
|
+
color: rgba(0, 0, 0, 0.25);
|
986
|
+
}
|
987
|
+
.rc-calendar-range {
|
988
|
+
width: 502px;
|
989
|
+
overflow: hidden;
|
990
|
+
}
|
991
|
+
.rc-calendar-range-part {
|
992
|
+
width: 250px;
|
993
|
+
position: relative;
|
994
|
+
}
|
995
|
+
.rc-calendar-range-part .rc-calendar-time-picker {
|
996
|
+
top: 69px;
|
997
|
+
}
|
998
|
+
.rc-calendar-range-part .rc-calendar-time-picker-panel-select {
|
999
|
+
width: 77px;
|
1000
|
+
}
|
1001
|
+
.rc-calendar-range-left {
|
1002
|
+
float: left;
|
1003
|
+
}
|
1004
|
+
.rc-calendar-range-left .rc-calendar-time-picker-panel-select:last-child {
|
1005
|
+
border-right: 1px solid #e9e9e9;
|
1006
|
+
}
|
1007
|
+
.rc-calendar-range-right {
|
1008
|
+
float: right;
|
1009
|
+
}
|
1010
|
+
.rc-calendar-range-right .rc-calendar-time-picker-panel {
|
1011
|
+
left: 21px;
|
1012
|
+
}
|
1013
|
+
.rc-calendar-range-right .rc-calendar-time-picker-panel-select:first-child {
|
1014
|
+
border-left: 1px solid #e9e9e9;
|
1015
|
+
}
|
1016
|
+
.rc-calendar-range-middle {
|
1017
|
+
position: absolute;
|
1018
|
+
margin-left: -10px;
|
1019
|
+
text-align: center;
|
1020
|
+
height: 35px;
|
1021
|
+
line-height: 35px;
|
1022
|
+
}
|
1023
|
+
.rc-calendar-range .rc-calendar-date-panel::after {
|
1024
|
+
content: ".";
|
1025
|
+
display: block;
|
1026
|
+
height: 0;
|
1027
|
+
clear: both;
|
1028
|
+
visibility: hidden;
|
1029
|
+
}
|
1030
|
+
.rc-calendar-range .rc-calendar-input-wrap {
|
1031
|
+
height: 35px;
|
1032
|
+
}
|
1033
|
+
.rc-calendar-range .rc-calendar-input,
|
1034
|
+
.rc-calendar-range .rc-time-picker-input {
|
1035
|
+
padding: 1px 7px;
|
1036
|
+
height: 22px;
|
1037
|
+
}
|
1038
|
+
.rc-calendar-range .rc-calendar-body,
|
1039
|
+
.rc-calendar-range .rc-calendar-decade-panel-body,
|
1040
|
+
.rc-calendar-range .rc-calendar-year-panel-body,
|
1041
|
+
.rc-calendar-range .rc-calendar-month-panel-body {
|
1042
|
+
border-bottom: 1px solid #e9e9e9;
|
1043
|
+
}
|
1044
|
+
.rc-calendar-range.rc-calendar-week-number {
|
1045
|
+
width: 574px;
|
1046
|
+
}
|
1047
|
+
.rc-calendar-range.rc-calendar-week-number .rc-calendar-range-part {
|
1048
|
+
width: 286px;
|
1049
|
+
}
|
1050
|
+
.rc-calendar-range.rc-calendar-week-number .rc-calendar-range-part .rc-calendar-time-picker {
|
1051
|
+
top: 69px;
|
1052
|
+
}
|
1053
|
+
.rc-calendar-range.rc-calendar-week-number .rc-calendar-range-part .rc-calendar-time-picker-panel-select {
|
1054
|
+
width: 89px;
|
1055
|
+
}
|
1056
|
+
.rc-calendar-range.rc-calendar-week-number .rc-calendar-range-right .rc-calendar-time-picker-panel {
|
1057
|
+
left: 36px;
|
1058
|
+
}
|
1059
|
+
.rc-calendar-range .rc-calendar-year-panel,
|
1060
|
+
.rc-calendar-range .rc-calendar-month-panel,
|
1061
|
+
.rc-calendar-range .rc-calendar-decade-panel {
|
1062
|
+
top: 35px;
|
1063
|
+
}
|
1064
|
+
.rc-calendar-range .rc-calendar-month-panel .rc-calendar-year-panel {
|
1065
|
+
top: 0;
|
1066
|
+
}
|
1067
|
+
.rc-calendar-range .rc-calendar-decade-panel-table,
|
1068
|
+
.rc-calendar-range .rc-calendar-year-panel-table,
|
1069
|
+
.rc-calendar-range .rc-calendar-month-panel-table {
|
1070
|
+
height: 198px;
|
1071
|
+
}
|
1072
|
+
.rc-calendar-range .rc-calendar-in-range-cell {
|
1073
|
+
background: #ebf4f8;
|
1074
|
+
border-radius: 0;
|
1075
|
+
}
|
1076
|
+
.rc-calendar-range-bottom {
|
1077
|
+
text-align: right;
|
1078
|
+
}
|
1079
|
+
.rc-calendar-range .rc-calendar-footer {
|
1080
|
+
border-top: none;
|
1081
|
+
padding: 0;
|
1082
|
+
}
|
1083
|
+
.rc-calendar-range .rc-calendar-footer-btn {
|
1084
|
+
padding: 10px 12px 10px 0;
|
1085
|
+
}
|
1086
|
+
.rc-calendar-range .rc-calendar-ok-btn {
|
1087
|
+
position: static;
|
1088
|
+
}
|
1089
|
+
.rc-calendar-range .rc-calendar-today-btn {
|
1090
|
+
float: left;
|
1091
|
+
}
|
1092
|
+
.rc-calendar-full {
|
1093
|
+
width: 275px;
|
1094
|
+
}
|
1095
|
+
.rc-calendar-full-header {
|
1096
|
+
padding: 5px 10px;
|
1097
|
+
text-align: center;
|
1098
|
+
-moz-user-select: none;
|
1099
|
+
-ms-user-select: none;
|
1100
|
+
user-select: none;
|
1101
|
+
-webkit-user-select: none;
|
1102
|
+
border-bottom: 1px solid #ccc;
|
1103
|
+
overflow: hidden;
|
1104
|
+
}
|
1105
|
+
.rc-calendar-full-header-month-select,
|
1106
|
+
.rc-calendar-full-header-year-select {
|
1107
|
+
width: 70px;
|
1108
|
+
float: right;
|
1109
|
+
margin-right: 5px;
|
1110
|
+
}
|
1111
|
+
.rc-calendar-full-header-switcher {
|
1112
|
+
float: right;
|
1113
|
+
display: inline-block;
|
1114
|
+
}
|
1115
|
+
.rc-calendar-full-header-switcher-normal:hover {
|
1116
|
+
border-color: #f09f4g;
|
1117
|
+
box-shadow: 0 0 2px rgba(45, 183, 245, 0.8);
|
1118
|
+
cursor: pointer;
|
1119
|
+
}
|
1120
|
+
.rc-calendar-full-header-switcher-focus {
|
1121
|
+
border-color: #f09f3f;
|
1122
|
+
background-color: #f09f3f;
|
1123
|
+
color: #fff;
|
1124
|
+
}
|
1125
|
+
.rc-calendar-full-header-switcher > span {
|
1126
|
+
float: left;
|
1127
|
+
height: 28px;
|
1128
|
+
line-height: 24px;
|
1129
|
+
border: 1px solid #d9d9d9;
|
1130
|
+
padding: 0 10px;
|
1131
|
+
color: #666;
|
1132
|
+
}
|
1133
|
+
.rc-calendar-full-header-switcher > span:first-child {
|
1134
|
+
border-top-left-radius: 4px;
|
1135
|
+
border-bottom-left-radius: 4px;
|
1136
|
+
border-right: none;
|
1137
|
+
}
|
1138
|
+
.rc-calendar-full-header-switcher > span:last-child {
|
1139
|
+
border-top-right-radius: 4px;
|
1140
|
+
border-bottom-right-radius: 4px;
|
1141
|
+
border-left: none;
|
1142
|
+
}
|
1143
|
+
.rc-calendar-fullscreen {
|
1144
|
+
width: auto;
|
1145
|
+
}
|
1146
|
+
.rc-calendar-fullscreen .rc-calendar-full-header {
|
1147
|
+
border-bottom: none;
|
1148
|
+
}
|
1149
|
+
.rc-calendar-fullscreen .rc-calendar-column-header {
|
1150
|
+
text-align: right;
|
1151
|
+
padding-right: 12px;
|
1152
|
+
}
|
1153
|
+
.rc-calendar-fullscreen .rc-calendar-cell {
|
1154
|
+
padding: 0;
|
1155
|
+
}
|
1156
|
+
.rc-calendar-fullscreen .rc-calendar-cell .rc-calendar-date,
|
1157
|
+
.rc-calendar-fullscreen .rc-calendar-month-panel-cell .rc-calendar-month-panel-month {
|
1158
|
+
display: block;
|
1159
|
+
height: 116px;
|
1160
|
+
width: auto;
|
1161
|
+
border-radius: 0;
|
1162
|
+
margin: 0 4px;
|
1163
|
+
border: none;
|
1164
|
+
border-top: 2px solid #eee;
|
1165
|
+
text-align: right;
|
1166
|
+
padding-right: 8px;
|
1167
|
+
}
|
1168
|
+
.rc-calendar-fullscreen .rc-calendar-selected-day .rc-calendar-date,
|
1169
|
+
.rc-calendar-fullscreen .rc-calendar-month-panel-selected-cell .rc-calendar-month-panel-month {
|
1170
|
+
background-color: #fcecd9;
|
1171
|
+
color: #666;
|
1172
|
+
}
|
1173
|
+
.rc-calendar-fullscreen .rc-calendar-today .rc-calendar-date,
|
1174
|
+
.rc-calendar-fullscreen .rc-calendar-month-panel-selected-cell .rc-calendar-month-panel-month {
|
1175
|
+
border-top-color: #f09f3f;
|
1176
|
+
color: #f09f3f;
|
1177
|
+
}
|
1178
|
+
|
1179
|
+
/*# sourceMappingURL=rc-calendar.css.map*/
|