RED-5918 - Help mode links overlay the filter menu in file editor

This commit is contained in:
Valentin Mihai 2023-01-10 15:52:00 +02:00
parent b60331ca08
commit 7f2d33f17b

View File

@ -11,6 +11,7 @@ const ANNOTATIONS_LIST_ID = 'annotations-list';
const OVERLAPPING_DROPDOWNS_IDS = {
USER_MENU: 'user-menu-items',
WORKLOAD_FILTER: 'workload-filters',
DOCUMENT_INFO: 'document-info',
};
const SCROLL_BUTTONS_IDS = ['scroll-up', 'scroll-down'];
@ -24,6 +25,7 @@ export type ScrollableParentView = keyof typeof ScrollableParentViews;
export const OverlappingElements = {
USER_MENU: 'USER_MENU',
WORKLOAD_FILTER: 'WORKLOAD_FILTER',
DOCUMENT_INFO: 'DOCUMENT_INFO',
} as const;
export type OverlappingElement = keyof typeof OverlappingElements;