mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-18 23:06:40 +00:00
Better place where device edit button is on desktop (#8566)
This commit is contained in:
parent
f659a6fe37
commit
35f776284b
@ -181,15 +181,17 @@ export class HaConfigDevicePage extends LitElement {
|
|||||||
<span slot="header">
|
<span slot="header">
|
||||||
${computeDeviceName(device, this.hass)}
|
${computeDeviceName(device, this.hass)}
|
||||||
</span>
|
</span>
|
||||||
|
<ha-icon-button
|
||||||
|
slot="toolbar-icon"
|
||||||
|
icon="hass:pencil"
|
||||||
|
@click=${this._showSettings}
|
||||||
|
></ha-icon-button>
|
||||||
`
|
`
|
||||||
: ""
|
: ""
|
||||||
}
|
}
|
||||||
|
|
||||||
<ha-icon-button
|
|
||||||
slot="toolbar-icon"
|
|
||||||
icon="hass:cog"
|
|
||||||
@click=${this._showSettings}
|
|
||||||
></ha-icon-button>
|
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="header fullwidth">
|
<div class="header fullwidth">
|
||||||
@ -197,6 +199,7 @@ export class HaConfigDevicePage extends LitElement {
|
|||||||
this.narrow
|
this.narrow
|
||||||
? ""
|
? ""
|
||||||
: html`
|
: html`
|
||||||
|
<div class="header-name">
|
||||||
<div>
|
<div>
|
||||||
<h1>${computeDeviceName(device, this.hass)}</h1>
|
<h1>${computeDeviceName(device, this.hass)}</h1>
|
||||||
${area
|
${area
|
||||||
@ -211,6 +214,11 @@ export class HaConfigDevicePage extends LitElement {
|
|||||||
`
|
`
|
||||||
: ""}
|
: ""}
|
||||||
</div>
|
</div>
|
||||||
|
<ha-icon-button
|
||||||
|
icon="hass:pencil"
|
||||||
|
@click=${this._showSettings}
|
||||||
|
></ha-icon-button>
|
||||||
|
</div>
|
||||||
`
|
`
|
||||||
}
|
}
|
||||||
<div class="header-right">
|
<div class="header-right">
|
||||||
@ -780,6 +788,12 @@ export class HaConfigDevicePage extends LitElement {
|
|||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.header-name {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
padding-left: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
.column,
|
.column,
|
||||||
.fullwidth {
|
.fullwidth {
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user