diff --git a/src/components/board/Stack.vue b/src/components/board/Stack.vue index 8d46cd120..8f2b35186 100644 --- a/src/components/board/Stack.vue +++ b/src/components/board/Stack.vue @@ -43,6 +43,9 @@ + + {{ t('deck', 'Archive all cards') }} + {{ t('deck', 'Delete list') }} @@ -54,6 +57,19 @@ + + + +
{ + this.stackTransfer.current = index + this.$store.dispatch('archiveUnarchiveCard', { ...card, archived: true }) + }) + this.modalArchivAllCardsShow = false + }, startEditing(stack) { this.copiedStack = Object.assign({}, stack) this.editing = true @@ -315,4 +347,21 @@ export default { height: 0px; } + .modal__content { + width: 25vw; + min-width: 250px; + min-height: 100px; + text-align: center; + margin: 20px 20px 20px 20px; + } + + .modal__content button { + float: right; + } + + progress { + margin-top: 3px; + margin-bottom: 30px; + } +