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

Normalize icon color on user/project lists.

Summary: Minor, just fall back to the grey icon in all cases (too much color for me).

Test Plan: Review a Project and a Profile

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+7 -3
+2 -2
resources/celerity/map.php
··· 94 94 'rsrc/css/application/policy/policy.css' => '957ea14c', 95 95 'rsrc/css/application/ponder/ponder-view.css' => '7b0df4da', 96 96 'rsrc/css/application/project/project-card-view.css' => '9c3631e5', 97 - 'rsrc/css/application/project/project-view.css' => '99a5023b', 97 + 'rsrc/css/application/project/project-view.css' => '4693497c', 98 98 'rsrc/css/application/releeph/releeph-core.css' => '9b3c5733', 99 99 'rsrc/css/application/releeph/releeph-preview-branch.css' => 'b7a6f4a5', 100 100 'rsrc/css/application/releeph/releeph-request-differential-create-dialog.css' => '8d8b92cd', ··· 845 845 'policy-transaction-detail-css' => '82100a43', 846 846 'ponder-view-css' => '7b0df4da', 847 847 'project-card-view-css' => '9c3631e5', 848 - 'project-view-css' => '99a5023b', 848 + 'project-view-css' => '4693497c', 849 849 'releeph-core' => '9b3c5733', 850 850 'releeph-preview-branch' => 'b7a6f4a5', 851 851 'releeph-request-differential-create-dialog' => '8d8b92cd',
+1 -1
src/applications/project/view/PhabricatorProjectUserListView.php
··· 86 86 ->setImageURI($handle->getImageURI()); 87 87 88 88 $icon = id(new PHUIIconView()) 89 - ->setIcon($handle->getIcon().' lightbluetext'); 89 + ->setIcon($handle->getIcon()); 90 90 91 91 $subtitle = $handle->getSubtitle(); 92 92
+4
webroot/rsrc/css/application/project/project-view.css
··· 82 82 width: 364px; 83 83 } 84 84 85 + .project-view-home .phui-box-grey .phui-object-item-attribute .phui-icon-view { 86 + color: {$lightgreytext}; 87 + } 88 + 85 89 .profile-no-badges { 86 90 padding: 24px 0; 87 91 }