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

Fix notice spacing on table views

Summary: When a notice is in a table view in a two column layout, reset the margins.

Test Plan: Visit OwnerDetails with no paths set.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+11 -7
+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' => 'c54a8bec', 12 + 'core.pkg.css' => '84ce260a', 13 13 'core.pkg.js' => '47a69358', 14 14 'darkconsole.pkg.js' => '1f9a31bc', 15 15 'differential.pkg.css' => '90b30783', ··· 32 32 'rsrc/css/aphront/notification.css' => '3f6c89c9', 33 33 'rsrc/css/aphront/panel-view.css' => '8427b78d', 34 34 'rsrc/css/aphront/phabricator-nav-view.css' => 'faf6a6fc', 35 - 'rsrc/css/aphront/table-view.css' => '6ca8e057', 35 + 'rsrc/css/aphront/table-view.css' => '34cf86b4', 36 36 'rsrc/css/aphront/tokenizer.css' => '9a8cb501', 37 37 'rsrc/css/aphront/tooltip.css' => '173b9431', 38 38 'rsrc/css/aphront/typeahead-browse.css' => '8904346a', ··· 549 549 'aphront-list-filter-view-css' => '5d6f0526', 550 550 'aphront-multi-column-view-css' => '84cc6640', 551 551 'aphront-panel-view-css' => '8427b78d', 552 - 'aphront-table-view-css' => '6ca8e057', 552 + 'aphront-table-view-css' => '34cf86b4', 553 553 'aphront-tokenizer-control-css' => '9a8cb501', 554 554 'aphront-tooltip-css' => '173b9431', 555 555 'aphront-typeahead-control-css' => '8a84cc7d',
+4 -4
src/applications/owners/controller/PhabricatorOwnersDetailController.php
··· 323 323 'wide', 324 324 )); 325 325 326 + if ($info) { 327 + $table->setNotice($info); 328 + } 329 + 326 330 $header = id(new PHUIHeaderView()) 327 331 ->setHeader(pht('Paths')) 328 332 ->setHeaderIcon('fa-folder-open'); ··· 331 335 ->setHeader($header) 332 336 ->setBackground(PHUIObjectBoxView::BLUE_PROPERTY) 333 337 ->setTable($table); 334 - 335 - if ($info) { 336 - $box->setInfoView($info); 337 - } 338 338 339 339 return $box; 340 340 }
+4
webroot/rsrc/css/aphront/table-view.css
··· 29 29 border-bottom: 1px solid {$thinblueborder}; 30 30 } 31 31 32 + .phui-two-column-view .aphront-table-notice .phui-info-view { 33 + margin: 0; 34 + } 35 + 32 36 .aphront-table-view tr.alt { 33 37 background: {$lightgreybackground}; 34 38 }