mirror of
https://github.com/frappe/air-datepicker.git
synced 2026-01-14 11:01:22 +08:00
32 lines
527 B
SCSS
32 lines
527 B
SCSS
$dayCellSize: 32px;
|
|
$datepickerWidth: 7 * $dayCellSize;
|
|
$datepickerBorderRadius: 2px;
|
|
$yearsPerRow: 4;
|
|
$textColor: #333;
|
|
|
|
$navigationHeight: 32px;
|
|
|
|
// Colors
|
|
$colorGrey: #ddd;
|
|
|
|
$colorAnotherMonth: #ddd;
|
|
$colorCellHover: #eee;
|
|
$colorCellCurrent: #60C4F5;
|
|
$colorCellSelected: skyblue;
|
|
$colorCellWeekend: '';
|
|
|
|
// Objects
|
|
%otherMonth {
|
|
color: $colorAnotherMonth;
|
|
font-size: .9em;
|
|
|
|
&.-selected- {
|
|
color: #fff;
|
|
background: lighten($colorCellSelected, 20%);
|
|
}
|
|
|
|
&:empty {
|
|
background: none;
|
|
border: none;
|
|
}
|
|
} |