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

Make attention count yellow

Summary:
It needs attention! Serious color for serious action.

Also, Flags probably need urgent action!1!

Test Plan: Reload Hompage, see new color

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: epriestley, Korvin, chad

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

+5 -5
+3 -3
resources/celerity/map.php
··· 7 7 return array( 8 8 'names' => 9 9 array( 10 - 'core.pkg.css' => 'c2de6661', 10 + 'core.pkg.css' => '044e0f3e', 11 11 'core.pkg.js' => 'd3fecc57', 12 12 'darkconsole.pkg.js' => 'ca8671ce', 13 13 'differential.pkg.css' => 'cb97e095', ··· 40 40 'rsrc/css/application/auth/auth.css' => '1e655982', 41 41 'rsrc/css/application/base/main-menu-view.css' => 'd36e0c11', 42 42 'rsrc/css/application/base/notification-menu.css' => 'fc9a363c', 43 - 'rsrc/css/application/base/phabricator-application-launch-view.css' => '3282cc83', 43 + 'rsrc/css/application/base/phabricator-application-launch-view.css' => 'd290ba21', 44 44 'rsrc/css/application/base/standard-page-view.css' => '517cdfb1', 45 45 'rsrc/css/application/chatlog/chatlog.css' => '852140ff', 46 46 'rsrc/css/application/config/config-options.css' => '7fedf08b', ··· 678 678 'people-profile-css' => 'ba7b2762', 679 679 'phabricator-action-header-view-css' => 'c14dfc57', 680 680 'phabricator-action-list-view-css' => '81383e25', 681 - 'phabricator-application-launch-view-css' => '3282cc83', 681 + 'phabricator-application-launch-view-css' => 'd290ba21', 682 682 'phabricator-busy' => '6453c869', 683 683 'phabricator-chatlog-css' => '852140ff', 684 684 'phabricator-content-source-view-css' => '4b8b05d4',
+1 -1
src/applications/flag/application/PhabricatorApplicationFlags.php
··· 37 37 ->execute(); 38 38 39 39 $count = count($flags); 40 - $type = PhabricatorApplicationStatusView::TYPE_NEEDS_ATTENTION; 40 + $type = PhabricatorApplicationStatusView::TYPE_WARNING; 41 41 $status[] = id(new PhabricatorApplicationStatusView()) 42 42 ->setType($type) 43 43 ->setText(pht('%d Flagged Object(s)', $count))
+1 -1
webroot/rsrc/css/application/base/phabricator-application-launch-view.css
··· 109 109 110 110 .phabricator-application-attention-count { 111 111 background-color: #1e2225; 112 - color: {$sky}; 112 + color: {$yellow}; 113 113 border-radius: 2px; 114 114 padding: 1px 6px 2px; 115 115 }