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

Hide footer on mobile Conpherence

Summary: This has been causing scrolling issues for me for a while, turns out the footer behind the Conpherence layout can bubble up and cause scrolling issues if you don't hit the scrollarea in the right place with your finger. Hiding it via CSS or removing the footer in the configuration resolves the issue on my phone on secure.

Test Plan: Test with and without footer on secure, hide footer in CSS since it's not visible anyways.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+8 -3
+3 -3
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'conpherence.pkg.css' => 'fabab894', 10 + 'conpherence.pkg.css' => 'cea72e09', 11 11 'conpherence.pkg.js' => '6249a1cf', 12 12 'core.pkg.css' => '46d588e4', 13 13 'core.pkg.js' => '2d9fc958', ··· 49 49 'rsrc/css/application/conpherence/durable-column.css' => 'd82e130c', 50 50 'rsrc/css/application/conpherence/header-pane.css' => '1c81cda6', 51 51 'rsrc/css/application/conpherence/menu.css' => '4f51db5a', 52 - 'rsrc/css/application/conpherence/message-pane.css' => 'b499f371', 52 + 'rsrc/css/application/conpherence/message-pane.css' => '394ae8fa', 53 53 'rsrc/css/application/conpherence/notification.css' => '965db05b', 54 54 'rsrc/css/application/conpherence/participant-pane.css' => 'ac1baaa8', 55 55 'rsrc/css/application/conpherence/transaction.css' => '85129c68', ··· 619 619 'conpherence-durable-column-view' => 'd82e130c', 620 620 'conpherence-header-pane-css' => '1c81cda6', 621 621 'conpherence-menu-css' => '4f51db5a', 622 - 'conpherence-message-pane-css' => 'b499f371', 622 + 'conpherence-message-pane-css' => '394ae8fa', 623 623 'conpherence-notification-css' => '965db05b', 624 624 'conpherence-participant-pane-css' => 'ac1baaa8', 625 625 'conpherence-thread-manager' => '358c717b',
+5
webroot/rsrc/css/application/conpherence/message-pane.css
··· 411 411 margin-bottom: 0; 412 412 } 413 413 414 + /* this causes scrolling issues on iDevices */ 415 + .device .conpherence-layout + .phabricator-standard-page-footer { 416 + display: none; 417 + } 418 + 414 419 /***** Thread Loading *********************************************************/ 415 420 416 421 .conpherence-layout .conpherence-loading-mask {