在PrimeNg中使用Material设计图标代替Font awesome

时间:2017-01-27 22:09:33

标签: angular primeng

我想使用素材设计图标而不是主要组件默认使用的字体。如果我想搬到不同的图标库,我需要做什么?

1 个答案:

答案 0 :(得分:1)

您需要更改font-family。

.material-icons, .fa {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 1.5em;
    display: inline-block;
    width: 1em;
    height: 1em;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
}

Infact primeng有一个你可以作弊的材料主题。 http://www.primefaces.org/ultima-ng/检查那里的图标,你只需更改它,所有图标都是这个主题的材料。