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

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

Summary:
Turns out that max-width does not reliably restrict the width of table-cell elements due to the table layout model.
So this change does not do what it is expected to do.
See https://phabricator.wikimedia.org/T410449

Reverts D26314

Test Plan:
* Look at Maniphest search results with various viewport widths.
* Look at Project Membership lists with various viewport widths.
* See less aggressive ellipsizing.

Reviewers: O1 Blessed Committers, mainframe98

Reviewed By: O1 Blessed Committers, mainframe98

Subscribers: A_smart_kitten, tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

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

+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' => '4387f59f', 12 + 'core.pkg.css' => '16411fd2', 13 13 'core.pkg.js' => 'ebefb82a', 14 14 'dark-console.pkg.js' => '187792c2', 15 15 'differential.pkg.css' => 'abdb4fe9', ··· 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' => '41368a2c', 129 + 'rsrc/css/phui/object-item/phui-oi-list-view.css' => 'fc69e136', 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' => '88a4298b', ··· 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' => '41368a2c', 818 + 'phui-oi-list-view-css' => 'fc69e136', 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 - max-width: 160px; 183 + width: 160px; 184 184 display: table-cell; 185 185 vertical-align: top; 186 186 }