mirror of
https://github.com/zoldar/jenot.git
synced 2026-01-05 07:02:55 +00:00
Fix remove button visibility triggering on touchscreen UIs
This commit is contained in:
parent
f33eac82b8
commit
4880eeb66d
1 changed files with 7 additions and 1 deletions
|
|
@ -133,7 +133,13 @@ task-list-item .remove {
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
task-list-item:hover .remove {
|
@media (hover: hover) and (pointer: fine) {
|
||||||
|
task-list li:hover .remove {
|
||||||
|
visibility: visible;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
task-list-item .remove:has(button:active) {
|
||||||
visibility: visible;
|
visibility: visible;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue