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

Fix Conpherence CSS (mostly revert)

Summary: Fixes D7669

Test Plan: test many participants and many threads in Conpherence, mobile and desktop.

Reviewers: epriestley, btrahan

Reviewed By: epriestley

CC: Korvin, epriestley, aran

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

+20 -7
+3 -3
src/__celerity_resource_map__.php
··· 993 993 ), 994 994 'conpherence-menu-css' => 995 995 array( 996 - 'uri' => '/res/4c356703/rsrc/css/application/conpherence/menu.css', 996 + 'uri' => '/res/cd61e53d/rsrc/css/application/conpherence/menu.css', 997 997 'type' => 'css', 998 998 'requires' => 999 999 array( ··· 1002 1002 ), 1003 1003 'conpherence-message-pane-css' => 1004 1004 array( 1005 - 'uri' => '/res/3627d418/rsrc/css/application/conpherence/message-pane.css', 1005 + 'uri' => '/res/d3ccc391/rsrc/css/application/conpherence/message-pane.css', 1006 1006 'type' => 'css', 1007 1007 'requires' => 1008 1008 array( ··· 1029 1029 ), 1030 1030 'conpherence-widget-pane-css' => 1031 1031 array( 1032 - 'uri' => '/res/b80fc69c/rsrc/css/application/conpherence/widget-pane.css', 1032 + 'uri' => '/res/a1ebb7cc/rsrc/css/application/conpherence/widget-pane.css', 1033 1033 'type' => 'css', 1034 1034 'requires' => 1035 1035 array(
+8 -1
webroot/rsrc/css/application/conpherence/menu.css
··· 3 3 */ 4 4 5 5 .conpherence-layout { 6 - position: relative; 6 + position: fixed; 7 + bottom: 0; 8 + left: 0; 9 + right: 0; 10 + top: 44px; 11 + background: #fff; 7 12 } 8 13 9 14 .conpherence-layout .conpherence-no-threads { ··· 32 37 position: absolute; 33 38 overflow-x: hidden; 34 39 overflow-y: auto; 40 + top: 0; 41 + bottom: 0; 35 42 } 36 43 37 44 .device-desktop .conpherence-layout .conpherence-menu-pane,
+3 -1
webroot/rsrc/css/application/conpherence/message-pane.css
··· 13 13 bottom: 0px; 14 14 min-width: 300px; 15 15 width: auto; 16 - background: #fff; 17 16 } 18 17 19 18 .device .conpherence-message-pane, ··· 135 134 border-top: 1px solid #d7d7d7; 136 135 margin: 5px 15px; 137 136 min-height: auto; 137 + } 138 + .device-phone .conpherence-message-pane .date-marker { 139 + margin: 5px 0; 138 140 } 139 141 .conpherence-message-pane .date-marker .date { 140 142 position: relative;
+6 -2
webroot/rsrc/css/application/conpherence/widget-pane.css
··· 6 6 .loading .widgets-loading-mask { 7 7 position: fixed; 8 8 right: 0px; 9 + top: 76px; 10 + bottom: 0; 9 11 width: 240px; 10 12 border-width: 0 0 0 1px; 11 13 border-color: {$lightblueborder}; 12 14 border-style: solid; 13 15 overflow-y: auto; 14 - background: #fff; 15 - height: 100%; 16 16 -webkit-overflow-scrolling: touch; 17 17 } 18 18 ··· 68 68 } 69 69 70 70 .conpherence-widget-pane .widgets-body { 71 + position: fixed; 71 72 overflow-y: auto; 73 + bottom: 0; 74 + top: 76px; 72 75 width: 100%; 73 76 } 74 77 ··· 77 80 } 78 81 79 82 .device-desktop .conpherence-widget-pane .widgets-body { 83 + top: 108px; 80 84 width: 240px; 81 85 } 82 86