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

Allow tablet breakpoint in Conpherence to have persistent participant pane

Summary: tablet viewpoints here are wide enough to support the participant column, go ahead and give it dedicated space.

Test Plan: review tablet, desktop, and mobile breakpoints in conpherence with column toggled on and off

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Differential Revision: https://secure.phabricator.com/D16724
This commit is contained in:
Chad Little 2016-10-18 21:13:53 -07:00
parent cc0f0b3865
commit b750c0a218
3 changed files with 18 additions and 6 deletions

View file

@ -7,7 +7,7 @@
*/ */
return array( return array(
'names' => array( 'names' => array(
'conpherence.pkg.css' => '6412a825', 'conpherence.pkg.css' => 'fabab894',
'conpherence.pkg.js' => 'cbe4d9be', 'conpherence.pkg.js' => 'cbe4d9be',
'core.pkg.css' => 'b99bbf5e', 'core.pkg.css' => 'b99bbf5e',
'core.pkg.js' => '2d9fc958', 'core.pkg.js' => '2d9fc958',
@ -49,9 +49,9 @@ 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' => 'b80f1675', 'rsrc/css/application/conpherence/message-pane.css' => 'b499f371',
'rsrc/css/application/conpherence/notification.css' => '965db05b', 'rsrc/css/application/conpherence/notification.css' => '965db05b',
'rsrc/css/application/conpherence/participant-pane.css' => '7bba0b56', 'rsrc/css/application/conpherence/participant-pane.css' => 'ac1baaa8',
'rsrc/css/application/conpherence/transaction.css' => '85129c68', 'rsrc/css/application/conpherence/transaction.css' => '85129c68',
'rsrc/css/application/contentsource/content-source-view.css' => '4b8b05d4', 'rsrc/css/application/contentsource/content-source-view.css' => '4b8b05d4',
'rsrc/css/application/countdown/timer.css' => '16c52f5c', 'rsrc/css/application/countdown/timer.css' => '16c52f5c',
@ -619,9 +619,9 @@ 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' => 'b80f1675', 'conpherence-message-pane-css' => 'b499f371',
'conpherence-notification-css' => '965db05b', 'conpherence-notification-css' => '965db05b',
'conpherence-participant-pane-css' => '7bba0b56', 'conpherence-participant-pane-css' => 'ac1baaa8',
'conpherence-thread-manager' => '358c717b', 'conpherence-thread-manager' => '358c717b',
'conpherence-transaction-css' => '85129c68', 'conpherence-transaction-css' => '85129c68',
'd3' => 'a11a5ff2', 'd3' => 'a11a5ff2',

View file

@ -82,6 +82,12 @@
} }
.device .conpherence-message-pane .conpherence-messages { .device .conpherence-message-pane .conpherence-messages {
left: 0;
bottom: 44px;
box-shadow: none;
}
.device-phone .conpherence-message-pane .conpherence-messages {
left: 0; left: 0;
right: 0; right: 0;
bottom: 44px; bottom: 44px;
@ -186,6 +192,12 @@
} }
.device .conpherence-message-pane .phui-form-view { .device .conpherence-message-pane .phui-form-view {
left: 0;
height: 34px;
width: auto;
}
.device-phone .conpherence-message-pane .phui-form-view {
left: 0; left: 0;
right: 0; right: 0;
height: 34px; height: 34px;

View file

@ -15,7 +15,7 @@
-webkit-overflow-scrolling: touch; -webkit-overflow-scrolling: touch;
} }
.device .conpherence-participant-pane { .device-phone .conpherence-participant-pane {
background-color: {$page.background}; background-color: {$page.background};
} }