From 1a9a2dd5855bded92f4917800ef87b88f43fdbfb Mon Sep 17 00:00:00 2001 From: mARTin Date: Wed, 18 Mar 2026 00:20:48 +0100 Subject: [PATCH] fix: restore time column in simple view and refine TeuxDeux styling - Remove display:none on time column so it shows again - Remove all time-slot grid lines for a cleaner look - Remove vertical column borders (no right borders) - Bold uppercase headers with subtle bottom border - Cleaner task items with more padding v1.47.3 Co-Authored-By: Claude Opus 4.6 --- package.json | 2 +- src/app/globals.css | 27 +++++++++++++-------------- 2 files changed, 14 insertions(+), 15 deletions(-) diff --git a/package.json b/package.json index 229dc2f..efc3401 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "my-weekly-todo-list", - "version": "1.47.2", + "version": "1.47.3", "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 1ce0215..6ecc2ef 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -3836,17 +3836,19 @@ h3 { /* Simple View (TeuxDeux Style) */ .simple-view .weekly-day-column { border-left: 0px !important; - border-right: 1px solid #e8e8e8 !important; + border-right: none !important; margin: 0 !important; overflow-x: hidden !important; word-wrap: break-word; } -.simple-view .weekly-day-column:last-child { - border-right: none !important; -} .simple-view .time-column { border-right: 0px !important; - display: none !important; +} +.simple-view .time-slot { + border-bottom: none; +} +.simple-view .time-slot.hour-start { + border-top: none; } .simple-view .time-slot-event { left: 0 !important; @@ -3855,24 +3857,21 @@ h3 { .simple-view .weekly-day-header { text-transform: uppercase; letter-spacing: 0.05em; - font-weight: 700; - font-size: 0.75rem; - padding: 12px 8px 8px; - border-bottom: 2px solid #222; + font-weight: 800; + padding: 16px 8px 10px; + border-bottom: 1px solid #ddd; } .dark-mode .simple-view .weekly-day-header { - border-bottom: 2px solid #666; -} -.dark-mode .simple-view .weekly-day-column { - border-right: 1px solid #333 !important; + border-bottom: 1px solid #444; } .simple-view .task-item { border: none !important; border-bottom: 1px solid #eee !important; border-radius: 0 !important; - padding: 8px 4px !important; + padding: 10px 8px !important; background: transparent !important; box-shadow: none !important; + font-size: 0.9rem; } .dark-mode .simple-view .task-item { border-bottom: 1px solid #333 !important;