Files
habitica/website/raw_sprites/css/css.template.handlebars
T
2017-11-03 19:06:06 +01:00

17 lines
452 B
Handlebars
Executable File

{{#sprites}}
.{{name}} {
background-image: url(/static/sprites/{{{escaped_image}}});
background-position: {{px.offset_x}} {{px.offset_y}};
width: {{px.width}};
height: {{px.height}};
}
{{#if custom}}
.customize-option.{{name}} {
background-image: url(/static/sprites/{{{escaped_image}}});
background-position: {{custom.px.offsetX}} {{custom.px.offsetY}};
width: {{custom.px.width}};
height: {{custom.px.height}};
}
{{/if}}
{{/sprites}}