diff --git a/package.json b/package.json index 8d6b7d8..c91baaf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "my-weekly-todo-list", - "version": "1.33.5", + "version": "1.33.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": { diff --git a/src/app/globals.css b/src/app/globals.css index 08dfb79..1431119 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -2151,13 +2151,22 @@ h3 { --weekly-settings-toggle-active-text: #ffffff; } +/* Ensure inputs have explicit color for mobile Safari */ +.weekly-container input, +.weekly-container textarea { + color: var(--weekly-text, #333333); + -webkit-text-fill-color: var(--weekly-text, #333333); +} + .weekly-container.dark-mode input, .weekly-container.dark-mode textarea { color: #ffffff; + -webkit-text-fill-color: #ffffff; } .weekly-container.dark-mode .weekly-task-input input { color: #ffffff; + -webkit-text-fill-color: #ffffff; } .weekly-container.dark-mode .weekly-task-input input::placeholder { diff --git a/src/components/WeeklyView.tsx b/src/components/WeeklyView.tsx index 58b9b9a..c9d0789 100644 --- a/src/components/WeeklyView.tsx +++ b/src/components/WeeklyView.tsx @@ -6346,7 +6346,8 @@ export default function WeeklyView() { })()} {/* Main Grid with Time Column */} - {viewStyle !== "kanban" &&
+
{/* Time Column */} @@ -6984,26 +6985,26 @@ export default function WeeklyView() { })} - {/* Right Navigation Arrows (now aligned with headers) */} -
- - -
+
+ {/* Right Navigation Arrows (outside scroll wrapper, fixed to right edge) */} +
+ + +
} {/* All-Day Events Section (below position) */}