From c040dd982d8c3a23028902d92b7a63314aa216b4 Mon Sep 17 00:00:00 2001 From: mARTin Date: Tue, 24 Mar 2026 11:16:46 +0100 Subject: [PATCH] fix: remove CSS left/right overrides preventing side-by-side events The base .time-slot-event and .simple-view .time-slot-event CSS had left: 0 and right: 0 (with !important) which overrode the inline overlap layout positioning. Removed so events can be placed side by side when they overlap. v1.65.1 Co-Authored-By: Claude Opus 4.6 --- package.json | 2 +- src/app/globals.css | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 75f5cc1..5875fdb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "my-weekly-todo-list", - "version": "1.65.0", + "version": "1.65.1", "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 98ef9bc..9b45f5b 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -3016,8 +3016,6 @@ h3 { border-radius: 0 4px 4px 0; margin: 1px 0; overflow: hidden; - left: 0; - right: 0; box-sizing: border-box; } @@ -4256,8 +4254,7 @@ h3 { border-top: 1px solid #dadce0; } .simple-view .time-slot-event { - left: 0 !important; - right: 0 !important; + /* overlap layout sets left/width dynamically */ } .simple-view .weekly-day-header { text-transform: uppercase;