From 532d1e663ac265af77981427c11c282652b15519 Mon Sep 17 00:00:00 2001 From: Bryan Mauger Date: Tue, 11 Oct 2022 16:55:08 -0400 Subject: [PATCH] WIP CSS updates. --- src/common-components/date-picker/date-picker.vue | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/common-components/date-picker/date-picker.vue b/src/common-components/date-picker/date-picker.vue index 5cc274e31..e4e098dba 100644 --- a/src/common-components/date-picker/date-picker.vue +++ b/src/common-components/date-picker/date-picker.vue @@ -341,11 +341,19 @@ export default { .first-of-month { position: absolute; font-size: 9px; - color: $blue; + color: $gray-600; top: 0; z-index: 1; } + .current-day { + &.selectable-day { + + .first-of-month { + color: $blue; + } + } + } + label { position: relative; cursor: pointer; @@ -383,7 +391,7 @@ export default { } &.future-day { - color: $gray-550; + color: $gray-600; background-color: transparent; border: 1px solid transparent; }