I’m trying to change the default icons used in halo, and i has created a new theme follow “Creating a Custom Theme”:
styles.scss:
@import "ruler-defaults";
@import "ruler";
.ruler {
@include ruler;
}
ruler.scss:
@import "../halo/halo";
@mixin ruler {
@include halo;
}
ruler-defaults.scss:
@import "../halo/halo-defaults";
app-component.scss:
@import "../ruler";
@mixin com_haulmont_cuba {
@include ruler;
}
in my ruler-theme.propertis file i change add and create action icon:
@include=halo-theme.properties
cuba.web.icons.add.png = font-icon:PLUS
cuba.web.icons.create.png = font-icon:PLUS
in my web-app.properties:
cuba.web.theme = ruler
cuba.themeConfig = /com/jmyd/jms/web/ruler-theme.properties
when i start the system ,the icon “FILE_O” is not replaced by “PLUS”: