Skip to content

Commit

Permalink
Disable background fade on empty rih workspace
Browse files Browse the repository at this point in the history
Signed-off-by: Julius Härtl <jus@bitgrid.net>
  • Loading branch information
juliusknorr authored and Vinicius Reis committed Aug 22, 2022
1 parent bf4ddb6 commit 0ea6879
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/RichWorkspace.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
-->

<template>
<div v-if="enabled" id="rich-workspace" :class="{'icon-loading': !loaded || !ready, 'focus': focus, 'dark': darkTheme, 'creatable': canCreate}">
<div v-if="enabled" id="rich-workspace" :class="{'icon-loading': !loaded || !ready, 'focus': focus, 'dark': darkTheme, 'creatable': canCreate, 'empty': showEmptyWorkspace}">
<a v-if="showEmptyWorkspace"
tabindex="0"
class="empty-workspace"
Expand Down Expand Up @@ -299,7 +299,7 @@ export default {
overflow: hidden;
}

#rich-workspace:not(.focus):not(.icon-loading):after {
#rich-workspace:not(.focus):not(.icon-loading):not(.empty):after {
content: '';
position: absolute;
z-index: 1;
Expand Down

0 comments on commit 0ea6879

Please sign in to comment.