Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2022-08-11 20:15:51 +0300
committerJulius Härtl <jus@bitgrid.net>2022-08-11 20:15:51 +0300
commit6a541b2a965d11f4c24d1587671ed1ac272aae61 (patch)
tree1264ef9809281658b734c71ce194232267e863b5
parent230cbb6181ea8ad6918d219cd7450484134339c7 (diff)
Disable background fade on empty rih workspacebugfix/noid/empty-workspace-fade
Signed-off-by: Julius Härtl <jus@bitgrid.net>
-rw-r--r--src/views/RichWorkspace.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/views/RichWorkspace.vue b/src/views/RichWorkspace.vue
index 2910fd638..80c126c69 100644
--- a/src/views/RichWorkspace.vue
+++ b/src/views/RichWorkspace.vue
@@ -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"
@@ -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;