13693261870
2022-09-16 354b3dbfbffb3df45212a2a44dbbf48b4acc2594
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
/**
 * @class Ext.picker.Date
 */
 
/**
 * @var {number}
 * The border-width of the DatePicker
 */
$datepicker-border-width: 1px !default;
 
/**
 * @var {string}
 * The border-style of the DatePicker
 */
$datepicker-border-style: solid !default;
 
/**
 * @var {color}
 * The background-color of the DatePicker
 */
$datepicker-background-color: #fff !default;
 
/**
 * @var {string}
 * The background-image of the DatePicker next arrow
 */
$datepicker-next-image: 'datepicker/arrow-right' !default;
 
/**
 * @var {string}
 * The background-image of the DatePicker previous arrow
 */
$datepicker-prev-image: 'datepicker/arrow-left' !default;
 
/**
 * @var {number}
 * The width of DatePicker arrows
 */
$datepicker-arrow-width: 16px !default;
 
/**
 * @var {number}
 * The height of DatePicker arrows
 */
$datepicker-arrow-height: 16px !default;
 
/**
 * @var {string}
 * The type of cursor to display when the cursor is over a DatePicker arrow
 */
$datepicker-arrow-cursor: pointer !default;
 
/**
 * @var {number}
 * The opacity of the DatePicker arrows
 */
$datepicker-arrow-opacity: 1 !default;
 
/**
 * @var {number}
 * The opacity of the DatePicker arrows when hovered
 */
$datepicker-arrow-opacity-over: 1 !default;
 
/**
 * @var {string/list}
 * The Date Picker header background gradient. Can be either the name of a predefined gradient
 * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}.
 */
$datepicker-header-background-gradient: null !default;
 
/**
 * @var {number/list}
 * The padding of the Date Picker header
 */
$datepicker-header-padding: 4px 6px !default;
 
/**
 * @var {color}
 * The color of the Date Picker month button
 */
$datepicker-month-button-color: #fff !default; 
 
/**
 * @var {number}
 * The width of the arrow on the Date Picker month button
 */
$datepicker-month-button-arrow-width: $button-small-arrow-width !default; 
 
/**
 * @var {string}
 * The background-image of the arrow on the Date Picker month button
 */
$datepicker-month-button-arrow-image: 'datepicker/month-arrow' !default;
 
/**
 * @var {boolean}
 * True to render the month button as transparent
 */
$datepicker-use-transparent-month-button: true !default; 
 
/**
 * @var {string}
 * The text-align of the Date Picker header
 */
$datepicker-header-text-align: center !default;
 
/**
 * @var {number}
 * The height of Date Picker items
 */
$datepicker-item-height: 25px !default;
 
/**
 * @var {number}
 * The width of Date Picker items
 */
$datepicker-item-width: 30px !default;
 
/**
 * @var {number/list}
 * The padding of Date Picker items
 */
$datepicker-item-padding: 0 7px 0 0 !default;
 
/**
 * @var {string}
 * The font-family of Date Picker items
 */
$datepicker-item-font-family: $font-family !default;
 
/**
 * @var {number}
 * The font-size of Date Picker items
 */
$datepicker-item-font-size: $font-size !default;
 
/**
 * @var {string}
 * The font-weight of Date Picker items
 */
$datepicker-item-font-weight: normal !default;
 
/**
 * @var {string}
 * The text-align of Date Picker items
 */
$datepicker-item-text-align: right !default;
 
/**
 * @var {color}
 * The text color of Date Picker items
 */
$datepicker-item-color: $color !default;
 
/**
 * @var {string}
 * The type of cursor to display when the cursor is over a Date Picker item
 */
$datepicker-item-cursor: pointer !default;
 
/**
 * @var {string}
 * The font-family of Date Picker column headers
 */
$datepicker-column-header-font-family: $datepicker-item-font-family !default;
 
/**
 * @var {number}
 * The font-size of Date Picker column headers
 */
$datepicker-column-header-font-size: $datepicker-item-font-size !default;
 
/**
 * @var {string}
 * The font-weight of Date Picker column headers
 */
$datepicker-column-header-font-weight: $datepicker-item-font-weight !default;
 
/**
 * @var {string/list}
 * The background-gradient of Date Picker column headers. Can be either the name of a
 * predefined gradient or a list of color stops. Used as the `$type` parameter for
 * {@link Global_CSS#background-gradient}.
 */
