I have used the Themebuilder on the Kendo UI site to create a theme that reflects my company style. It seems that the Export button only output a few lines of code (way to less code, I assume).
When I include that css in my project below the existing reference to Kendo CSS it seems that this has no effect in my app.
Anyone who has used the Kendo mobile themebuilder (http://demos.kendoui.com/mobilethemebuilder/index.html) can tell me what could be wrong?
.km-ios .km-view .km-navbar .km-button.km-state-active {
background-color: rgb(236, 32, 40);
}
.km-ios .km-view .km-content .km-list .km-state-active .km-listview-link {
background-color: rgb(236, 32, 40);
}
.km-ios .km-view .km-navbar {
background-color: rgb(0, 111, 81);
}
.km-ios .km-view .km-content .km-list > li {
background-color: rgb(0, 111, 81);
}
.km-ios .km-view .km-content {
background-color: rgb(255, 255, 255);
}
.km-ios .km-view .km-navbar .km-view-title > * {
color: rgb(255, 255, 255);
}
.km-ios .km-view .km-tabstrip {
background-color: rgb(0, 111, 81);
}
.km-ios .km-view .km-content .km-list > li .km-icon {
background-color: rgb(236, 32, 40);
}
When I include that css in my project below the existing reference to Kendo CSS it seems that this has no effect in my app.
Anyone who has used the Kendo mobile themebuilder (http://demos.kendoui.com/mobilethemebuilder/index.html) can tell me what could be wrong?