@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] Fix alignment of icon/grip on ObjectList

Summary:
Ref T8099, these should sit in a 4px gutter.

Also:
- remove bad route on feed
- Fix issue with custom logos
- Fix unit error

Test Plan: Review on dashboards and on Maniphest homepage

Reviewers: btrahan, epriestley

Reviewed By: epriestley

Subscribers: epriestley, Korvin

Maniphest Tasks: T8099

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

authored by

Chad Little and committed by
epriestley
3846a009 69b30c5d

+12 -13
+3 -3
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'core.pkg.css' => 'df56364d', 10 + 'core.pkg.css' => '69f486e4', 11 11 'core.pkg.js' => '41f5edc5', 12 12 'darkconsole.pkg.js' => 'e7393ebb', 13 13 'differential.pkg.css' => 'fe951924', ··· 141 141 'rsrc/css/phui/phui-info-view.css' => '33e54618', 142 142 'rsrc/css/phui/phui-list.css' => '02ab3534', 143 143 'rsrc/css/phui/phui-object-box.css' => '3db9f358', 144 - 'rsrc/css/phui/phui-object-item-list-view.css' => 'a7d38075', 144 + 'rsrc/css/phui/phui-object-item-list-view.css' => '4d5fe709', 145 145 'rsrc/css/phui/phui-pager.css' => 'bea33d23', 146 146 'rsrc/css/phui/phui-pinboard-view.css' => '2495140e', 147 147 'rsrc/css/phui/phui-property-list-view.css' => '1baf23eb', ··· 783 783 'phui-inline-comment-view-css' => 'fa5b8d1f', 784 784 'phui-list-view-css' => '02ab3534', 785 785 'phui-object-box-css' => '3db9f358', 786 - 'phui-object-item-list-view-css' => 'a7d38075', 786 + 'phui-object-item-list-view-css' => '4d5fe709', 787 787 'phui-pager-css' => 'bea33d23', 788 788 'phui-pinboard-view-css' => '2495140e', 789 789 'phui-property-list-view-css' => '1baf23eb',
+1 -1
src/applications/conpherence/controller/ConpherenceViewController.php
··· 9 9 return true; 10 10 } 11 11 12 - public function buildApplicationCrumbs() { 12 + protected function buildApplicationCrumbs() { 13 13 $crumbs = $this->buildConpherenceApplicationCrumbs(); 14 14 $crumbs->setBorder(true); 15 15 return $crumbs;
-2
src/applications/people/application/PhabricatorPeopleApplication.php
··· 73 73 => 'PhabricatorPeopleProfileController', 74 74 '/p/(?P<username>[\w._-]+)/calendar/' 75 75 => 'PhabricatorPeopleCalendarController', 76 - '/p/(?P<username>[\w._-]+)/feed/' 77 - => 'PhabricatorPeopleFeedController', 78 76 ); 79 77 } 80 78
+6 -6
src/view/page/menu/PhabricatorMainMenuView.php
··· 274 274 'background-position: 0px 0px; '. 275 275 'background-image: url('.$logo_uri.');'; 276 276 } 277 + } 278 + 279 + $color = PhabricatorEnv::getEnvConfig('ui.header-color'); 280 + if ($color == 'light') { 281 + $color = 'dark'; 277 282 } else { 278 - $color = PhabricatorEnv::getEnvConfig('ui.header-color'); 279 - if ($color == 'light') { 280 - $color = 'dark'; 281 - } else { 282 - $color = 'light'; 283 - } 283 + $color = 'light'; 284 284 } 285 285 286 286 return phutil_tag(
+2 -1
webroot/rsrc/css/phui/phui-object-item-list-view.css
··· 116 116 top: 0; 117 117 bottom: 0; 118 118 left: 0; 119 - width: 16px; 119 + width: 20px; 120 120 background: url('/rsrc/image/texture/grip.png') center center no-repeat; 121 121 } 122 122 ··· 151 151 width: 20px; 152 152 display: table-cell; 153 153 vertical-align: middle; 154 + padding-left: 4px; 154 155 } 155 156 156 157 .device-phone .phui-object-item-col0 {