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:
parent
8111dc74bf
commit
9327e51446
4 changed files with 10 additions and 3 deletions
|
@ -172,7 +172,7 @@ final class ConpherenceLayoutView extends AphrontView {
|
|||
'a',
|
||||
array(
|
||||
'href' => '/conpherence/new/',
|
||||
'class' => 'button',
|
||||
'class' => 'button grey',
|
||||
'sigil' => 'workflow',
|
||||
),
|
||||
pht('Send a Message'))
|
||||
|
|
|
@ -72,7 +72,6 @@
|
|||
|
||||
.loading .messages-loading-mask {
|
||||
display: block;
|
||||
z-index: 500;
|
||||
}
|
||||
|
||||
.conpherence-message-pane .phabricator-form-view {
|
||||
|
|
|
@ -30,7 +30,6 @@
|
|||
|
||||
.loading .widgets-loading-mask {
|
||||
display: block;
|
||||
z-index: 500;
|
||||
}
|
||||
|
||||
.conpherence-widget-pane .aphront-form-input {
|
||||
|
|
|
@ -34,6 +34,10 @@
|
|||
z-index: 4;
|
||||
}
|
||||
|
||||
.conpherence-layout .conpherence-no-threads {
|
||||
z-index: 4;
|
||||
}
|
||||
|
||||
.conpherence-menu-pane {
|
||||
z-index: 4;
|
||||
}
|
||||
|
@ -42,6 +46,11 @@
|
|||
z-index: 4;
|
||||
}
|
||||
|
||||
.loading .messages-loading-mask,
|
||||
.loading .widgets-loading-mask {
|
||||
z-index: 5;
|
||||
}
|
||||
|
||||
.dark-console {
|
||||
z-index: 5;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue