My treeview menu works except that to expand an item I have to click on the arrow. I would like it to also expand when I click on the item itself, Below are the treeview CSS overrides that I'm using for various things. What do I need to add to make a click on an item expand the node?
.e-treeview {
background-color: #333e53;
}
.e-treeview .e-list-text {
color: #E4E4E7;
}
.e-treeview .e-list-item.e-hover > .e-text-content .e-list-text {
color: #ffffff;
}
.e-treeview .e-list-item.e-hover > .e-text-content {
background-color: #404055;
}
.e-treeview .e-list-item.e-active > .e-text-content {
background-color: #6414db;
}
.e-treeview .e-list-item.e-active > .e-fullrow {
background-color: inherit;
border: none;
}
.e-treeview .e-list-item.e-active.e-hover > .e-text-content .e-list-text, .e-fullrow {
color: #ffffff;
border: none;
background-color: inherit !important;
}
.e-treeview .e-list-item.e-active > .e-text-content .e-list-text {
color: #ffffff;
}
.e-treeview .e-list-item.e-active,
.e-treeview .e-list-item.e-hover {
background-color: #333e53;
}
.e-treeview .e-level-1,
.e-treeview .e-level-2,
.e-treeview .e-level-3 {
background-color: #333e53;
}
.e-treeview .e-list-item.e-hover > .e-fullrow {
background-color: inherit;
border: none;
}