ux(cards): single chevron expand/collapse + Summarize toggle; header with favicon/domain

This commit is contained in:
Thomas Cravey 2025-08-17 18:02:59 -05:00
parent 6b213f085e
commit 2680abcf1f
2 changed files with 36 additions and 15 deletions

View file

@ -19,3 +19,9 @@ footer { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000; text-alig
@media (max-width: 900px) { .dash { grid-template-columns: 1fr; } .dash aside.sidebar { display:none; } }
/* Summarizer output wrapping */
#out { white-space: pre-wrap; word-break: break-word; overflow-wrap: anywhere; }
/* Cards */
.card { margin:.35rem 0; padding:.5rem; border:1px solid var(--muted-border-color); border-radius:.5rem; background: var(--pico-card-background-color, rgba(0,0,0,0.02)); }
.card .card-head { display:flex; align-items:center; justify-content:space-between; gap:.5rem; cursor:pointer; }
.card .card-actions { display:flex; align-items:center; gap:.4rem; }
.card .summary-title { font-weight:600; margin-top:.25rem; opacity:.85; }