From 18931ec4c07f182de9642f1c5af6cad8d0ceec7a Mon Sep 17 00:00:00 2001 From: Chad Little Date: Wed, 23 Oct 2013 13:28:47 -0700 Subject: [PATCH] Update Apps Installed icons to match Projects. Summary: Changes to checkmark and crossed circle to match active projects Test Plan: installed and uninstalled an application. poor conpherence. Reviewers: epriestley, btrahan Reviewed By: btrahan CC: Korvin, epriestley, aran Differential Revision: https://secure.phabricator.com/D7390 --- .../controller/PhabricatorApplicationDetailViewController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/applications/meta/controller/PhabricatorApplicationDetailViewController.php b/src/applications/meta/controller/PhabricatorApplicationDetailViewController.php index b639600c3e..0b756f8532 100644 --- a/src/applications/meta/controller/PhabricatorApplicationDetailViewController.php +++ b/src/applications/meta/controller/PhabricatorApplicationDetailViewController.php @@ -34,9 +34,9 @@ final class PhabricatorApplicationDetailViewController ->setPolicyObject($selected); if ($selected->isInstalled()) { - $header->setStatus('open', 'green', pht('Installed')); + $header->setStatus('oh-ok', null, pht('Installed')); } else { - $header->setStatus('open', 'red', pht('Uninstalled')); + $header->setStatus('policy-noone', null, pht('Uninstalled')); } $actions = $this->buildActionView($user, $selected);