mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-12 08:58:25 +01:00
Fix spacing & sizing
- Move option group titles to the left more - Fix calendarowner dropdown would not size properly in sidebox
This commit is contained in:
parent
4d1e81b8b1
commit
454ab3fb98
@ -201,6 +201,12 @@ export class Et2Select extends Et2WithSearchMixin(Et2WidgetWithSelect)
|
|||||||
opacity: 1;
|
opacity: 1;
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Position & style of group titles */
|
||||||
|
|
||||||
|
small {
|
||||||
|
padding: var(--sl-spacing-medium);
|
||||||
|
}
|
||||||
`
|
`
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@ -32,6 +32,10 @@ export class CalendarOwner extends Et2StaticSelectMixin(Et2Select)
|
|||||||
.select__tags {
|
.select__tags {
|
||||||
max-height: 10em;
|
max-height: 10em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
`
|
`
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
@ -84,7 +88,7 @@ export class CalendarOwner extends Et2StaticSelectMixin(Et2Select)
|
|||||||
>
|
>
|
||||||
${this._iconTemplate(option)}
|
${this._iconTemplate(option)}
|
||||||
${this.noLang ? option.label : this.egw().lang(option.label)}
|
${this.noLang ? option.label : this.egw().lang(option.label)}
|
||||||
<span class="title" slot="suffix">${option.title}</span>
|
<span class="title">${option.title}</span>
|
||||||
</sl-option>`;
|
</sl-option>`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user