$datepicker-column-header-background-gradient: null !default;
 
/**
 * @var {string}
 * The border-style of Date Picker column headers
 */
$datepicker-column-header-border-style: solid !default;
 
/**
 * @var {number}
 * The border-width of Date Picker column headers
 */
$datepicker-column-header-border-width: 0 0 1px !default;
 
/**
 * @var {string}
 * The text-align of Date Picker column headers
 */
$datepicker-column-header-text-align: $datepicker-item-text-align !default;
 
/**
 * @var {number}
 * The height of Date Picker column headers
 */
$datepicker-column-header-height: $datepicker-item-height !default;
 
/**
 * @var {number/list}
 * The padding of Date Picker column headers
 */
$datepicker-column-header-item-padding: 0 9px 0 0 !default;
 
/**
 * @var {number}
 * The border-width of Date Picker items
 */
$datepicker-item-border-width: 1px !default;
 
/**
 * @var {string}
 * The border-style of Date Picker items
 */
$datepicker-item-border-style: solid !default;
 
/**
 * @var {color}
 * The border-color of Date Picker items
 */
$datepicker-item-border-color: $datepicker-background-color !default;
 
/**
 * @var {string}
 * The border-style of today's date on the Date Picker
 */
$datepicker-item-today-border-style: solid !default;
 
/**
 * @var {string}
 * The border-style of the selected item
 */
$datepicker-item-selected-border-style: solid !default;
 
/**
 * @var {string}
 * The font-weight of the selected item
 */
$datepicker-item-selected-font-weight: bold !default;
 
/**
 * @var {color}
 * The text color of the items in the previous and next months
 */
$datepicker-item-prev-next-color: lighten($datepicker-item-color,  75%) !default;
 
/**
 * @var {string}
 * The type of cursor to display when the cursor is over a disabled item
 */
$datepicker-item-disabled-cursor: default !default;
 
/**
 * @var {color}
 * The text color of disabled Date Picker items
 */
$datepicker-item-disabled-color: lighten($datepicker-item-color,  50%) !default;
 
/**
 * @var {color}
 * The background-color of disabled Date Picker items
 */
$datepicker-item-disabled-background-color: #eee !default;
 
/**
 * @var {color}
 * The background-color of the Date Picker footer
 */
$datepicker-footer-background-color: $datepicker-column-header-background-color !default;
 
/**
 * @var {string/list}
 * The background-gradient of the Date Picker footer. Can be either the name of a
 * predefined gradient or a list of color stops. Used as the `$type` parameter for
 * {@link Global_CSS#background-gradient}.
 */
$datepicker-footer-background-gradient: null !default;
 
/**
 * @var {number/list}
 * The border-width of the Date Picker footer
 */
$datepicker-footer-border-width: 1px 0 0 !default;
 
/**
 * @var {string}
 * The border-style of the Date Picker footer
 */
$datepicker-footer-border-style: solid !default;
 
/**
 * @var {string}
 * The text-align of the Date Picker footer
 */
$datepicker-footer-text-align: center !default;
 
/**
 * @var {number/list}
 * The padding of the Date Picker footer
 */
$datepicker-footer-padding: 3px 0 !default;
 
/**
 * @var {number}
 * The space between the footer buttons
 */
$datepicker-footer-button-spacing: 4px !default;
 
/**
 * @var {color}
 * The border-color of the Month Picker
 */
$datepicker-monthpicker-border-color: $datepicker-border-color !default;
 
/**
 * @var {number}
 * The border-width of the Month Picker
 */
$datepicker-monthpicker-border-width: $datepicker-border-width !default;
 
/**
 * @var {string}
 * The border-style of the Month Picker
 */
$datepicker-monthpicker-border-style: $datepicker-border-style !default;
 
/**
 * @var {color}
 * The text color of Month Picker items
 */
$datepicker-monthpicker-item-color: $color !default;
 
/**
 * @var {color}
 * The text color of Month Picker items
 */
$datepicker-monthpicker-item-border-width: $datepicker-item-border-width !default;
 
/**
 * @var {color}
 * The border-color of Month Picker items
 */
$datepicker-monthpicker-item-border-color: $datepicker-item-border-color !default;
 
/**
 * @var {string}
 * The border-style of Month Picker items
 */
$datepicker-monthpicker-item-border-style: $datepicker-item-border-style !default;
 
/**
 * @var {string}
 * The font-family of Month Picker items
 */
