diff --git a/public/css/components/calendar.css b/public/css/components/calendar.css index f1005f516..9edc1c0f2 100644 --- a/public/css/components/calendar.css +++ b/public/css/components/calendar.css @@ -242,10 +242,25 @@ opacity: 0.5; } -.fhc-calendar-month-page-day-highlight { - /*background-color: #f5f5f5;*/ - /*background-color: red;*/ - } +.fhc-calendar-month-page-day-focusday { + border-color: black !important; + background-color: white; + position: relative; + animation: dash-animation 2.5s linear infinite; +} + +@keyframes dash-animation { + 0% { + border-style: dashed; + } + 50% { + border-style: solid; + } + 100% { + border-style: dashed; + } +} + .fhc-highlight-week { /*border-color: black !important;*/ } diff --git a/public/js/components/Calendar/Month/Page.js b/public/js/components/Calendar/Month/Page.js index 3aa6d41c9..47630f47f 100644 --- a/public/js/components/Calendar/Month/Page.js +++ b/public/js/components/Calendar/Month/Page.js @@ -72,7 +72,7 @@ export default { const isNotThisMonth = day.getMonth() != this.month const isInThePast = day.getTime() < this.today // this.date is just the focusDate but not the initial Date - if(isThisDate) classstring += ' border-8' + if(isThisDate) classstring += ' fhc-calendar-month-page-day-focusday' if(isHighlightedWeek) classstring += ' fhc-highlight-week' if(isHighlightedDay) classstring += ' fhc-highlight-day' diff --git a/public/js/components/Calendar/Week/Page.js b/public/js/components/Calendar/Week/Page.js index 999369313..dccca6630 100644 --- a/public/js/components/Calendar/Week/Page.js +++ b/public/js/components/Calendar/Week/Page.js @@ -363,17 +363,17 @@ export default {
this is a placeholder which means that no template was passed to the Calendar Page slot
-this is a placeholder which means that no template was passed to the Calendar Page slot
+