Reputation: 814
I want to use KendoUI and bootstrap in my web application. I like kendo.material.css style. When I link bootstrap.css to be able to use bootstrap responsive features I also get some bootstrap styling i.e. blue border around a focused input. How to use these two frameworks without bootstrap specific styling (colors and so on)
Upvotes: 2
Views: 4096
Reputation: 696
According to kendo, the best integration between should be achieved using:
Use the kendo.common-bootstrap.min.css instead of kendo.common.css. This ensures that the dimensions of Kendo UI are going to match match the ones in Bootstrap.
Use the kendo.bootstrap.min.css theme which applies the Bootstrap colors to the Kendo UI widgets.
For more information you can check here: http://docs.telerik.com/kendo-ui/third-party/using-kendo-with-twitter-bootstrap
Kendo also provide a themebuilder. You can find it here: http://docs.telerik.com/kendo-ui/styles-and-layout/themebuilder
André
Upvotes: 3