Add support for renaming actions, conditions and triggers (#13444)

This commit is contained in:
Franck Nijhof
2022-08-23 17:21:16 +02:00
committed by GitHub
parent 1616911ba9
commit dff3ffe935
8 changed files with 147 additions and 15 deletions

View File

@@ -73,6 +73,7 @@ class DialogBox extends LitElement {
<ha-textfield
dialogInitialFocus
value=${ifDefined(this._params.defaultValue)}
.placeholder=${ifDefined(this._params.placeholder)}
.label=${this._params.inputLabel
? this._params.inputLabel
: ""}
@@ -158,6 +159,14 @@ class DialogBox extends LitElement {
/* Place above other dialogs */
--dialog-z-index: 104;
}
@media all and (min-width: 600px) {
ha-dialog {
--mdc-dialog-min-width: 400px;
}
}
ha-textfield {
width: 100%;
}
`;
}
}