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

[Redesign] Update Config UI

Summary: Ref T8099, Sets a StatusIcon instead of a barColor on config status lists.

Test Plan: Review ignored and non-ignored status items.

Reviewers: btrahan, epriestley

Reviewed By: epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T8341, T8099

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

+2 -2
+2 -2
src/applications/config/controller/PhabricatorConfigIssueListController.php
··· 89 89 ->setHref($href) 90 90 ->addAttribute($issue->getSummary()); 91 91 if (!$issue->getIsIgnored()) { 92 - $item->setBarColor('yellow'); 92 + $item->setStatusIcon('fa-warning yellow'); 93 93 $list->addItem($item); 94 94 } else { 95 95 $item->addIcon('fa-eye-slash', pht('Ignored')); 96 96 $item->setDisabled(true); 97 - $item->setBarColor('none'); 97 + $item->setStatusIcon('fa-warning grey'); 98 98 $ignored_items[] = $item; 99 99 } 100 100 }