mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-19 15:48:04 +01:00
* move emails images to website/static/emails and remove old files * remove old client tests * remove more files * add sprites back * cleanup gulp * cleanup gulp * remove old files * more fixes * pin bootstrap-vue * disable old test * remove old tasks * fix apidoc
17 lines
454 B
Handlebars
Executable File
17 lines
454 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.offset_x}} {{custom.px.offset_y}};
|
|
width: {{custom.px.width}};
|
|
height: {{custom.px.height}};
|
|
}
|
|
{{/if}}
|
|
{{/sprites}}
|