Radzen panel menu

There isn't a built-in way to disable the ripple effect but you can build your own material theme without it. Here is how.

  1. Clone the Radzen.Blazor github repository
  2. Open the Radzen.Blazor.csproj with Visual Studio.
  3. Edit material-base.scss and remove all CSS rules that contain rz-ripple e.g.
    .rz-button {
      @include rz-ripple($pseudo: true);
    }
    
  4. Save material-base.scss and build the project.
  5. Copy wwwroot\css\material-base.css to your application and include it instead of _content/Radzen.Blazor/css/material-base.css
1 Like