diff --git a/src/panels/lovelace/entity-rows/hui-input-number-entity-row.ts b/src/panels/lovelace/entity-rows/hui-input-number-entity-row.ts index 051b32db71..50148f4536 100644 --- a/src/panels/lovelace/entity-rows/hui-input-number-entity-row.ts +++ b/src/panels/lovelace/entity-rows/hui-input-number-entity-row.ts @@ -134,6 +134,9 @@ class HuiInputNumberEntityRow extends LitElement implements LovelaceRow { width: 100%; max-width: 200px; } + :host { + cursor: pointer; + } `; } diff --git a/src/panels/lovelace/entity-rows/hui-input-text-entity-row.ts b/src/panels/lovelace/entity-rows/hui-input-text-entity-row.ts index 02c18143d3..b79fa2e699 100644 --- a/src/panels/lovelace/entity-rows/hui-input-text-entity-row.ts +++ b/src/panels/lovelace/entity-rows/hui-input-text-entity-row.ts @@ -1,5 +1,7 @@ import { PaperInputElement } from "@polymer/paper-input/paper-input"; import { + css, + CSSResult, customElement, html, LitElement, @@ -80,6 +82,14 @@ class HuiInputTextEntityRow extends LitElement implements LovelaceRow { ev.target.blur(); } + + static get styles(): CSSResult { + return css` + :host { + cursor: pointer; + } + `; + } } declare global { diff --git a/src/panels/lovelace/entity-rows/hui-scene-entity-row.ts b/src/panels/lovelace/entity-rows/hui-scene-entity-row.ts index 50d0867d56..ad9d655856 100644 --- a/src/panels/lovelace/entity-rows/hui-scene-entity-row.ts +++ b/src/panels/lovelace/entity-rows/hui-scene-entity-row.ts @@ -70,6 +70,9 @@ class HuiSceneEntityRow extends LitElement implements LovelaceRow { mwc-button { margin-right: -0.57em; } + :host { + cursor: pointer; + } `; }