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

Minor, use a spacer instead of top margin to prevent margin collapse.

+10 -3
+1 -1
src/__celerity_resource_map__.php
··· 2250 2250 ), 2251 2251 'phabricator-main-menu-view' => 2252 2252 array( 2253 - 'uri' => '/res/1475552c/rsrc/css/application/base/main-menu-view.css', 2253 + 'uri' => '/res/795788ca/rsrc/css/application/base/main-menu-view.css', 2254 2254 'type' => 'css', 2255 2255 'requires' => 2256 2256 array(
+1
src/view/page/PhabricatorStandardPageView.php
··· 407 407 'class' => $classes, 408 408 ), 409 409 $header_chrome. 410 + '<div class="phabricator-main-menu-spacer"></div>'. 410 411 '<div class="phabricator-standard-page-body">'. 411 412 ($console ? '<darkconsole />' : null). 412 413 $developer_warning.
+8 -2
webroot/rsrc/css/application/base/main-menu-view.css
··· 31 31 top: 0; 32 32 } 33 33 34 - .device-desktop .phabricator-standard-page-body { 35 - margin-top: 44px; 34 + .phabricator-main-menu-spacer { 35 + display: none; 36 + } 37 + 38 + .device-desktop .phabricator-main-menu-spacer { 39 + height: 44px; 40 + position: relative; 41 + display: block; 36 42 } 37 43 38 44