I'm trying to change the color of the treeview items. I was able to change the background colors but two issues remain:
1. On hover and also on select, there is a small area to the left of the menu item that remains white.
2. The text of the item turns red when I hover over the selected item, but it should turn white.
This is what I have so far:
.e-treeview .e-list-item.e-hover > .e-text-content {
background-color: #404055;
}
.e-treeview .e-list-item.e-hover > .e-text-content .e-list-text {
color: #FFFFFF;
}
.e-treeview .e-list-item > .e-text-content .e-list-text {
color: #E4E4E7;
}
.e-treeview .e-list-item.e-active > .e-text-content {
background-color: #6414DB;
}
.e-treeview .e-list-item.e-active > .e-text-content .e-list-text {
color: #FFFFFF;
}
.e-treeview .e-level-1, .e-treeview .e-level-2, .e-treeview .e-level-3 {
background-color: #333E53;
}
.e-treeview .e-fullrow {
background-color: #333E53;
}