fix(OOUI): 🐛 standardize OOUI window z-index

The original z-index (4) was too low and inconsistent with Citizen and Codex.
This should also fix the z-index issues related to OOUI
This commit is contained in:
alistair3149 2023-01-26 19:13:10 -05:00
parent 50008bf691
commit a3ed7666e2
No known key found for this signature in database

View file

@ -8,6 +8,8 @@
* Date: 2022-11-30
*/
@import '../../resources/variables.less';
/**
* OOUI has some layout issues when the font size is not
* same as what is being used in Vector. This is a dirty
@ -17,6 +19,12 @@
font-size: 0.875rem;
}
// Align z-index stack with Citizen and Codex
// T285592
.oo-ui-windowManager-modal > .oo-ui-dialog {
z-index: @z-index-overlay;
}
.oo-ui-messageDialog-content > .oo-ui-window-foot {
outline: 1px solid var( --border-color-base );
}