Ignore:
Timestamp:
06/20/2026 07:06:59 AM (3 months ago)
Author:
roboburr <roboburr@…>
Branches:
main
Children:
d7b5a6c
Parents:
34b126b
Message:

feat(nav): Agenda link in the view-switcher + "shows" → "events"

Left of the Timeline/Grid bar there is now a 📅 Agenda link to the agenda
page (/shows), visible for premium instances. Visible labels on the agenda
and in Admin renamed from "show(s)" to "event(s)" (routes stay /shows).

Co-Authored-By: Claude <noreply@…>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/views/partials/shared-styles.ejs

    r34b126b rcf7c2d9  
    3737.view-switch-btn:hover { color: var(--ink); }
    3838.view-switch-btn[aria-selected="true"] { background: var(--paper); color: var(--ink); box-shadow: 0 1px 2px rgba(0,0,0,.06); }
     39
     40/* Agenda-link (evenementen) links in de switcher-balk. */
     41.vs-agenda {
     42  display: inline-flex; align-items: center; gap: 0.4rem;
     43  margin-right: auto;            /* naar links; Tijdlijn/Grid blijven rechts */
     44  padding: 0.35rem 0.85rem;
     45  border: 1px solid var(--rule); border-radius: 999px;
     46  background: var(--paper-2); color: var(--ink-muted, var(--ink-soft));
     47  text-decoration: none; font-size: 0.85rem; font-weight: 600;
     48  transition: background 120ms, color 120ms, border-color 120ms;
     49}
     50.vs-agenda:hover { color: var(--ink); border-color: var(--accent); }
     51.vs-agenda svg { opacity: .85; }
     52@media (max-width: 560px) { .vs-agenda { margin-right: 0; } }
    3953
    4054.grid-cols-picker {
Note: See TracChangeset for help on using the changeset viewer.