PR Checks / Frontend Typecheck + Tests (pull_request) Successful in 1m2s
PR Checks / Backend Smoke (pull_request) Successful in 7s
PR Checks / Build Backend (no push) (pull_request) Successful in 11s
PR Checks / Build Frontend (no push) (pull_request) Successful in 41s
PR Checks / Build Pipeline (no push) (pull_request) Successful in 10s
PR Checks / AI Code Review (Claude) (pull_request) Successful in 2m57s
The grid sections (At a glance, Ofsted, Getting a place, Who goes there) collapsed generically on mobile — grey label pills, full names wrapping to 3 lines, no dots — making the page ~2x the mockup's height and 'significantly different' from the mobile design. Each measure is now wrapped in a <Measure> that is display:contents on desktop (so the label + cells still flow into the shared aligned grid, unchanged) and a white card on mobile with compact [dot][short name] [value] rows — matching the mobile mockup. The sticky school bar becomes scrollable short-name pills on mobile too. Adds a shortName() util. Desktop layout is unchanged (display:contents dissolves the wrapper). Validated the card mechanism and real content shapes (report-card cell, badges, %+chip rows) via static previews at both widths. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_0146VHeLAWjDVE2B5uU67jCB
262 lines
4.7 KiB
CSS
262 lines
4.7 KiB
CSS
/* Shared layout for the compare screen's measure-first sections.
|
||
Mobile base: each row-label becomes a measure header and each school cell
|
||
stacks under it (colour-coded via the cell's ::before school tag).
|
||
Desktop (≥761px): the mockups' grid — 200px row-label column + one column
|
||
per school (2–4 columns supported via --school-count). */
|
||
|
||
.section {
|
||
margin-top: 3rem;
|
||
}
|
||
|
||
.sectionTitle {
|
||
font-family: var(--font-playfair), 'Playfair Display', Georgia, serif;
|
||
font-size: 1.45rem;
|
||
font-weight: 700;
|
||
margin: 0;
|
||
padding-left: 0.75rem;
|
||
border-left: 3px solid var(--accent-coral-dark);
|
||
}
|
||
|
||
.how {
|
||
font-size: 0.85rem;
|
||
color: var(--text-muted);
|
||
margin: 0.35rem 0 0 0.95rem;
|
||
max-width: 70ch;
|
||
}
|
||
|
||
.grid {
|
||
display: grid;
|
||
grid-template-columns: 1fr;
|
||
gap: 0;
|
||
margin-top: 1.25rem;
|
||
}
|
||
|
||
/* Mobile base: each measure is a card; each cell is a school row led by a
|
||
colour dot + short name. `display: contents` at ≥761px dissolves the card
|
||
back into the shared grid. */
|
||
.measure {
|
||
background: var(--bg-card);
|
||
border: 1px solid var(--border-light);
|
||
border-radius: 12px;
|
||
box-shadow: var(--shadow-soft);
|
||
padding: 0.75rem 0.85rem;
|
||
margin-bottom: 0.6rem;
|
||
}
|
||
|
||
.rowLabel {
|
||
font-size: 0.85rem;
|
||
font-weight: 600;
|
||
color: var(--text-primary);
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 0.35rem;
|
||
padding: 0 0 0.1rem;
|
||
}
|
||
|
||
.cell {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 0.5rem;
|
||
flex-wrap: wrap;
|
||
padding: 0.45rem 0;
|
||
border-top: 1px solid var(--border-light);
|
||
margin-top: 0.45rem;
|
||
font-size: 0.95rem;
|
||
}
|
||
|
||
.cellTag {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 0.4rem;
|
||
width: 5rem;
|
||
flex: none;
|
||
font-size: 0.8rem;
|
||
font-weight: 600;
|
||
color: var(--sc, var(--text-secondary));
|
||
}
|
||
|
||
.cellDot {
|
||
width: 9px;
|
||
height: 9px;
|
||
border-radius: 50%;
|
||
background: var(--dot, var(--text-muted));
|
||
flex: none;
|
||
}
|
||
|
||
.big {
|
||
font-size: 1.05rem;
|
||
font-weight: 700;
|
||
font-variant-numeric: tabular-nums;
|
||
}
|
||
|
||
.small {
|
||
display: block;
|
||
flex-basis: 100%;
|
||
padding-left: 5.5rem;
|
||
font-size: 0.8rem;
|
||
color: var(--text-muted);
|
||
margin-top: -0.05rem;
|
||
}
|
||
|
||
.chip {
|
||
display: inline-block;
|
||
font-size: 0.75rem;
|
||
font-weight: 600;
|
||
border-radius: 999px;
|
||
padding: 0.15rem 0.6rem;
|
||
white-space: nowrap;
|
||
}
|
||
|
||
.chipGood {
|
||
background: rgba(45, 125, 125, 0.14);
|
||
color: var(--accent-teal);
|
||
}
|
||
|
||
.chipWarn {
|
||
background: var(--accent-gold-bg);
|
||
color: var(--accent-gold-text);
|
||
}
|
||
|
||
.chipBad {
|
||
background: var(--accent-coral-bg);
|
||
color: var(--accent-coral-dark);
|
||
}
|
||
|
||
.chipNeutral {
|
||
background: var(--bg-secondary);
|
||
color: var(--text-secondary);
|
||
}
|
||
|
||
.help {
|
||
display: inline-flex;
|
||
width: 15px;
|
||
height: 15px;
|
||
border-radius: 50%;
|
||
border: 1px solid var(--text-muted);
|
||
color: var(--text-muted);
|
||
font-size: 0.65rem;
|
||
align-items: center;
|
||
justify-content: center;
|
||
cursor: help;
|
||
flex: none;
|
||
}
|
||
|
||
.badge {
|
||
display: inline-block;
|
||
font-weight: 700;
|
||
border-radius: 6px;
|
||
padding: 0.25rem 0.7rem;
|
||
font-size: 0.9rem;
|
||
}
|
||
|
||
.badgeGood {
|
||
background: rgba(45, 125, 125, 0.14);
|
||
color: var(--accent-teal);
|
||
}
|
||
|
||
.badgeWarn {
|
||
background: var(--accent-gold-bg);
|
||
color: var(--accent-gold-text);
|
||
}
|
||
|
||
.badgeBad {
|
||
background: var(--accent-coral-bg);
|
||
color: var(--accent-coral-dark);
|
||
}
|
||
|
||
.rcList {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 0.3rem;
|
||
margin-top: 0.2rem;
|
||
}
|
||
|
||
.rcRow {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
gap: 0.5rem;
|
||
font-size: 0.8rem;
|
||
}
|
||
|
||
.rcArea {
|
||
color: var(--text-secondary);
|
||
}
|
||
|
||
.chipStack {
|
||
display: flex;
|
||
gap: 0.3rem;
|
||
flex-wrap: wrap;
|
||
margin-top: 0.3rem;
|
||
}
|
||
|
||
.barMini {
|
||
display: block;
|
||
height: 8px;
|
||
border-radius: 4px;
|
||
background: var(--bg-secondary);
|
||
overflow: hidden;
|
||
margin-top: 0.3rem;
|
||
max-width: 140px;
|
||
}
|
||
|
||
.barMini > i {
|
||
display: block;
|
||
height: 100%;
|
||
border-radius: 4px;
|
||
}
|
||
|
||
.card {
|
||
background: var(--bg-card);
|
||
border: 1px solid var(--border-light);
|
||
border-radius: 16px;
|
||
box-shadow: var(--shadow-soft);
|
||
padding: 1.25rem 1.5rem;
|
||
margin-top: 1rem;
|
||
}
|
||
|
||
.link {
|
||
color: var(--accent-coral-dark);
|
||
}
|
||
|
||
@media (min-width: 761px) {
|
||
.grid {
|
||
grid-template-columns: 200px repeat(var(--school-count, 3), 1fr);
|
||
gap: 0 0.75rem;
|
||
}
|
||
|
||
/* Dissolve the per-measure card so its label + cells become grid items of
|
||
.grid, keeping columns aligned across every measure. */
|
||
.measure {
|
||
display: contents;
|
||
}
|
||
|
||
.cellTag {
|
||
display: none;
|
||
}
|
||
|
||
.rowLabel {
|
||
color: var(--text-secondary);
|
||
padding: 0.85rem 0.5rem 0.85rem 0;
|
||
border-bottom: 1px solid var(--border-light);
|
||
}
|
||
|
||
.cell {
|
||
display: block;
|
||
padding: 0.85rem 0.25rem;
|
||
border-top: none;
|
||
border-bottom: 1px solid var(--border-light);
|
||
margin-top: 0;
|
||
}
|
||
|
||
.big {
|
||
font-size: 1.35rem;
|
||
}
|
||
|
||
.small {
|
||
flex-basis: auto;
|
||
padding-left: 0;
|
||
margin-top: 0.1rem;
|
||
}
|
||
}
|