mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Panel background changes for Repositories app.
Summary: Changed some background panels. Test Plan: Reload page. Reviewers: epriestley, btrahan Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D4458
This commit is contained in:
parent
cba5a866f8
commit
fb9a1c38fb
3 changed files with 5 additions and 1 deletions
|
@ -106,6 +106,7 @@ final class PhabricatorRepositoryCreateController
|
|||
$panel->setHeader('Create Repository');
|
||||
$panel->appendChild($form);
|
||||
$panel->setWidth(AphrontPanelView::WIDTH_FORM);
|
||||
$panel->setNoBackground();
|
||||
|
||||
return $this->buildStandardPageResponse(
|
||||
array(
|
||||
|
|
|
@ -159,7 +159,7 @@ final class PhabricatorRepositoryEditController
|
|||
$panel->setHeader('Edit Repository');
|
||||
$panel->appendChild($form);
|
||||
$panel->setWidth(AphrontPanelView::WIDTH_FORM);
|
||||
|
||||
$panel->setNoBackground();
|
||||
|
||||
$nav = $this->sideNav;
|
||||
|
||||
|
@ -665,6 +665,7 @@ final class PhabricatorRepositoryEditController
|
|||
$panel->setHeader('Repository Tracking');
|
||||
$panel->appendChild($form);
|
||||
$panel->setWidth(AphrontPanelView::WIDTH_WIDE);
|
||||
$panel->setNoBackground();
|
||||
|
||||
$nav = $this->sideNav;
|
||||
$nav->appendChild($error_view);
|
||||
|
|
|
@ -89,6 +89,7 @@ final class PhabricatorRepositoryListController
|
|||
$panel->setCreateButton('Create New Repository', '/repository/create/');
|
||||
}
|
||||
$panel->appendChild($table);
|
||||
$panel->setNoBackground();
|
||||
|
||||
$projects = id(new PhabricatorRepositoryArcanistProject())->loadAll();
|
||||
|
||||
|
@ -150,6 +151,7 @@ final class PhabricatorRepositoryListController
|
|||
$project_panel = new AphrontPanelView();
|
||||
$project_panel->setHeader('Arcanist Projects');
|
||||
$project_panel->appendChild($project_table);
|
||||
$project_panel->setNoBackground();
|
||||
|
||||
return $this->buildStandardPageResponse(
|
||||
array(
|
||||
|
|
Loading…
Reference in a new issue