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,
|
haStyle,
|
||||||
css`
|
css`
|
||||||
a {
|
a {
|
||||||
color: var(--primary-color);
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
`,
|
`,
|
||||||
];
|
];
|
||||||
|
@ -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;
|
||||||
|
}
|
||||||
|
`,
|
||||||
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -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",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user