mirror of
https://github.com/poanse/obsidian-taskmap.git
synced 2026-07-22 06:05:58 +00:00
draw edited task on top of its siblings
This commit is contained in:
parent
a3ed77cd9c
commit
3903b670eb
1 changed files with 4 additions and 0 deletions
|
|
@ -119,6 +119,7 @@
|
|||
{#key context.updateOnZoomCounter}
|
||||
<div
|
||||
class="task-container"
|
||||
class:editing={context.editingTaskId === taskId}
|
||||
bind:this={self}
|
||||
role="presentation"
|
||||
style="
|
||||
|
|
@ -207,6 +208,9 @@
|
|||
z-index: 3; /* over lines*/
|
||||
position: absolute;
|
||||
}
|
||||
.task-container.editing {
|
||||
z-index: 4; /* raise the task being renamed above its siblings */
|
||||
}
|
||||
.task {
|
||||
/*background: #111;*/
|
||||
/*background-color: #1E1E1E;*/
|
||||
|
|
|
|||
Loading…
Reference in a new issue