@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.

Add table headers to Pholio Mock History table

Summary: Adds a basic "Revision {$num}" table header

Test Plan: Actually spend more time testing various depth layouts.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: epriestley, Korvin

Maniphest Tasks: T5383

Differential Revision: https://secure.phabricator.com/D9648

+24 -2
+2 -2
resources/celerity/map.php
··· 81 81 'rsrc/css/application/phame/phame.css' => '19ecc703', 82 82 'rsrc/css/application/pholio/pholio-edit.css' => '3ad9d1ee', 83 83 'rsrc/css/application/pholio/pholio-inline-comments.css' => '2703fdb9', 84 - 'rsrc/css/application/pholio/pholio.css' => 'c1510ea2', 84 + 'rsrc/css/application/pholio/pholio.css' => '5591f1e9', 85 85 'rsrc/css/application/phortune/phortune-credit-card-form.css' => 'b25b4beb', 86 86 'rsrc/css/application/phrequent/phrequent.css' => 'ffc185ad', 87 87 'rsrc/css/application/phriction/phriction-document-css.css' => '7d7f0071', ··· 752 752 'phabricator-uiexample-reactor-sendproperties' => '551add57', 753 753 'phabricator-zindex-css' => 'efb673ac', 754 754 'phame-css' => '19ecc703', 755 - 'pholio-css' => 'c1510ea2', 755 + 'pholio-css' => '5591f1e9', 756 756 'pholio-edit-css' => '3ad9d1ee', 757 757 'pholio-inline-comments-css' => '2703fdb9', 758 758 'phortune-credit-card-form' => '2290aeef',
+13
src/applications/pholio/view/PholioMockThumbGridView.php
··· 67 67 } 68 68 69 69 $grid = array(); 70 + $jj = $depth; 70 71 for ($ii = 0; $ii < $depth; $ii++) { 71 72 $row = array(); 73 + if ($depth == $jj) { 74 + $row[] = phutil_tag( 75 + 'th', 76 + array( 77 + 'valign' => 'middle', 78 + 'class' => 'pholio-history-header', 79 + ), 80 + pht('Current Revision')); 81 + } else { 82 + $row[] = phutil_tag('th', array(), null); 83 + } 72 84 foreach ($cols as $col) { 73 85 if (empty($col[$ii])) { 74 86 $row[] = phutil_tag('td', array(), null); ··· 78 90 } 79 91 } 80 92 $grid[] = phutil_tag('tr', array(), $row); 93 + $jj--; 81 94 } 82 95 83 96 $grid = phutil_tag(
+9
webroot/rsrc/css/application/pholio/pholio.css
··· 239 239 padding: 12px 8px; 240 240 border-top: 1px solid {$thinblueborder}; 241 241 } 242 + 243 + .pholio-history-header { 244 + vertical-align: middle; 245 + color: {$lightbluetext}; 246 + font-weight: bold; 247 + padding-right: 8px; 248 + -webkit-font-smoothing: antialiased; 249 + white-space: nowrap; 250 + }