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

List view CSS: Change phui-oi-col2 width to max-width

Summary:
Don't ellipsize strings that early when there is a lot of horizontal space.

Refs T16193

Test Plan: Look at different lists (task search results, project members list, etc) with a viewport width of 921px, ideally with objects which have a longer title.

Reviewers: O1 Blessed Committers, mainframe98

Reviewed By: O1 Blessed Committers, mainframe98

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Maniphest Tasks: T16193

Differential Revision: https://we.phorge.it/D26314

+4 -4
+3 -3
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'conpherence.pkg.css' => 'beb13d57', 11 11 'conpherence.pkg.js' => '020aebcf', 12 - 'core.pkg.css' => 'b29cd0cd', 12 + 'core.pkg.css' => '8958fe2d', 13 13 'core.pkg.js' => '83580d78', 14 14 'dark-console.pkg.js' => '187792c2', 15 15 'differential.pkg.css' => '77189aae', ··· 126 126 'rsrc/css/phui/object-item/phui-oi-color.css' => 'b517bfa0', 127 127 'rsrc/css/phui/object-item/phui-oi-drag-ui.css' => 'da15d3dc', 128 128 'rsrc/css/phui/object-item/phui-oi-flush-ui.css' => '490e2e2e', 129 - 'rsrc/css/phui/object-item/phui-oi-list-view.css' => 'fc69e136', 129 + 'rsrc/css/phui/object-item/phui-oi-list-view.css' => '41368a2c', 130 130 'rsrc/css/phui/object-item/phui-oi-simple-ui.css' => '9b03a61f', 131 131 'rsrc/css/phui/phui-action-list.css' => 'b46ef6bd', 132 132 'rsrc/css/phui/phui-action-panel.css' => 'c0db6855', ··· 815 815 'phui-oi-color-css' => 'b517bfa0', 816 816 'phui-oi-drag-ui-css' => 'da15d3dc', 817 817 'phui-oi-flush-ui-css' => '490e2e2e', 818 - 'phui-oi-list-view-css' => 'fc69e136', 818 + 'phui-oi-list-view-css' => '41368a2c', 819 819 'phui-oi-simple-ui-css' => '9b03a61f', 820 820 'phui-pager-css' => 'd022c7ad', 821 821 'phui-pinboard-view-css' => '1f08f5d8',
+1 -1
webroot/rsrc/css/phui/object-item/phui-oi-list-view.css
··· 180 180 } 181 181 182 182 .phui-oi-col2 { 183 - width: 160px; 183 + max-width: 160px; 184 184 display: table-cell; 185 185 vertical-align: top; 186 186 }