Area: mobieusLearn (audit p8) · Surface: /admin/learn/courses/new and /admin/learn/courses/{id}/edit (shared _form.php) · Dimension: mobile · Severity: minor
On a phone the 3-up credit fieldset (Hours, Kind, Expires-after-months) squeezes three number/text inputs into ~110px each, making them cramped and hard to tap/read. The 2-up Language/Estimated-minutes row has the same issue at smaller scale. Other learn forms that use fieldsets face the same fixed-column problem.
Evidence
platform/templates/learn/admin/courses/_form.php:94 `<div style="display:grid; grid-template-columns: 1fr 1fr; gap:0.9rem;">` (Language + Estimated minutes) and :107 `<fieldset style="display:grid; grid-template-columns:1fr 1fr 1fr; gap:0.7rem;...">` (Hours / Kind / Expires-after credit fields), with the URL field spanning all 3 (:134 `grid-column: 1 / span 3`). These are inline-style fixed column counts with no `@media` query and no `minmax`/`auto-fit`. The admin layout body has no .mobile-v2 class (layouts/admin.php:56), so the global `.mobile-v2 .form-grid{flex-direction:column}` rule (mobile-v2.css:2750) does not apply.
Suggested fix. Convert the fixed `grid-template-columns: 1fr 1fr 1fr` / `1fr 1fr` to `repeat(auto-fit, minmax(160px, 1fr))`, or add a `@media (max-width:600px)` block that collapses these grids to a single column. The analytics KPI grid already uses the auto-fit pattern (analytics.php:28) and is a good template.
Filed by the automated tenant-app audit and adversarially evidence-verified. Status: verified. Open — not yet actioned.
Patrick Bass
@mobieus