[BUG] .mx-listview-clickable from mxui conflicting with itself in Atlas (cursor: default) - Mendix Forum

[BUG] .mx-listview-clickable from mxui conflicting with itself in Atlas (cursor: default)

0

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;
    }
  }
}

 

asked
0 answers