mirror of
https://github.com/wekan/wekan.git
synced 2025-12-23 19:00:12 +01:00
Fix Regression - unable to rearrange tasks within a checklist - v8.11.
Thanks to xet7 ! Fixes #5973
This commit is contained in:
parent
0825374183
commit
544b24ceb1
2 changed files with 10 additions and 0 deletions
|
|
@ -72,6 +72,10 @@ textarea.js-edit-checklist-item {
|
||||||
padding-top: 3px;
|
padding-top: 3px;
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
|
.checklist-title span.fa.checklist-handle.fa-arrows::before {
|
||||||
|
content: "↕️" !important;
|
||||||
|
font-family: inherit !important;
|
||||||
|
}
|
||||||
#card-details-overlay {
|
#card-details-overlay {
|
||||||
top: 0;
|
top: 0;
|
||||||
bottom: -600px;
|
bottom: -600px;
|
||||||
|
|
@ -148,6 +152,10 @@ textarea.js-edit-checklist-item {
|
||||||
padding-top: 2px;
|
padding-top: 2px;
|
||||||
padding-right: 10px;
|
padding-right: 10px;
|
||||||
}
|
}
|
||||||
|
.checklist-item span.fa.checklistitem-handle.fa-arrows::before {
|
||||||
|
content: "↕️" !important;
|
||||||
|
font-family: inherit !important;
|
||||||
|
}
|
||||||
.js-delete-checklist-item,
|
.js-delete-checklist-item,
|
||||||
.js-convert-checklist-item-to-card {
|
.js-convert-checklist-item-to-card {
|
||||||
margin: 0 0 0.5em 1.33em;
|
margin: 0 0 0.5em 1.33em;
|
||||||
|
|
|
||||||
|
|
@ -69,6 +69,7 @@ template(name="addChecklistItemForm")
|
||||||
.edit-controls.clearfix
|
.edit-controls.clearfix
|
||||||
button.primary.confirm.js-submit-add-checklist-item-form(type="submit") {{_ 'save'}}
|
button.primary.confirm.js-submit-add-checklist-item-form(type="submit") {{_ 'save'}}
|
||||||
a.js-close-inlined-form(title="{{_ 'close-add-checklist-item'}}")
|
a.js-close-inlined-form(title="{{_ 'close-add-checklist-item'}}")
|
||||||
|
| ❌
|
||||||
if showNewlineBecomesNewChecklistItem
|
if showNewlineBecomesNewChecklistItem
|
||||||
.material-toggle-switch(title="{{_ 'newlineBecomesNewChecklistItem'}}")
|
.material-toggle-switch(title="{{_ 'newlineBecomesNewChecklistItem'}}")
|
||||||
input.toggle-switch(type="checkbox" id="toggleNewlineBecomesNewChecklistItem")
|
input.toggle-switch(type="checkbox" id="toggleNewlineBecomesNewChecklistItem")
|
||||||
|
|
@ -91,6 +92,7 @@ template(name="editChecklistItemForm")
|
||||||
.edit-controls.clearfix
|
.edit-controls.clearfix
|
||||||
button.primary.confirm.js-submit-edit-checklist-item-form(type="submit") {{_ 'save'}}
|
button.primary.confirm.js-submit-edit-checklist-item-form(type="submit") {{_ 'save'}}
|
||||||
a.js-close-inlined-form(title="{{_ 'close-edit-checklist-item'}}")
|
a.js-close-inlined-form(title="{{_ 'close-edit-checklist-item'}}")
|
||||||
|
| ❌
|
||||||
span(title=createdAt) {{ moment createdAt }}
|
span(title=createdAt) {{ moment createdAt }}
|
||||||
if canModifyCard
|
if canModifyCard
|
||||||
a.js-delete-checklist-item {{_ "delete"}}...
|
a.js-delete-checklist-item {{_ "delete"}}...
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue