mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-15 02:24:04 +00:00
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:
parent
50008bf691
commit
a3ed7666e2
|
@ -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 );
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue