From 959efc725b4854cb8fd9aca70f5cb03d87483605 Mon Sep 17 00:00:00 2001 From: mARTin Date: Wed, 18 Mar 2026 00:19:30 +0100 Subject: [PATCH] fix: remove half-hour lines in calendar view for cleaner Google Calendar look Only show horizontal grid lines at full hour boundaries, matching the clean Google Calendar aesthetic from the reference screenshot. v1.47.2 Co-Authored-By: Claude Opus 4.6 --- package.json | 2 +- src/app/globals.css | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index 62cc749..229dc2f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "my-weekly-todo-list", - "version": "1.47.1", + "version": "1.47.2", "description": "A web-based weekly task management application that organizes to-dos and calendar events in a single, intuitive weekly view", "main": "index.js", "scripts": { diff --git a/src/app/globals.css b/src/app/globals.css index 3c403ce..1ce0215 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -3795,10 +3795,10 @@ h3 { border-bottom: 1px solid #dadce0; } .calendar-view .time-slot { - border-bottom: 1px solid #f1f3f4; + border-bottom: none; } -.calendar-view .time-slot:nth-child(even) { - border-bottom: 1px solid #dadce0; +.calendar-view .time-slot.hour-start { + border-top: 1px solid #dadce0; } .calendar-view .time-slot-label { color: #70757a; @@ -3821,10 +3821,10 @@ h3 { border-right: 1px solid #333; } .dark-mode .calendar-view .time-slot { - border-bottom: 1px solid #2a2a2a; + border-bottom: none; } -.dark-mode .calendar-view .time-slot:nth-child(even) { - border-bottom: 1px solid #333; +.dark-mode .calendar-view .time-slot.hour-start { + border-top: 1px solid #333; } .dark-mode .calendar-view .time-slot-label { color: #9aa0a6;