From a3a55c957596bd8e2011a07ec2dc1e316dc0e393 Mon Sep 17 00:00:00 2001 From: mARTin Date: Sun, 29 Mar 2026 15:25:21 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20day=20columns=20were=20blocking=20scroll?= =?UTF-8?q?=20on=20iOS=20=E2=80=94=20remove=20overflow-y=20from=20time-slo?= =?UTF-8?q?ts-container?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit .time-slots-container and .time-column-slots had overflow-y: auto which created independent scroll contexts inside each day column, eating touch events and preventing the parent time-grid-wrapper from scrolling. v1.77.1 --- package.json | 2 +- src/app/globals.css | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 07f8e65..8d2adb6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "my-weekly-todo-list", - "version": "1.77.0", + "version": "1.77.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 52f9430..acbad44 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -1016,10 +1016,11 @@ h3 { pointer-events: auto; } -/* Ensure actions don't get clipped by the scrolling container */ +/* time-slots-container and time-column-slots must NOT be independent scroll containers — + the single scroll container is time-grid-wrapper (overflow-y: auto via inline style) */ .time-slots-container, .time-column-slots { - overflow-y: auto; + overflow-y: visible; overflow-x: visible; scrollbar-width: none; -ms-overflow-style: none;