Fix theme swatches and calendar nav, add collapsible card sections

Claude-Session: https://claude.ai/code/session_014ADhvRXuiTvrXSbConxUey
This commit is contained in:
2026-08-19 14:34:46 -04:00
parent c45b71b74a
commit ace9f73af6
4 changed files with 102 additions and 27 deletions
+3 -3
View File
@@ -395,7 +395,7 @@ function CalendarSection() {
tooltipText="Scroll to change month"
/>
<button class="cc-calendar-nav" tooltipText="Previous month" onClicked={() => shiftMonth(-1)}>
<label label={""} />
<label label={"<"} />
</button>
<button
class="cc-calendar-nav"
@@ -403,10 +403,10 @@ function CalendarSection() {
visible={monthOffset.as((offset) => offset !== 0)}
onClicked={resetMonth}
>
<label label={""} />
<label label={"Today"} />
</button>
<button class="cc-calendar-nav" tooltipText="Next month" onClicked={() => shiftMonth(1)}>
<label label={""} />
<label label={">"} />
</button>
</box>
<label class="cc-calendar-grid" label={monthGrid} halign={Gtk.Align.CENTER} />