Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 13 additions & 4 deletions src/components/site/WtdCalendar.astro
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const days: CalendarDay[] = [
dateShort: 'Sat, May 2',
subtitle: 'Pre-Conference',
events: [
{ id: 'sat-lunch', title: 'Lunch at Nob Hill Food Carts', startHour: 12.5, endHour: 13.67, time: '12:30 – 1:40 PM', type: 'social' },
{ id: 'sat-lunch', title: 'Lunch at Nob Hill Food Carts', startHour: 12.5, endHour: 13.67, time: '12:30 – 1:40 PM', type: 'social', link: 'https://www.writethedocs.org/conf/portland/2026/hike/' },
{ id: 'sat-hike', title: 'Conference Hike', startHour: 14, endHour: 17, time: '2 – 5 PM', type: 'social', link: 'https://www.writethedocs.org/conf/portland/2026/hike/', promptlessFaces: true },
],
},
Expand All @@ -64,8 +64,8 @@ const days: CalendarDay[] = [
events: [
{ id: 'mon-talks', title: 'Conference Talks', startHour: 9, endHour: 17, time: '9 AM – 5 PM', type: 'talks', link: 'https://www.writethedocs.org/conf/portland/2026/schedule/' },
{ id: 'mon-unconf', title: 'Unconference', startHour: 9, endHour: 17, time: '9 AM – 5 PM', type: 'unconference', link: 'https://www.writethedocs.org/conf/portland/2026/unconference/' },
{ id: 'mon-pl-dinner', title: 'Promptless Dinner', startHour: 17.5, endHour: 19, time: '5:30 – 7 PM', type: 'promptless', promptlessFaces: true, cta: { label: 'RSVP', href: 'https://luma.com/tpl91l3a' } },
{ id: 'mon-social', title: 'Monday Night Social', startHour: 19, endHour: 21, time: '7 – 9 PM', type: 'social' },
{ id: 'mon-pl-dinner', title: 'Promptless Dinner', startHour: 17.5, endHour: 19, time: '5:30 – 7 PM', type: 'promptless', link: 'https://maps.app.goo.gl/usiEh2wMt7BDS7cU7', address: 'Jupiter NEXT (downstairs)', cta: { label: 'RSVP', href: 'https://luma.com/tpl91l3a' } },
{ id: 'mon-social', title: 'Monday Night Social', startHour: 19, endHour: 21, time: '7 – 9 PM', type: 'social', link: 'https://maps.app.goo.gl/usiEh2wMt7BDS7cU7', address: 'Jupiter NEXT (upstairs)' },
],
},
{
Expand Down Expand Up @@ -445,7 +445,7 @@ for (let h = RANGE_START; h <= RANGE_END; h += 2) {
line-height: 1.25;
}

.wtd-cal-block:has(.wtd-cal-block-link):hover .wtd-cal-block-title {
.wtd-cal-block:has(.wtd-cal-block-link):hover:not(:has(.wtd-cal-cta:hover)) .wtd-cal-block-title {
text-decoration: underline;
text-underline-offset: 2px;
}
Expand All @@ -461,6 +461,15 @@ for (let h = RANGE_START; h <= RANGE_END; h += 2) {
z-index: 2;
}

.wtd-cal-bottom:not(:has(.wtd-cal-faces)) {
position: absolute;
bottom: 0.35rem;
right: 0.45rem;
left: 0.45rem;
margin-top: 0;
padding-top: 0;
}

/* ── CTA button ── */
.wtd-cal-cta,
.wtd-cal-cta:visited,
Expand Down
Loading