@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.

Move "webkit-text-blah" to "<body>" to make it work

Summary: Ref T2009. This doesn't work when it's not on <body>, at least in modern iOS.

Test Plan:
Before:

{F330031}

After:

{F330033}

Reviewers: btrahan, chad

Reviewed By: chad

Subscribers: epriestley

Maniphest Tasks: T2009

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

+9 -11
+3 -3
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'core.pkg.css' => '1a530a25', 10 + 'core.pkg.css' => 'a9770fbb', 11 11 'core.pkg.js' => 'a77025a1', 12 12 'darkconsole.pkg.js' => '8ab24e01', 13 13 'differential.pkg.css' => 'd8866ed8', ··· 104 104 'rsrc/css/application/slowvote/slowvote.css' => '266df6a1', 105 105 'rsrc/css/application/tokens/tokens.css' => '3d0f239e', 106 106 'rsrc/css/application/uiexample/example.css' => '528b19de', 107 - 'rsrc/css/core/core.css' => 'c8c5ecd2', 107 + 'rsrc/css/core/core.css' => '86bfbe8c', 108 108 'rsrc/css/core/remarkup.css' => '2dbff225', 109 109 'rsrc/css/core/syntax.css' => '56c1ba38', 110 110 'rsrc/css/core/z-index.css' => '9ec70c03', ··· 714 714 'phabricator-busy' => '6453c869', 715 715 'phabricator-chatlog-css' => '852140ff', 716 716 'phabricator-content-source-view-css' => '4b8b05d4', 717 - 'phabricator-core-css' => 'c8c5ecd2', 717 + 'phabricator-core-css' => '86bfbe8c', 718 718 'phabricator-countdown-css' => '86b7b0a0', 719 719 'phabricator-dashboard-css' => '17937d22', 720 720 'phabricator-drag-and-drop-file-upload' => '8c49f386',
+6 -8
webroot/rsrc/css/core/core.css
··· 2 2 * @provides phabricator-core-css 3 3 */ 4 4 5 - .device-phone { 6 - /* By default, the iPhone zooms all text on the page by some percentage when 7 - you rotate from portrait mode to landscape mode. Disable this, since it 8 - breaks lots of things and prevents you from using landscape to see more 9 - columns in source code views. */ 10 - -webkit-text-size-adjust: none; 11 - } 12 - 13 5 body, div, dl, dt, dd, ul, ol, li, 14 6 h1, h2, h3, h4, h5, h6, 15 7 pre, form, fieldset, ··· 56 48 text-align: left; 57 49 unicode-bidi: embed; 58 50 background: #ebecee; 51 + 52 + /* By default, the iPhone zooms all text on the page by some percentage when 53 + you rotate from portrait mode to landscape mode. Disable this, since it 54 + breaks lots of things and prevents you from using landscape to see more 55 + columns in source code views. */ 56 + -webkit-text-size-adjust: none; 59 57 } 60 58 61 59 textarea {