mirror of
https://github.com/hcengineering/platform.git
synced 2024-11-22 21:50:34 +03:00
Fixed ToDoItemNodeView (#5505)
Signed-off-by: Alexander Platov <alexander.platov@hardcoreeng.com>
This commit is contained in:
parent
5d0fad2d5d
commit
610bfda5e6
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user