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
This commit is contained in:
		| @@ -166,8 +166,8 @@ return array( | |||||||
|     'rsrc/css/phui/phui-tag-view.css' => '6bbd83e2', |     'rsrc/css/phui/phui-tag-view.css' => '6bbd83e2', | ||||||
|     'rsrc/css/phui/phui-timeline-view.css' => 'bc523970', |     'rsrc/css/phui/phui-timeline-view.css' => 'bc523970', | ||||||
|     'rsrc/css/phui/phui-two-column-view.css' => 'bbe32c23', |     'rsrc/css/phui/phui-two-column-view.css' => 'bbe32c23', | ||||||
|     'rsrc/css/phui/workboards/phui-workboard-color.css' => '207828dd', |     'rsrc/css/phui/workboards/phui-workboard-color.css' => 'b60ef38a', | ||||||
|     'rsrc/css/phui/workboards/phui-workboard.css' => '60d09514', |     'rsrc/css/phui/workboards/phui-workboard.css' => '16441d5e', | ||||||
|     'rsrc/css/phui/workboards/phui-workcard.css' => '0c62d7c5', |     'rsrc/css/phui/workboards/phui-workcard.css' => '0c62d7c5', | ||||||
|     'rsrc/css/phui/workboards/phui-workpanel.css' => '92197373', |     'rsrc/css/phui/workboards/phui-workpanel.css' => '92197373', | ||||||
|     'rsrc/css/sprite-login.css' => '6dbbbd97', |     'rsrc/css/sprite-login.css' => '6dbbbd97', | ||||||
| @@ -885,8 +885,8 @@ return array( | |||||||
|     'phui-theme-css' => '798c69b8', |     'phui-theme-css' => '798c69b8', | ||||||
|     'phui-timeline-view-css' => 'bc523970', |     'phui-timeline-view-css' => 'bc523970', | ||||||
|     'phui-two-column-view-css' => 'bbe32c23', |     'phui-two-column-view-css' => 'bbe32c23', | ||||||
|     'phui-workboard-color-css' => '207828dd', |     'phui-workboard-color-css' => 'b60ef38a', | ||||||
|     'phui-workboard-view-css' => '60d09514', |     'phui-workboard-view-css' => '16441d5e', | ||||||
|     'phui-workcard-view-css' => '0c62d7c5', |     'phui-workcard-view-css' => '0c62d7c5', | ||||||
|     'phui-workpanel-view-css' => '92197373', |     'phui-workpanel-view-css' => '92197373', | ||||||
|     'phuix-action-list-view' => 'b5c256b8', |     'phuix-action-list-view' => 'b5c256b8', | ||||||
|   | |||||||
| @@ -416,6 +416,8 @@ final class PhabricatorProjectBoardViewController | |||||||
|       ->appendChild($board) |       ->appendChild($board) | ||||||
|       ->addClass('project-board-wrapper'); |       ->addClass('project-board-wrapper'); | ||||||
|  |  | ||||||
|  |     $nav = $this->getProfileMenu(); | ||||||
|  |  | ||||||
|     $divider = id(new PHUIListItemView()) |     $divider = id(new PHUIListItemView()) | ||||||
|       ->setType(PHUIListItemView::TYPE_DIVIDER); |       ->setType(PHUIListItemView::TYPE_DIVIDER); | ||||||
|     $fullscreen = $this->buildFullscreenMenu(); |     $fullscreen = $this->buildFullscreenMenu(); | ||||||
| @@ -438,6 +440,7 @@ final class PhabricatorProjectBoardViewController | |||||||
|         )) |         )) | ||||||
|       ->setPageObjectPHIDs(array($project->getPHID())) |       ->setPageObjectPHIDs(array($project->getPHID())) | ||||||
|       ->setShowFooter(false) |       ->setShowFooter(false) | ||||||
|  |       ->setNavigation($nav) | ||||||
|       ->setCrumbs($crumbs) |       ->setCrumbs($crumbs) | ||||||
|       ->addQuicksandConfig( |       ->addQuicksandConfig( | ||||||
|         array( |         array( | ||||||
|   | |||||||
| @@ -2,6 +2,10 @@ | |||||||
|  * @provides phui-workboard-color-css |  * @provides phui-workboard-color-css | ||||||
|  */ |  */ | ||||||
|  |  | ||||||
|  | .phui-workboard-color .phabricator-nav-content .phui-workboard-view-shadow { | ||||||
|  |   background-color: transparent; | ||||||
|  | } | ||||||
|  |  | ||||||
| .phui-workboard-color .phui-crumbs-view { | .phui-workboard-color .phui-crumbs-view { | ||||||
|   background-color: rgba({$alphagrey},.15); |   background-color: rgba({$alphagrey},.15); | ||||||
|   border: none; |   border: none; | ||||||
| @@ -26,12 +30,36 @@ | |||||||
|   background-color: rgba({$alphawhite},.6); |   background-color: rgba({$alphawhite},.6); | ||||||
| } | } | ||||||
|  |  | ||||||
|  | body.phui-workboard-color .phui-profile-menu .phabricator-side-menu { | ||||||
|  |   background-color: rgba({$alphagrey},.3); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | body.phui-workboard-color .phabricator-side-menu .phui-profile-menu-footer-1 { | ||||||
|  |   background-color: transparent; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | .phui-workboard-color .phui-profile-menu .phabricator-side-menu { | ||||||
|  |   box-shadow: none; | ||||||
|  | } | ||||||
|  |  | ||||||
| .phui-workboard-color-preview { | .phui-workboard-color-preview { | ||||||
|   width: 50px; |   width: 50px; | ||||||
|   height: 50px; |   height: 50px; | ||||||
|   font-size: 34px; |   font-size: 34px; | ||||||
| } | } | ||||||
|  |  | ||||||
|  | .phui-workboard-color .phui-profile-menu .phabricator-side-menu | ||||||
|  |   .phui-list-item-href { | ||||||
|  |     color: rgba({$alphawhite},.8); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | .phui-workboard-color .phui-profile-menu .phabricator-side-menu | ||||||
|  |   .phui-list-item-icon, | ||||||
|  | .phui-workboard-color .phui-profile-menu .phabricator-side-menu | ||||||
|  |   .phui-list-item-href .phui-list-item-icon { | ||||||
|  |     color: rgba({$alphawhite},.8); | ||||||
|  | } | ||||||
|  |  | ||||||
| /* Gradients */ | /* Gradients */ | ||||||
|  |  | ||||||
| .phui-workboard-gradient-red { | .phui-workboard-gradient-red { | ||||||
|   | |||||||
| @@ -31,6 +31,15 @@ | |||||||
|   background: {$lightbluetext}; |   background: {$lightbluetext}; | ||||||
| } | } | ||||||
|  |  | ||||||
|  | .device-desktop .project-board-wrapper .phui-workboard-view-shadow { | ||||||
|  |   left: {$menu.profile.width}; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | .device-desktop .phui-profile-menu-collapsed .project-board-wrapper | ||||||
|  |   .phui-workboard-view-shadow { | ||||||
|  |   left: {$menu.profile.width.collapsed}; | ||||||
|  | } | ||||||
|  |  | ||||||
| !print .project-board-wrapper .phui-workboard-view-shadow { | !print .project-board-wrapper .phui-workboard-view-shadow { | ||||||
|   position: static; |   position: static; | ||||||
| } | } | ||||||
| @@ -65,15 +74,21 @@ | |||||||
|   display: none; |   display: none; | ||||||
| } | } | ||||||
|  |  | ||||||
| .device-desktop .phui-workboard-fullscreen .phui-workboard-view-shadow { | .device-desktop .phui-workboard-fullscreen .phui-profile-menu | ||||||
|   top: 35px; |   .phui-workboard-view-shadow { | ||||||
|   left: 0; |     top: 35px; | ||||||
|  |     left: 0; | ||||||
| } | } | ||||||
|  |  | ||||||
| .device-desktop .phui-workboard-fullscreen .phui-workpanel-body-content { | .device-desktop .phui-workboard-fullscreen .phui-workpanel-body-content { | ||||||
|   max-height: calc(100vh - 120px); |   max-height: calc(100vh - 120px); | ||||||
| } | } | ||||||
|  |  | ||||||
|  | .device-desktop .phui-workboard-fullscreen .phui-profile-menu | ||||||
|  |   .phabricator-nav-local { | ||||||
|  |     display: none; | ||||||
|  | } | ||||||
|  |  | ||||||
| .device .phui-workboard-expand-icon { | .device .phui-workboard-expand-icon { | ||||||
|   display: none; |   display: none; | ||||||
| } | } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Chad Little
					Chad Little