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

Add space under comment previews

Summary: Fixes T11166. Adds some class, and space to the preview widget.

Test Plan: Test Maniphest, Ponder, etc, without a footer.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T11166

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

+8 -3
+3 -3
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'core.pkg.css' => '2168daaf', 10 + 'core.pkg.css' => 'cf375d17', 11 11 'core.pkg.js' => 'f2139810', 12 12 'darkconsole.pkg.js' => 'e7393ebb', 13 13 'differential.pkg.css' => 'b3eea3f5', ··· 155 155 'rsrc/css/phui/phui-spacing.css' => '042804d6', 156 156 'rsrc/css/phui/phui-status.css' => 'd5263e49', 157 157 'rsrc/css/phui/phui-tag-view.css' => '6bbd83e2', 158 - 'rsrc/css/phui/phui-timeline-view.css' => '8ea41b25', 158 + 'rsrc/css/phui/phui-timeline-view.css' => 'c3782437', 159 159 'rsrc/css/phui/phui-two-column-view.css' => '9fb86c85', 160 160 'rsrc/css/phui/workboards/phui-workboard-color.css' => 'ac6fe6a7', 161 161 'rsrc/css/phui/workboards/phui-workboard.css' => 'e6d89647', ··· 863 863 'phui-status-list-view-css' => 'd5263e49', 864 864 'phui-tag-view-css' => '6bbd83e2', 865 865 'phui-theme-css' => '027ba77e', 866 - 'phui-timeline-view-css' => '8ea41b25', 866 + 'phui-timeline-view-css' => 'c3782437', 867 867 'phui-two-column-view-css' => '9fb86c85', 868 868 'phui-workboard-color-css' => 'ac6fe6a7', 869 869 'phui-workboard-view-css' => 'e6d89647',
+1
src/applications/transactions/view/PhabricatorApplicationTransactionCommentView.php
··· 343 343 array( 344 344 'id' => $this->getPreviewPanelID(), 345 345 'style' => 'display: none', 346 + 'class' => 'phui-comment-preview-view', 346 347 ), 347 348 $preview); 348 349 }
+4
webroot/rsrc/css/phui/phui-timeline-view.css
··· 417 417 .phui-timeline-badges .phui-badge-mini .phui-icon-view { 418 418 font-size: 10px; 419 419 } 420 + 421 + .phui-comment-preview-view { 422 + margin-bottom: 20px; 423 + }