Hey,
in our project we´re using a TreeTable and the flatCompactTheme.
export function PrintModelBrowserTable(props: CompProps) {
(...)
return (
<TreeTable
root={root}
columns={columns}
hideRoot
rowEventHandlers={rowEventHandlers}
rowStyling={rowStyling}
componentRenderers={componentRenderers}
/>
);
}
For example the TreeTable component is rendered in an ActionContentbox:
return (
<>
<ActionContentbox
headingElements={<ContentBoxElements.Title text="Datenarten Übersicht" />}
subActionBar={renderSearchSubActionBar()}
padding={0}
>
{dataHolder?.loadingState === "loaded" && (
<PrintModelBrowserTable
columns={treeTableColumns}
expandedNodes={expandedNodes}
setExpandedNodes={setExpandedNodes}
tree={filteredTree}
updateNode={handleUpdateNode}
/>
)}
</ActionContentbox>
{renderWizard(activeWizard, setActiveWizardRef)}
</>
);
}
How can we get rid of the grey hover color and also the color when a node is expanded without using classnames or data-attributes? The goal should be a transparent background-color.
?
In the theming configuration of treeTable I couldn´t find any trigger point (Widgets Showcase)!?
Is there a maybe trigger point in the theme? So I could change it locally with custom theme and ThemeProvider?
I´ve already tried to change our theme globally under colors.interaction.hover to see if something changes, but it didn´t work?
Do you have any suggestions? Thanks in advance ![]()



