mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-18 21:02:41 +01:00
Bump font size on property headers
Summary: Bumps to 14px, fixes some on Differential Test Plan: view various headers in Differential Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D15647
This commit is contained in:
parent
0650f725f1
commit
8f67d59d28
4 changed files with 7 additions and 7 deletions
|
@ -7,7 +7,7 @@
|
||||||
*/
|
*/
|
||||||
return array(
|
return array(
|
||||||
'names' => array(
|
'names' => array(
|
||||||
'core.pkg.css' => '97b752c8',
|
'core.pkg.css' => '03a2a623',
|
||||||
'core.pkg.js' => 'e5484f37',
|
'core.pkg.js' => 'e5484f37',
|
||||||
'darkconsole.pkg.js' => 'e7393ebb',
|
'darkconsole.pkg.js' => 'e7393ebb',
|
||||||
'differential.pkg.css' => '7ba78475',
|
'differential.pkg.css' => '7ba78475',
|
||||||
|
@ -123,7 +123,7 @@ return array(
|
||||||
'rsrc/css/phui/phui-action-panel.css' => '91c7b835',
|
'rsrc/css/phui/phui-action-panel.css' => '91c7b835',
|
||||||
'rsrc/css/phui/phui-badge.css' => 'f25c3476',
|
'rsrc/css/phui/phui-badge.css' => 'f25c3476',
|
||||||
'rsrc/css/phui/phui-big-info-view.css' => 'bd903741',
|
'rsrc/css/phui/phui-big-info-view.css' => 'bd903741',
|
||||||
'rsrc/css/phui/phui-box.css' => '9c9159a7',
|
'rsrc/css/phui/phui-box.css' => 'd909ea3d',
|
||||||
'rsrc/css/phui/phui-button.css' => 'a64a8de6',
|
'rsrc/css/phui/phui-button.css' => 'a64a8de6',
|
||||||
'rsrc/css/phui/phui-chart.css' => '6bf6f78e',
|
'rsrc/css/phui/phui-chart.css' => '6bf6f78e',
|
||||||
'rsrc/css/phui/phui-crumbs-view.css' => '79d536e5',
|
'rsrc/css/phui/phui-crumbs-view.css' => '79d536e5',
|
||||||
|
@ -805,7 +805,7 @@ return array(
|
||||||
'phui-action-panel-css' => '91c7b835',
|
'phui-action-panel-css' => '91c7b835',
|
||||||
'phui-badge-view-css' => 'f25c3476',
|
'phui-badge-view-css' => 'f25c3476',
|
||||||
'phui-big-info-view-css' => 'bd903741',
|
'phui-big-info-view-css' => 'bd903741',
|
||||||
'phui-box-css' => '9c9159a7',
|
'phui-box-css' => 'd909ea3d',
|
||||||
'phui-button-css' => 'a64a8de6',
|
'phui-button-css' => 'a64a8de6',
|
||||||
'phui-calendar-css' => 'ccabe893',
|
'phui-calendar-css' => 'ccabe893',
|
||||||
'phui-calendar-day-css' => 'd1cf6f93',
|
'phui-calendar-day-css' => 'd1cf6f93',
|
||||||
|
|
|
@ -172,13 +172,13 @@ final class DifferentialRevisionEditController
|
||||||
if ($revision->getID()) {
|
if ($revision->getID()) {
|
||||||
if ($diff) {
|
if ($diff) {
|
||||||
$header_icon = 'fa-upload';
|
$header_icon = 'fa-upload';
|
||||||
$title = pht('Update Differential Revision');
|
$title = pht('Update Revision');
|
||||||
$crumbs->addTextCrumb(
|
$crumbs->addTextCrumb(
|
||||||
'D'.$revision->getID(),
|
'D'.$revision->getID(),
|
||||||
'/differential/diff/'.$diff->getID().'/');
|
'/differential/diff/'.$diff->getID().'/');
|
||||||
} else {
|
} else {
|
||||||
$header_icon = 'fa-pencil';
|
$header_icon = 'fa-pencil';
|
||||||
$title = pht('Edit Differential Revision');
|
$title = pht('Edit Revision: %s', $revision->getTitle());
|
||||||
$crumbs->addTextCrumb(
|
$crumbs->addTextCrumb(
|
||||||
'D'.$revision->getID(),
|
'D'.$revision->getID(),
|
||||||
'/D'.$revision->getID());
|
'/D'.$revision->getID());
|
||||||
|
|
|
@ -1033,7 +1033,7 @@ final class DifferentialRevisionViewController extends DifferentialController {
|
||||||
}
|
}
|
||||||
|
|
||||||
$box = id(new PHUIObjectBoxView())
|
$box = id(new PHUIObjectBoxView())
|
||||||
->setHeaderText(pht('DIFF DETAIL'))
|
->setHeaderText(pht('Diff Detail'))
|
||||||
->setBackground(PHUIObjectBoxView::BLUE_PROPERTY)
|
->setBackground(PHUIObjectBoxView::BLUE_PROPERTY)
|
||||||
->setUser($viewer);
|
->setUser($viewer);
|
||||||
|
|
||||||
|
|
|
@ -93,7 +93,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.phui-box.phui-box-blue-property .phui-header-header {
|
.phui-box.phui-box-blue-property .phui-header-header {
|
||||||
font-size: 13px;
|
font-size: {$biggerfontsize};
|
||||||
color: {$bluetext};
|
color: {$bluetext};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue