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

Change CLOSED colors to Indigo over Black

Summary: CLosed is a pretty important state and black tends to blend in a bit. This bumps to an alternate color to improve ability to scan and know state of objects.

Test Plan:
Review a number of closed objects. I will follow up with another diff on 'Archived' colors.

{F261895}

Reviewers: btrahan, epriestley

Reviewed By: epriestley

Subscribers: Korvin, epriestley

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

+14 -10
+3 -3
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'core.pkg.css' => '5403bbed', 10 + 'core.pkg.css' => '63e782fb', 11 11 'core.pkg.js' => '44aac665', 12 12 'darkconsole.pkg.js' => '8ab24e01', 13 13 'differential.pkg.css' => '8af45893', ··· 130 130 'rsrc/css/phui/phui-fontkit.css' => '9c3d2dce', 131 131 'rsrc/css/phui/phui-form-view.css' => 'aad06f2a', 132 132 'rsrc/css/phui/phui-form.css' => '9aecbda1', 133 - 'rsrc/css/phui/phui-header-view.css' => 'b6c0d4b4', 133 + 'rsrc/css/phui/phui-header-view.css' => '8d9907ad', 134 134 'rsrc/css/phui/phui-icon.css' => 'a013a63d', 135 135 'rsrc/css/phui/phui-image-mask.css' => '5a8b09c8', 136 136 'rsrc/css/phui/phui-info-panel.css' => '27ea50a1', ··· 771 771 'phui-fontkit-css' => '9c3d2dce', 772 772 'phui-form-css' => '9aecbda1', 773 773 'phui-form-view-css' => 'aad06f2a', 774 - 'phui-header-view-css' => 'b6c0d4b4', 774 + 'phui-header-view-css' => '8d9907ad', 775 775 'phui-icon-view-css' => 'a013a63d', 776 776 'phui-image-mask-css' => '5a8b09c8', 777 777 'phui-info-panel-css' => '27ea50a1',
+2 -2
src/applications/differential/storage/DifferentialTransaction.php
··· 541 541 case self::TYPE_ACTION: 542 542 switch ($this->getNewValue()) { 543 543 case DifferentialAction::ACTION_CLOSE: 544 - return PhabricatorTransactions::COLOR_BLUE; 544 + return PhabricatorTransactions::COLOR_INDIGO; 545 545 case DifferentialAction::ACTION_ACCEPT: 546 546 return PhabricatorTransactions::COLOR_GREEN; 547 547 case DifferentialAction::ACTION_REJECT: 548 548 return PhabricatorTransactions::COLOR_RED; 549 549 case DifferentialAction::ACTION_ABANDON: 550 - return PhabricatorTransactions::COLOR_BLACK; 550 + return PhabricatorTransactions::COLOR_INDIGO; 551 551 case DifferentialAction::ACTION_RETHINK: 552 552 return PhabricatorTransactions::COLOR_RED; 553 553 case DifferentialAction::ACTION_REQUEST:
+1 -1
src/applications/macro/storage/PhabricatorMacroTransaction.php
··· 290 290 } 291 291 case PhabricatorMacroTransactionType::TYPE_DISABLED: 292 292 if ($new) { 293 - return PhabricatorTransactions::COLOR_BLACK; 293 + return PhabricatorTransactions::COLOR_RED; 294 294 } else { 295 295 return PhabricatorTransactions::COLOR_SKY; 296 296 }
+2 -2
src/applications/maniphest/storage/ManiphestTransaction.php
··· 188 188 if (ManiphestTaskStatus::isOpenStatus($new)) { 189 189 return 'green'; 190 190 } else { 191 - return 'black'; 191 + return 'indigo'; 192 192 } 193 193 194 194 case self::TYPE_PRIORITY: ··· 204 204 return 'orange'; 205 205 206 206 case self::TYPE_MERGED_INTO: 207 - return 'black'; 207 + return 'indigo'; 208 208 } 209 209 210 210 return parent::getColor();
+1 -1
src/applications/ponder/storage/PonderQuestionTransaction.php
··· 134 134 case PonderQuestionStatus::STATUS_OPEN: 135 135 return PhabricatorTransactions::COLOR_GREEN; 136 136 case PonderQuestionStatus::STATUS_CLOSED: 137 - return PhabricatorTransactions::COLOR_BLACK; 137 + return PhabricatorTransactions::COLOR_INDIGO; 138 138 } 139 139 } 140 140 }
+5 -1
webroot/rsrc/css/phui/phui-header-view.css
··· 123 123 } 124 124 125 125 .phui-header-subheader .phui-header-status-dark { 126 - color: #111; 126 + color: {$indigo}; 127 127 text-shadow: 0 1px #fff; 128 + } 129 + 130 + .phui-header-subheader .phui-header-status-dark .phui-icon-view { 131 + color: {$indigo}; 128 132 } 129 133 130 134 .phui-header-subheader .phui-header-status-red {