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

Allow task graph task titles to go full width

Summary: Fixes T12213. Removes truncation and allows titles to be full width if needed.

Test Plan:
Chrome / Firefox / Safari on Mac, mobile and desktop widths.

{F2754679}

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T12213

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

+8 -8
+3 -3
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'conpherence.pkg.css' => 'a520d619', 11 11 'conpherence.pkg.js' => '6249a1cf', 12 - 'core.pkg.css' => '2a5c3505', 12 + 'core.pkg.css' => '76a0e8c9', 13 13 'core.pkg.js' => '1fa7c0c5', 14 14 'darkconsole.pkg.js' => 'e7393ebb', 15 15 'differential.pkg.css' => '4815647b', ··· 27 27 'rsrc/css/aphront/notification.css' => '3f6c89c9', 28 28 'rsrc/css/aphront/panel-view.css' => '8427b78d', 29 29 'rsrc/css/aphront/phabricator-nav-view.css' => 'e58a4a30', 30 - 'rsrc/css/aphront/table-view.css' => '213a5981', 30 + 'rsrc/css/aphront/table-view.css' => '6ca8e057', 31 31 'rsrc/css/aphront/tokenizer.css' => '9a8cb501', 32 32 'rsrc/css/aphront/tooltip.css' => '173b9431', 33 33 'rsrc/css/aphront/typeahead-browse.css' => '8904346a', ··· 552 552 'aphront-list-filter-view-css' => '5d6f0526', 553 553 'aphront-multi-column-view-css' => '84cc6640', 554 554 'aphront-panel-view-css' => '8427b78d', 555 - 'aphront-table-view-css' => '213a5981', 555 + 'aphront-table-view-css' => '6ca8e057', 556 556 'aphront-tokenizer-control-css' => '9a8cb501', 557 557 'aphront-tooltip-css' => '173b9431', 558 558 'aphront-typeahead-control-css' => 'd4f16145',
+1 -5
src/infrastructure/graph/ManiphestTaskGraph.php
··· 53 53 54 54 $full_title = $object->getTitle(); 55 55 56 - $title = id(new PhutilUTF8StringTruncator()) 57 - ->setMaximumGlyphs(80) 58 - ->truncateString($full_title); 59 - 60 56 $link = phutil_tag( 61 57 'a', 62 58 array( 63 59 'href' => $object->getURI(), 64 60 'title' => $full_title, 65 61 ), 66 - $title); 62 + $full_title); 67 63 68 64 $link = array( 69 65 phutil_tag(
+4
webroot/rsrc/css/aphront/table-view.css
··· 232 232 233 233 .aphront-table-view td.object-link { 234 234 white-space: nowrap; 235 + word-wrap: break-word; 236 + overflow: hidden; 237 + text-overflow: ellipsis; 238 + max-width: 0; 235 239 } 236 240 237 241 .aphront-table-view tr.closed td.object-link .object-name,