Et2Select: Use same z-index for search box as dropdown

This commit is contained in:
nathan 2023-05-10 13:43:46 -06:00
parent b3afe3ffae
commit 91b94a5126

View File

@ -177,7 +177,8 @@ export const Et2WithSearchMixin = <T extends Constructor<LitElement>>(superclass
} }
/* Search textbox general styling, starts hidden */ /* Search textbox general styling, starts hidden */
.select__prefix ::slotted(.search_input),.search_input {
.select__prefix ::slotted(.search_input), .search_input {
display: none; display: none;
flex: 1 1 auto; flex: 1 1 auto;
margin-left: 0px; margin-left: 0px;
@ -185,14 +186,18 @@ export const Et2WithSearchMixin = <T extends Constructor<LitElement>>(superclass
height: var(--sl-input-height-medium); height: var(--sl-input-height-medium);
position: absolute; position: absolute;
background-color: white; background-color: white;
z-index: 1; z-index: var(--sl-z-index-dropdown);
} }
/* Search UI active - show textbox & stuff */ /* Search UI active - show textbox & stuff */
::slotted(.search_input.active),.search_input.active,
.search_input.editing{ ::slotted(.search_input.active), .search_input.active,
.search_input.editing {
display: flex; display: flex;
} }
/* If multiple and no value, overlap search onto widget instead of below */ /* If multiple and no value, overlap search onto widget instead of below */
:host([multiple]) .search_input.active.novalue { :host([multiple]) .search_input.active.novalue {
top: 0px; top: 0px;
} }