Text on RadzenLink is unreadable

My application uses RadzenLink as the child items on RadzenTree. When using default.css, the text on a clicked child item (RadzenLink) is blended with the background color and becomes unreadable (see picture below). What is the appropriate way to change how RadzenLink displays text in the context of RadzenTree?

image

Hi @wqiu,

You can use this CSS to set the color of the link to white (#FFF) when a node is selected:

.rz-treenode-content-selected .rz-link {
    color: #fff;
}

@korchev Thanks, that works.