mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:05:16 +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;
|
||||
}
|
||||
|
||||
: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 {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
@ -741,7 +746,7 @@ export class Et2Select extends Et2WithSearchMixin(Et2WidgetWithSelect)
|
||||
popup.strategy = "fixed";
|
||||
popup.active = true;
|
||||
popup.sync = "width";
|
||||
popup.setAttribute("exportparts", "tags");
|
||||
popup.setAttribute("exportparts", "tags, popup");
|
||||
popup.classList.add("hover__popup", "details", "hoist", "details__body");
|
||||
this.shadowRoot.append(popup);
|
||||
popup.appendChild(tags);
|
||||
|
Loading…
Reference in New Issue
Block a user