Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does Kendo UI have a CSS reference?

Tags:

kendo-ui

We are currently using twitter Bootstrap for its grid system, navigation and input styling. In working with Kendo UI, we noticed that it has a theme system.

Is there a reference available on how to use the Kendo UI classes?

We imagine Kendo classes would replace our input and navigation markup, but what about our grid system? Does Kendo UI have a built-in CSS grid system?

like image 363
Samg Avatar asked Aug 22 '13 20:08

Samg


2 Answers

Only the documentation of the classes. There's quite a bit of information but it's not exhaustive.

http://docs.kendoui.com/getting-started/web/appearance-styling

like image 147
BlackWasp Avatar answered Sep 30 '22 20:09

BlackWasp


This is ancient now but just for anyone still wondering about the last part of the question:

We imagine Kendo classes would replace our input and navigation markup, but what about our grid system? Does Kendo UI have a built-in CSS grid system?

The answer to that is NO. Kendo has a data grid widget but no layout grid at this point in time. But they do keep adding to it. Their stuff is sort of compatible with the Bootstrap grid but if for instance you want to use the Bootstrap grid inside of a Kendo Window widget you need to adjust for the fact that they use different box sizing models:

/*=====================================================================*/
/* Box-sizing fix for using Bootstrap grid layout inside Kendo widgets */
/*=====================================================================*/
/* reset everything to the default box model */
*,
:before,
:after
{
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
like image 40
Will Avatar answered Sep 30 '22 21:09

Will