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

Update icon color in Durable Column header-text

Summary: Moving to an rgba color here to work better with all the various header colors.

Test Plan: Reload sandbox, see new icon color.

Reviewers: epriestley, btrahan

Reviewed By: btrahan

Subscribers: Korvin, epriestley

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

+7 -3
+2 -2
resources/celerity/map.php
··· 44 44 'rsrc/css/application/config/config-welcome.css' => '6abd79be', 45 45 'rsrc/css/application/config/setup-issue.css' => '22270af2', 46 46 'rsrc/css/application/config/unhandled-exception.css' => '37d4f9a2', 47 - 'rsrc/css/application/conpherence/durable-column.css' => 'e5a70c22', 47 + 'rsrc/css/application/conpherence/durable-column.css' => 'e11b2fbc', 48 48 'rsrc/css/application/conpherence/menu.css' => '9b37a261', 49 49 'rsrc/css/application/conpherence/message-pane.css' => '0c4dfb6f', 50 50 'rsrc/css/application/conpherence/notification.css' => '04a6e10a', ··· 513 513 'changeset-view-manager' => '58562350', 514 514 'config-options-css' => '7fedf08b', 515 515 'config-welcome-css' => '6abd79be', 516 - 'conpherence-durable-column-view' => 'e5a70c22', 516 + 'conpherence-durable-column-view' => 'e11b2fbc', 517 517 'conpherence-menu-css' => '9b37a261', 518 518 'conpherence-message-pane-css' => '0c4dfb6f', 519 519 'conpherence-notification-css' => '04a6e10a',
+1 -1
src/applications/conpherence/view/ConpherenceDurableColumnView.php
··· 216 216 $icon = $conpherence->getPolicyIconName($policy_objects); 217 217 return id(new PHUIIconView()) 218 218 ->addClass('mmr') 219 - ->setIconFont($icon.' lightgreytext'); 219 + ->setIconFont($icon); 220 220 } 221 221 222 222 private function buildIconBar() {
+4
webroot/rsrc/css/application/conpherence/durable-column.css
··· 73 73 border-left: 1px solid rgba(0,0,0,.2); 74 74 } 75 75 76 + .conpherence-durable-column-header-text .phui-icon-view { 77 + color: rgba(255, 255, 255, 0.8); 78 + } 79 + 76 80 .conpherence-durable-column-icon-bar { 77 81 height: 38px; 78 82 padding: 4px 8px;