Normalize 'Archived' states in object headers

Summary: Quick pass at cleaning up language, icons, colors for 'Archive' and 'Activate' on various objects.

Test Plan:
Tested archiving and activating each object changed.

{F262694}

{F262697}

Reviewers: btrahan, epriestley

Reviewed By: epriestley

Subscribers: Korvin, epriestley

Differential Revision: https://secure.phabricator.com/D11256
This commit is contained in:
Chad Little
2015-01-06 11:13:04 -08:00
parent b2e71bcb70
commit 3e421c7450
9 changed files with 41 additions and 30 deletions

View File

@@ -80,7 +80,7 @@ final class PhabricatorProjectProfileController
if ($project->getStatus() == PhabricatorProjectStatus::STATUS_ACTIVE) {
$header->setStatus('fa-check', 'bluegrey', pht('Active'));
} else {
$header->setStatus('fa-ban', 'dark', pht('Archived'));
$header->setStatus('fa-ban', 'red', pht('Archived'));
}
$actions = $this->buildActionListView($project);