- UID
- 336656
- 帖子
- 9
- 精华
- 0
- 贡献
- 0
- 推广
- 0
- 有效BUG
- 0
- 注册时间
- 2011-11-27
|
9#
发表于 2016-9-11 10:04
| 只看该作者
查看是不是在custom.css,强制使用了某个字体,或者说试一下
我这个字体配置,改过一下的hello雅黑,可以看到icons-font的雅黑
/*避免icon类字体使用雅黑*/
[class*="g-icon"] {
font-family: "global-iconfont"!important;
}
[class*="tb-fp-iconfont"] {
font-family: "tb-fp-iconfont"!important;
}
[class*="tb-toolbar-item-icon"] {
font-family: "tb-toolbar-iconfont"!important;
}
[class="fp-iconfont"] {
font-family: "fp-font"!important;
}
[class="mui-iconfont"] {
font-family: "mui-iconfont"!important;
}
[class*="uxiconfont"] {
font-family: "uxiconfont" !important;
}
[class*="iconfont_"] {
font-family: "iconfont_10", "iconfont_14", "iconfont_60" !important;
}
[class*="el-icon-"] {
font-family: "Elusive-Icons"!important;
}
[class*="ss-social"] {
font-family: "SSSocial"!important;
}
[class="ss-icon"] {
font-family: "SSSymbolicons"!important;
}
[class="iconfont"] {
font-family: "iconfont" !important;
}
[class*="W_ficon"] {
font-family: "wbficonregular" !important;
}
[class*="W_swficon"] [class*="spac"] {
font-family: "WBswficon" !important;
}
/*[class^="icon-", class^="-icon"] {
font-family: "collamark" !important;
}*/
/*优先英文字体优化,其次中文使用雅黑
*{
font-family: "icomoon", "tmt-icons", "topbar", "sv", "MD_Font", "octicons", "Glyphicons Halflings", "FontAwesome", "dashicons", "iconfont", "Segoe UI", "WenQuanYi Micro Hei", "WenQuanYi Micro Hei Mono", "Microsoft Yahei", "Microsoft Yahei Mono","微软雅黑" sans-serif !important;
}
*/
/*代码/宽体等字体的优化*/
pre, code, textarea, tt, kbd, samp,
pre *, code *, textarea *, tt *, kbd *, samp *{
font-family: "Segoe UI", monospace !important; |
|