From 544b24ceb1687e5b568d8c7b74403a5a2e3f6bc6 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Thu, 23 Oct 2025 00:14:30 +0300 Subject: [PATCH] Fix Regression - unable to rearrange tasks within a checklist - v8.11. Thanks to xet7 ! Fixes #5973 --- client/components/cards/checklists.css | 8 ++++++++ client/components/cards/checklists.jade | 2 ++ 2 files changed, 10 insertions(+) diff --git a/client/components/cards/checklists.css b/client/components/cards/checklists.css index 6b8c7e8f9..566df27f0 100644 --- a/client/components/cards/checklists.css +++ b/client/components/cards/checklists.css @@ -72,6 +72,10 @@ textarea.js-edit-checklist-item { padding-top: 3px; float: left; } +.checklist-title span.fa.checklist-handle.fa-arrows::before { + content: "↕️" !important; + font-family: inherit !important; +} #card-details-overlay { top: 0; bottom: -600px; @@ -148,6 +152,10 @@ textarea.js-edit-checklist-item { padding-top: 2px; padding-right: 10px; } +.checklist-item span.fa.checklistitem-handle.fa-arrows::before { + content: "↕️" !important; + font-family: inherit !important; +} .js-delete-checklist-item, .js-convert-checklist-item-to-card { margin: 0 0 0.5em 1.33em; diff --git a/client/components/cards/checklists.jade b/client/components/cards/checklists.jade index 82e4a1a6e..39ed211b1 100644 --- a/client/components/cards/checklists.jade +++ b/client/components/cards/checklists.jade @@ -69,6 +69,7 @@ template(name="addChecklistItemForm") .edit-controls.clearfix button.primary.confirm.js-submit-add-checklist-item-form(type="submit") {{_ 'save'}} a.js-close-inlined-form(title="{{_ 'close-add-checklist-item'}}") + | ❌ if showNewlineBecomesNewChecklistItem .material-toggle-switch(title="{{_ 'newlineBecomesNewChecklistItem'}}") input.toggle-switch(type="checkbox" id="toggleNewlineBecomesNewChecklistItem") @@ -91,6 +92,7 @@ template(name="editChecklistItemForm") .edit-controls.clearfix button.primary.confirm.js-submit-edit-checklist-item-form(type="submit") {{_ 'save'}} a.js-close-inlined-form(title="{{_ 'close-edit-checklist-item'}}") + | ❌ span(title=createdAt) {{ moment createdAt }} if canModifyCard a.js-delete-checklist-item {{_ "delete"}}...