1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-18 11:30:55 +01:00

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
This commit is contained in:
Chad Little 2016-10-19 15:15:06 -07:00
parent 67073f0d8a
commit a00e867de0
2 changed files with 8 additions and 3 deletions

View file

@ -7,7 +7,7 @@
*/ */
return array( return array(
'names' => array( 'names' => array(
'conpherence.pkg.css' => 'fabab894', 'conpherence.pkg.css' => 'cea72e09',
'conpherence.pkg.js' => '6249a1cf', 'conpherence.pkg.js' => '6249a1cf',
'core.pkg.css' => '46d588e4', 'core.pkg.css' => '46d588e4',
'core.pkg.js' => '2d9fc958', 'core.pkg.js' => '2d9fc958',
@ -49,7 +49,7 @@ return array(
'rsrc/css/application/conpherence/durable-column.css' => 'd82e130c', 'rsrc/css/application/conpherence/durable-column.css' => 'd82e130c',
'rsrc/css/application/conpherence/header-pane.css' => '1c81cda6', 'rsrc/css/application/conpherence/header-pane.css' => '1c81cda6',
'rsrc/css/application/conpherence/menu.css' => '4f51db5a', 'rsrc/css/application/conpherence/menu.css' => '4f51db5a',
'rsrc/css/application/conpherence/message-pane.css' => 'b499f371', 'rsrc/css/application/conpherence/message-pane.css' => '394ae8fa',
'rsrc/css/application/conpherence/notification.css' => '965db05b', 'rsrc/css/application/conpherence/notification.css' => '965db05b',
'rsrc/css/application/conpherence/participant-pane.css' => 'ac1baaa8', 'rsrc/css/application/conpherence/participant-pane.css' => 'ac1baaa8',
'rsrc/css/application/conpherence/transaction.css' => '85129c68', 'rsrc/css/application/conpherence/transaction.css' => '85129c68',
@ -619,7 +619,7 @@ return array(
'conpherence-durable-column-view' => 'd82e130c', 'conpherence-durable-column-view' => 'd82e130c',
'conpherence-header-pane-css' => '1c81cda6', 'conpherence-header-pane-css' => '1c81cda6',
'conpherence-menu-css' => '4f51db5a', 'conpherence-menu-css' => '4f51db5a',
'conpherence-message-pane-css' => 'b499f371', 'conpherence-message-pane-css' => '394ae8fa',
'conpherence-notification-css' => '965db05b', 'conpherence-notification-css' => '965db05b',
'conpherence-participant-pane-css' => 'ac1baaa8', 'conpherence-participant-pane-css' => 'ac1baaa8',
'conpherence-thread-manager' => '358c717b', 'conpherence-thread-manager' => '358c717b',

View file

@ -411,6 +411,11 @@
margin-bottom: 0; margin-bottom: 0;
} }
/* this causes scrolling issues on iDevices */
.device .conpherence-layout + .phabricator-standard-page-footer {
display: none;
}
/***** Thread Loading *********************************************************/ /***** Thread Loading *********************************************************/
.conpherence-layout .conpherence-loading-mask { .conpherence-layout .conpherence-loading-mask {