DM-358 - WIP on implementing Help Mode-IDs for DocuMine

This commit is contained in:
Valentin Mihai 2023-09-05 17:34:48 +03:00
parent 60ace01151
commit c7a15d2a93
2 changed files with 4 additions and 0 deletions

View File

@ -7,6 +7,8 @@
.help-highlight,
.help-mode:hover {
background: rgba(92, 229, 148, 0.5);
//background: rgba(253,189,0, 0.5);
box-shadow: 0 0 0 2px var(--iqser-helpmode-primary) inset;
//box-shadow: 0 0 0 2px var(--iqser-yellow-2) inset;
cursor: help;
}

View File

@ -4,6 +4,7 @@ export const OVERLAPPING_DROPDOWNS_IDS = {
USER_MENU: 'user-menu-items',
WORKLOAD_FILTER: 'workload-filters',
DOCUMENT_INFO: 'document-info',
BREADCRUMBS_MENU: 'breadcrumbs-menu-items',
};
export const SCROLL_BUTTONS_IDS = ['scroll-up', 'scroll-down'];
export const PDF_TRON_IFRAME_ID = 'webviewer-1';
@ -25,6 +26,7 @@ export const OverlappingElements = {
USER_MENU: 'USER_MENU',
WORKLOAD_FILTER: 'WORKLOAD_FILTER',
DOCUMENT_INFO: 'DOCUMENT_INFO',
BREADCRUMBS_MENU: 'BREADCRUMBS_MENU',
} as const;
export type OverlappingElement = keyof typeof OverlappingElements;