air-datepicker/sass/datepicker/datepicker-config.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;
}
}