Hi all!
When I select an item in a Sidenav, the selected option is not marked, so the user does not know what option it is running. How do you set the css to maintain visible the selected option in the SideNav?
Thanks
Hi all!
When I select an item in a Sidenav, the selected option is not marked, so the user does not know what option it is running. How do you set the css to maintain visible the selected option in the SideNav?
Thanks
Hi, look it up on GitHub under the wiki tab
https://github.com/Servoy/servoy-extra- … ng-sidenav
in this case
.svy-navitem-selected
Hope this helps,
Hi Christian, thanks for your reply.
Yes, I use .svy-navitem-selected to change the color of the option when the users moves the mouse to select a navitem
.svy-navitem-selected {
color : #0a81f7;
}
But what I can not do is to leave the selected option marked. Once the user clicks, the control passes to the form in the right and the selected option is white again as the rest of the navitems. I would like it to be blue to indicate the option that was selected.