File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -362,6 +362,7 @@ const LookupScopeSelector: FC<LookupScopeSelectorProps> = ({
362362 transform : 'translateY(-50%)' ,
363363 left : '0.5rem' ,
364364 pointerEvents : 'none' ,
365+ zIndex : SCOPE_INPUT_ZINDEX + 1 ,
365366 } }
366367 >
367368 < Icon
@@ -377,8 +378,8 @@ const LookupScopeSelector: FC<LookupScopeSelectorProps> = ({
377378 className = 'slds-input slds-combobox__input slds-combobox__input-value'
378379 style = { {
379380 paddingLeft : '1.5rem' ,
380- background : 'transparent' ,
381- cursor : 'pointer' ,
381+ cursor : ! disabled ? 'pointer' : undefined ,
382+ zIndex : SCOPE_INPUT_ZINDEX ,
382383 } }
383384 aria-controls = 'objectswitcher-listbox-id'
384385 aria-expanded = { scopeOpened }
@@ -399,6 +400,7 @@ const LookupScopeSelector: FC<LookupScopeSelectorProps> = ({
399400 bottom : '0.2rem' ,
400401 right : '0.55rem' ,
401402 pointerEvents : 'none' ,
403+ zIndex : SCOPE_INPUT_ZINDEX + 1 ,
402404 } }
403405 >
404406 < Icon
@@ -471,6 +473,8 @@ const LookupScopeSelector: FC<LookupScopeSelectorProps> = ({
471473 ) ;
472474} ;
473475
476+ const SCOPE_INPUT_ZINDEX = 1 ;
477+
474478/**
475479 * Props for LookupSearchInput component
476480 */
You can’t perform that action at this time.
0 commit comments