fix #125235. Add zindex const enums

This commit is contained in:
rebornix
2021-08-05 16:14:04 -07:00
parent 808f222ed9
commit 130ba00dc7
2 changed files with 12 additions and 1 deletions

View File

@@ -1621,3 +1621,14 @@ export function addMatchMediaChangeListener(query: string, callback: () => void)
mediaQueryList.addListener(callback);
}
}
export const enum ZIndex {
SASH = 35,
SuggestWidget = 40,
Hover = 50,
DragImage = 1000,
MenubarMenuItemsHolder = 2000, // quick-input-widget
ContextView = 2500,
ModalDialog = 2600,
PaneDropOverlay = 10000
}