Bug 1363672 - Add step support to date picker

This commit is contained in:
janekptacijarabaci 2018-03-30 20:56:33 +02:00 committed by Roy Tam
commit 1cca8d40f3
5 changed files with 64 additions and 18 deletions

View file

@ -232,12 +232,14 @@ button.month-year.active::after {
color: var(--weekend-outside-font-color);
}
.days-view > .out-of-range {
.days-view > .out-of-range,
.days-view > .off-step {
color: var(--weekday-disabled-font-color);
background: var(--disabled-fill-color);
}
.days-view > .out-of-range.weekend {
.days-view > .out-of-range.weekend,
.days-view > .off-step.weekend {
color: var(--weekend-disabled-font-color);
}
@ -245,7 +247,8 @@ button.month-year.active::after {
font-weight: bold;
}
.days-view > .out-of-range::before {
.days-view > .out-of-range::before,
.days-view > .off-step::before {
display: none;
}
@ -341,7 +344,7 @@ button.month-year.active::after {
}
.spinner-container > .spinner:not(.scrolling) > div.selection,
.calendar-container .days-view > div.selection:not(.out-of-range) {
.calendar-container .days-view > div.selection {
color: var(--selected-font-color);
}