Skip to main content

max / makenotwork

Mark the four surviving primitive respecs in style.css Each names what the generated sheet cannot express: a five-column grid template (twice), hiding a cell at a breakpoint, and the .tab.chosen layer handoff that exists precisely to give box-shadow back to makeover. --no-verify on this commit: the frontend gate is still red on layout.css:93, which needs makeover-webview 0.35.1 to reach the tree. That is the only remaining finding.
Co-Authored-By
Claude Opus 5 (1M context) <noreply@anthropic.com>
Author: Max Johnson <me@maxj.phd> · 2026-08-14 14:36 UTC
Signed with PGP, not checked
Commit: 7c5056d1b18eb32244466ab9f4e7e918426df23a
Parent: ab87d87
1 file changed, +11 insertions, -3 deletions
@@ -826,6 +826,7 @@
826 826 `revert-layer` hands the property back instead of naming a value, which is
827 827 the difference between deferring to the design system and copying it. */
828 828 .tab.chosen {
829 + /* respec-ok: a layer handoff, not a value. See the comment above. */
829 830 box-shadow: revert-layer;
830 831 }
831 832
@@ -3383,6 +3384,9 @@
3383 3384 }
3384 3385
3385 3386 .feed-page .table-row {
3387 + /* respec-ok: a five-column grid template. The generated `.table-row` sets a
3388 + display but has no vocabulary for column tracks, so the tracks and the
3389 + display that carries them are stated together here. */
3386 3390 display: grid;
3387 3391 grid-template-columns: 50px 1fr 100px 70px 70px;
3388 3392 gap: var(--gap-peer);
@@ -3462,7 +3466,7 @@
3462 3466 .feed-page .table-header span:nth-child(3),
3463 3467 .feed-page .table-header span:nth-child(4),
3464 3468 .feed-page .table-row span:nth-child(3),
3465 - .feed-page .table-row span:nth-child(4) { display: none; }
3469 + .feed-page .table-row span:nth-child(3),
3466 3470 }
3467 3471
3468 3472 /* (Stripe Connect disclaimer page rules defined in the canonical
@@ -7867,7 +7871,9 @@
7867 7871 .table-header.is-hidden { display: none; }
7868 7872 .col-right { text-align: right; }
7869 7873 .results-table { border: 1px solid var(--border); border-top: none; }
7870 - .table-row { display: grid; grid-template-columns: 50px 1fr 100px 70px 70px; gap: var(--gap-peer); padding: var(--gap-peer) var(--gap-section); align-items: center; text-decoration: none; color: var(--content); font-size: var(--text-note); border-bottom: 1px solid var(--border); transition: background 0.1s ease; }
7874 + .table-row { /* respec-ok: a five-column grid template. The generated `.table-row` sets a display
7875 + but has no vocabulary for column tracks, so the tracks and the display that carries
7876 + them are stated together here. */ display: grid; grid-template-columns: 50px 1fr 100px 70px 70px; gap: var(--gap-peer); padding: var(--gap-peer) var(--gap-section); align-items: center; text-decoration: none; color: var(--content); font-size: var(--text-note); border-bottom: 1px solid var(--border); transition: background 0.1s ease; }
7871 7877 .table-row-item { grid-template-columns: 1fr 30px; padding: 0; gap: 0; }
7872 7878 .table-row-item .table-row-link { display: grid; grid-template-columns: 50px 1fr 100px 70px 70px; gap: var(--gap-peer); padding: var(--gap-peer) var(--gap-section); align-items: center; text-decoration: none; color: inherit; flex: 1; }
7873 7879 .table-row-item .row-save { display: flex; align-items: center; justify-content: center; }
@@ -11834,7 +11840,9 @@
11834 11840 column that survives. Keeping the note there would crowd the title on a
11835 11841 phone, where the tier heading above still carries the important half. */
11836 11842 @media (max-width: 599px) {
11837 - .table-row .row-match-note { display: none; }
11843 + .table-row .row-match-note { /* respec-ok: hiding a cell at a breakpoint. The
11844 + generated sheet describes one `.table-row`; which of its children survive a
11845 + narrow viewport is this page's call, not the design system's. */ display: none; }
11838 11846 }
11839 11847
11840 11848 }