mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-29 04:06:35 +00:00
commit
3a90a65ba8
2
setup.py
2
setup.py
@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="home-assistant-frontend",
|
name="home-assistant-frontend",
|
||||||
version="20200220.0",
|
version="20200220.1",
|
||||||
description="The Home Assistant frontend",
|
description="The Home Assistant frontend",
|
||||||
url="https://github.com/home-assistant/home-assistant-polymer",
|
url="https://github.com/home-assistant/home-assistant-polymer",
|
||||||
author="The Home Assistant Authors",
|
author="The Home Assistant Authors",
|
||||||
|
@ -158,7 +158,6 @@ class HaSceneDashboard extends LitElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ha-card {
|
ha-card {
|
||||||
padding-bottom: 8px;
|
|
||||||
margin-bottom: 56px;
|
margin-bottom: 56px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -169,6 +168,10 @@ class HaSceneDashboard extends LitElement {
|
|||||||
padding: 0 8px 0 16px;
|
padding: 0 8px 0 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.scene > *:first-child {
|
||||||
|
margin-right: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
.scene a[href] {
|
.scene a[href] {
|
||||||
color: var(--primary-text-color);
|
color: var(--primary-text-color);
|
||||||
}
|
}
|
||||||
@ -177,10 +180,6 @@ class HaSceneDashboard extends LitElement {
|
|||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
ha-entity-toggle {
|
|
||||||
margin-right: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
ha-fab {
|
ha-fab {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
bottom: 16px;
|
bottom: 16px;
|
||||||
|
@ -139,7 +139,6 @@ class HaScriptPicker extends LitElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ha-card {
|
ha-card {
|
||||||
padding-bottom: 8px;
|
|
||||||
margin-bottom: 56px;
|
margin-bottom: 56px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -147,8 +146,7 @@ class HaScriptPicker extends LitElement {
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: horizontal;
|
flex-direction: horizontal;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 0 8px;
|
padding: 0 8px 0 16px;
|
||||||
margin: 4px 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.script > *:first-child {
|
.script > *:first-child {
|
||||||
|
@ -191,7 +191,7 @@ export const getLovelaceElementClass = async <
|
|||||||
const tag = `hui-${type}-${tagSuffix}`;
|
const tag = `hui-${type}-${tagSuffix}`;
|
||||||
const cls = customElements.get(tag);
|
const cls = customElements.get(tag);
|
||||||
|
|
||||||
if (alwaysLoadTypes && type in alwaysLoadTypes) {
|
if (alwaysLoadTypes && alwaysLoadTypes.has(type)) {
|
||||||
return cls;
|
return cls;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user