diff --git a/package.json b/package.json index 8f569ac..3a75bc8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "my-weekly-todo-list", - "version": "1.39.3", + "version": "1.39.4", "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 67b89fe..c531b77 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -1196,8 +1196,7 @@ h3 { } .weekly-someday.expanded { - max-height: none; - overflow: visible; + overflow: auto; } .weekly-someday-bar { @@ -2657,7 +2656,7 @@ h3 { /* Resize handle for draggable section borders */ .resize-handle { - height: 12px; + height: 7px; cursor: ns-resize; display: flex; align-items: center; @@ -2666,28 +2665,29 @@ h3 { touch-action: none; position: relative; z-index: 10; - background: var(--weekly-border, #e5e7eb); + border-top: 1px solid var(--weekly-border, #e5e7eb); + border-bottom: 1px solid var(--weekly-border, #e5e7eb); } .resize-handle:hover { - background: var(--weekly-accent, #3b82f6); - opacity: 0.5; + background: rgba(59, 130, 246, 0.08); + border-color: var(--weekly-accent, #3b82f6); } .resize-handle:active { - background: var(--weekly-accent, #3b82f6); - opacity: 0.7; + background: rgba(59, 130, 246, 0.12); + border-color: var(--weekly-accent, #3b82f6); +} +.resize-handle-bar { + width: 32px; + height: 2px; + border-radius: 1px; + background: var(--weekly-border, #e5e7eb); + opacity: 0.6; + transition: background 0.15s, opacity 0.15s; } .resize-handle:hover .resize-handle-bar, .resize-handle:active .resize-handle-bar { - background: white; - opacity: 0.9; -} -.resize-handle-bar { - width: 40px; - height: 3px; - border-radius: 2px; - background: var(--weekly-text-light, #999); + background: var(--weekly-accent, #3b82f6); opacity: 0.5; - transition: background 0.15s, opacity 0.15s; } .all-day-events-header { diff --git a/src/components/WeeklyView.tsx b/src/components/WeeklyView.tsx index 71537d0..c24b0fa 100644 --- a/src/components/WeeklyView.tsx +++ b/src/components/WeeklyView.tsx @@ -5218,7 +5218,7 @@ export default function WeeklyView() { <>
{showTimeGrid && ( @@ -7093,7 +7093,7 @@ export default function WeeklyView() {
{/* Someday tabs bar */}