From 2b1d0f38f5cc6faaf5f7c205348aa1f919e64961 Mon Sep 17 00:00:00 2001 From: Connor Johnstone Date: Fri, 7 Nov 2025 16:35:16 -0500 Subject: [PATCH] Remove today and selected day highlighting in print preview MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Print output should have clean, uniform styling without interactive visual indicators. This change removes the special highlighting for: - Today's date (blue background and border) - Selected date (green background, border, and box-shadow) Both dates now appear with standard calendar day styling in print, maintaining a professional printed appearance. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- frontend/print-preview.css | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/frontend/print-preview.css b/frontend/print-preview.css index 768c6ed..059f653 100644 --- a/frontend/print-preview.css +++ b/frontend/print-preview.css @@ -233,7 +233,20 @@ .print-preview-paper .week-day-header.today, .print-preview-paper .week-day-column.today { background-color: transparent !important; - border-color: var(--border-color, #ddd) !important; + border: 1px solid var(--calendar-border, #f0f0f0) !important; + color: var(--text-color, #333) !important; + font-weight: normal !important; + box-shadow: none !important; +} + +/* Remove selected day highlighting in preview */ +.print-preview-paper .calendar-day.selected { + background-color: transparent !important; + border: 1px solid var(--calendar-border, #f0f0f0) !important; + box-shadow: none !important; +} + +.print-preview-paper .calendar-day.selected .day-number { color: var(--text-color, #333) !important; font-weight: normal !important; }