mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-18 19:40:55 +01:00
Move typehaead dropdown up a few z-index levels
Summary: Fixes T5451. Test Plan: - Added a custom date field, observed icon render underneath typeahead results. - Couldn't think of any reasons that typeaheads should be under any of the elements with index 9, 10, 11, or 12. Reviewers: chad Reviewed By: chad Subscribers: epriestley Maniphest Tasks: T5451 Differential Revision: https://secure.phabricator.com/D9718
This commit is contained in:
parent
47a7515033
commit
9c59ce11ed
3 changed files with 8 additions and 7 deletions
|
@ -7,7 +7,7 @@
|
|||
return array(
|
||||
'names' =>
|
||||
array(
|
||||
'core.pkg.css' => 'd4378b92',
|
||||
'core.pkg.css' => '47277ca5',
|
||||
'core.pkg.js' => '8c184823',
|
||||
'darkconsole.pkg.js' => 'df001cab',
|
||||
'differential.pkg.css' => '4a93db37',
|
||||
|
@ -107,7 +107,7 @@ return array(
|
|||
'rsrc/css/core/core.css' => '40151074',
|
||||
'rsrc/css/core/remarkup.css' => '864d4f5e',
|
||||
'rsrc/css/core/syntax.css' => '3c18c1cb',
|
||||
'rsrc/css/core/z-index.css' => 'efb673ac',
|
||||
'rsrc/css/core/z-index.css' => 'd1c137f2',
|
||||
'rsrc/css/diviner/diviner-shared.css' => '38813222',
|
||||
'rsrc/css/font/font-awesome.css' => '73d075c3',
|
||||
'rsrc/css/font/font-source-sans-pro.css' => '91d53463',
|
||||
|
@ -753,7 +753,7 @@ return array(
|
|||
'phabricator-uiexample-reactor-select' => 'a155550f',
|
||||
'phabricator-uiexample-reactor-sendclass' => '1def2711',
|
||||
'phabricator-uiexample-reactor-sendproperties' => 'b1f0ccee',
|
||||
'phabricator-zindex-css' => 'efb673ac',
|
||||
'phabricator-zindex-css' => 'd1c137f2',
|
||||
'phame-css' => '19ecc703',
|
||||
'pholio-css' => '47dffb9c',
|
||||
'pholio-edit-css' => '3ad9d1ee',
|
||||
|
|
|
@ -5093,6 +5093,7 @@ phutil_register_library_map(array(
|
|||
2 => 'PhabricatorSubscribableInterface',
|
||||
3 => 'PhabricatorFlaggableInterface',
|
||||
4 => 'PhabricatorTokenReceiverInterface',
|
||||
5 => 'PhabricatorProjectInterface',
|
||||
),
|
||||
'PhabricatorSlowvotePollController' => 'PhabricatorSlowvoteController',
|
||||
'PhabricatorSlowvoteQuery' => 'PhabricatorCursorPagedPolicyAwareQuery',
|
||||
|
|
|
@ -96,10 +96,6 @@
|
|||
z-index: 8;
|
||||
}
|
||||
|
||||
div.jx-typeahead-results {
|
||||
z-index: 8;
|
||||
}
|
||||
|
||||
.differential-haunt-mode-1 .differential-add-comment-panel,
|
||||
.differential-haunt-mode-2 .differential-add-comment-panel {
|
||||
z-index: 8;
|
||||
|
@ -121,6 +117,10 @@ div.jx-typeahead-results {
|
|||
z-index: 12;
|
||||
}
|
||||
|
||||
div.jx-typeahead-results {
|
||||
z-index: 13;
|
||||
}
|
||||
|
||||
.jx-client-dialog {
|
||||
z-index: 14;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue