diff options
author | Jan C. Borchardt <hey@jancborchardt.net> | 2020-08-07 15:58:34 +0200 |
---|---|---|
committer | Jan C. Borchardt <hey@jancborchardt.net> | 2020-08-07 16:55:56 +0200 |
commit | 3a2cc39dd93c59dd8db3f6bdc9509132bf16e745 (patch) | |
tree | 4df87b08efd107545a3eed944aadd3d98fd4c0ca | |
parent | df069403178528e9a829f5499c66cbebedbabf48 (diff) | |
download | nextcloud-server-3a2cc39dd93c59dd8db3f6bdc9509132bf16e745.tar.gz nextcloud-server-3a2cc39dd93c59dd8db3f6bdc9509132bf16e745.zip |
Dashboard: remove header fade
Signed-off-by: Jan C. Borchardt <hey@jancborchardt.net>
-rw-r--r-- | apps/dashboard/src/App.vue | 7 |
1 files changed, 1 insertions, 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 * { |