current situation causes elements that are not list items to have pointer such as the margin of list-items
.mx-listview-clickable * {
cursor: pointer;
}
solution should be something like:
.mx-listview-clickable {
> ul.mx-listview-list{
cursor: default;
> li.mx-listview-item{
cursor: pointer;
}
}
}