This commit is contained in:
Bram Kragten 2020-11-11 14:13:40 +01:00 committed by GitHub
parent 131bc5fbf7
commit a0e67d4c03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 4 deletions

View File

@ -208,7 +208,7 @@ class HaSceneDashboard extends LitElement {
haStyle, haStyle,
css` css`
a { a {
color: var(--primary-color); text-decoration: none;
} }
`, `,
]; ];

View File

@ -2,6 +2,7 @@ import "@material/mwc-icon-button";
import "../../../components/ha-icon-button"; import "../../../components/ha-icon-button";
import { HassEntity } from "home-assistant-js-websocket"; import { HassEntity } from "home-assistant-js-websocket";
import { import {
css,
CSSResult, CSSResult,
customElement, customElement,
html, html,
@ -199,8 +200,15 @@ class HaScriptPicker extends LitElement {
}); });
} }
static get styles(): CSSResult { static get styles(): CSSResult[] {
return haStyle; return [
haStyle,
css`
a {
text-decoration: none;
}
`,
];
} }
} }

View File

@ -1931,7 +1931,8 @@
"name": "Name", "name": "Name",
"group": "Group", "group": "Group",
"system": "System" "system": "System"
} },
"add_user": "Add user"
}, },
"editor": { "editor": {
"caption": "View user", "caption": "View user",