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

Shift footer when on page with sidenav

Summary: Fixes T6168, adds spacing when navigation is present.

Test Plan: Tested Chrome, IE 9, 10. Numerous pages.

Reviewers: epriestley, btrahan

Reviewed By: btrahan

Subscribers: epriestley, Korvin

Maniphest Tasks: T6168

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

+10 -7
+3 -3
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'core.pkg.css' => '3317a3ad', 10 + 'core.pkg.css' => 'fe2446e9', 11 11 'core.pkg.js' => 'cbdbd552', 12 12 'darkconsole.pkg.js' => 'df001cab', 13 13 'differential.pkg.css' => '36884139', ··· 39 39 'rsrc/css/application/base/main-menu-view.css' => 'aceca0e9', 40 40 'rsrc/css/application/base/notification-menu.css' => '6aa0a74b', 41 41 'rsrc/css/application/base/phabricator-application-launch-view.css' => '5d71008f', 42 - 'rsrc/css/application/base/standard-page-view.css' => 'dd860661', 42 + 'rsrc/css/application/base/standard-page-view.css' => '1b000ec8', 43 43 'rsrc/css/application/chatlog/chatlog.css' => '852140ff', 44 44 'rsrc/css/application/config/config-options.css' => '7fedf08b', 45 45 'rsrc/css/application/config/config-template.css' => '25d446d6', ··· 739 739 'phabricator-side-menu-view-css' => 'a2ccd7bd', 740 740 'phabricator-slowvote-css' => '266df6a1', 741 741 'phabricator-source-code-view-css' => '7d346aa4', 742 - 'phabricator-standard-page-view' => 'dd860661', 742 + 'phabricator-standard-page-view' => '1b000ec8', 743 743 'phabricator-textareautils' => '5c93c52c', 744 744 'phabricator-title' => '5c1c758c', 745 745 'phabricator-tooltip' => '3915d490',
+1 -2
src/view/page/PhabricatorStandardPageView.php
··· 352 352 phutil_tag_div('phabricator-standard-page-body', array( 353 353 ($console ? hsprintf('<darkconsole />') : null), 354 354 parent::getBody(), 355 - phutil_tag('div', array('style' => 'clear: both;')), 356 355 $this->renderFooter(), 357 356 )), 358 357 )); ··· 508 507 return phutil_tag( 509 508 'div', 510 509 array( 511 - 'class' => 'phabricator-standard-page-footer', 510 + 'class' => 'phabricator-standard-page-footer grouped', 512 511 ), 513 512 $foot); 514 513 }
+6 -2
webroot/rsrc/css/application/base/standard-page-view.css
··· 15 15 16 16 .phabricator-standard-page-footer { 17 17 text-align: right; 18 - margin: 0 16px; 19 - padding: 8px 0; 18 + margin: 4px 16px; 19 + padding: 12px 0; 20 20 border-top: 1px solid {$lightgreyborder}; 21 21 color: {$lightgreytext}; 22 + } 23 + 24 + .has-local-nav + .phabricator-standard-page-footer { 25 + margin-left: 221px; 22 26 } 23 27 24 28 .keyboard-shortcut-help td,