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

Ellipsize long labels in Add Action area to avoid text overlap

Summary:
Add CSS to ellipsize long labels and disable text wrapping

Closes T15707

Test Plan:
Set a long custom "action" label in `/config/edit/maniphest.points/`; go to a Maniphest task; open all items in the "Add Action..." dropdown.

Example config:

```
{
"enabled": true,
"label": "Points",
"action": "Set Points Yeah Points Points Much Points"
}
```

Reviewers: O1 Blessed Committers, valerio.bozzolan

Reviewed By: O1 Blessed Committers, valerio.bozzolan

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Maniphest Tasks: T15707

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

+6 -3
+3 -3
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'conpherence.pkg.css' => '2f25eb4f', 11 11 'conpherence.pkg.js' => '020aebcf', 12 - 'core.pkg.css' => '9f620ef6', 12 + 'core.pkg.css' => '5e7dbeb9', 13 13 'core.pkg.js' => '2eeda9e0', 14 14 'dark-console.pkg.js' => '187792c2', 15 15 'differential.pkg.css' => '2431def2', ··· 143 143 'rsrc/css/phui/phui-bulk-editor.css' => '374d5e30', 144 144 'rsrc/css/phui/phui-chart.css' => 'fe8f87a7', 145 145 'rsrc/css/phui/phui-cms.css' => '8c05c41e', 146 - 'rsrc/css/phui/phui-comment-form.css' => '9feec837', 146 + 'rsrc/css/phui/phui-comment-form.css' => '3c6679a3', 147 147 'rsrc/css/phui/phui-comment-panel.css' => 'ec4e31c0', 148 148 'rsrc/css/phui/phui-crumbs-view.css' => '614f43cf', 149 149 'rsrc/css/phui/phui-curtain-object-ref-view.css' => '51d93266', ··· 835 835 'phui-calendar-month-css' => 'cb758c42', 836 836 'phui-chart-css' => 'fe8f87a7', 837 837 'phui-cms-css' => '8c05c41e', 838 - 'phui-comment-form-css' => '9feec837', 838 + 'phui-comment-form-css' => '3c6679a3', 839 839 'phui-comment-panel-css' => 'ec4e31c0', 840 840 'phui-crumbs-view-css' => '614f43cf', 841 841 'phui-curtain-object-ref-view-css' => '51d93266',
+3
webroot/rsrc/css/phui/phui-comment-form.css
··· 158 158 height: 28px; 159 159 line-height: 28px; 160 160 padding: 0; 161 + text-overflow: ellipsis; 162 + white-space: nowrap; 163 + overflow: hidden; 161 164 } 162 165 163 166 .phui-comment-form-view .aphront-form-error .phui-icon-view {