@progress/kendo-ui
Version:
This package is part of the [Kendo UI for jQuery](http://www.telerik.com/kendo-ui) suite.
15 lines (13 loc) • 601 B
JavaScript
'use strict';
module.exports = {
instructions: [
'The font-size: 0 rule is no longer applied to elements using Kendo UI icons.',
'If icon elements contain text content, move it to a title attribute:',
' Old: <span class="k-icon k-i-close">Hide</span>',
' New: <span class="k-icon k-i-close" title="Hide"></span>',
'For icons inside links:',
' Old: <a href=""><span class="k-icon k-i-close">Hide</span></a>',
' New: <a href="" title="Hide"><span class="k-icon k-i-close"></span></a>',
'Review all icon elements with text content and update accordingly.',
],
};