Commit 3eb0c49d8f
3eb0c49d8f620da4362786dde1a51a8392416cf8
parent: c354c7dcad
Verified · cmc ci/build: success ci/test: success
cmc <hello@cleberg.net> · 2026-09-19 00:48 UTC
web: the dashboard's activity feed stacks after the queues on a phone
Ref #222
internal/web/static/style.css
+3
| @@ -1452,7 +1452,10 @@ svg.icon { vertical-align: -0.125em; } |
| 1452 | 1452 | /* ---- breakpoints ---- */ |
| 1453 | 1453 | @media (max-width: 62rem) { |
| 1454 | 1454 | .withaside { grid-template-columns: 1fr; } |
| 1455 | /* checks and reviewers before a long thread; the dashboard's aside is |
| 1456 | the activity feed, which reads after the queues */ |
| 1455 | 1457 | .withaside .aside { order: -1; } |
| 1458 | .withaside.feedlast .aside { order: 0; } |
| 1456 | 1459 | } |
| 1457 | 1460 | |
| 1458 | 1461 | @media (max-width: 52rem) { |
internal/web/templates/dashboard.html
+1 −1
| @@ -19,7 +19,7 @@ |
| 19 | 19 | <h1>Dashboard</h1> |
| 20 | 20 | {{with .Rail.Pinned}}<p class="pinned" aria-label="Pinned repositories">{{range .}}<a class="chip" href="/{{.Owner}}/{{.Name}}"><span class="owner">{{.Owner}}/</span>{{.Name}}</a> {{end}}</p>{{end}} |
| 21 | 21 | |
| 22 | | <div class="withaside"> |
| 22 | <div class="withaside feedlast"> |
| 23 | 23 | <div class="mainside"> |
| 24 | 24 | |
| 25 | 25 | {{if .Reviews}}{{template "queue" dict "Title" "Waiting on your review" "Items" .Reviews "Kind" "mrs" "Empty" "Nothing waiting on you"}}{{end}} |