Zoom: 50%–150% in 10% steps, default 100%

https://claude.ai/code/session_01MkM7p8Us3L8YAfLKGA13NS
This commit is contained in:
Claude 2026-06-08 16:26:03 +00:00
parent 24909e6f45
commit f47f524a84
No known key found for this signature in database

View file

@ -638,9 +638,9 @@ function updateInvMeta() {
} }
// ── Font-size accessibility ──────────────────────────────────────────────────── // ── Font-size accessibility ────────────────────────────────────────────────────
const ZOOMS = [0.8, 0.85, 0.9, 0.95, 1.0, 1.1, 1.2, 1.3]; const ZOOMS = [0.5,0.6,0.7,0.8,0.9,1.0,1.1,1.2,1.3,1.4,1.5];
const ZOOM_LABELS = ["80%", "85%", "90%", "95%", "100%", "110%", "120%", "130%"]; const ZOOM_LABELS = ["50%","60%","70%","80%","90%","100%","110%","120%","130%","140%","150%"];
let zoomIdx = +(localStorage.getItem("zoomIdx") ?? 4); let zoomIdx = +(localStorage.getItem("zoomIdx") ?? 5);
function applyZoom() { function applyZoom() {
const fr = document.getElementById("form-root"); const fr = document.getElementById("form-root");