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:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user