fix: day columns were blocking scroll on iOS — remove overflow-y from time-slots-container
.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
This commit is contained in:
parent
517798ce6c
commit
a3a55c9575
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "my-weekly-todo-list",
|
"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",
|
"description": "A web-based weekly task management application that organizes to-dos and calendar events in a single, intuitive weekly view",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@ -1016,10 +1016,11 @@ h3 {
|
|||||||
pointer-events: auto;
|
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-slots-container,
|
||||||
.time-column-slots {
|
.time-column-slots {
|
||||||
overflow-y: auto;
|
overflow-y: visible;
|
||||||
overflow-x: visible;
|
overflow-x: visible;
|
||||||
scrollbar-width: none;
|
scrollbar-width: none;
|
||||||
-ms-overflow-style: none;
|
-ms-overflow-style: none;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user