fix(task): make the whole task clickable #3176

Closed
konrad wants to merge 3 commits from fix/task-link-size into main
1 changed files with 10 additions and 1 deletions
Showing only changes of commit 4924470f2b - Show all commits

View File

@ -299,6 +299,14 @@ function openTaskDetail() {
background-color: var(--grey-100);
}
&:focus-within {
box-shadow: 0 0 0 2px hsla(var(--primary-hsl), 0.5);
a.tasktext {
box-shadow: none;
}
}
.tasktext,
&.tasktext {
white-space: nowrap;
@ -366,7 +374,8 @@ function openTaskDetail() {
}
}
&:hover .favorite {
&:hover .favorite,
.favorite:focus {
opacity: 1;
}