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

Fix super long topics in Conpherence header

Summary: Add some ellipsis if the topic is absurdly long.

Test Plan: desktop, mobile, tablet. MMMMMMMmmmMMMMMMmMMMmMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+11 -3
+3 -3
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'conpherence.pkg.css' => '49b8aaac', 10 + 'conpherence.pkg.css' => '6412a825', 11 11 'conpherence.pkg.js' => 'cbe4d9be', 12 12 'core.pkg.css' => 'b99bbf5e', 13 13 'core.pkg.js' => '3eb7abf7', ··· 47 47 'rsrc/css/application/config/setup-issue.css' => 'f794cfc3', 48 48 'rsrc/css/application/config/unhandled-exception.css' => '4c96257a', 49 49 'rsrc/css/application/conpherence/durable-column.css' => 'd82e130c', 50 - 'rsrc/css/application/conpherence/header-pane.css' => 'e8acbd37', 50 + 'rsrc/css/application/conpherence/header-pane.css' => '1c81cda6', 51 51 'rsrc/css/application/conpherence/menu.css' => '4f51db5a', 52 52 'rsrc/css/application/conpherence/message-pane.css' => 'b80f1675', 53 53 'rsrc/css/application/conpherence/notification.css' => '965db05b', ··· 617 617 'config-options-css' => '0ede4c9b', 618 618 'config-page-css' => '8798e14f', 619 619 'conpherence-durable-column-view' => 'd82e130c', 620 - 'conpherence-header-pane-css' => 'e8acbd37', 620 + 'conpherence-header-pane-css' => '1c81cda6', 621 621 'conpherence-menu-css' => '4f51db5a', 622 622 'conpherence-message-pane-css' => 'b80f1675', 623 623 'conpherence-notification-css' => '965db05b',
+8
webroot/rsrc/css/application/conpherence/header-pane.css
··· 18 18 padding: 0; 19 19 font-size: 12px; 20 20 margin: 0; 21 + text-overflow: ellipsis; 22 + white-space: nowrap; 23 + overflow: hidden; 21 24 } 22 25 23 26 .conpherence-header-pane .phui-header-col1 { ··· 40 43 41 44 .conpherence-header-pane .phui-header-col2 { 42 45 height: 40px; 46 + overflow: hidden; 47 + text-overflow: ellipsis; 48 + white-space: nowrap; 49 + width: 60%; 50 + max-width: 0; 43 51 } 44 52 45 53 .conpherence-header-pane .phui-header-action-list .phui-header-action-item