From f827348467b9dce14a3ce301955e29719a4164d4 Mon Sep 17 00:00:00 2001 From: wh1te909 Date: Sun, 27 Jun 2021 01:15:47 +0000 Subject: [PATCH] style changes --- web/quasar.conf.js | 2 +- web/src/App.vue | 2 +- web/src/components/modals/logs/PendingActions.vue | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/web/quasar.conf.js b/web/quasar.conf.js index 0ba45527..9b425949 100644 --- a/web/quasar.conf.js +++ b/web/quasar.conf.js @@ -90,7 +90,7 @@ module.exports = function () { actions: [{ icon: "close", color: "white" }] }, loading: { - delay: 100 + delay: 50 } } }, diff --git a/web/src/App.vue b/web/src/App.vue index 26ef11b6..2087333d 100644 --- a/web/src/App.vue +++ b/web/src/App.vue @@ -68,7 +68,7 @@ export default { background-color: #c9e6ff .highlight-dark - background-color: #343434 + background-color: #404040 .action-completed background-color: $positive diff --git a/web/src/components/modals/logs/PendingActions.vue b/web/src/components/modals/logs/PendingActions.vue index 908e899d..f8203587 100644 --- a/web/src/components/modals/logs/PendingActions.vue +++ b/web/src/components/modals/logs/PendingActions.vue @@ -214,6 +214,8 @@ export default { return this.$q.dark.isActive ? "highlight-dark" : "highlight"; } else if (status === "completed") { return "action-completed"; + } else { + return ""; } }, },