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:
petarpetkovic 2017-12-22 13:57:41 +01:00
parent 7c1caddf8f
commit b0f65a08df
1 changed files with 4 additions and 1 deletions

View File

@ -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;
}