feat(kanban): allow folding done column by clicking green checkmarks in Kanban view (#1393)

This commit is contained in:
Copilot 2025-09-02 21:06:57 +00:00 committed by GitHub
parent a519312d55
commit 91f81e7dee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 0 deletions

View File

@ -47,6 +47,7 @@
v-if="bucket.id !== 0 && view?.doneBucketId === bucket.id"
v-tooltip="$t('project.kanban.doneBucketHint')"
class="icon is-small has-text-success mie-2"
@click.stop="() => collapseBucket(bucket)"
>
<Icon icon="check-double" />
</span>
@ -929,6 +930,10 @@ $filter-container-height: '1rem - #{$switch-view-height}';
padding: .5rem;
block-size: $bucket-header-height;
.icon.has-text-success {
cursor: pointer;
}
.limit {
padding: 0 .5rem;
font-weight: bold;