Skip to content

Commit

Permalink
feat(datepicker): fix selected date color bug (#922)
Browse files Browse the repository at this point in the history
  • Loading branch information
dilandoogan authored Oct 8, 2024
1 parent 07fe1d4 commit 1fc0aed
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/components/calendar/bl-calendar.css
Original file line number Diff line number Diff line change
Expand Up @@ -69,17 +69,21 @@
--bl-color-neutral-darkest: var(--bl-color-primary);
}

&.other-month-day {
--bl-color-neutral-darker: var(--bl-color-neutral-dark);

&.selected-day {
--bl-color-neutral-darker: var(--bl-color-neutral-full);
}
}

&.selected-day {
background: var(--bl-color-primary);
border-radius: 50%;

--bl-button-focus-border-color: var(--bl-color-primary);
--bl-color-neutral-darker: var(--bl-color-neutral-full);
}

&.other-month-day {
--bl-color-neutral-darker: var(--bl-color-neutral-dark);
}
}

.range-day {
Expand Down

0 comments on commit 1fc0aed

Please sign in to comment.