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

Prevent text selection (mostly) on workpanels

Summary: Fixes T5719, Not completely convinced we won't see another ticket here, but overall testing it feels better.

Test Plan: dragon drop a lot of stuff.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: epriestley, Korvin

Maniphest Tasks: T5719

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

+20 -2
+2 -2
resources/celerity/map.php
··· 146 146 'rsrc/css/phui/phui-text.css' => '23e9b4b7', 147 147 'rsrc/css/phui/phui-timeline-view.css' => 'bbd990d0', 148 148 'rsrc/css/phui/phui-workboard-view.css' => '2bf82d00', 149 - 'rsrc/css/phui/phui-workpanel-view.css' => 'ed2a2162', 149 + 'rsrc/css/phui/phui-workpanel-view.css' => 'e5574303', 150 150 'rsrc/css/sprite-apps-large.css' => '12ea1ced', 151 151 'rsrc/css/sprite-apps.css' => '37ee4f4e', 152 152 'rsrc/css/sprite-conpherence.css' => '3b4a0487', ··· 799 799 'phui-text-css' => '23e9b4b7', 800 800 'phui-timeline-view-css' => 'bbd990d0', 801 801 'phui-workboard-view-css' => '2bf82d00', 802 - 'phui-workpanel-view-css' => 'ed2a2162', 802 + 'phui-workpanel-view-css' => 'e5574303', 803 803 'phuix-action-list-view' => 'b5c256b8', 804 804 'phuix-action-view' => '6e8cefa4', 805 805 'phuix-dropdown-menu' => 'bd4c8dca',
+18
webroot/rsrc/css/phui/phui-workpanel-view.css
··· 17 17 margin: 0 8px; 18 18 } 19 19 20 + .phui-workboard-view { 21 + -webkit-touch-callout: none; 22 + -webkit-user-select: none; 23 + -khtml-user-select: none; 24 + -moz-user-select: none; 25 + -ms-user-select: none; 26 + user-select: none; 27 + } 28 + 29 + .phui-workboard-view .phui-object-item .phui-object-item-objname { 30 + -webkit-touch-callout: text; 31 + -webkit-user-select: text; 32 + -khtml-user-select: text; 33 + -moz-user-select: text; 34 + -ms-user-select: text; 35 + user-select: text; 36 + } 37 + 20 38 .phui-workboard-view .phui-object-item-link { 21 39 white-space: normal; 22 40 display: inline;