Merge pull request #298 from darcys22/colour-scheme-fixes

misc colour scheme changes
This commit is contained in:
Sean 2022-06-10 12:21:02 +10:00 committed by GitHub
commit 7613cff693
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 7 deletions

View File

@ -423,8 +423,7 @@ footer,
.header-popover { .header-popover {
background: $primary; background: white;
color: white;
max-width: 250px !important; max-width: 250px !important;
} }

View File

@ -20,7 +20,7 @@ export class Gateway extends EventEmitter {
let theme = LocalStorage.has("theme") let theme = LocalStorage.has("theme")
? LocalStorage.getItem("theme") ? LocalStorage.getItem("theme")
: "dark"; : "light";
this.app.store.commit("gateway/set_app_data", { this.app.store.commit("gateway/set_app_data", {
config: { config: {
appearance: { appearance: {

View File

@ -166,11 +166,9 @@ export default {
}, },
cancel: { cancel: {
flat: true, flat: true,
label: this.$t("dialog.buttons.cancel"), label: this.$t("dialog.buttons.cancel")
color: this.theme === "dark" ? "white" : "dark"
}, },
dark: this.theme == "dark", color: "primary"
color: "positive"
}); });
passwordPromise passwordPromise
.onOk(() => { .onOk(() => {