From 3a2cc39dd93c59dd8db3f6bdc9509132bf16e745 Mon Sep 17 00:00:00 2001 From: "Jan C. Borchardt" Date: Fri, 7 Aug 2020 15:58:34 +0200 Subject: [PATCH] Dashboard: remove header fade Signed-off-by: Jan C. Borchardt --- apps/dashboard/src/App.vue | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/apps/dashboard/src/App.vue b/apps/dashboard/src/App.vue index d9bae1aecbc..cffef23c01f 100644 --- a/apps/dashboard/src/App.vue +++ b/apps/dashboard/src/App.vue @@ -114,7 +114,7 @@ export default { if (time > 5) { return { text: shouldShowName ? t('dashboard', 'Good morning, {name}', { name: this.displayName }) : t('dashboard', 'Good morning') } } - return {text: shouldShowName ? t('dashboard', 'Good night, {name}', { name: this.displayName }) : t('dashboard', 'Have a night owl') } + return { text: shouldShowName ? t('dashboard', 'Good night, {name}', { name: this.displayName }) : t('dashboard', 'Have a night owl') } }, isActive() { return (panel) => this.layout.indexOf(panel.id) > -1 @@ -266,11 +266,6 @@ export default { z-index: 1; top: 50px; padding: 16px; - // TO DO: use variables here - background: linear-gradient(170deg, rgba(0, 130,201, 0.2) 0%, rgba(255,255,255,.1) 50%, rgba(255,255,255,0) 100%); - border-top-left-radius: calc(var(--border-radius-large) - 2px); - border-top-right-radius: calc(var(--border-radius-large) - 2px); - backdrop-filter: blur(4px); cursor: grab; &, ::v-deep * { -- 2.39.5