DevExpress TreeView disable expanding circles ripple effect when expanding nodes
When you click a treeview node in the DevExpress treeview using many of the built-in themes you notice that a circle expands outwards in a ripple effect. This is part of the CSS built into the theme and cannot be disabled for this control. You can prevent the ripple by overriding the CSS. For the default material compact theme the following resolves the issue. .dxtvControl_MaterialCompact .dxtv-elbNoLn::before { content: none; }