1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-28 16:30:59 +01:00

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
This commit is contained in:
Bob Trahan 2013-06-14 17:00:09 -07:00
parent 8111dc74bf
commit 9327e51446
4 changed files with 10 additions and 3 deletions

View file

@ -172,7 +172,7 @@ final class ConpherenceLayoutView extends AphrontView {
'a', 'a',
array( array(
'href' => '/conpherence/new/', 'href' => '/conpherence/new/',
'class' => 'button', 'class' => 'button grey',
'sigil' => 'workflow', 'sigil' => 'workflow',
), ),
pht('Send a Message')) pht('Send a Message'))

View file

@ -72,7 +72,6 @@
.loading .messages-loading-mask { .loading .messages-loading-mask {
display: block; display: block;
z-index: 500;
} }
.conpherence-message-pane .phabricator-form-view { .conpherence-message-pane .phabricator-form-view {

View file

@ -30,7 +30,6 @@
.loading .widgets-loading-mask { .loading .widgets-loading-mask {
display: block; display: block;
z-index: 500;
} }
.conpherence-widget-pane .aphront-form-input { .conpherence-widget-pane .aphront-form-input {

View file

@ -34,6 +34,10 @@
z-index: 4; z-index: 4;
} }
.conpherence-layout .conpherence-no-threads {
z-index: 4;
}
.conpherence-menu-pane { .conpherence-menu-pane {
z-index: 4; z-index: 4;
} }
@ -42,6 +46,11 @@
z-index: 4; z-index: 4;
} }
.loading .messages-loading-mask,
.loading .widgets-loading-mask {
z-index: 5;
}
.dark-console { .dark-console {
z-index: 5; z-index: 5;
} }