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

Add more "disabled" UI to PHUIObjectItemView

Summary: Brings more UI tweaks to disabled objects, like projects/people. Also fixes a missing icon in projects.

Test Plan: Application search with people and projects that have disabled results.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T12732

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

authored by

Chad Little and committed by
chad
93e28da7 7e46d7ab

+16 -4
+3 -3
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'conpherence.pkg.css' => 'ff161f2d', 11 11 'conpherence.pkg.js' => 'b5b51108', 12 - 'core.pkg.css' => '0ab752b2', 12 + 'core.pkg.css' => 'd6dc3994', 13 13 'core.pkg.js' => 'a0c8fb20', 14 14 'darkconsole.pkg.js' => '1f9a31bc', 15 15 'differential.pkg.css' => '52b014e7', ··· 131 131 'rsrc/css/phui/object-item/phui-oi-color.css' => 'cd2b9b77', 132 132 'rsrc/css/phui/object-item/phui-oi-drag-ui.css' => '08f4ccc3', 133 133 'rsrc/css/phui/object-item/phui-oi-flush-ui.css' => '9d9685d6', 134 - 'rsrc/css/phui/object-item/phui-oi-list-view.css' => '7c8ec27a', 134 + 'rsrc/css/phui/object-item/phui-oi-list-view.css' => '412bef1a', 135 135 'rsrc/css/phui/object-item/phui-oi-simple-ui.css' => 'a8beebea', 136 136 'rsrc/css/phui/phui-action-list.css' => 'c01858f4', 137 137 'rsrc/css/phui/phui-action-panel.css' => '91c7b835', ··· 869 869 'phui-oi-color-css' => 'cd2b9b77', 870 870 'phui-oi-drag-ui-css' => '08f4ccc3', 871 871 'phui-oi-flush-ui-css' => '9d9685d6', 872 - 'phui-oi-list-view-css' => '7c8ec27a', 872 + 'phui-oi-list-view-css' => '412bef1a', 873 873 'phui-oi-simple-ui-css' => 'a8beebea', 874 874 'phui-pager-css' => '77d8a794', 875 875 'phui-pinboard-view-css' => '2495140e',
+1
src/applications/people/query/PhabricatorPeopleSearchEngine.php
··· 265 265 266 266 if ($user->getIsDisabled()) { 267 267 $item->addIcon('fa-ban', pht('Disabled')); 268 + $item->setDisabled(true); 268 269 } 269 270 270 271 if (!$is_approval) {
+1 -1
src/applications/project/view/PhabricatorProjectListView.php
··· 68 68 )); 69 69 70 70 if ($project->getStatus() == PhabricatorProjectStatus::STATUS_ARCHIVED) { 71 - $item->addIcon('delete-grey', pht('Archived')); 71 + $item->addIcon('fa-ban', pht('Archived')); 72 72 $item->setDisabled(true); 73 73 } 74 74
+11
webroot/rsrc/css/phui/object-item/phui-oi-list-view.css
··· 390 390 text-decoration: line-through; 391 391 } 392 392 393 + .phui-oi.phui-oi-disabled .phui-oi-image { 394 + opacity: .8; 395 + -webkit-filter: grayscale(100%); 396 + filter: grayscale(100%); 397 + } 398 + 399 + .phui-oi.phui-oi-disabled .phui-oi-attribute, 400 + .phui-oi.phui-oi-disabled .phui-oi-attribute .phui-icon-view { 401 + color: {$lightgreytext}; 402 + } 403 + 393 404 394 405 /* - Effects ------------------------------------------------------------------- 395 406