Make ActionList on PHUIDocumentView always a dropdown menu

Summary: Gives back 160px of document space, makes Phriction easier to read. Moves ActionList into menu

Test Plan: Review Phriction Actions Menu, Edit Document, etc. Test mobile, tablet, desktop breakpoints.

Reviewers: btrahan, epriestley

Reviewed By: epriestley

Subscribers: Korvin, epriestley

Differential Revision: https://secure.phabricator.com/D12375
This commit is contained in:
Chad Little
2015-04-12 13:57:17 -07:00
parent eddc64ac88
commit a912e3bf83
4 changed files with 15 additions and 27 deletions

View File

@@ -205,7 +205,6 @@ final class PhrictionDocumentController
$actions->setID($action_id);
$page_content = id(new PHUIDocumentView())
->setOffset(true)
->setFontKit(PHUIDocumentView::FONT_SOURCE_SANS)
->setHeader($header)
->setActionListID($action_id)
@@ -218,20 +217,11 @@ final class PhrictionDocumentController
$core_content,
));
$core_page = phutil_tag(
'div',
array(
'class' => 'phriction-offset',
),
array(
$page_content,
$children,
));
return $this->buildApplicationPage(
array(
$crumbs->render(),
$core_page,
$page_content,
$children,
),
array(
'pageObjects' => array($document->getPHID()),
@@ -442,7 +432,6 @@ final class PhrictionDocumentController
);
return id(new PHUIDocumentView())
->setOffset(true)
->appendChild($content);
}