@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: Fix -webkit-touch-callout property value in phui-workcard.css

Summary:
`-webkit-touch-callout: text;` is an invalid property value.
Likely `-webkit-touch-callout: default;` was meant, per Syntax definition on https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-touch-callout

Test Plan: Unknown. Likely use Safari browser on iOS and long-press on elements in a project workboard card. See also https://caniuse.com/?search=-webkit-touch-callout

Reviewers: O1 Blessed Committers, mainframe98

Reviewed By: O1 Blessed Committers, mainframe98

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

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

+3 -3
+2 -2
resources/celerity/map.php
··· 175 175 'rsrc/css/phui/phui-two-column-view.css' => '54fb9794', 176 176 'rsrc/css/phui/workboards/phui-workboard-color.css' => '27fbe0ac', 177 177 'rsrc/css/phui/workboards/phui-workboard.css' => 'e7ba21a7', 178 - 'rsrc/css/phui/workboards/phui-workcard.css' => '62056e3b', 178 + 'rsrc/css/phui/workboards/phui-workcard.css' => 'a6c585d5', 179 179 'rsrc/css/phui/workboards/phui-workpanel.css' => 'c44f95c7', 180 180 'rsrc/css/sprite-login.css' => '0abdf921', 181 181 'rsrc/css/sprite-tokens.css' => '330edc9e', ··· 831 831 'phui-two-column-view-css' => '54fb9794', 832 832 'phui-workboard-color-css' => '27fbe0ac', 833 833 'phui-workboard-view-css' => 'e7ba21a7', 834 - 'phui-workcard-view-css' => '62056e3b', 834 + 'phui-workcard-view-css' => 'a6c585d5', 835 835 'phui-workpanel-view-css' => 'c44f95c7', 836 836 'phuix-action-list-view' => 'c68f183f', 837 837 'phuix-action-view' => 'a8f573a9',
+1 -1
webroot/rsrc/css/phui/workboards/phui-workcard.css
··· 26 26 } 27 27 28 28 .phui-workcard.phui-oi .phui-oi-objname { 29 - -webkit-touch-callout: text; 29 + -webkit-touch-callout: default; 30 30 -webkit-user-select: text; 31 31 user-select: text; 32 32 }