diff --git a/src/assets/styles/common-help-mode.scss b/src/assets/styles/common-help-mode.scss index 95b824f..baa5564 100644 --- a/src/assets/styles/common-help-mode.scss +++ b/src/assets/styles/common-help-mode.scss @@ -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; } diff --git a/src/lib/help-mode/utils/constants.ts b/src/lib/help-mode/utils/constants.ts index d97a3cf..0f9190e 100644 --- a/src/lib/help-mode/utils/constants.ts +++ b/src/lib/help-mode/utils/constants.ts @@ -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;