Remove today and selected day highlighting in print preview

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 <noreply@anthropic.com>
This commit is contained in:
Connor Johnstone
2025-11-07 16:35:16 -05:00
parent 1701a95183
commit 2b1d0f38f5

View File

@@ -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;
}