mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-24 09:46:36 +00:00
Address feedback of automation editor (#19167)
This commit is contained in:
parent
5b11e0ce29
commit
b180a587bf
@ -46,6 +46,7 @@ export class HaListItem extends ListItemBase {
|
||||
.mdc-deprecated-list-item__meta {
|
||||
display: var(--mdc-list-item-meta-display);
|
||||
align-items: center;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
:host([graphic="icon"]:not([twoline]))
|
||||
.mdc-deprecated-list-item__graphic {
|
||||
|
@ -67,6 +67,7 @@ export const ACTION_GROUPS: AutomationElementGroup = {
|
||||
icon: mdiDotsHorizontal,
|
||||
members: {
|
||||
event: {},
|
||||
service: {},
|
||||
},
|
||||
},
|
||||
} as const;
|
||||
|
@ -452,8 +452,8 @@ class DialogAddAutomationElement extends LitElement implements HassDialog {
|
||||
itemRoles="option"
|
||||
rootTabbable
|
||||
style=${styleMap({
|
||||
width: `${this._width}px`,
|
||||
height: `${this._height}px`,
|
||||
width: this._width ? `${this._width}px` : "auto",
|
||||
height: this._height ? `${Math.min(468, this._height)}px` : "auto",
|
||||
})}
|
||||
>
|
||||
${this._params.clipboardItem &&
|
||||
|
Loading…
x
Reference in New Issue
Block a user