2

Kendo ASP.NET-MVC

Our designer wants a grid that has no borders or frames and no alternating row backgrounds. Basically a white box without lines. It's for financial reports. plain and simple.

There should be a monocolored header and footer row where the column names and paging go.

Is this achievable? We don't want to edit too much the main CSS as the rest of the controls on the site should have borders and colors. It's just the grid.

Ian Vink
  • 66,960
  • 104
  • 341
  • 555

1 Answers1

12

Try:

.k-grid, .k-grid * {
    background: white !important;
    border: 0 !important;
}

This forces all background for k-grid to white removing gradients and background images and sets borders to 0px (no border).

OnaBai
  • 40,767
  • 6
  • 96
  • 125