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

Select correct link in file tree

Summary:
Clicking on a shielded file in file tree highlighted the previous one.
Also, menu bar is not fixed anymore.

Test Plan: D3355#d77999bc - `scripts/celerity_mapper.php` was highlighted.

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

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

vrana 7ab82ed7 ddb1f181

+1 -11
-10
webroot/rsrc/css/application/base/standard-page-view.css
··· 12 12 margin-top: -15px; 13 13 } 14 14 15 - 16 - 17 - .device-desktop .phabricator-anchor-view, 18 - .device-desktop .phabricator-anchor-navigation-marker { 19 - /* On desktops, move the anchor up more so the menu bar doesn't obscure the 20 - content. This is the menu bar height (44px) plus the anchor adjustment 21 - (15px). */ 22 - margin-top: -59px; 23 - } 24 - 25 15 .phabricator-chromeless-page .phabricator-standard-page { 26 16 background: transparent; 27 17 border-width: 0px;
+1 -1
webroot/rsrc/js/application/core/behavior-active-nav.js
··· 52 52 for (var ii = 0; ii < markers.length; ii++) { 53 53 markinfo.push({ 54 54 marker: markers[ii], 55 - position: JX.$V(markers[ii]).y 55 + position: JX.$V(markers[ii]).y - 15 56 56 }); 57 57 } 58 58 markinfo.sort(function(u, v) { return (v.position - u.position); });