feat(styles): persistent today indicator on calendar grid (ENH-01, #55)

- Add inset accent ring on .memochron-day.today via box-shadow: inset 0 0 0 2px var(--interactive-accent)
- Inset form paints inside the cell border, on top of any background including the .selected accent fill
- Today and selected states now show simultaneously per ROADMAP success criterion #1
- Placed immediately before the existing .today .memochron-day-header rule; no other rules changed
- Zero TypeScript changes: createDayElement already applies .today on both sidebar and embedded surfaces
This commit is contained in:
formax68 2026-05-12 16:42:36 +03:00
parent 488ee03d33
commit e160cef092

View file

@ -158,6 +158,11 @@
/* Slight contrast on accent background */
}
/* ENH-01: persistent today indicator — inset ring survives the .selected accent background */
.memochron-day.today {
box-shadow: inset 0 0 0 2px var(--interactive-accent);
}
.memochron-day.today .memochron-day-header {
color: var(--interactive-accent);
font-weight: 700;