completed-task-display icon indicating copy to clipboard operation
completed-task-display copied to clipboard

need new feature:sequential task

Open bibibimartyr opened this issue 2 years ago • 1 comments

Can the developer provide such a feature: sequential tasks, in a task list, only the first unfinished task is displayed, all completed tasks and all subsequent unfinished tasks are hidden. IMG_1811

bibibimartyr avatar Aug 28 '23 10:08 bibibimartyr

I managed to accomplish this using some custom css:

body.hide-completed-tasks li.task-list-item[data-task=""] ~ li.task-list-item,
body.hide-completed-tasks .HyperMD-task-line[data-task=" "] + .HyperMD-task-line {
    display: none;
}

The state doesn't save, but here's the result of using the toggle with the css in place (works great on kanban boards too!):

Image

cssdev avatar May 28 '25 17:05 cssdev