From ecd79dc34bed18fc0c677a8a048fe795f22f6f7c Mon Sep 17 00:00:00 2001 From: Alexander Kraus Date: Fri, 20 Dec 2019 15:20:12 +0100 Subject: [PATCH 1/2] Added a padding between days in dateheader mode --- modules/default/calendar/calendar.js | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/default/calendar/calendar.js b/modules/default/calendar/calendar.js index cc5084fd..9c91afe5 100755 --- a/modules/default/calendar/calendar.js +++ b/modules/default/calendar/calendar.js @@ -180,6 +180,7 @@ Module.register("calendar", { dateCell.colSpan = "3"; dateCell.innerHTML = dateAsString; + dateCell.style.paddingTop = "10px"; dateRow.appendChild(dateCell); wrapper.appendChild(dateRow); From efc6cb73b208833d3b5e91e68ca90acbdcc95f6b Mon Sep 17 00:00:00 2001 From: Alexander Kraus Date: Fri, 20 Dec 2019 15:22:14 +0100 Subject: [PATCH 2/2] Added my contribution to the changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 38b1543f..97455649 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Added - Timestamps in log output +- Padding in dateheader mode of the calendar module ### Updated