sencha touch 2.4中pictos字体图标的名称列表在哪里

Where is the list of names of pictos font icons in sencha touch 2.4

在 sencha touch 文档和论坛中,我找不到我应该在 icon() mixin 中传递以导入图标的 96 pictos 字体图标的名称列表。就像下面的例子:

@include 图标('search');

如果您打开 touch 分发文件,您可以找到所有这些令牌的完整列表 touch/resources/themes/stylesheets/sencha-touch/base/mixins/_Class.scss, 第 393 行(最后一个发行版),函数 @function icon-character-for-name($name)

这里引用了 pictos 网站:http://pictos.cc/classic/font

@olegtaranenko 的回答对人们很有帮助。

如果你愿意,可以使用我制作的这个 Gist。

也许您已经知道,但是如果您想使用自定义图标...

@include icon('name', 'a', 'icon-font-name');

https://gist.github.com/Trozdol/e1239391e06cce4fd767.js

对于 2.4.2

寻找@function icon-character-for-name($name) 这里: http://docs.sencha.com/touch/2.4/2.4.2-apidocs/source/_Class.scss2.html#Global_CSS-css_mixin-icon

图标位于 http://pictos.cc/font/

记得在你的 scss 中@include icon('icon name');