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

Fix a bit of the CSS on workboards

Summary: Fixes the width and some other minor issues.

Test Plan: Tested Mobile and Desktop

Reviewers: epriestley, btrahan

Reviewed By: epriestley

CC: Korvin, epriestley, aran

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

+37 -2
+2 -2
src/__celerity_resource_map__.php
··· 884 884 ), 885 885 'aphront-multi-column-view-css' => 886 886 array( 887 - 'uri' => '/res/f7f25fb7/rsrc/css/aphront/multi-column.css', 887 + 'uri' => '/res/23590410/rsrc/css/aphront/multi-column.css', 888 888 'type' => 'css', 889 889 'requires' => 890 890 array( ··· 3994 3994 ), 3995 3995 'phui-workpanel-view-css' => 3996 3996 array( 3997 - 'uri' => '/res/a81825b2/rsrc/css/phui/phui-workpanel-view.css', 3997 + 'uri' => '/res/a64ca5c1/rsrc/css/phui/phui-workpanel-view.css', 3998 3998 'type' => 'css', 3999 3999 'requires' => 4000 4000 array(
+1
webroot/rsrc/css/aphront/multi-column.css
··· 135 135 .aphront-multi-column-column-outer { 136 136 display: table-cell; 137 137 height: 100%; 138 + vertical-align: top; 138 139 } 139 140 140 141 .phui-box-shadow .aphront-multi-column-column-outer {
+34
webroot/rsrc/css/phui/phui-workpanel-view.css
··· 8 8 border-top-right-radius: 5px; 9 9 } 10 10 11 + .device-phone .phui-workboard-view { 12 + width: auto; 13 + margin: 0 8px; 14 + } 15 + 16 + .phui-workpanel-view .phui-object-item-objname { 17 + display: none; 18 + } 19 + 11 20 .phui-workpanel-view .phui-workpanel-header-action { 12 21 float: right; 13 22 width: 24px; ··· 42 51 padding-left: 5px; 43 52 display: inline-block; 44 53 } 54 + 55 + .aphront-multi-column-fixed .aphront-multi-column-1-up 56 + .aphront-multi-column-column-outer .phui-workpanel-body, 57 + .aphront-multi-column-fixed .aphront-multi-column-2-up 58 + .aphront-multi-column-column-outer .phui-workpanel-body, 59 + .aphront-multi-column-fixed .aphront-multi-column-3-up 60 + .aphront-multi-column-column-outer .phui-workpanel-body { 61 + width: 300px; 62 + } 63 + 64 + .aphront-multi-column-fixed .aphront-multi-column-4-up 65 + .aphront-multi-column-column-outer .phui-workpanel-body, 66 + .aphront-multi-column-fixed .aphront-multi-column-5-up 67 + .aphront-multi-column-column-outer .phui-workpanel-body, 68 + .aphront-multi-column-fixed .aphront-multi-column-6-up 69 + .aphront-multi-column-column-outer .phui-workpanel-body, 70 + .aphront-multi-column-fixed .aphront-multi-column-7-up 71 + .aphront-multi-column-column-outer .phui-workpanel-body { 72 + width: 240px; 73 + } 74 + 75 + .device-phone .aphront-multi-column-outer 76 + div.aphront-multi-column-column-outer .phui-workpanel-body { 77 + width: auto; 78 + }