mirror of
https://github.com/formax68/memoChron.git
synced 2026-07-22 12:30:31 +00:00
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:
parent
488ee03d33
commit
e160cef092
1 changed files with 5 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue