mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-12 01:09:20 +00:00
Fix detached RCFilters menu
In attempts to fix RCFilters menu overlap with other UI elements when opening upwards, I1fe6b8b2c9 adds `z-index` rule to overlay element. But as part of the same rule, `position: relative` is added which cascades the absolute positioned overlay, causing it to appear in natural flow of document, which causes menu positioning parameters to render the menu detached from RCFilters. Bug: T183442 Change-Id: I3f7db005730d045b2278753cfd655169a96c60a9
This commit is contained in:
parent
7c1caddf8f
commit
b0f65a08df
|
@ -1,6 +1,9 @@
|
|||
.oo-ui-windowManager-modal,
|
||||
.skin-vector .mw-rcfilters-ui-overlay,
|
||||
.skin-vector .ve-ui-overlay-global {
|
||||
z-index: 101;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.skin-vector .mw-rcfilters-ui-overlay {
|
||||
z-index: 101;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue