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

[Redesign] Update Conduit UI

Summary: Ref T8099, Updates the Conduit UI for the Redesign.

Test Plan: Bop through conduit, add application headers, fix icon colors.

Reviewers: btrahan, epriestley

Reviewed By: epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T8341, T8099

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

+12 -9
+3 -3
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'core.pkg.css' => '75121d30', 10 + 'core.pkg.css' => '651054ed', 11 11 'core.pkg.js' => 'e4f47dfd', 12 12 'darkconsole.pkg.js' => 'e7393ebb', 13 13 'differential.pkg.css' => 'bb338e4b', ··· 141 141 'rsrc/css/phui/phui-info-view.css' => '33e54618', 142 142 'rsrc/css/phui/phui-list.css' => 'e448b6ba', 143 143 'rsrc/css/phui/phui-object-box.css' => '57b5b612', 144 - 'rsrc/css/phui/phui-object-item-list-view.css' => 'fef025d8', 144 + 'rsrc/css/phui/phui-object-item-list-view.css' => '24ed8d94', 145 145 'rsrc/css/phui/phui-pinboard-view.css' => '55b27bc3', 146 146 'rsrc/css/phui/phui-property-list-view.css' => '1baf23eb', 147 147 'rsrc/css/phui/phui-remarkup-preview.css' => '19ad512b', ··· 775 775 'phui-inline-comment-view-css' => '2174771a', 776 776 'phui-list-view-css' => 'e448b6ba', 777 777 'phui-object-box-css' => '57b5b612', 778 - 'phui-object-item-list-view-css' => 'fef025d8', 778 + 'phui-object-item-list-view-css' => '24ed8d94', 779 779 'phui-pinboard-view-css' => '55b27bc3', 780 780 'phui-property-list-view-css' => '1baf23eb', 781 781 'phui-remarkup-preview-css' => '19ad512b',
+5 -4
src/applications/conduit/query/PhabricatorConduitSearchEngine.php
··· 159 159 $out[] = $list; 160 160 } 161 161 $list = id(new PHUIObjectItemListView()); 162 + $list->setHeader($app); 162 163 163 164 $app_object = $method->getApplication(); 164 165 if ($app_object) { ··· 179 180 case ConduitAPIMethod::METHOD_STATUS_STABLE: 180 181 break; 181 182 case ConduitAPIMethod::METHOD_STATUS_UNSTABLE: 182 - $item->addIcon('warning-grey', pht('Unstable')); 183 - $item->setBarColor('yellow'); 183 + $item->addIcon('fa-warning', pht('Unstable')); 184 + $item->setStatusIcon('fa-warning yellow'); 184 185 break; 185 186 case ConduitAPIMethod::METHOD_STATUS_DEPRECATED: 186 - $item->addIcon('warning', pht('Deprecated')); 187 - $item->setBarColor('red'); 187 + $item->addIcon('fa-warning', pht('Deprecated')); 188 + $item->setStatusIcon('fa-warning red'); 188 189 break; 189 190 } 190 191
+4 -2
webroot/rsrc/css/phui/phui-object-item-list-view.css
··· 606 606 border-bottom: 1px solid {$thinblueborder}; 607 607 } 608 608 609 - .dashboard-pane .phui-object-item-list-header { 609 + .phui-object-box .phui-object-item-list-header { 610 610 font-size: 13px; 611 611 color: {$bluetext}; 612 612 border-top: 1px solid {$thinblueborder}; ··· 615 615 font-weight: 500; 616 616 } 617 617 618 - .dashboard-pane .phui-header-shell + .phui-object-item-list-view 618 + .phui-object-box .phui-header-shell + .phui-object-item-list-view 619 + .phui-object-item-list-header, 620 + .phui-object-box .phui-object-box-hidden-content + .phui-object-item-list-view 619 621 .phui-object-item-list-header { 620 622 border-top: none; 621 623 }