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

Add sidenav back to workboards

Summary: This is still reasonably functional and useful to people, and we don't have better mechanics to offset the change.

Test Plan: New Workboard, set Workboard color, test mobile, desktop.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+53 -7
+4 -4
resources/celerity/map.php
··· 166 166 'rsrc/css/phui/phui-tag-view.css' => '6bbd83e2', 167 167 'rsrc/css/phui/phui-timeline-view.css' => 'bc523970', 168 168 'rsrc/css/phui/phui-two-column-view.css' => 'bbe32c23', 169 - 'rsrc/css/phui/workboards/phui-workboard-color.css' => '207828dd', 170 - 'rsrc/css/phui/workboards/phui-workboard.css' => '60d09514', 169 + 'rsrc/css/phui/workboards/phui-workboard-color.css' => 'b60ef38a', 170 + 'rsrc/css/phui/workboards/phui-workboard.css' => '16441d5e', 171 171 'rsrc/css/phui/workboards/phui-workcard.css' => '0c62d7c5', 172 172 'rsrc/css/phui/workboards/phui-workpanel.css' => '92197373', 173 173 'rsrc/css/sprite-login.css' => '6dbbbd97', ··· 885 885 'phui-theme-css' => '798c69b8', 886 886 'phui-timeline-view-css' => 'bc523970', 887 887 'phui-two-column-view-css' => 'bbe32c23', 888 - 'phui-workboard-color-css' => '207828dd', 889 - 'phui-workboard-view-css' => '60d09514', 888 + 'phui-workboard-color-css' => 'b60ef38a', 889 + 'phui-workboard-view-css' => '16441d5e', 890 890 'phui-workcard-view-css' => '0c62d7c5', 891 891 'phui-workpanel-view-css' => '92197373', 892 892 'phuix-action-list-view' => 'b5c256b8',
+3
src/applications/project/controller/PhabricatorProjectBoardViewController.php
··· 416 416 ->appendChild($board) 417 417 ->addClass('project-board-wrapper'); 418 418 419 + $nav = $this->getProfileMenu(); 420 + 419 421 $divider = id(new PHUIListItemView()) 420 422 ->setType(PHUIListItemView::TYPE_DIVIDER); 421 423 $fullscreen = $this->buildFullscreenMenu(); ··· 438 440 )) 439 441 ->setPageObjectPHIDs(array($project->getPHID())) 440 442 ->setShowFooter(false) 443 + ->setNavigation($nav) 441 444 ->setCrumbs($crumbs) 442 445 ->addQuicksandConfig( 443 446 array(
+28
webroot/rsrc/css/phui/workboards/phui-workboard-color.css
··· 2 2 * @provides phui-workboard-color-css 3 3 */ 4 4 5 + .phui-workboard-color .phabricator-nav-content .phui-workboard-view-shadow { 6 + background-color: transparent; 7 + } 8 + 5 9 .phui-workboard-color .phui-crumbs-view { 6 10 background-color: rgba({$alphagrey},.15); 7 11 border: none; ··· 26 30 background-color: rgba({$alphawhite},.6); 27 31 } 28 32 33 + body.phui-workboard-color .phui-profile-menu .phabricator-side-menu { 34 + background-color: rgba({$alphagrey},.3); 35 + } 36 + 37 + body.phui-workboard-color .phabricator-side-menu .phui-profile-menu-footer-1 { 38 + background-color: transparent; 39 + } 40 + 41 + .phui-workboard-color .phui-profile-menu .phabricator-side-menu { 42 + box-shadow: none; 43 + } 44 + 29 45 .phui-workboard-color-preview { 30 46 width: 50px; 31 47 height: 50px; 32 48 font-size: 34px; 49 + } 50 + 51 + .phui-workboard-color .phui-profile-menu .phabricator-side-menu 52 + .phui-list-item-href { 53 + color: rgba({$alphawhite},.8); 54 + } 55 + 56 + .phui-workboard-color .phui-profile-menu .phabricator-side-menu 57 + .phui-list-item-icon, 58 + .phui-workboard-color .phui-profile-menu .phabricator-side-menu 59 + .phui-list-item-href .phui-list-item-icon { 60 + color: rgba({$alphawhite},.8); 33 61 } 34 62 35 63 /* Gradients */
+18 -3
webroot/rsrc/css/phui/workboards/phui-workboard.css
··· 31 31 background: {$lightbluetext}; 32 32 } 33 33 34 + .device-desktop .project-board-wrapper .phui-workboard-view-shadow { 35 + left: {$menu.profile.width}; 36 + } 37 + 38 + .device-desktop .phui-profile-menu-collapsed .project-board-wrapper 39 + .phui-workboard-view-shadow { 40 + left: {$menu.profile.width.collapsed}; 41 + } 42 + 34 43 !print .project-board-wrapper .phui-workboard-view-shadow { 35 44 position: static; 36 45 } ··· 65 74 display: none; 66 75 } 67 76 68 - .device-desktop .phui-workboard-fullscreen .phui-workboard-view-shadow { 69 - top: 35px; 70 - left: 0; 77 + .device-desktop .phui-workboard-fullscreen .phui-profile-menu 78 + .phui-workboard-view-shadow { 79 + top: 35px; 80 + left: 0; 71 81 } 72 82 73 83 .device-desktop .phui-workboard-fullscreen .phui-workpanel-body-content { 74 84 max-height: calc(100vh - 120px); 85 + } 86 + 87 + .device-desktop .phui-workboard-fullscreen .phui-profile-menu 88 + .phabricator-nav-local { 89 + display: none; 75 90 } 76 91 77 92 .device .phui-workboard-expand-icon {