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

CSS: Fix vertical position of page footer

Summary:
rPd3cbfd95 introduced a regression on some pages when a page footer is configured via `/config/edit/ui.footer-items/`: The footer is not displayed at the bottom.

Closes T16147

Test Plan:
* Configure a page footer via `/config/edit/ui.footer-items/`
* Visit a lot of pages (incl https://we.phorge.it/uiexample/view/PHUIFeedStoryExample/ on which I found this problem) and scroll down (and be aware that some pages like project workboards do not display a footer anyway).

Reviewers: O1 Blessed Committers, amybones, mainframe98

Reviewed By: O1 Blessed Committers, amybones, mainframe98

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Maniphest Tasks: T16147

Differential Revision: https://we.phorge.it/D26133

+4 -4
+3 -3
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'conpherence.pkg.css' => '384ce2d9', 11 11 'conpherence.pkg.js' => '020aebcf', 12 - 'core.pkg.css' => 'bbec6c7d', 12 + 'core.pkg.css' => '16941b93', 13 13 'core.pkg.js' => '83580d78', 14 14 'dark-console.pkg.js' => '187792c2', 15 15 'differential.pkg.css' => 'a0c57051', ··· 132 132 'rsrc/css/phui/phui-action-list.css' => 'b46ef6bd', 133 133 'rsrc/css/phui/phui-action-panel.css' => 'c0db6855', 134 134 'rsrc/css/phui/phui-badge.css' => 'aa49028c', 135 - 'rsrc/css/phui/phui-basic-nav-view.css' => '44e1edaf', 135 + 'rsrc/css/phui/phui-basic-nav-view.css' => 'a2841568', 136 136 'rsrc/css/phui/phui-big-info-view.css' => '362ad37b', 137 137 'rsrc/css/phui/phui-box.css' => '5ed3b8cb', 138 138 'rsrc/css/phui/phui-bulk-editor.css' => '374d5e30', ··· 784 784 'phriction-document-css' => 'd8f8cdd6', 785 785 'phui-action-panel-css' => 'c0db6855', 786 786 'phui-badge-view-css' => 'aa49028c', 787 - 'phui-basic-nav-view-css' => '44e1edaf', 787 + 'phui-basic-nav-view-css' => 'a2841568', 788 788 'phui-big-info-view-css' => '362ad37b', 789 789 'phui-box-css' => '5ed3b8cb', 790 790 'phui-bulk-editor-css' => '374d5e30',
+1 -1
webroot/rsrc/css/phui/phui-basic-nav-view.css
··· 5 5 .device-desktop .phui-navigation-shell, 6 6 .phabricator-home.device .phui-navigation-shell { 7 7 width: 100%; 8 - height: calc(100vh - {$menu.main.height}); 8 + min-height: calc(100vh - {$menu.main.height}); 9 9 } 10 10 11 11 .device-desktop .phui-navigation-shell .phabricator-nav,