From 9386e436fe35c7972116f2df26702a4b390c9985 Mon Sep 17 00:00:00 2001 From: epriestley Date: Thu, 8 Feb 2018 18:14:25 -0800 Subject: [PATCH] Remove red coloration from "Logout" menu item Summary: I made the red stronger (always visible, not just a hover state) for the "Mute" feature, but this made Logout look a little intense. Just make it normal-colored, logging out isn't a big deal. Test Plan: No longer saw bright red logout action in profile dropdown menu. Differential Revision: https://secure.phabricator.com/D19044 --- .../people/engineextension/PeopleMainMenuBarExtension.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/applications/people/engineextension/PeopleMainMenuBarExtension.php b/src/applications/people/engineextension/PeopleMainMenuBarExtension.php index bed9dde44e..152fb2becf 100644 --- a/src/applications/people/engineextension/PeopleMainMenuBarExtension.php +++ b/src/applications/people/engineextension/PeopleMainMenuBarExtension.php @@ -113,7 +113,6 @@ final class PeopleMainMenuBarExtension ->setName(pht('Log Out %s', $viewer->getUsername())) ->addSigil('logout-item') ->setHref('/logout/') - ->setColor(PhabricatorActionView::RED) ->setWorkflow(true)); return $view;