From ec3ad7d384cd578f912023f7b8f1b087eec0a550 Mon Sep 17 00:00:00 2001 From: Olivier Date: Mon, 7 Sep 2026 20:18:30 -0400 Subject: [PATCH] style: transparent nav buttons, tighter calendar breadcrumb Drops the default button background/shadow from the header 'more', calendar nav and Today buttons, and tightens breadcrumb spacing so Q/month/year read as inline links rather than buttons. --- styles.css | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/styles.css b/styles.css index 988148e..dbd33b6 100644 --- a/styles.css +++ b/styles.css @@ -189,6 +189,7 @@ .waypoint-calendar .waypoint-day.today.has-note::after { background-color: var(--text-accent); } + /* ── Recent Files ── */ .waypoint-recent-filter { @@ -309,6 +310,27 @@ display: none; } +[data-type="waypoint-view"] button.waypoint-header-more, +button.waypoint-calendar-nav-btn, +button.waypoint-calendar-today-btn { + background-color: transparent; + box-shadow: none; + + +} + +.waypoint-calendar-breadcrumb { + gap: 4px; + + .waypoint-clickable { + padding: 0px; + + &:hover { + background-color: transparent; + } + } +} + /* ── Drag-and-drop ── */ .waypoint-bm-dragging { @@ -389,4 +411,4 @@ background: var(--background-modifier-active-hover); border-bottom: 2px solid var(--text-accent); margin-bottom: -9px; -} +} \ No newline at end of file