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

Restrict aprhont-form-width to certain input types

Summary: Fixes T11491, I believe these are the only two that need to be specified.

Test Plan: Checked Create pages for diffs, tasks, projects, events, blogs, login, etc. Mobile/Desktop.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T11491

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

+5 -4
+3 -3
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'core.pkg.css' => '340c5b75', 10 + 'core.pkg.css' => '3cea8606', 11 11 'core.pkg.js' => 'b562c3db', 12 12 'darkconsole.pkg.js' => 'e7393ebb', 13 13 'differential.pkg.css' => '3fb7f532', ··· 135 135 'rsrc/css/phui/phui-document.css' => 'c32e8dec', 136 136 'rsrc/css/phui/phui-feed-story.css' => 'aa49845d', 137 137 'rsrc/css/phui/phui-fontkit.css' => '9cda225e', 138 - 'rsrc/css/phui/phui-form-view.css' => 'fab0a10f', 138 + 'rsrc/css/phui/phui-form-view.css' => '76b4a46c', 139 139 'rsrc/css/phui/phui-form.css' => 'aac1d51d', 140 140 'rsrc/css/phui/phui-head-thing.css' => 'fd311e5f', 141 141 'rsrc/css/phui/phui-header-view.css' => '06385974', ··· 843 843 'phui-font-icon-base-css' => '6449bce8', 844 844 'phui-fontkit-css' => '9cda225e', 845 845 'phui-form-css' => 'aac1d51d', 846 - 'phui-form-view-css' => 'fab0a10f', 846 + 'phui-form-view-css' => '76b4a46c', 847 847 'phui-head-thing-view-css' => 'fd311e5f', 848 848 'phui-header-view-css' => '06385974', 849 849 'phui-hovercard' => '1bd28176',
+2 -1
webroot/rsrc/css/phui/phui-form-view.css
··· 109 109 -webkit-font-smoothing: antialiased; 110 110 } 111 111 112 - .aphront-form-input input { 112 + .aphront-form-input input[type="text"], 113 + .aphront-form-input input[type="password"] { 113 114 width: 100%; 114 115 } 115 116