Redesign ha-button (#25564)

Co-authored-by: Bram Kragten <mail@bramkragten.nl>
This commit is contained in:
Wendelin
2025-07-30 16:15:18 +02:00
committed by GitHub
parent 6dbfc2f4ed
commit fa758f2bee
318 changed files with 3333 additions and 2189 deletions

View File

@@ -138,7 +138,7 @@ export class HaObjectSelector extends LitElement {
${items.map((item, index) => this._renderItem(item, index))}
</ha-md-list>
</ha-sortable>
<ha-button outlined @click=${this._addItem}>
<ha-button appearance="filled" @click=${this._addItem}>
${this.hass.localize("ui.common.add")}
</ha-button>
</div>
@@ -153,7 +153,7 @@ export class HaObjectSelector extends LitElement {
${this._renderItem(this.value, 0)}
</ha-md-list>`
: html`
<ha-button outlined @click=${this._addItem}>
<ha-button appearance="filled" @click=${this._addItem}>
${this.hass.localize("ui.common.add")}
</ha-button>
`}