Misc Diffusion/Differential CSS tweaks

Summary: Various tweaks and fixes. Adds a File Contents view in Diffusion, normalizes spaces, colors.

Test Plan: tested differential and diffusion in my sandbox.

Reviewers: epriestley, btrahan

Reviewed By: epriestley

CC: Korvin, epriestley, aran

Maniphest Tasks: T3952

Differential Revision: https://secure.phabricator.com/D7325
This commit is contained in:
Chad Little
2013-10-16 13:09:12 -07:00
parent 314673f4f6
commit 89d35b98c8
7 changed files with 58 additions and 65 deletions

View File

@@ -297,11 +297,14 @@ final class DiffusionBrowseFileController extends DiffusionBrowseController {
$corpus = phutil_tag(
'div',
array(
'style' => 'padding: 0 2em;',
'id' => $id,
),
$corpus_table);
$corpus = id(new PHUIObjectBoxView())
->setHeaderText('File Contents')
->appendChild($corpus);
Javelin::initBehavior('load-blame', array('id' => $id));
}