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

Set Maniphest status icons to grey for closed tasks in object graph view

Summary: See D16219.

Test Plan: {F1708338}

Reviewers: chad

Reviewed By: chad

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

+8 -8
+3 -3
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'core.pkg.css' => '93eb0544', 10 + 'core.pkg.css' => 'd04e6f67', 11 11 'core.pkg.js' => 'f2139810', 12 12 'darkconsole.pkg.js' => 'e7393ebb', 13 13 'differential.pkg.css' => '3e81ae60', ··· 25 25 'rsrc/css/aphront/notification.css' => '3f6c89c9', 26 26 'rsrc/css/aphront/panel-view.css' => '8427b78d', 27 27 'rsrc/css/aphront/phabricator-nav-view.css' => 'ac79a758', 28 - 'rsrc/css/aphront/table-view.css' => '2596314c', 28 + 'rsrc/css/aphront/table-view.css' => 'aeb66852', 29 29 'rsrc/css/aphront/tokenizer.css' => '056da01b', 30 30 'rsrc/css/aphront/tooltip.css' => '1a07aea8', 31 31 'rsrc/css/aphront/typeahead-browse.css' => '8904346a', ··· 536 536 'aphront-list-filter-view-css' => '5d6f0526', 537 537 'aphront-multi-column-view-css' => 'fd18389d', 538 538 'aphront-panel-view-css' => '8427b78d', 539 - 'aphront-table-view-css' => '2596314c', 539 + 'aphront-table-view-css' => 'aeb66852', 540 540 'aphront-tokenizer-control-css' => '056da01b', 541 541 'aphront-tooltip-css' => '1a07aea8', 542 542 'aphront-typeahead-control-css' => 'd4f16145',
+4 -1
src/infrastructure/graph/ManiphestTaskGraph.php
··· 30 30 $priority = $object->getPriority(); 31 31 $status_icon = ManiphestTaskStatus::getStatusIcon($status); 32 32 $status_name = ManiphestTaskStatus::getTaskStatusName($status); 33 + 33 34 $priority_color = ManiphestTaskPriority::getTaskPriorityColor($priority); 34 - 35 + if ($object->isClosed()) { 36 + $priority_color = 'grey'; 37 + } 35 38 36 39 $status = array( 37 40 id(new PHUIIconView())->setIcon($status_icon, $priority_color),
+1 -4
webroot/rsrc/css/aphront/table-view.css
··· 235 235 } 236 236 237 237 .aphront-table-view tr.closed td.graph-status, 238 - .aphront-table-view tr.alt-closed td.graph-status { 239 - opacity: 0.5; 240 - } 241 - 238 + .aphront-table-view tr.alt-closed td.graph-status, 242 239 .object-graph-table em { 243 240 color: {$lightgreytext}; 244 241 }