Fix defer due date popup
continuous-integration/drone/push Build is passing Details

This commit is contained in:
kolaente 2021-01-24 15:37:19 +01:00
parent 769975b42b
commit 06a160f26c
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
3 changed files with 3 additions and 2 deletions

View File

@ -285,6 +285,7 @@
color: $text;
cursor: default;
z-index: 10;
box-shadow: $shadow-lg;
input.input {
display: none;

View File

@ -51,7 +51,7 @@
/>
</div>
<card :padding="false" :has-content="false">
<card :padding="false" :has-content="false" class="has-overflow">
<div class="field task-add" v-if="!list.isArchived && canWrite && list.id > 0">
<div class="field is-grouped">
<p :class="{ 'is-loading': taskService.loading}" class="control has-icons-left is-expanded">

View File

@ -40,7 +40,7 @@
</template>
<div :class="{ 'is-loading': taskService.loading}" class="spinner"></div>
<card :padding="false" :has-content="false" v-if="tasks && tasks.length > 0">
<card :padding="false" class="has-overflow" :has-content="false" v-if="tasks && tasks.length > 0">
<div class="tasks">
<single-task-in-list
:key="t.id"