fix: correct cursor behavior on tender list items

- Set cursor to auto for text content inside tender items
- Keep pointer cursor only for buttons and links
- Prevents text cursor (I-beam) from appearing when clicking tender text
- Improves UX by showing correct cursor for selectable vs clickable areas
This commit is contained in:
Peter Foster
2026-02-15 13:31:51 +00:00
parent 685ac00f7c
commit 5009cd64b3

View File

@@ -255,6 +255,14 @@
cursor: pointer; cursor: pointer;
} }
.tender-item * {
cursor: auto;
}
.tender-item button, .tender-item a {
cursor: pointer;
}
.tender-item:last-child { .tender-item:last-child {
border-bottom: none; border-bottom: none;
} }