Update styles for hui-editor

Update the background-color and text-color of the app-toolbar in
hui-editor to match the styles of hui-root while in edit-mode.

Previously, these properties were set using undefined css variables that
could not be changed via themes (--dark-background-color and
--dark-text-color).
This commit is contained in:
Nick Iacullo 2022-03-21 10:28:24 +00:00
parent 6bf2111a3c
commit fa537968c4

View File

@ -148,8 +148,8 @@ class LovelaceFullConfigEditor extends LitElement {
}
app-toolbar {
background-color: var(--dark-background-color, #455a64);
color: var(--dark-text-color);
background-color: var(--app-header-edit-background-color, #455a64);
color: var(--app-header-edit-text-color, #fff);
}
mwc-button[disabled] {