mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 04:29:28 +01:00
Et2Select: Fix show all tags on hover popup needed z-index set
This commit is contained in:
parent
38dcda2a01
commit
2bd5f58836
@ -175,6 +175,11 @@ export class Et2Select extends Et2WithSearchMixin(Et2WidgetWithSelect)
|
|||||||
width: fill-available;
|
width: fill-available;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
:host([readonly][multiple][rows]) .hover__popup::part(popup) {
|
||||||
|
z-index: var(--sl-z-index-dropdown);
|
||||||
|
background-color: white;
|
||||||
|
}
|
||||||
|
|
||||||
:host([ readonly ][ multiple ][ rows ]) .hover__popup .select__tags {
|
:host([ readonly ][ multiple ][ rows ]) .hover__popup .select__tags {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
@ -741,7 +746,7 @@ export class Et2Select extends Et2WithSearchMixin(Et2WidgetWithSelect)
|
|||||||
popup.strategy = "fixed";
|
popup.strategy = "fixed";
|
||||||
popup.active = true;
|
popup.active = true;
|
||||||
popup.sync = "width";
|
popup.sync = "width";
|
||||||
popup.setAttribute("exportparts", "tags");
|
popup.setAttribute("exportparts", "tags, popup");
|
||||||
popup.classList.add("hover__popup", "details", "hoist", "details__body");
|
popup.classList.add("hover__popup", "details", "hoist", "details__body");
|
||||||
this.shadowRoot.append(popup);
|
this.shadowRoot.append(popup);
|
||||||
popup.appendChild(tags);
|
popup.appendChild(tags);
|
||||||
|
Loading…
Reference in New Issue
Block a user