fix: remove sticky weekday header inside scroll area on mobile
The .time-grid-wrapper .weekly-day-header was set to position:sticky, causing the day name (MITTWOCH 1. APR.) to appear as a ghost header while scrolling. The correct sticky element on mobile is the existing day-bar overlay (DO 2.4.) at the top. Reverted .weekly-day-header to position:relative. v1.77.6
This commit is contained in:
parent
b8c8e9257a
commit
6b292f8d07
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "my-weekly-todo-list",
|
||||
"version": "1.77.5",
|
||||
"version": "1.77.6",
|
||||
"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": {
|
||||
|
||||
@ -3178,11 +3178,7 @@ h3 {
|
||||
|
||||
.time-grid-wrapper .weekly-day-header {
|
||||
flex-shrink: 0;
|
||||
/* Sticky works because time-grid-wrapper is the overflow-y:auto ancestor */
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 20;
|
||||
background-color: var(--weekly-bg, white);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.time-grid-wrapper .time-slots-container {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user