Fixed ToDoItemNodeView (#5505)

Signed-off-by: Alexander Platov <alexander.platov@hardcoreeng.com>
This commit is contained in:
Alexander Platov 2024-05-04 07:08:49 +03:00 committed by GitHub
parent 5d0fad2d5d
commit 610bfda5e6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -193,7 +193,7 @@
class:unassigned={userId == null}
class:hovered
>
<div class="assignee" contenteditable="false">
<div class="flex-center assignee" contenteditable="false">
<EmployeePresenter
value={userId}
disabled={readonly}
@ -204,7 +204,7 @@
/>
</div>
<div contenteditable="false">
<div class="flex-center todo-check" contenteditable="false">
<CheckBox {readonly} {checked} on:value={markDone} kind={'positive'} size={'medium'} />
</div>
@ -217,6 +217,10 @@
.assignee {
cursor: pointer;
}
.assignee,
.todo-check {
height: 1.5em;
}
&.unassigned {
.assignee {