Reputation: 3184
For example, the editor demo (http://demos.telerik.com/kendo-ui/editor/index) displays the bold icon as black when hovering.
However, outside of the demo, the bold icon displays as white using the material theme. Please see http://dojo.telerik.com/OHiZa for the code. This white font is hard to read.
How can I have the material theme have the same style as the demo?
Upvotes: 2
Views: 3653
Reputation: 3184
The issue was that I using the following common style:
<link rel="stylesheet" href="http://cdn.kendostatic.com/2014.3.1411/styles/kendo.common.min.css">
I should have used:
<link rel="stylesheet" href="http://cdn.kendostatic.com/2014.3.1411/styles/kendo.common-material.min.css">
Upvotes: 1