diff --git a/public/src/modules/helpers.js b/public/src/modules/helpers.js index 0146a0aef1..d9bff81edb 100644 --- a/public/src/modules/helpers.js +++ b/public/src/modules/helpers.js @@ -56,19 +56,22 @@ helpers.generateCategoryBackground = function(category) { var style = []; - if (category.backgroundImage) { - style.push('background-image: url(' + category.backgroundImage + ')'); - } - if (category.bgColor) { - style.push('background-color: ' + category.bgColor + ';'); + style.push('background-color: ' + category.bgColor); } if (category.color) { - style.push('color: ' + category.color + ';'); + style.push('color: ' + category.color); } - return style.join(' '); + if (category.backgroundImage) { + style.push('background-image: url(' + category.backgroundImage + ')'); + if (category.imageClass) { + style.push('background-size: ' + category.imageClass); + } + } + + return style.join('; ') + ';'; }; helpers.generateTopicClass = function(topic) {