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

CSS: Make long phui-tag-view object titles wrap in Remarkup context

Summary:
Make long referenced object titles (markup like `{D1}` or `{T1}` wrap in a Remarkup context (description section, comment preview, transaction comments) not to become unreadable.
Keep current `white-space: nowrap` for `.phui-tag-view` (introduced in rPce30f8c88bf6541ebbdfa1dd6920658a4cd0255f) for other contexts.

Closes T16077

Test Plan:
* Paste the monogram of an object with a long name in curly brackets in a task description and a task comment on a screen with low viewport width.
* Create a project tag with a long name and associate it to a task, look at that task in a list of Maniphest query search results on a screen with low viewport width.

Reviewers: O1 Blessed Committers, valerio.bozzolan

Reviewed By: O1 Blessed Committers, valerio.bozzolan

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

Maniphest Tasks: T16077

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

+7 -3
+3 -3
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'conpherence.pkg.css' => 'b2d6f4b8', 11 11 'conpherence.pkg.js' => '020aebcf', 12 - 'core.pkg.css' => '5fb9829e', 12 + 'core.pkg.css' => 'dac75b15', 13 13 'core.pkg.js' => '83c66b30', 14 14 'dark-console.pkg.js' => '187792c2', 15 15 'differential.pkg.css' => '0dac8831', ··· 170 170 'rsrc/css/phui/phui-segment-bar-view.css' => '5166b370', 171 171 'rsrc/css/phui/phui-spacing.css' => 'b05cadc3', 172 172 'rsrc/css/phui/phui-status.css' => '293b5dad', 173 - 'rsrc/css/phui/phui-tag-view.css' => 'f5994dd2', 173 + 'rsrc/css/phui/phui-tag-view.css' => '3e3dc9d8', 174 174 'rsrc/css/phui/phui-timeline-view.css' => '1ccbf191', 175 175 'rsrc/css/phui/phui-two-column-view.css' => 'f8db54d6', 176 176 'rsrc/css/phui/workboards/phui-workboard-color.css' => '27fbe0ac', ··· 806 806 'phui-segment-bar-view-css' => '5166b370', 807 807 'phui-spacing-css' => 'b05cadc3', 808 808 'phui-status-list-view-css' => '293b5dad', 809 - 'phui-tag-view-css' => 'f5994dd2', 809 + 'phui-tag-view-css' => '3e3dc9d8', 810 810 'phui-theme-css' => '35883b37', 811 811 'phui-timeline-view-css' => '1ccbf191', 812 812 'phui-two-column-view-css' => 'f8db54d6',
+4
webroot/rsrc/css/phui/phui-tag-view.css
··· 550 550 .phui-tag-core.phui-tag-color-person { 551 551 border-color: {$red}; 552 552 } 553 + 554 + .phabricator-remarkup a.phui-tag-view { 555 + white-space: wrap; 556 + }