Skip to content

Commit

Permalink
Merge pull request #6492 from nextcloud-libraries/fix/NcDateTimePicke…
Browse files Browse the repository at this point in the history
…r--color

fix(NcDateTimePicker): selected and hover time is not readable
  • Loading branch information
susnux authored Feb 5, 2025
2 parents bc9b61a + 44aac60 commit b8ca379
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/components/NcDateTimePicker/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -413,11 +413,16 @@

.mx-time-option,
.mx-time-item {
&.active,
&:hover {
&.active {
background-color: var(--color-primary-element);
color: var(--color-primary-element-text);
}

&:hover {
background-color: var(--color-background-hover);
color: var(--color-main-text);
}

&.disabled {
cursor: not-allowed;
opacity: $opacity_disabled;
Expand Down

0 comments on commit b8ca379

Please sign in to comment.