max / makenotwork
- Co-Authored-By
- Claude Opus 5 (1M context) <noreply@anthropic.com>
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 | } |