mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-27 11:16:35 +00:00
Fix fabs (#7650)
This commit is contained in:
parent
131bc5fbf7
commit
a0e67d4c03
@ -208,7 +208,7 @@ class HaSceneDashboard extends LitElement {
|
||||
haStyle,
|
||||
css`
|
||||
a {
|
||||
color: var(--primary-color);
|
||||
text-decoration: none;
|
||||
}
|
||||
`,
|
||||
];
|
||||
|
@ -2,6 +2,7 @@ import "@material/mwc-icon-button";
|
||||
import "../../../components/ha-icon-button";
|
||||
import { HassEntity } from "home-assistant-js-websocket";
|
||||
import {
|
||||
css,
|
||||
CSSResult,
|
||||
customElement,
|
||||
html,
|
||||
@ -199,8 +200,15 @@ class HaScriptPicker extends LitElement {
|
||||
});
|
||||
}
|
||||
|
||||
static get styles(): CSSResult {
|
||||
return haStyle;
|
||||
static get styles(): CSSResult[] {
|
||||
return [
|
||||
haStyle,
|
||||
css`
|
||||
a {
|
||||
text-decoration: none;
|
||||
}
|
||||
`,
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1931,7 +1931,8 @@
|
||||
"name": "Name",
|
||||
"group": "Group",
|
||||
"system": "System"
|
||||
}
|
||||
},
|
||||
"add_user": "Add user"
|
||||
},
|
||||
"editor": {
|
||||
"caption": "View user",
|
||||
|
Loading…
x
Reference in New Issue
Block a user