mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-18 12:52:42 +01:00
Move drag ghosts above dialogs
Summary: These currently have a z-index which puts them beneath dialogs, which doesn't work well for dialogs like "Reorder Columns" on workboards. Test Plan: - Dragged columns on a workboard in the "Reorder Columns" dialog. - Dragged normal stuff, too. Reviewers: chad Reviewed By: chad Differential Revision: https://secure.phabricator.com/D15197
This commit is contained in:
parent
74825fccc4
commit
b287cdd9ba
2 changed files with 7 additions and 7 deletions
|
@ -7,7 +7,7 @@
|
||||||
*/
|
*/
|
||||||
return array(
|
return array(
|
||||||
'names' => array(
|
'names' => array(
|
||||||
'core.pkg.css' => 'e33b14a4',
|
'core.pkg.css' => 'c477bd31',
|
||||||
'core.pkg.js' => 'ef5e33db',
|
'core.pkg.js' => 'ef5e33db',
|
||||||
'darkconsole.pkg.js' => 'e7393ebb',
|
'darkconsole.pkg.js' => 'e7393ebb',
|
||||||
'differential.pkg.css' => '2de124c9',
|
'differential.pkg.css' => '2de124c9',
|
||||||
|
@ -106,7 +106,7 @@ return array(
|
||||||
'rsrc/css/core/core.css' => '5b3563c8',
|
'rsrc/css/core/core.css' => '5b3563c8',
|
||||||
'rsrc/css/core/remarkup.css' => 'e1c8b32f',
|
'rsrc/css/core/remarkup.css' => 'e1c8b32f',
|
||||||
'rsrc/css/core/syntax.css' => '9fd11da8',
|
'rsrc/css/core/syntax.css' => '9fd11da8',
|
||||||
'rsrc/css/core/z-index.css' => '5c7025bf',
|
'rsrc/css/core/z-index.css' => '5b6fcf3f',
|
||||||
'rsrc/css/diviner/diviner-shared.css' => 'aa3656aa',
|
'rsrc/css/diviner/diviner-shared.css' => 'aa3656aa',
|
||||||
'rsrc/css/font/font-aleo.css' => '8bdb2835',
|
'rsrc/css/font/font-aleo.css' => '8bdb2835',
|
||||||
'rsrc/css/font/font-awesome.css' => 'c43323c5',
|
'rsrc/css/font/font-awesome.css' => 'c43323c5',
|
||||||
|
@ -779,7 +779,7 @@ return array(
|
||||||
'phabricator-uiexample-reactor-select' => 'a155550f',
|
'phabricator-uiexample-reactor-select' => 'a155550f',
|
||||||
'phabricator-uiexample-reactor-sendclass' => '1def2711',
|
'phabricator-uiexample-reactor-sendclass' => '1def2711',
|
||||||
'phabricator-uiexample-reactor-sendproperties' => 'b1f0ccee',
|
'phabricator-uiexample-reactor-sendproperties' => 'b1f0ccee',
|
||||||
'phabricator-zindex-css' => '5c7025bf',
|
'phabricator-zindex-css' => '5b6fcf3f',
|
||||||
'phame-css' => '1dbbacf9',
|
'phame-css' => '1dbbacf9',
|
||||||
'pholio-css' => '95174bdd',
|
'pholio-css' => '95174bdd',
|
||||||
'pholio-edit-css' => '3ad9d1ee',
|
'pholio-edit-css' => '3ad9d1ee',
|
||||||
|
|
|
@ -110,10 +110,6 @@ div.phui-calendar-day-event {
|
||||||
z-index: 9;
|
z-index: 9;
|
||||||
}
|
}
|
||||||
|
|
||||||
.drag-frame {
|
|
||||||
z-index: 10;
|
|
||||||
}
|
|
||||||
|
|
||||||
.jx-mask {
|
.jx-mask {
|
||||||
z-index: 10;
|
z-index: 10;
|
||||||
}
|
}
|
||||||
|
@ -142,6 +138,10 @@ div.jx-typeahead-results {
|
||||||
z-index: 15;
|
z-index: 15;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.drag-frame {
|
||||||
|
z-index: 16;
|
||||||
|
}
|
||||||
|
|
||||||
.jx-hovercard-container {
|
.jx-hovercard-container {
|
||||||
z-index: 17;
|
z-index: 17;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue