@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

authored by

Chad Little and committed by
chad
8f67d59d 0650f725

+7 -7
+3 -3
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'core.pkg.css' => '97b752c8', 10 + 'core.pkg.css' => '03a2a623', 11 11 'core.pkg.js' => 'e5484f37', 12 12 'darkconsole.pkg.js' => 'e7393ebb', 13 13 'differential.pkg.css' => '7ba78475', ··· 123 123 'rsrc/css/phui/phui-action-panel.css' => '91c7b835', 124 124 'rsrc/css/phui/phui-badge.css' => 'f25c3476', 125 125 'rsrc/css/phui/phui-big-info-view.css' => 'bd903741', 126 - 'rsrc/css/phui/phui-box.css' => '9c9159a7', 126 + 'rsrc/css/phui/phui-box.css' => 'd909ea3d', 127 127 'rsrc/css/phui/phui-button.css' => 'a64a8de6', 128 128 'rsrc/css/phui/phui-chart.css' => '6bf6f78e', 129 129 'rsrc/css/phui/phui-crumbs-view.css' => '79d536e5', ··· 805 805 'phui-action-panel-css' => '91c7b835', 806 806 'phui-badge-view-css' => 'f25c3476', 807 807 'phui-big-info-view-css' => 'bd903741', 808 - 'phui-box-css' => '9c9159a7', 808 + 'phui-box-css' => 'd909ea3d', 809 809 'phui-button-css' => 'a64a8de6', 810 810 'phui-calendar-css' => 'ccabe893', 811 811 'phui-calendar-day-css' => 'd1cf6f93',
+2 -2
src/applications/differential/controller/DifferentialRevisionEditController.php
··· 172 172 if ($revision->getID()) { 173 173 if ($diff) { 174 174 $header_icon = 'fa-upload'; 175 - $title = pht('Update Differential Revision'); 175 + $title = pht('Update Revision'); 176 176 $crumbs->addTextCrumb( 177 177 'D'.$revision->getID(), 178 178 '/differential/diff/'.$diff->getID().'/'); 179 179 } else { 180 180 $header_icon = 'fa-pencil'; 181 - $title = pht('Edit Differential Revision'); 181 + $title = pht('Edit Revision: %s', $revision->getTitle()); 182 182 $crumbs->addTextCrumb( 183 183 'D'.$revision->getID(), 184 184 '/D'.$revision->getID());
+1 -1
src/applications/differential/controller/DifferentialRevisionViewController.php
··· 1033 1033 } 1034 1034 1035 1035 $box = id(new PHUIObjectBoxView()) 1036 - ->setHeaderText(pht('DIFF DETAIL')) 1036 + ->setHeaderText(pht('Diff Detail')) 1037 1037 ->setBackground(PHUIObjectBoxView::BLUE_PROPERTY) 1038 1038 ->setUser($viewer); 1039 1039
+1 -1
webroot/rsrc/css/phui/phui-box.css
··· 93 93 } 94 94 95 95 .phui-box.phui-box-blue-property .phui-header-header { 96 - font-size: 13px; 96 + font-size: {$biggerfontsize}; 97 97 color: {$bluetext}; 98 98 } 99 99