From 11188872fabe7e68a42c72ed1adc03edfb2d4f26 Mon Sep 17 00:00:00 2001 From: Alex Tselegidis Date: Mon, 20 Feb 2023 07:41:49 +0100 Subject: [PATCH] Hide days that are outside the current month in the datepicker --- assets/css/general.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/assets/css/general.scss b/assets/css/general.scss index 13940772..c20354f9 100644 --- a/assets/css/general.scss +++ b/assets/css/general.scss @@ -479,4 +479,11 @@ body .clearfix { border-color: #429a82; color: white; } + + .flatpickr-day.prevMonthDay, + .flatpickr-day.nextMonthDay { + height: 0; + width: 0; + visibility: hidden; + } }