@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Disable auto-zoom on mobile form UIs

Summary: Chrome and Safari both zoom in on form (input, select, textarea) when it thinks the text is too small (less than 16px... which is huge). This turns user-scalable off. The only drawback is double-tap to zoom will be disabled as well, but given we already responsively design, I don't think thats an issue.

Test Plan: iOS simulator on secure and local test instances. Click on an input, no longer see UI zoom in.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Differential Revision: https://secure.phabricator.com/D17714

+1 -1
+1 -1
src/view/page/PhabricatorBarePageView.php
··· 72 72 'name' => 'viewport', 73 73 'content' => 'width=device-width, '. 74 74 'initial-scale=1, '. 75 - 'maximum-scale=1', 75 + 'user-scalable=no', 76 76 )); 77 77 } 78 78