From 5009cd64b316f9c9d375902d5195a2ae2fe5e845 Mon Sep 17 00:00:00 2001 From: Peter Foster Date: Sun, 15 Feb 2026 13:31:51 +0000 Subject: [PATCH] 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 --- public/dashboard.html | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/public/dashboard.html b/public/dashboard.html index 8360450..456e509 100644 --- a/public/dashboard.html +++ b/public/dashboard.html @@ -255,6 +255,14 @@ cursor: pointer; } + .tender-item * { + cursor: auto; + } + + .tender-item button, .tender-item a { + cursor: pointer; + } + .tender-item:last-child { border-bottom: none; }