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

Use panels for spacing in Maniphest.

Summary: Trying to move move content areas to panelview for consistency in spacing.

Test Plan: Reload Maniphest pages, see equal spacing like on Differential.

Reviewers: epriestley, btrahan

Reviewed By: epriestley

CC: aran, Korvin

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

+17 -19
+7 -7
src/__celerity_resource_map__.php
··· 2321 2321 ), 2322 2322 'maniphest-task-summary-css' => 2323 2323 array( 2324 - 'uri' => '/res/13a9468b/rsrc/css/application/maniphest/task-summary.css', 2324 + 'uri' => '/res/466c0026/rsrc/css/application/maniphest/task-summary.css', 2325 2325 'type' => 'css', 2326 2326 'requires' => 2327 2327 array( ··· 3432 3432 'uri' => '/res/pkg/fbeded59/javelin.pkg.js', 3433 3433 'type' => 'js', 3434 3434 ), 3435 - 'a88951d1' => 3435 + '2a1ed97f' => 3436 3436 array( 3437 3437 'name' => 'maniphest.pkg.css', 3438 3438 'symbols' => ··· 3442 3442 2 => 'aphront-attached-file-view-css', 3443 3443 3 => 'phabricator-project-tag-css', 3444 3444 ), 3445 - 'uri' => '/res/pkg/a88951d1/maniphest.pkg.css', 3445 + 'uri' => '/res/pkg/2a1ed97f/maniphest.pkg.css', 3446 3446 'type' => 'css', 3447 3447 ), 3448 3448 '7707de41' => ··· 3462 3462 ), 3463 3463 'reverse' => 3464 3464 array( 3465 - 'aphront-attached-file-view-css' => 'a88951d1', 3465 + 'aphront-attached-file-view-css' => '2a1ed97f', 3466 3466 'aphront-crumbs-view-css' => '7e7a7582', 3467 3467 'aphront-dialog-view-css' => '7e7a7582', 3468 3468 'aphront-error-view-css' => '7e7a7582', ··· 3560 3560 'javelin-vector' => 'fbeded59', 3561 3561 'javelin-workflow' => 'fbeded59', 3562 3562 'lightbox-attachment-css' => '7e7a7582', 3563 - 'maniphest-task-summary-css' => 'a88951d1', 3564 - 'maniphest-transaction-detail-css' => 'a88951d1', 3563 + 'maniphest-task-summary-css' => '2a1ed97f', 3564 + 'maniphest-transaction-detail-css' => '2a1ed97f', 3565 3565 'phabricator-busy' => 'c90b892e', 3566 3566 'phabricator-content-source-view-css' => 'ec01d039', 3567 3567 'phabricator-core-buttons-css' => '7e7a7582', ··· 3588 3588 'phabricator-object-selector-css' => 'ec01d039', 3589 3589 'phabricator-paste-file-upload' => 'c90b892e', 3590 3590 'phabricator-prefab' => 'c90b892e', 3591 - 'phabricator-project-tag-css' => 'a88951d1', 3591 + 'phabricator-project-tag-css' => '2a1ed97f', 3592 3592 'phabricator-remarkup-css' => '7e7a7582', 3593 3593 'phabricator-shaped-request' => 'ac53d36a', 3594 3594 'phabricator-side-menu-view-css' => '7e7a7582',
+9 -3
src/applications/maniphest/controller/ManiphestTaskListController.php
··· 347 347 348 348 $count = number_format(count($list)); 349 349 350 - $lists->appendChild( 350 + $header = 351 351 javelin_render_tag( 352 352 'h1', 353 353 array( ··· 357 357 'priority' => head($list)->getPriority(), 358 358 ), 359 359 ), 360 - phutil_escape_html($group).' ('.$count.')')); 360 + phutil_escape_html($group).' ('.$count.')'); 361 361 362 - $lists->appendChild($task_list); 362 + 363 + $panel = new AphrontPanelView(); 364 + $panel->appendChild($header); 365 + $panel->appendChild($task_list); 366 + $panel->setNoBackground(); 367 + 368 + $lists->appendChild($panel); 363 369 } 364 370 $lists->appendChild('</div>'); 365 371 $selector->appendChild($lists);
+1 -9
webroot/rsrc/css/application/maniphest/task-summary.css
··· 146 146 } 147 147 148 148 .maniphest-batch-editor { 149 - margin: 1em 1em; 149 + margin: 20px; 150 150 } 151 151 152 152 .maniphest-batch-editor-layout { ··· 175 175 font-size: 11px; 176 176 vertical-align: middle; 177 177 width: 100%; 178 - } 179 - 180 - .maniphest-list-container { 181 - padding: 0 1em; 182 - } 183 - 184 - .maniphest-group-container { 185 - padding: 0 1em 1em; 186 178 } 187 179 188 180 td.maniphest-active-handle {