ITADN

"Time between check" inputs are laid out confusingly

#4128OpenMattwmaster58 创建于 2026-05-09
triage
M
Mattwmaster58commented
This is super confusing to read, and at first glance it looks to me this says 6 minutes. But it's actually stating 6h! This is not obvious unless you look away from the inputs that are populated themselves and look at the ends to see what the pairing is and then. This is extremely unintuitive. Reversing the pairing would make this read far easier. <img width="1274" height="153" alt="Image" src="https://github.com/user-attachments/assets/d81711af-87c7-40d5-a366-74da5431cc64" /> For something quick and dirty, I made some JS that injects CSS to fix the issue: ```js (function() { const s = document.createElement('style'); s.textContent = ` .time-check-widget tbody { display: flex; flex-wrap: wrap; } .time-check-widget tr { display: inline-flex; flex-direction: row-reverse; align-items: baseline; } .time-check-widget tr th { text-align: left; } `; document.head.appendChild(s); })(); ``` <img width="1239" height="196" alt="Image" src="https://github.com/user-attachments/assets/d6ee06f8-7ab1-4a60-867c-e9ee49e9eb22" />
0 条评论