Skip to content

Commit

Permalink
fix: calendar month and date items focusable (#558)
Browse files Browse the repository at this point in the history
  • Loading branch information
markuczy authored Oct 25, 2024
1 parent 6b0d34f commit f624545
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,18 @@
}
}

.p-monthpicker .p-monthpicker-month:not(.p-disabled):not(.p-highlight):focus {
outline: $calendarFocusOutline;
outline-offset: $calendarFocusOutlineOffset;
box-shadow: none;
}

.p-yearpicker .p-yearpicker-year:not(.p-disabled):not(.p-highlight):focus {
outline: $calendarFocusOutline;
outline-offset: $calendarFocusOutlineOffset;
box-shadow: none;
}

table {
th {
border-bottom: var(--divider);
Expand Down

0 comments on commit f624545

Please sign in to comment.