Does the Kendo UI have a link to CSS?

We are currently using twitter Bootstrap for our grid, navigation and style input. When working with the Kendo user interface, we noticed that it has a thematic system.

Is there a link to using Kendo's user interface classes?

We assume that the Kendo classes will replace our invoice and navigation markup, but what about our grid? Does the Kendo UI have an embedded CSS?

+6
source share
3 answers

Class documentation only. There is quite a lot of information, but it is not exhaustive.

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

+3
source

This is ancient, but only for those who are still wondering about the last part of the question:

We assume that the Kendo classes will replace our invoice and navigation markup, but what about our grid? Does the Kendo UI have an embedded CSS?

The answer to this question is NO. Kendo has a data grid widget, but there is no grid layout at this point in time. But they continue to add to it. Their material is compatible with the Bootstrap grid, but if you want to use the Bootstrap grid inside the Kendo window widget, you need to customize the fact that they use different box size 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; } 
+1
source

It may be a little late, but just in case, a workaround. Launch them at your fingertips ThemeBuilder . Click Download. Then view the kendo.custom.css file that they have. Enumerates all CSS classes in sight.

You can also view their kendo.all.css or kendo.common.css (depending on whether you have your professional or open source offer) in the src folder that comes with the download of your Kendo-UI.

0
source

Source: https://habr.com/ru/post/952313/


All Articles