Kendo UI树状视图三角形对我的用户来说太小了。 我想让它们更大。
答案 0 :(得分:4)
如果这些是您想要做大的唯一图标,您可以尝试创建具有所需大小的两个图像,然后定义以下样式:
#grid .k-hierarchy-cell > .k-icon.k-plus {
background-image: url('/images/plus.png');
background-position: 0 0;
width: 32px;
height: 32px;
}
#grid .k-hierarchy-cell > .k-icon.k-minus {
background-image: url('/images/minus.png');
background-position: 0 0;
width: 32px;
height: 32px;
}
在这里,我创建了一个图片并保存在/images/plus.png
中,用于展开32x32像素的细节和大小,另一个保存在/images/minus.png
中以便折叠它。
使用CSS选择器,我将其范围限制为id
为grid
的网格。
答案 1 :(得分:0)
您需要手动编辑样式文件夹中的“Default / sprite.png”以及其他剑道样式。这篇文章应该让你开始>> http://www.kendoui.com/forums/ui/general-discussions/using-the-kendo-ui-theme-builder.aspx#Bi_T-0dZtEuYNyT-ypDIlA,使用附加的* x2.psd精灵或在photoshop中进一步编辑文件。