$datepicker-monthpicker-item-font-family: $datepicker-item-font-family !default;
 
/**
 * @var {number}
 * The font-size of Month Picker items
 */
$datepicker-monthpicker-item-font-size: $datepicker-item-font-size !default;
 
/**
 * @var {string}
 * The font-weight of Month Picker items
 */
$datepicker-monthpicker-item-font-weight: $datepicker-item-font-weight !default;
 
/**
 * @var {number/list}
 * The margin of Month Picker items
 */
$datepicker-monthpicker-item-margin: 5px !default;
 
/**
 * @var {string}
 * The text-align of Month Picker items
 */
$datepicker-monthpicker-item-text-align: center !default;
 
/**
 * @var {number}
 * The height of Month Picker items
 */
$datepicker-monthpicker-item-height: 24px !default;
 
/**
 * @var {string}
 * The type of cursor to display when the cursor is over a Month Picker item
 */
$datepicker-monthpicker-item-cursor: pointer !default;
 
/**
 * @var {color}
 * The background-color of hovered Month Picker items
 */
$datepicker-monthpicker-item-hover-background-color: $datepicker-item-hover-background-color !default;
 
/**
 * @var {color}
 * The background-color of selected Month Picker items
 */
$datepicker-monthpicker-item-selected-background-color: $datepicker-item-selected-background-color !default;
 
/**
 * @var {string}
 * The border-style of selected Month Picker items
 */
$datepicker-monthpicker-item-selected-border-style: $datepicker-item-selected-border-style !default;
 
/**
 * @var {color}
 * The border-color of selected Month Picker items
 */
$datepicker-monthpicker-item-selected-border-color: $datepicker-item-selected-border-color !default;
 
/**
 * @var {number}
 * The height of the Month Picker year navigation buttons 
 */
$datepicker-monthpicker-yearnav-button-height: 16px !default;
 
/**
 * @var {number}
 * The width of the Month Picker year navigation buttons 
 */
$datepicker-monthpicker-yearnav-button-width: 16px !default;
 
/**
 * @var {string}
 * The type of cursor to display when the cursor is over a Month Picker year navigation button 
 */
$datepicker-monthpicker-yearnav-button-cursor: pointer !default;
 
/**
 * @var {number}
 * The opacity of the Month Picker year navigation buttons 
 */
$datepicker-monthpicker-yearnav-button-opacity: 1 !default;
 
/**
 * @var {number}
 * The opacity of hovered Month Picker year navigation buttons 
 */
$datepicker-monthpicker-yearnav-button-opacity-over: 1 !default;
 
/**
 * @var {string}
 * The background-image of the Month Picker next year navigation button
 */
$datepicker-monthpicker-next-image: 'datepicker/arrow-right' !default;
 
/**
 * @var {string}
 * The background-image of the Month Picker previous year navigation button
 */
$datepicker-monthpicker-prev-image: 'datepicker/arrow-left' !default;
 
/**
 * @var {list}
 * The background-poisition of the Month Picker next year navigation button
 */
$datepicker-monthpicker-next-background-position: 0 0 !default;
 
/**
 * @var {list}
 * The background-poisition of the hovered Month Picker next year navigation button
 */
$datepicker-monthpicker-next-background-position-over: 0 0 !default;
 
/**
 * @var {list}
 * The background-poisition of the Month Picker previous year navigation button
 */
$datepicker-monthpicker-prev-background-position: 0 0 !default;
 
/**
 * @var {list}
 * The background-poisition of the hovered Month Picker previous year navigation button
 */
$datepicker-monthpicker-prev-background-position-over: 0 0 !default;
 
/**
 * @var {string}
 * The border-style of the Month Picker separator
 */
$datepicker-monthpicker-separator-border-style: solid !default;
 
/**
 * @var {number}
 * The border-width of the Month Picker separator
 */
$datepicker-monthpicker-separator-border-width: 1px !default;
 
/**
 * @var {color}
 * The border-color of the Month Picker separator
 */
$datepicker-monthpicker-separator-border-color: $datepicker-border-color !default;
 
/**
 * @var {number/list}
 * The margin of Month Picker items when the datepicker does not have footer buttons
 */
$datepicker-monthpicker-small-item-margin: 2px 5px !default;
 
/**
 * @var {number}
 * The height of Month Picker items when the datepicker does not have footer buttons
 */
$datepicker-monthpicker-small-item-height: $datepicker-monthpicker-item-height !default;