From 149b07cc04712f3b7143bf862dea8f15c89c3e5c Mon Sep 17 00:00:00 2001 From: thamara Date: Wed, 25 Sep 2019 00:48:38 -0300 Subject: [PATCH] Highlight current day, even if it's not working day --- css/styles.css | 2 +- js/calendar.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/css/styles.css b/css/styles.css index a7bc7c251..c8e6e485c 100644 --- a/css/styles.css +++ b/css/styles.css @@ -74,7 +74,7 @@ th { vertical-align: center; } -.summary { +.summary, .today-non-working { border-bottom: 4px solid rgb(164, 158, 207); } diff --git a/js/calendar.js b/js/calendar.js index 9cb872093..52f04ba24 100644 --- a/js/calendar.js +++ b/js/calendar.js @@ -408,7 +408,7 @@ class Calendar { trID = ('tr-' + year + '-' + month + '-' + day); if (!showDay(year, month, day)) { - return '' + + return '' + '' + this.options.weekabbrs[weekDay] + '' + '' + day + '' + '' + '' +