1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-26 08:42:41 +01:00

Fix Conpherence layout with setup issues

Summary: Make Conpherence usable when there is a setup issue as well. Fixes T3427

Test Plan: Test an ongoing thread, create a new thread. Test mobile and tablet layouts.

Reviewers: epriestley, btrahan

Reviewed By: epriestley

CC: Korvin, epriestley, aran

Maniphest Tasks: T3427

Differential Revision: https://secure.phabricator.com/D7669
This commit is contained in:
Chad Little 2013-11-28 07:34:03 -08:00
parent 280751f539
commit ba76526185
4 changed files with 11 additions and 18 deletions

View file

@ -993,7 +993,7 @@ celerity_register_resource_map(array(
), ),
'conpherence-menu-css' => 'conpherence-menu-css' =>
array( array(
'uri' => '/res/cae40b18/rsrc/css/application/conpherence/menu.css', 'uri' => '/res/4c356703/rsrc/css/application/conpherence/menu.css',
'type' => 'css', 'type' => 'css',
'requires' => 'requires' =>
array( array(
@ -1002,7 +1002,7 @@ celerity_register_resource_map(array(
), ),
'conpherence-message-pane-css' => 'conpherence-message-pane-css' =>
array( array(
'uri' => '/res/150f96d4/rsrc/css/application/conpherence/message-pane.css', 'uri' => '/res/3627d418/rsrc/css/application/conpherence/message-pane.css',
'type' => 'css', 'type' => 'css',
'requires' => 'requires' =>
array( array(
@ -1029,7 +1029,7 @@ celerity_register_resource_map(array(
), ),
'conpherence-widget-pane-css' => 'conpherence-widget-pane-css' =>
array( array(
'uri' => '/res/13478b94/rsrc/css/application/conpherence/widget-pane.css', 'uri' => '/res/b80fc69c/rsrc/css/application/conpherence/widget-pane.css',
'type' => 'css', 'type' => 'css',
'requires' => 'requires' =>
array( array(

View file

@ -3,12 +3,7 @@
*/ */
.conpherence-layout { .conpherence-layout {
position: fixed; position: relative;
bottom: 0;
left: 0;
right: 0;
top: 44px;
background: #fff;
} }
.conpherence-layout .conpherence-no-threads { .conpherence-layout .conpherence-no-threads {
@ -37,16 +32,17 @@
position: absolute; position: absolute;
overflow-x: hidden; overflow-x: hidden;
overflow-y: auto; overflow-y: auto;
top: 0;
bottom: 0;
} }
.device-desktop .conpherence-layout .conpherence-menu-pane, .device-desktop .conpherence-layout .conpherence-menu-pane,
.device-desktop .conpherence-layout .phabricator-nav-column-background { .device-desktop .conpherence-layout .phabricator-nav-column-background {
width: 280px; width: 280px;
} }
.device .conpherence-menu-pane { .device .conpherence-menu-pane {
top: 41px; top: 41px;
} }
.device .conpherence-role-list .conpherence-menu-pane { .device .conpherence-role-list .conpherence-menu-pane {
top: 0px; top: 0px;
} }

View file

@ -13,6 +13,7 @@
bottom: 0px; bottom: 0px;
min-width: 300px; min-width: 300px;
width: auto; width: auto;
background: #fff;
} }
.device .conpherence-message-pane, .device .conpherence-message-pane,

View file

@ -6,13 +6,13 @@
.loading .widgets-loading-mask { .loading .widgets-loading-mask {
position: fixed; position: fixed;
right: 0px; right: 0px;
top: 76px;
bottom: 0px;
width: 240px; width: 240px;
border-width: 0 0 0 1px; border-width: 0 0 0 1px;
border-color: #CCC; border-color: {$lightblueborder};
border-style: solid; border-style: solid;
overflow-y: auto; overflow-y: auto;
background: #fff;
height: 100%;
-webkit-overflow-scrolling: touch; -webkit-overflow-scrolling: touch;
} }
@ -68,11 +68,8 @@
} }
.conpherence-widget-pane .widgets-body { .conpherence-widget-pane .widgets-body {
position: fixed;
overflow-y: auto; overflow-y: auto;
bottom: 0px;
width: 100%; width: 100%;
top: 76px;
} }
#widgets-settings { #widgets-settings {
@ -80,7 +77,6 @@
} }
.device-desktop .conpherence-widget-pane .widgets-body { .device-desktop .conpherence-widget-pane .widgets-body {
top: 108px;
width: 240px; width: 240px;
} }