Fix some Quicksand bugs

Summary: Packages AppSearch, fixes body color, moves Differential filetree into differential package.

Test Plan: Enable quicksand. Navigate home -> differential -> diff.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Differential Revision: https://secure.phabricator.com/D16641
This commit is contained in:
Chad Little
2016-09-30 14:55:04 -07:00
parent a3dd1eab3d
commit e498d4476d
3 changed files with 9 additions and 7 deletions

View File

@@ -320,6 +320,7 @@ final class PhabricatorApplicationSearchController
$crumbs->addTextCrumb($title);
}
$nav->addClass('application-search-view');
require_celerity_resource('application-search-view-css');
return $this->newPage()
@@ -327,8 +328,7 @@ final class PhabricatorApplicationSearchController
->setTitle(pht('Query: %s', $title))
->setCrumbs($crumbs)
->setNavigation($nav)
->appendChild($body)
->addClass('application-search-view');
->appendChild($body);
}
private function processEditRequest() {
@@ -419,6 +419,7 @@ final class PhabricatorApplicationSearchController
->setObjectList($list)
->addClass('application-search-results');
$nav->addClass('application-search-view');
require_celerity_resource('application-search-view-css');
return $this->newPage()
@@ -426,7 +427,6 @@ final class PhabricatorApplicationSearchController
->setTitle(pht('Saved Queries'))
->setCrumbs($crumbs)
->setNavigation($nav)
->addClass('application-search-view')
->appendChild($box);
}