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

Conpherence - fix no messages button

Summary: make it work with z-index and make it grey.

Test Plan:
clicked the grey button and it worked! Safari and Chrome

clicked around and observed loading mask functioning correctly

Reviewers: epriestley, chad

Reviewed By: epriestley

CC: aran, Korvin

Maniphest Tasks: T3396

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

+10 -3
+1 -1
src/applications/conpherence/view/ConpherenceLayoutView.php
··· 172 172 'a', 173 173 array( 174 174 'href' => '/conpherence/new/', 175 - 'class' => 'button', 175 + 'class' => 'button grey', 176 176 'sigil' => 'workflow', 177 177 ), 178 178 pht('Send a Message'))
-1
webroot/rsrc/css/application/conpherence/message-pane.css
··· 72 72 73 73 .loading .messages-loading-mask { 74 74 display: block; 75 - z-index: 500; 76 75 } 77 76 78 77 .conpherence-message-pane .phabricator-form-view {
-1
webroot/rsrc/css/application/conpherence/widget-pane.css
··· 30 30 31 31 .loading .widgets-loading-mask { 32 32 display: block; 33 - z-index: 500; 34 33 } 35 34 36 35 .conpherence-widget-pane .aphront-form-input {
+9
webroot/rsrc/css/core/z-index.css
··· 34 34 z-index: 4; 35 35 } 36 36 37 + .conpherence-layout .conpherence-no-threads { 38 + z-index: 4; 39 + } 40 + 37 41 .conpherence-menu-pane { 38 42 z-index: 4; 39 43 } 40 44 41 45 .phabricator-nav-drag { 42 46 z-index: 4; 47 + } 48 + 49 + .loading .messages-loading-mask, 50 + .loading .widgets-loading-mask { 51 + z-index: 5; 43 52 } 44 53 45 54 .dark-console {