mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
Fix some styling on select-email
- Make +N tag right aligned & look like text, not tag - Fix popup to open below but covering field - give popup border & dropshadow
This commit is contained in:
parent
2a3a8a7371
commit
9cde6a7171
@ -148,7 +148,18 @@ export class Et2Select extends Et2WithSearchMixin(Et2WidgetWithSelect)
|
||||
z-index: 1;
|
||||
background: var(--sl-input-background-color);
|
||||
padding: var(--sl-input-spacing-small);
|
||||
padding-left: 0;
|
||||
padding-left: 2px;
|
||||
|
||||
box-shadow: var(--sl-shadow-large);
|
||||
min-width: fit-content;
|
||||
border-radius: var(--sl-border-radius-small);
|
||||
border: 1px solid var(--sl-color-neutral-200);
|
||||
max-height: 15em;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
::part(display-label) {
|
||||
margin: 0;
|
||||
}
|
||||
`
|
||||
];
|
||||
@ -292,9 +303,10 @@ export class Et2Select extends Et2WithSearchMixin(Et2WidgetWithSelect)
|
||||
*/
|
||||
private _handleMouseEnter(e : MouseEvent)
|
||||
{
|
||||
if(this.maxTagsVisible == 1 && this.rows == 1 && this.multiple == true)
|
||||
if(this.maxTagsVisible == 1 && this.rows == 1 && this.multiple == true && this.value.length > 1)
|
||||
{
|
||||
e.stopPropagation();
|
||||
let distance = (-1 * parseInt(getComputedStyle(this).height)) - 1;
|
||||
|
||||
// Show all tags
|
||||
this.maxTagsVisible = 0;
|
||||
@ -310,13 +322,17 @@ export class Et2Select extends Et2WithSearchMixin(Et2WidgetWithSelect)
|
||||
{
|
||||
let label = this.dropdown.querySelector(".select__label");
|
||||
let popup = document.createElement("sl-popup");
|
||||
popup.anchor = this;
|
||||
popup.distance = distance;
|
||||
popup.placement = "bottom";
|
||||
popup.strategy = "fixed";
|
||||
popup.active = true;
|
||||
popup.sync = "width";
|
||||
popup.classList.add("hover__popup");
|
||||
popup.classList.add("hover__popup", "details", "hoist", "details__body");
|
||||
label.parentNode.insertBefore(popup, label);
|
||||
popup.appendChild(label);
|
||||
label.style.width = "35ex";
|
||||
label.style.width = getComputedStyle(this).width;
|
||||
label.style.margin = 0;
|
||||
});
|
||||
}
|
||||
}
|
||||
|
@ -1094,4 +1094,23 @@ et2-hbox.mailPreviewHeaders {
|
||||
et2-description#mail-index_mailPreview_subject {
|
||||
margin-bottom: 0;
|
||||
margin-top: 0.3em;
|
||||
}
|
||||
|
||||
/* Make +N tag in email look like text, not tag */
|
||||
et2-select-email::part(tags) {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
et2-select-email::part(tag) {
|
||||
flex: 10 0 auto;
|
||||
}
|
||||
|
||||
et2-select-email::part(tag__base) {
|
||||
font-weight: bold;
|
||||
border: none;
|
||||
background: inherit;
|
||||
}
|
||||
|
||||
et2-select-email::part(tag__content) {
|
||||
margin-left: auto;
|
||||
}
|
Loading…
Reference in New Issue
Block a user