Kendo for Angular2:如何用kendo glyphicon替换网格排序图标

时间:2016-10-11 16:44:37

标签: kendo-ui kendo-ui-angular2

在Angndo 2的Kendo中,如何使用Kendo Glyphicons替换网格的列排序图标(当前是箭头)?

我在我的scss文件中尝试了这个,但它不起作用

.k-grid-header .k-header .k-link > .k-icon {
    background-image: none; /* remove Kendo's sprite image */
    font-family: KendoUIGlyphs;
}

.k-grid-header .k-header .k-link > .k-icon.k-i-sort-desc::before {
    content: '\e61a'; /* KendoUIGlyphs down arrowhead */
}

.k-grid-header .k-header .k-link > .k-icon.k-i-sort-asc::before {
    content: '\e618'; /* KendoUIGlyphs up arrowhead */
}

2 个答案:

答案 0 :(得分:1)

Angular 2的Kendo UI中的默认箭头使用字体图标,因此无需更改font-family或删除精灵图像。相反,只需设置伪元素内容:

.k-grid-header .k-i-arrow-n::before {
  content: '\e61a';
}

.k-grid-header .k-i-arrow-s::before {
  content: '\e618';
}

请参阅此runnable demo

答案 1 :(得分:0)

我知道这是一个非常老的问题,但是以防万一有人想将contentfont-family一起用于pseudo-element

.yourClass : after {
    content: "\e014";    
    font-family: 'WebComponentsIcons';
}