From c5336167664b670d6e595c1cb94d540a64a67f55 Mon Sep 17 00:00:00 2001 From: Arthur Deierlein Date: Tue, 7 Jan 2025 15:03:23 +0100 Subject: [PATCH] fix(frontend/calendar): highlight today && highlight hovered days in light mode --- frontend/app/styles/components/power-calendar.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/frontend/app/styles/components/power-calendar.css b/frontend/app/styles/components/power-calendar.css index 5a15c7400..3c352fdee 100644 --- a/frontend/app/styles/components/power-calendar.css +++ b/frontend/app/styles/components/power-calendar.css @@ -28,7 +28,11 @@ } .ember-power-calendar-day--current-month { - @apply bg-background-muted; + @apply bg-secondary/20; +} + +.ember-power-calendar-day--today { + @apply bg-secondary/50; } .ember-power-calendar-day--selected { @@ -36,7 +40,7 @@ } .ember-power-calendar-day--current-month:not([disabled]) { - @apply hover:bg-background-secondary/50; + @apply hover:bg-secondary-light/55; } .ember-power-calendar-day--other-month:not([disabled]):hover {